/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@font-face {
  font-family: SansSerifBldFLF;
  src: url("../webfonts/SansSerifBldFLF.otf");
}

@font-face {
  font-family: SansSerifBookFLF;
  src: url("../webfonts/SansSerifBookFLF.otf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* variables */
:root {
  --primary: #650832;
  --light: #fffbe4;
  --orange: #FF9D00;
  --yellow: #FFE036;
  --cream: #fff6c4;
  --cream2: #FFF7D1;
  --warm_sand: #d4c3af;
  --skyblue: #E9FAFA;
  --light_skyblue: #F2F2F2;
  --pastel_yellow: #FAEC8B;
  --light_peach: #F7EEDC;
  --pale_yellow: #FCF3C1;
  --skin: #F0D4AF;
  --red: #FF0D0D;
  --transition_3s: all 0.3s ease-in-out;
}

/* Main Code */
body {
  font-family: SansSerifBookFLF;
  background: var(--light);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: SansSerifBldFLF;
  color: var(--primary);
}

/* 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: #EDEADC;
}

.bg_light {
  background: var(--light) !important;
}

.bg_primary {
  background: var(--primary);
}

.bg_pink {
  background: #FFD0E3;
}

.bg_pastel_yellow {
  background: var(--pastel_yellow);
}

.txt_primary {
  color: var(--primary);
}

.txt_primary_i {
  color: var(--primary) !important;
}

.txt_red {
  color: var(--red) !important;
}

.txt_orange {
  color: var(--orange);
}

.txt_blue {
  color: #011632;
}

.txt_aqua {
  color: #56BEBF;
}

.txt_pastel_yellow {
  color: var(--pastel_yellow);
}

.txt_skin {
  color: var(--skin);
}

.txt_skyblue {
  color: var(--skyblue);
}

.txt_gray {
  color: #364A4180;
}

.border_ws {
  border: 1px solid var(--warm_sand);
}

.border_primary {
  border: 1px solid var(--primary);
}

.border_yellow {
  border: 1px solid var(--yellow);
}

.border_red {
  border: 1px solid var(--red);
}

.fw_600 {
  font-weight: 600;
}

.fw_500 {
  font-weight: 500;
}

.fw_light {
  font-weight: 400;
}

.w-fit {
  width: fit-content;
}

.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: 8px 30px;
  text-decoration: none;
  background: var(--primary);
  text-transform: capitalize;
  font-size: 18px;
  font-family: SansSerifBldFLF;
  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);
}

.btn_secondary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--bs-white);
}

.btn_silver {
  background: #E0E0E1;
  border: 1px solid #E0E0E1;
  color: var(--primary);
}

.btn_primary:hover {
  background: var(--warm_sand);
  color: var(--primary);
}

.btn_secondary:hover {
  background: var(--warm_sand);
  color: var(--primary);
}

.btn_silver:hover {
  background: var(--cream);
  color: var(--primary);
  border-color: var(--primary);
}

.btn_yellow {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--yellow);
}

.font_source_s {
  font-family: "Source Serif 4", serif;
}

.f_source_serif {
  font-family: "Source Serif 4", serif;
}

.font_SansSerifBookFLF {
  font-family: SansSerifBookFLF;
}

.font_SansSerifBldFLF {
  font-family: SansSerifBldFLF;
}

.font_frank_ruhl {
  font-family: "Frank Ruhl Libre", serif;
}

.border_gold {
  border: 2px solid var(--yellow);
}

.bg_cream {
  background: var(--cream);
}

.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);
}

/* Header */
#header {
  top: 0;
  left: 0;
  background-color: #fffbe4dc;
  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;
  background: var(--pastel_yellow);
  border: 1px solid var(--primary);
  border-radius: 12px;
}

.site_logo img {
  max-width: 180px;
}

.site_logo {
  font-family: "Berkshire Swash", serif;
  text-decoration: none;
  color: var(--primary);
}

.nav_ul li a {
  padding: 10px 15px !important;
  position: relative;
  color: var(--primary);
  transition: var(--transition_3s);
  -webkit-transition: var(--transition_3s);
  -moz-transition: var(--transition_3s);
  -ms-transition: var(--transition_3s);
  -o-transition: var(--transition_3s);
  font-family: SansSerifBldFLF;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nav_ul li a:hover {
  background: var(--primary);
  color: var(--light);
}

.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;
}

/* 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 */
.pricing_table {
  display: flex;
  gap: 20px;
}

.pricing_table>div {
  width: 28%;
}

.pricing_table>div>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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: 16px;
  text-decoration: none;
  display: block;
  background: var(--orange);
  color: var(--light);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  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;
}

.pricing_btn:hover {
  background: var(--primary);
  color: var(--light);
}

.pricing_btn.no_hover {
  background: var(--orange);
}

.pricing_btn_yellow {
  font-family: SansSerifBldFLF;
  color: var(--primary);
  border: 1px solid var(--yellow);
  background: var(--yellow);
}

.pricing_btn_yellow:hover {
  border-color: var(--primary);
}

.pricing_btn_primary {
  font-family: SansSerifBldFLF;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--primary);
}

.pricing_btn_primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--primary);
}

.product_img {
  height: 250px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img1 {
  height: 318px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product_img2 {
  height: 280px;
  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;
}

/* 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;
  font-family: SansSerifBldFLF;
  display: flex;
}

.steps .step_box {
  padding: 12px 15px;
  background: var(--primary);
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 12px;
  color: var(--pastel_yellow);
}

.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(--pastel_yellow);
  color: var(--primary);
  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: 6px solid var(--primary);
  position: relative;
  z-index: 2;
}

.steps .step_box.deactive {
  opacity: .5;
}

.steps .step_box.active>p {
  margin: 0 auto;
}

.steps .step_box .circle {
  font-family: "Inter", serif;
  font-weight: 900;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pastel_yellow);
  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(--primary);
}

.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 {
  border: none;
  background: var(--cream);
  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-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.7;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* footer */
.footer_link {
  background: var(--skin);
  color: var(--primary);
  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: var(--primary);
  color: var(--bs-white);
}

.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%) translateY(-14%);
  -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: 26px;
}

.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: 150px;
  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.2rem;
  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.5;
}


/* Upsell timer design */
 .timers-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      padding: 30px;
    }

    .timer {
      display: flex;
      gap: 10px;
    }

    .digit {
      width: 105px;
      height: 140px;
      background-color: #b70032;
      color: #fff;
      font-size: 96px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
      position: relative;
    }
    .staticdigit {
      width: fit-content;
      height: 140px;
      color: #650c31;
      font-size: 96px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
      position: relative;
    }

    .digit::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      opacity: 0.2;
    }

@media (max-width: 768px) {
  .digit {
      width: 60px;
      height: 80px;
      font-size: 50px;
    }
}
/* Upsell timer design end */


footer #disclaimer .main.container>div {
  background-color: transparent!important;
  box-shadow: none!important;
}
footer #disclaimer .bg-text-disclaimer {
  color: #333!important;
  font-family: 'Ubuntu', sans-serif!important;
}
footer #disclaimer .bg-img-disclaimer {
  display: none!important;
}