@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProLightOblique.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProBook.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProBookOblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProMediumOblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProRoman.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProOblique.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProBlack.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProBlackOblique.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../webfonts/AvenirLTProHeavyOblique.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* variables */
:root {
  --primary: #FFDB4C;
  --blue: #191283;
  --electric_green: #09E939;
  --green: #5AD05A;
  --light: #fffbe4;
  --orange: #F58220;
  --yellow: #FBB231;
  --teal: #07806D;
  --cream: #FFF4A8;
  --cream2: #FFF7D1;
  --warm_sand: #d4c3af;
  --skyblue: #E6ECFA;
  --light_skyblue: #F2F2F2;
  --pastel_yellow: #FAEC8B;
  --light_peach: #F7EEDC;
  --pale_yellow: #FCF3C1;
  --skin: #F0D4AF;
  --red: #EC1C2E;
  --lightpink: #FFF1EE;
  --light_skyblue: #E6ECFA;
  --light_gray: #F5F5F5;
  --green2: #07806D;
  --light_blue: #9FEAE4;
  --light_green: #5AD05A;
  --transition_3s: all 0.3s ease-in-out;
}

/* Main Code */
body {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* utilities */
.bg_cream {
  background: var(--cream);
}

.bg_cream2 {
  background-color: var(--cream2);
}

.bg_cream3 {
  background-color: #FFEDC8;
}

.bg_light_peach {
  background: var(--light_peach);
}

.bg_pale_yellow {
  background: var(--pale_yellow);
}

.bg_warm_sand {
  background: var(--warm_sand);
}

.bg_light_skyblue {
  background: var(--light_skyblue);
}

.bg_orange {
  background: var(--orange);
}

.bg_yellow {
  background: var(--yellow);
}

.bg_skin {
  background: var(--skin);
}

.bg_red {
  background: var(--red);
}

.bg_skyblue {
  background: var(--skyblue);
}

.bg_silver {
  background: #F5F5F5;
}

.bg_silver_light {
  background: #FAFAFA;
}

.bg_light {
  background: var(--light) !important;
}

.bg_primary {
  background: var(--primary);
}

.bg_pink {
  background: #FFD0E3;
}

.bg_pastel_yellow {
  background: var(--pastel_yellow);
}

.bg_lightpink {
  background: var(--lightpink);
}

.bg_green {
  background: var(--green);
}

.txt_electric_green {
  color: var(--electric_green) !important;
}

.txt_primary {
  color: var(--primary);
}

.txt_blue {
  color: var(--blue);
}

.txt_primary_i {
  color: var(--primary) !important;
}

.txt_red {
  color: var(--red) !important;
}

.txt_orange {
  color: var(--orange);
}

.txt_orange2 {
  color: #F7714D;
}

.txt_green {
  color: var(--green2);
}

.txt_light_green {
  color: var(--light_green);
}

.txt_aqua {
  color: #56BEBF;
}

.txt_purple_light {
  color: #9F9CD4;
}

.txt_pastel_yellow {
  color: var(--pastel_yellow);
}

.txt_skin {
  color: var(--skin);
}

.txt_skyblue {
  color: var(--skyblue);
}

.txt_gray {
  color: #364A4180;
}

.txt_lime {
  color: #CEFF73;
}

.txt_teal {
  color: var(--teal);
}

.txt_cream {
  color: var(--cream);
}

.border_ws {
  border: 1px solid var(--warm_sand);
}

.border_primary {
  border: 1px solid var(--primary);
}

.border_blue {
  border: 1px solid var(--blue);
}

.border_c_blue {
  border-color: var(--blue) !important;
}

.border_c_orange {
  border-color: var(--orange) !important;
}

.border_c_gray {
  border-color: #C9C3C3 !important;
}

.border_c_teal {
  border-color: var(--teal) !important;
}

.border_yellow {
  border: 1px solid var(--yellow);
}

.border_red {
  border: 1px solid var(--red);
}

.shadow_sm {
  box-shadow: 0px 2px 6px 0px #0000001B;
}

.fw_800 {
  font-weight: 800 !important;
}

.fw_600 {
  font-weight: 600;
}

.fw_500 {
  font-weight: 500;
}

.fw_light {
  font-weight: 400;
}

.w-fit {
  width: fit-content;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-full,
.rounded_full {
  border-radius: 99999px !important;
  -webkit-border-radius: 99999px !important;
  -moz-border-radius: 99999px !important;
  -ms-border-radius: 99999px !important;
  -o-border-radius: 99999px !important;
}

.btn_primary,
.btn_secondary,
.btn_silver {
  display: inline-block;
  padding: 9px 30px;
  text-decoration: none;
  background: var(--primary);
  text-transform: capitalize;
  color: var(--light);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
  text-transform: uppercase;
}

.btn_primary {
  border: 1px solid var(--primary);
  color: var(--blue);
}

.btn_secondary {
  background: #D3C4F4;
  border: 1px solid #D3C4F4;
  color: var(--bs-white);
}

.btn_silver {
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
  color: #8B8989;
}

.btn_primary:hover {
  background: var(--blue);
  color: var(--primary);
}

.btn_secondary:hover {
  background: #E6ECFA;
  color: var(--blue);
}

.btn_silver:hover {
  background: var(--blue);
  color: var(--primary);
  border-color: var(--primary);
}

.btn_yellow {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--yellow);
}

.border_gold {
  border: 2px solid var(--yellow);
}

.border_green {
  border: 1px solid var(--green2);
}

.bg_cream {
  background: var(--cream);
}

.bg_blue {
  background: var(--blue);
}

.bg_blue_light {
  background: #0048B4;
}

.bg_teal {
  background: var(--teal);
}

.bg_gradient {
  background: linear-gradient(283.79deg, rgba(241, 211, 255, 0.5) 26.07%, #FDF9FF 73.44%);
}

.bg_lightpink {
  background: var(--lightpink);
}

.bg_light_gray {
  background: var(--light_gray);
}

.bg_light_blue {
  background: var(--light_blue);
}

.lh-md {
  line-height: 1.4;
}


.fs_14 {
  font-size: 14px;
}

.fs_16 {
  font-size: 16px;
}

.fs_18 {
  font-size: 18px;
}

.fs_22 {
  font-size: 22px !important;
}

.fs_24 {
  font-size: 24px !important;
}

.line_between {
  position: relative;
  padding: 0 20px;
  margin: auto;
  z-index: 1;
}

.line_between::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E0E0E0;
  z-index: -1;
}

.line_between span {
  display: inline-block;
  background: var(--light);
  padding: 0 15px;
}

.line_between2::before {
  background: var(--primary);
}

.line_between2 span {
  background: var(--cream2);
}

.shadow_md {
  box-shadow: 0px 8px 10px 0px #0000001A;
}

.gradient_gray {
  background: linear-gradient(89.81deg, #463293 -53.84%, #27137e -4.6%, #7d6ab7 21.1%, #6851aa 69.77%, #332085 108.05%);
}

.text-shadow {
  text-shadow: #838383 2px 2px 6px;
}

/* Header */
#header {
  top: 0;
  left: 0;
  background-color: var(--blue);
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
  z-index: 99;
}

.navbar .container-lg {
  padding: 10px 20px !important;
  border-radius: 12px;
}

.site_logo img {
  max-width: 170px;
}

.site_logo {
  text-decoration: none;
  color: var(--primary);
}

.nav_ul {
  gap: 20px;
}

.nav_ul li a {
  text-align: center;
  padding: 10px 15px !important;
  position: relative;
  color: var(--bs-white);
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nav_ul li a:hover {
  color: var(--primary);
}

.nav_ul li a.active::after {
  width: 100%;
  background-color: var(--yellow) !important;
}

.btn_toggle {
  padding: 8px;
  color: var(--primary);
  background: transparent;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.btn_toggle svg {
  width: 30px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/.5 !important;
}

.ratio_square {
  aspect-ratio: 1/1 !important;
}

.ratio_1x6 {
  aspect-ratio: 1/.6 !important;
}

.ratio_p8 {
  aspect-ratio: 1/.8 !important;
}

.p_15 {
  padding: 15px;
}

/* banner */
.banner {
  /* background: linear-gradient(to top, #E1E5E2, #fff, #E1E5E2); */
  /* box-shadow: 0 30px 20px #dbdbdb inset, 0 -30px 20px #dbdbdb inset; */
  background: linear-gradient(180deg, #E1E5E2 0.56%, #FFFFFF 31.25%, #FAFBFA 76.55%, #CBD2CC 77.89%, #E4E4E4 78.04%, #F2F2F2 85.29%, #FFFFFF 100%);
}

/* Journey Starts */
.img_120 {
  height: 140px;
  object-fit: contain;
  object-position: bottom;
}

/* Circle Images */
.stamp_grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stamp_grid_box div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* reviews */
.review_slider {
  text-align: center;
}

.review_slider .stars {
  display: flex;
  justify-content: center;
}

.review_slider .stars img {
  width: 20px;
}

.review_slider .user_img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.review_slider .swiper-button-prev::after,
.review_slider .swiper-button-next::after {
  display: none;
}

.review_slider .swiper-button-prev,
.review_slider .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.review_slider .swiper-button-prev img,
.review_slider .swiper-button-next img {
  width: 30%;
}

/* pricing */
.sec_pricing {
  position: relative;
}

.sec_pricing::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 80px);
  display: block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid var(--blue);
  transform: rotate(180deg) translateX(-50%);
  -webkit-transform: rotate(180deg) translateX(-50%);
  -moz-transform: rotate(180deg) translateX(-50%);
  -ms-transform: rotate(180deg) translateX(-50%);
  -o-transform: rotate(180deg) translateX(-50%);
}

.goldedn_gradient {
  background: linear-gradient(90deg, #FDDD60 0%, #A39E69 63.26%, #CBB656 82.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pricing_table {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing_table>div {
  width: 30%;
}

.pricing_table>div>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.pricing_table>div>div div:nth-child(3) {
  margin-top: auto;
  width: 100%;
}

.pricing_table>div:nth-child(2) {
  flex: 1;
}

.pricing_line {
  height: 1px;
  background: linear-gradient(96.2deg, rgba(37, 180, 248, 0) 0%, rgba(37, 180, 248, 0.5) 50%, rgba(37, 180, 248, 0) 100%);
}

.pricing_btn {
  font-size: 20px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  background: linear-gradient(to top, #FFE479 50%, #FFDB4C 50%);
  border: 1px solid var(--bs-white);
  color: var(--blue);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0px 4px 5px 0px #00000026;
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
}

.pricing_btn.no_hover {
  background: var(--orange);
}

.pricing_btn_yellow {
  position: relative;
  background: linear-gradient(to top, #FFD940 50%, #FFCC00 50%);
}

.pricing_btn_flip {
  position: relative;
  background: linear-gradient(to bottom, #FFDB4C 50%, #FFCC00 50%);
}

.pricing_btn_yellow::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 60px;
  height: 60px;
  background: url('../img/cursor-pointer.svg') no-repeat;
  background-size: 100%;
}

.hide_before::before {
  display: none;
}

.product_img {
  height: 250px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img1 {
  height: 295px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img2 {
  height: 280px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img4 {
  height: 260px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img3 {
  height: 284px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.tp_product_img1 {
  height: 250px;
}

.tp_product_img3 {
  height: 250px;
}

.saving-btn {
  position: relative;
  transform: translateY(14px);
  -webkit-transform: translateY(14px);
  -moz-transform: translateY(14px);
  -ms-transform: translateY(14px);
  -o-transform: translateY(14px);
}

.saving-btn::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
}

.saving-btn span {
  position: relative;
  z-index: 2;
  color: var(--blue);
  font-weight: 700;
  background: var(--bs-white);
  padding: 8px 30px;
  text-decoration: none;
  border: 1px solid var(--blue);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

/* warning */
.warning_sec {
  border: 5px solid #FF0000;
}

.warning_sec img {
  max-width: 100px;
  display: inline-block;
  margin-top: -100px;
}

/* Steps */

.steps {
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: auto;
  display: flex;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.steps .step_box {
  padding: 12px 15px;
  background: var(--bs-white);
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 12px;
  color: var(--blue);
}

.steps .step_box:nth-child(1) {
  padding-right: 60px;
  border-radius: 100px 0 0 100px;
  -webkit-border-radius: 100px 0 0 100px;
  -moz-border-radius: 100px 0 0 100px;
  -ms-border-radius: 100px 0 0 100px;
  -o-border-radius: 100px 0 0 100px;
}

.steps .step_box:nth-child(3) {
  padding-left: 50px;
  padding-right: 30px;
  border-radius: 0 100px 100px 0;
  -webkit-border-radius: 0 100px 100px 0;
  -moz-border-radius: 0 100px 100px 0;
  -ms-border-radius: 0 100px 100px 0;
  -o-border-radius: 0 100px 100px 0;
}

.steps .step_box.active {
  gap: 0;
  width: 220px;
  padding: 5px 8px;
  transform: scale(1.35);
  background: var(--blue);
  color: var(--bs-white);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-transform: scale(1.35);
  -moz-transform: scale(1.35);
  -ms-transform: scale(1.35);
  -o-transform: scale(1.35);
  border: 2px solid var(--bs-white);
  position: relative;
  z-index: 2;
}

.steps .step_box.deactive {
  background: #DBB1EF;
  color: var(--bs-white);
}

.steps .step_box.completed {
  background: #07806D;
  color: var(--bs-white);
}

.steps .step_box.active>p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
}

.steps .step_box .circle {
  font-weight: 600;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.steps .step_box.active .circle {
  border-color: var(--bs-white);
  background: var(--bs-white);
  color: var(--blue);
}

.steps .step_box.deactive .circle,
.steps .step_box.completed .circle {
  border-color: var(--bs-white);
}

.steps .step_box .circle img {
  width: 50%;
}

.user_img_2 {
  max-width: 220px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 1000px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -ms-border-radius: 1000px;
  -o-border-radius: 1000px;
}

.border_red .progress .progress-bar {
  border-radius: 5px;
}

.border_primary.bg_cream2.p-4.rounded-4.upsell_one_offer {
  border-style: dashed !important;
}

/* SACRED INGREDIENTS */
.img_sacred_i {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.ul_list_item li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ul_list_item li img {
  display: block;
}

/* accordion */
.faq_accr {
  padding: 0;
}

.faq_accr .accordion-item .accordion-header button h5 {
  font-weight: bold;
}

.faq_accr .accordion-item {
  border: none;
  background: #E6ECFA;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 20px;
}

.faq_accr .accordion-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.faq_accr .accordion-item:last-of-type {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.faq_accr .accordion-item .accordion-button {
  background-color: transparent !important;
  border: none;
  box-shadow: none;
  padding: 20px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('../img/arrow-circle-down.svg');
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.accordion-button::after {
  background-image: url('../img/arrow-circle-down.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
}

.faq_accr .accordion-item .accordion-body {
  padding-top: 0;
}

.faq_accr .accordion-item .accordion-body p {
  font-size: 18px;
}

.faq_accr .accordion-item .accordion-collapse {
  font-weight: normal;
}

/*  */
.before_after_box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.before_after_box .i_box {
  width: 50%;
  border: 5px solid var(--pastel_yellow);
}

.before_after_box .i_box:nth-child(1) {
  border-right: 3px solid var(--pastel_yellow);
}

.before_after_box .i_box:nth-child(2) {
  border-left: 3px solid var(--pastel_yellow);
}

.before_after_box .i_box:nth-child(3) {
  border-right: 3px solid var(--pastel_yellow);
}

.before_after_box .i_box:nth-child(4) {
  border-left: 3px solid var(--pastel_yellow);
}

.before_after_box .i_box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.4;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* footer */
.footer_link {
  background: #191183;
  color: #fff;
  font-family: SansSerifBldFLF;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
}

.footer_link:hover {
  background: #f0cf4e;
  color: #282181;
}

.references_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.references_links a {
  font-weight: 500;
  padding: 8px 10px;
  font-size: 14px;
  white-space: pre-wrap;
  line-break: anywhere;
  background: var(--cream);
  color: var(--primary);
  text-decoration: underline;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
}

.references_links a:hover {
  background: var(--primary);
  color: var(--light);
}

/* upsell-one */
.upsell_user_review img {
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.index_book_img {
  transform: scale(1.2) translateX(5%);
  -webkit-transform: scale(1.2) translateX(5%);
  -moz-transform: scale(1.2) translateX(5%);
  -ms-transform: scale(1.2) translateX(5%);
  -o-transform: scale(1.2) translateX(5%);
}

.upsell_user_img img {
  aspect-ratio: 1 / .82;
}

.progress {
  background: #FDC59D;
  height: 30px;
}

.w_50 {
  width: 50px;
}

.h_50 {
  height: 50px;
}

.science_base_results {
  max-width: 570px;
  width: 100%;
  margin: auto;
}

.science_base_results .box {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.science_base_results .box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.science_base_results .box:not(:last-child) .icon::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 18px;
  width: 3px;
  height: 100px;
  background: var(--primary);
}

.science_base_results .box .icon img {
  width: 60%;
  position: relative;
  z-index: 2;
}

.science_base_results .box .content {
  background-color: var(--pastel_yellow);
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.upsell_review_img {
  width: 100%;
  aspect-ratio: 1 / .6;
  object-fit: cover;
  object-position: top;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1.3;
}

/* special_bonus */
.special_bonus {
  position: relative;
  overflow: hidden;
}

.special_bonus::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 1000px;
  background: url('../img/abstract.svg') no-repeat;
  background-size: 100%;
}

/* cart */
.cart_title {
  transform: translateY(-1px);
  padding: 8px 30px;
  margin: auto;
  min-width: 280px;
  max-width: fit-content;
  width: 80%;
  border-radius: 0 0 30px 30px;
  -webkit-border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  -ms-border-radius: 0 0 30px 30px;
  -o-border-radius: 0 0 30px 30px;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}

.cart_title.gray {
  background: linear-gradient(89.89deg, #9381c5 -40.23%, #b6a6d9 -2.18%, #10046c 17.69%, #190774 55.3%, #8b78c1 84.89%);
}

.cart_title.gold {
  background: linear-gradient(90deg, #E6D59B 0%, #B58728 100%);
}

.cart_fill {
  position: relative;
}

.cart_fill::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 82%;
  background: var(--skyblue);
}

/*  */
.grid_box5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.review_slider_img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seffect_box {
  transform: translateX(-20%);
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  -o-transform: translateX(-20%);
}

/* rejuv_journey_sec */
.rejuv_journey_sec {
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rejuv_journey_box {
  display: flex;
  align-items: center;
  gap: 45px;
}

.rejuv_journey_box .left_img {
  width: 220px;
  position: relative;
}

.rejuv_journey_box .left_img::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 2px;
  height: 140%;
  background: var(--bs-white);
}

.rejuv_journey_box .left_img img {
  width: 100%;
  aspect-ratio: 1/.5;
  object-fit: cover;
  object-position: 90%;
  border: 1px solid var(--bs-white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  display: block;
  position: relative;
  z-index: 9;
}

.rejuv_journey_box .left_img .inner_circle {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 15px;
  height: 15px;
  background: var(--bs-white);
  transform: translate(30%, -50%);
  border-radius: 50%;
}

.rejuv_journey_box .left_img .inner_circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--bs-white);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.rejuv_journey_box .content {
  flex: 1;
}

.rejuv_journey_sec .rejuv_journey_box:last-child .left_img::after {
  display: none;
}

.Synevra_MetaBoost_sec {
  background: url("../img/Synevra-MetaBoost-UPSELL-bg.png") no-repeat center;
  background-size: cover;
}
#disclaimer, 
#disclaimer * {
  background-color: transparent !important;
  color: #000 !important;
}

#disclaimer img {
  filter: invert(1) hue-rotate(180deg);
  filter: brightness(0.5); 
}

@media (max-width: 768px) {
  .cart_title{
    min-width: 100%!important;
  }
  #disclaimer img {
    display: none !important;
  }
 #disclaimer div:has(> img) {
    display: none !important;
    flex: 0 !important;
  }
}

.pricing_btn {
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

/* When the card is hovered, the button reacts too */
.pricing_btn:hover {
  transform: scale(1.05);
  filter: brightness(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}



