@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;

  /*** COLORS ***/
  --dk-blue: #1b4195;
  --md-blue: #161616;
  --lt-blue: #c7e1e4;
  --super-lt-blue: #e9f7fb;
  --super-gray: #333333;
  --dk-gray: #424242;
  --md-gray: #4c4c4c;
  --lt-gray: #838383;
  --white: #ffffff;
}

h1 {
  font-size: 4.5em;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 2.375em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-size: 2.5em;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: 2.25em;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

h5 {
  font-size: 1.5em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

p {
  font-size: 1em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.time-conceal,
.button-conceal {
  display: none;
}

/* === Global Reset (Prevent Overflow) === */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

/* ////////// navbar /////////////  */
/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 15vw 1em 2vw;
  background-color: #e9f7fa;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo spacing from left */
.logo-container {
  padding-left: 0.8em;
}

/* Menu styles */
.menu {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding-right: 2em; /* Extra right space */
}

.menu li a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu li a:hover {
  color: #000000;
  font-weight: 600;
}

/* Hamburger button */
.menu-button-container {
  display: none;
  height: 30px;
  width: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #000;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  content: "";
  transition: all 0.3s ease;
}

.menu-button::before {
  transform: translateY(-10px);
}

.menu-button::after {
  transform: translateY(6px);
}

/* Hide toggle checkbox */
#menu-toggle {
  display: none;
}

/* Mobile menu */
@media (max-width: 768px) {
  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #e9f7fa;
    position: relative;
    z-index: 99;
  }

  .top-nav > div img {
    max-height: 40px;
    margin-left: 4px; /* Slight space from left */
    vertical-align: middle;
  }

  .menu-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px; /* Slight space from right */
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #e9f7fa;
    padding: 1em 2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  #menu-toggle:checked + .menu-button-container + .menu {
    display: flex;
  }

  .menu li {
    padding: 0.5em 0;
  }
}

/* ------------- NAv bar ----------- */
/* --------------mobile version hero----------- */
@media (max-width: 768px) {
  .dont-wait-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1rem 0.3rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dont-wait-section-copy {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .dont-wait-section-copy h3,
  .dont-wait-section-copy h4,
  .dont-wait-section-copy h5 {
    padding: 0 0.9rem !important;
    margin: 0.3rem auto !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    line-height: 1.1 !important; /* more space between lines */
  }

  .dont-wait-section-copy h3 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
  }

  .dont-wait-section-copy h4 {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
  }

  .dont-wait-section-copy h5 {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
  }

  .dont-wait-section img {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    margin-bottom: 1rem !important;
    /*margin-left: -2.5% !important;*/
  }

  .bundle-section .headline,
  .bundle-section .sub-headline {
    font-size: 1.2rem !important;
    padding: 0 0.2rem !important;
    margin-top: 0.3rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 648px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.3rem;
    width: 100%;
    box-sizing: border-box;
  }
}
/* --------------mobile version hero----------- */

/* ------------------row 3 items  ----------   */
/* Section Padding */
.mob-space {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Flex Container */
.container.mob-space {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* More space between items */
  flex-wrap: nowrap;
}

/* Flex Item */
.mobile-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

/* Mobile Layout (image left, content right) */
@media only screen and (max-width: 768px) {
  .bundle-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    max-width: 100%;
  }

  .bundle-content {
    width: 60%;
    padding-left: 10px;
  }

  .product-image {
    width: 80%;
    margin-bottom: 0;
    align-self: center;
  }

  .bundle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
  }

  .bundle-card.featured .bundle-badge {
    width: auto;
    right: 10px;
  }

  .featured-badge {
    top: 10px;
    right: auto;
    left: 10px;
  }

  .bundle-title,
  .pricing,
  .shipping-info,
  .supply-duration,
  .benefits {
    text-align: left;
  }

  .bundles-container {
    flex-direction: column;
    gap: 15px;
  }
}
/* Checkmark Image */
.mobile-flex img.check {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.mobile-flex img.check:hover {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.2);
  cursor: pointer;
}
.check-hover {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.check-hover:hover {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.2);
  cursor: pointer;
}

/* Heading Text */
.mobile-flex h4 {
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  color: white;
  text-transform: uppercase;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .mob-space {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .container.mob-space {
    gap: 1.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile-flex {
    gap: 0.3rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mobile-flex h4 {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .mobile-flex img.check {
    width: 22px;
    height: 22px;
  }
}

/* ------------------row 3 items  ----------   */

/* -------------ing------------------ */
/* Grid container with 7 columns */
.ingredients-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.5rem 1.5rem;
  padding: 3rem 2rem;
}

/* Individual ingredient block */
.ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image styles - circle, outline, 1.5x larger */
.ingredient img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother easing */
  filter: brightness(0.95); /* Slightly dimmed default state */
}

.ingredient img:hover {
  transform: scale(1.15); /* 15% zoom */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  filter: brightness(1); /* Full brightness on hover */
  border-color: var(--secondary-color); /* Change border color */
  cursor: pointer;
  z-index: 10; /* Bring to front if overlapping */
}
/* Pill label */
.ingredient-label {
  margin-top: 0.75rem;
  background-color: #55aeb2;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.ingredient-label:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile view fix for ingredients */
@media (max-width: 768px) {
  .ingredients-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    justify-items: center;
    padding: 0 0.8rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
    margin-top: 0.8rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .ingredient {
    grid-column: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .ingredient:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .ingredient-label {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background-color: #55aeb2;
    color: white;
    border-radius: 8px;
    margin-top: 0.3rem;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 0 !important;
  }

  /* Additional fix if section wrapper has spacing */
  .ingredients-wrapper + * {
    margin-top: 0 !important;
  }
}

/* -------------ing------------------ */

/* -------------- img block ---------  */
.discount-banner {
  background-color: #020a6c;
  position: relative;
  max-height: 250px;
  height: 250px;
  overflow: visible; /* <-- allow head to overflow */
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1rem;
  flex-wrap: wrap;
  position: relative;
}

.text-block {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.text-block h2 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.text-block h1 {
  font-size: 3rem;
  margin-top: 0.3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #ffbd00;
}

.img-block {
  flex: 1 1 40%;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
}

.img-block img {
  height: 100%;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: -125px; /* Head visible outside the banner */
  right: 0;

  transform: scale(1.5); /* Makes image visually bigger */
  transform-origin: top right;
  z-index: 2;
}

@media (max-width: 768px) {
  .discount-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem !important; /* Removed top & bottom padding */
    margin: 0 !important;
    text-align: center;
    background-color: #020a6c;
    overflow: hidden;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
  }

  .text-block h2 {
    font-size: 1.45rem !important; /* Slightly bigger */
    color: #ffffff !important;
    font-weight: 500 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .text-block h1 {
    font-size: 1.6rem !important; /* Slightly bigger */
    color: #ffd700 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .highlight {
    color: #ffd700 !important;
  }

  .img-block {
    display: none !important; /* Hide image on mobile */
  }
}

/* -------------- img block ---------  */
/* --------------------------Box  Left Right ------------ */
@media (max-width: 768px) {
  .bundle-save-section {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem 0.5rem !important;
    gap: 1rem !important;
  }

  .bundle-save-section img:first-child {
    width: 85% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .bundle-save-section-copy {
    padding: 0 !important;
    margin-top: 1rem !important;
  }

  .bundle-save-section-copy .headline {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
  }

  .bundle-save-section-copy ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 !important;
  }

  .bundle-save-section-copy ul li {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
    font-weight: 500 !important;
  }

  .bundle-save-section-copy img {
    width: 90px !important;
    height: auto !important;
    margin: 0.5rem auto !important;
    display: block !important;
  }

  .bundle-save-section-copy .btn {
    font-size: 0.85rem !important;
    padding: 0.6rem 1.2rem !important;
    margin-top: 0.8rem !important;
  }
}

/* --------------------------Box  Left Right ------------ */

/* Guarantee Section */
.guarantee-wrapper {
  background: linear-gradient(135deg, #e9f7fa 0%, #e9f7fa 100%);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guarantee-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.guarantee-box {
  background: linear-gradient(135deg, #020a6c 0%, #0049a0 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.guarantee-image-box {
  margin-bottom: 2rem;
}

.guarantee-image {
  width: 180px;
  max-width: 100%;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.guarantee-text-box {
  padding: 0 1rem;
}
@media (max-width: 648px) {
  .guarantee-text-box {
    padding: 0;
  }
}

.guarantee-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #daf7a6;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.guarantee-highlight {
  color: #daf7a6;
}

.guarantee-description {
  font-size: 0.9rem;
  color: #cbc3e3;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Certification Badges Section */
.certification-wrapper {
  background-color: #e9f7fa;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certification-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.certification-image-box {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.certification-image {
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.certification-image:hover {
  transform: scale(1.02);
}

/* ---------------faq-----------  */

/* Faq section */

.bioheal-faq-container {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, #020a6c, #1569c1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bioheal-faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.bioheal-faq-list {
  margin: 0 auto;
  max-width: 800px;
}

.bioheal-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bioheal-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bioheal-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #eff2e9;
  transition: all 0.3s ease;
}

.bioheal-faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  stroke: #eefbd6;
  flex-shrink: 0;
  margin-left: 1rem;
}

.bioheal-faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #020a6c;
}

.bioheal-faq-item.active {
  background: rgba(226, 221, 221, 0.05);
}

.bioheal-faq-item.active .bioheal-faq-question {
  color: #eefbd6;
}

.bioheal-faq-item.active .bioheal-faq-content {
  max-height: 300px;
  opacity: 1;
  padding: 1.25rem;
}

.bioheal-faq-item.active .bioheal-faq-chevron {
  transform: rotate(180deg);
}

.bioheal-faq-answer {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

/* Add a subtle hover effect to questions */
.bioheal-faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Add a nice transition when expanding/collapsing */
.bioheal-faq-content {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .bioheal-faq-container {
    padding: 40px 15px;
  }

  .bioheal-faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .bioheal-faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .bioheal-faq-answer {
    font-size: 0.95rem;
  }
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* -------faq--------  */

/* ----------testimonial------------ */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow Semi Condensed", sans-serif;
}

a:link,
a:active,
a:visited,
a:hover {
  color: #3f51b5;
}

.outerdiv {
  width: 100%;
  /* min-height: 100vh; */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerdiv {
  transform: scale(0.9);
  margin: 1rem;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 22rem);
  grid-template-columns: repeat(4, 17rem);
}

.eachdiv {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 5px 5px 20px #6d6b6b6b;
  color: white;
}

.div1 {
  background: #733fc8;
  grid-column: 1/3;
  grid-row: 1/2;
  background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-position-x: 25rem;
}

.div2 {
  background: #49556b;
  grid-column: 3/4;
  grid-row: 1/2;
}

.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}

.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}

.div5 {
  background: #18202d;
  grid-column: 2/4;
  grid-row: 2/3;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox p {
  margin: 0;
}

.detbox .name {
  color: hsl(0, 0%, 81%);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.detbox .name.dark {
  color: #49505a;
}

.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 50%;
  font-size: 0.8rem;
}

.detbox .designation.dark {
  color: #49505a;
}

.review h4 {
  font-size: 1.4rem;
  color: #f3deff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.review.dark h4 {
  color: #4b5258;
}

.review p {
  font-size: 0.95rem;
  color: #f3deff;
  font-weight: 500;
  opacity: 50%;
  line-height: 1.5;
}

.review.dark p {
  color: #0e0e0e;
}

.attribution {
  font-size: 1rem;
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}

.attribution a {
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
}

@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }

  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
  }

  .attribution {
    position: relative;
  }
}

/* -----------testimonial-------- */

/* --------------------ref---------------- */

/* Scientific References Section */
.container .row {
  background: linear-gradient(135deg, #e0e8ff 0%, #c5d7ff 35%, #a0f0ff 100%);
}
.bundle-section .heading,
.headline {
  text-align: center;
}
.bioheal-ref-bg {
  background: linear-gradient(135deg, #020a6c 0%, #1569c1 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.bioheal-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bioheal-ref-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bioheal-ref-logos-wrapper {
  background: rgba(198, 198, 198, 0.1);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bioheal-ref-logos {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bioheal-rating {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.bioheal-rating img {
  max-width: 200px;
  height: auto;
}

.bioheal-ref-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.bioheal-ref-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bioheal-ref-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-color: #daf7a6;
}

.bioheal-ref-link {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  display: block;
  transition: color 0.3s ease;
}

.bioheal-ref-link:hover {
  color: #daf7a6;
}

.bioheal-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #cbc3e3;
  margin-top: 3rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* ---------------ref---------------- */

/* Footer Section */
.bioheal-footer {
  background: linear-gradient(135deg, #020a6c 0%, #1569c1 100%);
  color: #daf7a6;
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bioheal-footer-logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bioheal-footer-nav {
  margin-bottom: 2rem;
}

.bioheal-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.bioheal-footer-nav a {
  color: #cbc3e3;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.bioheal-footer-nav a:hover {
  color: #8d9c72;
  background: rgba(255, 255, 255, 0.1);
}

.bioheal-social-links {
  margin-bottom: 2rem;
}

.bioheal-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cbc3e3;
  border-radius: 50%;
  margin: 0 0.5rem;
  color: #cbc3e3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bioheal-social-links a:hover {
  background-color: #ffffff;
  color: #ffffff;
  border-color: #bf40bf;
  transform: translateY(-3px);
}

.bioheal-footer-copyright {
  color: #aa98a9;
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bioheal-footer-copyright a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bioheal-footer-copyright a:hover {
  color: #daf7a6;
}

.content-padding {
  padding: 0 10vw;
}

#top-banner {
  background: #55afb2;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU1YWZiMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ1JSIgc3RvcC1jb2xvcj0iI2M3ZTFlNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(left, #55afb2 0%, #c7e1e4 45%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, #55afb2),
    color-stop(45%, #c7e1e4)
  );
  background: -webkit-linear-gradient(left, #55afb2 0%, #c7e1e4 45%);
  background: -o-linear-gradient(left, #55afb2 0%, #c7e1e4 45%);
  background: -ms-linear-gradient(left, #55afb2 0%, #c7e1e4 45%);
  background: linear-gradient(to right, #55afb2 0%, #c7e1e4 45%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#55afb2', endColorstr='#c7e1e4', GradientType=1);
  border-bottom: solid 2px var(--dk-blue);
  padding: 1em 2em;
  position: sticky;
  top: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  gap: 5vw;
  z-index: 1000;
}

#top-banner img {
  height: 2.625em;
}

.banner-cta {
  background-color: var(--white);
  color: var(--dk-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.25em 0.75em;
  border: 1px solid var(--dk-blue);
  border-radius: 5px;
  cursor: pointer;
}

.banner-cta:hover {
  background-color: var(--dk-blue);
  color: var(--white);
}

.headline-section {
  background-color: var(--white);
  width: 100vw;
  padding: 1.2em 2em;
  text-align: center;
  color: var(--dk-blue);
  font-family: "Montserrat", sans-serif;
}

.headline-section h2 {
  line-height: 0.75em;
  font-family: "Montserrat", sans-serif;
}

.headline-section h1 {
  line-height: 1em;
  font-family: "Montserrat", sans-serif;
}

.video-section {
  background-color: var(--super-lt-blue);
  min-height: 60vh;
  border-top: 1px solid var(--md-blue);
  border-bottom: 1px solid var(--md-blue);
  display: flex;
  align-items: flex-start;
  /*padding-left:5vw;
	padding-right:5vw;*/
}

.video-box {
  position: relative;
  width: 100%;
  max-width: 50vw;
  margin: 0.75em auto 1em;
  /*display: flex;
    flex-direction: column;
    justify-content: space-between;
	padding-top: 39%;*/
}

.video-box iframe {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--md-blue);
  /*height: 100%;*/
  width: 100%;
  aspect-ratio: 16/9;
}

.bounce {
  position: relative;
  animation: updown 1s ease infinite;
  color: red;
}

@keyframes updown {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.video-section .ftc {
  font-size: 0.5rem;
  color: var(--md-gray);
  margin-top: 1em;
  font-family: "Montserrat", sans-serif;
}

.frustration-form {
  padding: 1vh 2vw;
  font-family: "Montserrat", sans-serif;
  width: 55vw;
  /*display: flex;
    flex-direction: column;
    justify-content: space-between;
	width:40vw;*/
}

.frustration-form h2 {
  text-transform: uppercase;
  color: var(--md-blue);
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.frustration-form .important {
  font-size: 0.75em;
  color: var(--lt-gray);
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.radio-box {
  color: var(--md-gray);
  font-size: 1.1em;
  line-height: 1.5em;
  font-family: "Montserrat", sans-serif;
}

.form-field {
  margin: 1em 0;
  font-family: "Montserrat", sans-serif;
}

.form-field .row {
  margin-bottom: 1.2em;
}

.form-field input {
  margin: 0.25em 0;
  font-family: "Montserrat", sans-serif;
}

.form-field .btn-submit {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  color: var(--white);
  border-color: var(--md-blue);
  background-color: var(--md-blue);
  border-radius: 5px;
  font-weight: 600;
  width: 100%;
}

.form-field .btn-submit span {
  font-size: 17px;
  font-weight: 300;
}

/*******  LOADING SPINNER START  ******/
.lds-default {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(2.1);
  }
}

/*******  LOADING SPINNER END  ******/
.main-hero-container {
  background: linear-gradient(135deg, #e0e8ff 0%, #c5d7ff 35%, #a0f0ff 100%);

  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.dont-wait-section {
  flex-wrap: wrap;
  min-height: 90vh;
  /* background: linear-gradient(135deg, #e0e8ff 0%, #c5d7ff 35%, #a0f0ff 100%); */
  padding: 4em 5vw;
  gap: 2em;
}

.image-container {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.image-container img:hover {
  transform: scale(1.1);
}

.dont-wait-section-copy {
  flex: 1 1 50%;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
}

.dont-wait-section h3 {
  color: var(--md-blue);
  font-size: 2.75em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1em;
}

.dont-wait-section h3 span:nth-child(1) {
  font-weight: 400;
  color: #222;
}

.dont-wait-section h3 span:nth-child(2) {
  color: var(--dk-blue);
  font-weight: 900;
}

.dont-wait-section h3 span:nth-child(3) {
  color: #000;
  font-weight: 800;
}

.dont-wait-section h4 {
  color: var(--dk-blue);
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.3em;
}

.dont-wait-section h5 {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.6em;
  color: #333;
}

.dont-wait-section h5 span {
  font-weight: 800;
  color: #000;
}

.dont-wait-section-copy img {
  max-width: 100%;
  margin-top: 1em;
}

.top-3-section {
  background-image: url(../images/top-3-ballet_side.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: left;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-3-section-copy {
  font-family: "Montserrat", sans-serif;
  max-width: 50vw;
  padding: 0 1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

.top-3-section-copy div {
  width: 100%;
  color: var(--dk-blue);
}

.top-3-section-copy img {
  width: 3.5em;
}

.top-3-section-copy h2 {
  color: var(--md-blue);
  font-size: 2.25em;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1em;
}

.top-3-section-copy h5 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 0.5em;
  margin-left: -0.4em;
}

.top-3-section-copy h4 {
  font-size: 1.85em;
  font-weight: 400;
  color: var(--md-blue);
}

.top-3 {
  display: inline-flex;
  gap: 2em;
  align-items: flex-start;
}

/*.bundle-section {*/
/*    font-family: 'Montserrat', sans-serif;*/
/*    !*background-color: var(--super-lt-blue);*!*/
/*    background: linear-gradient(135deg, #e0e8ff 0%, #c5d7ff 35%, #a0f0ff 100%);*/
/*    min-height: 70vh;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    padding-top: 2em;*/
/*    padding-bottom: 2em;*/
/*}*/

/*.bundle-section .headline {*/
/*    text-align: center;*/
/*    line-height: 1.2em;*/
/*    color: var(--md-blue);*/
/*    font-size: 2.0625em;*/
/*    font-weight: 800;*/
/*    text-transform: uppercase;*/
/*    max-width: 90vw;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    margin-top: 1em;*/
/*    margin-bottom: .5em;*/
/*}*/

/*.bundle-section .sub-headline {*/
/*    text-align: center;*/
/*    line-height: 1.1em;*/
/*    color: var(--dk-blue);*/
/*    font-size: 1.5625em;*/
/*    font-weight: 400;*/
/*    max-width: 80vw;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*.bundles {*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*    align-items: center;*/
/*    gap: 2em;*/
/*    width: 100%;*/
/*    margin-top: 2em;*/
/*}*/

/*.bundle-1, .bundle-3 {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    background-color: var(--lt-blue);*/

/*    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNTVhZmIyIiBzdG9wLW9wYWNpdHk9IjAuMiIvPgogICAgPHN0b3Agb2Zmc2V0PSI3JSIgc3RvcC1jb2xvcj0iIzU1YWZiMiIgc3RvcC1vcGFjaXR5PSIwLjIiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjZDlmMmY3IiBzdG9wLW9wYWNpdHk9IjAuMiIvPgogICAgPHN0b3Agb2Zmc2V0PSI4OCUiIHN0b3AtY29sb3I9IiM1NWFmYjIiIHN0b3Atb3BhY2l0eT0iMC4yIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NWFmYjIiIHN0b3Atb3BhY2l0eT0iMC4yIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);*/
/*    background: -moz-linear-gradient(-45deg, rgba(85, 175, 178, 0.2) 0%, rgba(85, 175, 178, 0.2) 7%, rgba(217, 242, 247, 0.2) 49%, rgba(85, 175, 178, 0.2) 88%, rgba(85, 175, 178, 0.2) 100%);*/
/*    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(85, 175, 178, 0.2)), color-stop(7%, rgba(85, 175, 178, 0.2)), color-stop(49%, rgba(217, 242, 247, 0.2)), color-stop(88%, rgba(85, 175, 178, 0.2)), color-stop(100%, rgba(85, 175, 178, 0.2)));*/
/*    background: -webkit-linear-gradient(-45deg, rgba(85, 175, 178, 0.2) 0%, rgba(85, 175, 178, 0.2) 7%, rgba(217, 242, 247, 0.2) 49%, rgba(85, 175, 178, 0.2) 88%, rgba(85, 175, 178, 0.2) 100%);*/
/*    background: -o-linear-gradient(-45deg, rgba(85, 175, 178, 0.2) 0%, rgba(85, 175, 178, 0.2) 7%, rgba(217, 242, 247, 0.2) 49%, rgba(85, 175, 178, 0.2) 88%, rgba(85, 175, 178, 0.2) 100%);*/
/*    background: -ms-linear-gradient(-45deg, rgba(85, 175, 178, 0.2) 0%, rgba(85, 175, 178, 0.2) 7%, rgba(217, 242, 247, 0.2) 49%, rgba(85, 175, 178, 0.2) 88%, rgba(85, 175, 178, 0.2) 100%);*/
/*    background: linear-gradient(135deg, rgba(85, 175, 178, 0.2) 0%, rgba(85, 175, 178, 0.2) 7%, rgba(217, 242, 247, 0.2) 49%, rgba(85, 175, 178, 0.2) 88%, rgba(85, 175, 178, 0.2) 100%);*/
/*    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3355afb2', endColorstr='#3355afb2', GradientType=1);*/

/*    border-radius: 10px;*/
/*    border: 1px solid var(--md-blue);*/
/*    text-align: center;*/
/*    min-height: 50vh;*/
/*    max-width: none;*/
/*    width: 300px;*/
/*    height: 465px;*/
/*}*/

/*.bundle-1::after {*/
/*    content: url('../images/side-swipe_good.png');*/
/*    position: relative;*/
/*    margin-left: 275px;*/
/*    margin-top: -450px;*/
/*}*/

/*.bundle-1 img {*/
/*    width: 75%;*/
/*    margin-top: -1.75em;*/
/*}*/

/*.bundle-1 .btn-info {*/
/*    background-color: var(--dk-blue);*/
/*    color: var(--white);*/
/*    font-size: 1.5em;*/
/*    font-weight: 700;*/
/*    width: 110%;*/
/*    margin: 0.5em 0 1em;*/
/*    border: 0;*/
/*}*/

/*.bundle-1 .btn-info a {*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*}*/

/*.bundle-3::after {*/
/*    content: url('../images/side-swipe_better.png');*/
/*    position: relative;*/
/*    margin-left: 275px;*/
/*    margin-top: -450px;*/
/*}*/

/*.bundle-3 img {*/
/*    width: 75%;*/
/*    margin-top: -1.75em;*/
/*}*/

/*.bundle-3 .btn-info {*/
/*    background-color: var(--dk-blue);*/
/*    color: var(--white);*/
/*    font-size: 1.5em;*/
/*    font-weight: 700;*/
/*    width: 110%;*/
/*    margin: 0.5em 0 1em;*/
/*    border: 0;*/
/*}*/

/*.bundle-6 {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    background-color: var(--lt-blue);*/

/*    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNTVhZmIyIiBzdG9wLW9wYWNpdHk9IjAuMzUiLz4KICAgIDxzdG9wIG9mZnNldD0iNyUiIHN0b3AtY29sb3I9IiM1NWFmYjIiIHN0b3Atb3BhY2l0eT0iMC4zNSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MiUiIHN0b3AtY29sb3I9IiNkOWYyZjciIHN0b3Atb3BhY2l0eT0iMC4zNSIvPgogICAgPHN0b3Agb2Zmc2V0PSI2OSUiIHN0b3AtY29sb3I9IiNkOWYyZjciIHN0b3Atb3BhY2l0eT0iMC4zNSIvPgogICAgPHN0b3Agb2Zmc2V0PSI4OCUiIHN0b3AtY29sb3I9IiM1NWFmYjIiIHN0b3Atb3BhY2l0eT0iMC4zNSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNTVhZmIyIiBzdG9wLW9wYWNpdHk9IjAuMzUiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);*/
/*    background: -moz-linear-gradient(-45deg, rgba(85, 175, 178, 0.35) 0%, rgba(85, 175, 178, 0.35) 7%, rgba(217, 242, 247, 0.35) 52%, rgba(217, 242, 247, 0.35) 69%, rgba(85, 175, 178, 0.35) 88%, rgba(85, 175, 178, 0.35) 100%);*/
/*    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(85, 175, 178, 0.35)), color-stop(7%, rgba(85, 175, 178, 0.35)), color-stop(52%, rgba(217, 242, 247, 0.35)), color-stop(69%, rgba(217, 242, 247, 0.35)), color-stop(88%, rgba(85, 175, 178, 0.35)), color-stop(100%, rgba(85, 175, 178, 0.35)));*/
/*    background: -webkit-linear-gradient(-45deg, rgba(85, 175, 178, 0.35) 0%, rgba(85, 175, 178, 0.35) 7%, rgba(217, 242, 247, 0.35) 52%, rgba(217, 242, 247, 0.35) 69%, rgba(85, 175, 178, 0.35) 88%, rgba(85, 175, 178, 0.35) 100%);*/
/*    background: -o-linear-gradient(-45deg, rgba(85, 175, 178, 0.35) 0%, rgba(85, 175, 178, 0.35) 7%, rgba(217, 242, 247, 0.35) 52%, rgba(217, 242, 247, 0.35) 69%, rgba(85, 175, 178, 0.35) 88%, rgba(85, 175, 178, 0.35) 100%);*/
/*    background: -ms-linear-gradient(-45deg, rgba(85, 175, 178, 0.35) 0%, rgba(85, 175, 178, 0.35) 7%, rgba(217, 242, 247, 0.35) 52%, rgba(217, 242, 247, 0.35) 69%, rgba(85, 175, 178, 0.35) 88%, rgba(85, 175, 178, 0.35) 100%);*/
/*    background: linear-gradient(135deg, rgba(85, 175, 178, 0.35) 0%, rgba(85, 175, 178, 0.35) 7%, rgba(217, 242, 247, 0.35) 52%, rgba(217, 242, 247, 0.35) 69%, rgba(85, 175, 178, 0.35) 88%, rgba(85, 175, 178, 0.35) 100%);*/
/*    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5955afb2', endColorstr='#5955afb2', GradientType=1);*/

/*    border-radius: 10px;*/
/*    border: 1px solid var(--md-blue);*/
/*    text-align: center;*/
/*    min-height: 65vh;*/
/*    max-width: none;*/
/*    width: 400px;*/
/*    height: 595px;*/
/*}*/

/*.bundle-6:hover, .bundle-3:hover, .bundle-1:hover {*/
/*    -webkit-box-shadow: inset 0px 0px 20px 2px rgba(43, 88, 89, 0.6);*/
/*    box-shadow: inset 0px 0px 20px 2px rgba(43, 88, 89, 0.6);*/
/*}*/

/*.bundle-6::after {*/
/*    content: url('../images/side-swipe_best.png');*/
/*    position: relative;*/
/*    margin-left: 375px;*/
/*    margin-top: -520px;*/
/*}*/

/*.bundle-6 img {*/
/*    width: 100%;*/
/*    margin-top: -1.75em;*/
/*}*/

/*.bundle-6 .btn-info {*/
/*    background-color: var(--dk-blue);*/
/*    color: var(--white);*/
/*    font-size: 1.5em;*/
/*    font-weight: 700;*/
/*    width: 110%;*/
/*    margin: 1.5em 0 0;*/
/*    border: 0;*/
/*}*/

/*.bundle-6 .bundle-title {*/
/*    font-size: 2em;*/
/*}*/

/*.bundle-6 .btn-info:hover {*/
/*    !*padding:.25em;*/
/*	border:2px solid var(--md-blue);*!*/
/*    -webkit-box-shadow: 0px 0px 14px -1px rgba(43, 88, 89, 0.6);*/
/*    box-shadow: 0px 0px 14px -1px rgba(43, 88, 89, 0.6);*/
/*    background-color: var(--white);*/
/*    color: var(--dk-blue);*/
/*}*/

/*.bundle-3 .btn-info:hover, .bundle-1 .btn-info:hover {*/
/*    box-sizing: border-box;*/
/*    !*margin-top:0;*/
/* 	margin-bottom:.6em;*/
/* 	padding:.32em;*/
/* 	border:1px solid var(--md-blue);*!*/
/*    -webkit-box-shadow: 0px 0px 14px -1px rgba(43, 88, 89, 0.6);*/
/*    box-shadow: 0px 0px 14px -1px rgba(43, 88, 89, 0.6);*/
/*    background-color: var(--white);*/
/*    color: var(--dk-blue);*/
/*}*/

/*.bundle-3 .btn-info a, .bundle-1 .btn-info a, .bundle-6 .btn-info a {*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*}*/

/*.bundle-3 .btn-info a:hover, .bundle-1 .btn-info a:hover, .bundle-6 .btn-info a:hover {*/
/*    color: var(--dk-blue);*/
/*    text-decoration: none;*/
/*}*/

/*.bundle-title {*/
/*    background-color: var(--md-blue);*/
/*    font-size: 1.5em;*/
/*    line-height: 2.1em;*/
/*    color: var(--white);*/
/*    text-transform: uppercase;*/
/*    border-radius: 10px 10px 0 0;*/
/*    min-height: fit-content;*/
/*    font-weight: 700;*/
/*    width: 100%;*/
/*}*/

/*.bundle-was {*/
/*    font-size: 1.5em;*/
/*    font-weight: 400;*/
/*    text-decoration: line-through;*/
/*    color: var(--dk-blue);*/
/*    margin-top: .5em;*/
/*}*/

/*.bundle-is {*/
/*    font-size: 2.25em;*/
/*    font-weight: 900;*/
/*    color: var(--dk-blue);*/
/*    line-height: .75em;*/
/*}*/

/*.shipping {*/
/*    margin-top: 1em;*/
/*    font-size: 1.1em;*/
/*    font-weight: 700;*/
/*    text-transform: uppercase;*/
/*    color: var(--dk-blue);*/
/*    line-height: 1.5em;*/
/*}*/

/*.supply {*/
/*    font-size: 1.1em;*/
/*    font-weight: 300;*/
/*    color: var(--dk-blue);*/
/*}*/

/*.supply-disclaimer {*/
/*    text-align: center;*/
/*    font-size: .8em;*/
/*    font-weight: 300;*/
/*    margin: 3em 0 0;*/
/*    color: var(--dk-blue);*/
/*}*/

/* Modern Bundle Section CSS */
:root {
  --primary-color: #55afb2;
  --primary-dark: #438a8d;
  --primary-light: #d9f2f7;
  --secondary-color: #1b4195;
  --accent-color: #ff6b35;
  --text-dark: #2b5859;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: var(--light-gray);
}
.product-content-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.product-card {
  background: #f9f8da;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: sans-serif;
  border: linear-gradient(135deg, #020a6c 0%, #0049a0 100%);
}
.product-card:hover {
  transform: scale(1.02) rotate(0deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card-left,
.product-card-right {
  background-color: #fff;
}
.product-card-left .product-header,
.product-card-right .product-header {
  background: linear-gradient(135deg, #0049a0 0%, #0049a0 100%);
}

.product-header {
  background: linear-gradient(135deg, #5462ff 0%, #0049a0 100%);
  text-align: center;
  padding: 1.2rem 1rem;
  color: white;
}

.product-header h3 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-header p {
  font-size: 1.4rem;
  margin-top: 0.3rem;
}

.product-image {
  width: 100%;
  position: relative;
  text-align: center;
  padding: 1.2rem 1rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #0049a0;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
}

.product-details {
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
  padding: 0 1.5rem;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.product-price h4 {
  text-align: center;
  font-size: 6rem;
  color: #0049a0;

  font-weight: bold;
}

.price-info {
  text-align: left;
}

.product-bonus {
  font-size: 1.4em;
  color: #0049a0;
  text-align: left;
  margin: 0;
  font-weight: 600;
}

.buy-now-btn {
  margin-top: 10px;
}

.btn-buy:hover {
  background-color: #f0b900;
}

.click-icon {
  margin-left: 0.6rem;
  font-size: 1.3rem;
}
.other-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.free-shipping {
  font-size: 1.3rem;
  color: #444;
  margin-top: 1rem;
}

.product-total {
  margin-top: 0.5rem;
  font-size: 1.6rem;
}

.strikethrough {
  text-decoration: line-through;
  color: #999;
}

.total-now {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
.payment-icons {
  background-color: #fff;
  margin-bottom: 10px;
}
.payment-icons img {
  margin-top: 1.4rem;
  width: 100%;
  max-width: 240px;
}

.hidden {
  visibility: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  display: inline-block;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.guarantee {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.payment-icons img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.product-total {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-light);
  margin-right: 0.5rem;
}

.bold {
  font-weight: bold;
}

.shipping {
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 100%;
  }
}

/* Base Styles */
.bundle-section {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #e9f7fa 0%, #c7e1e4 100%);
  padding: 3rem 1rem;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.bundle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg4NSwgMTc1LCAxNzgsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+");
  opacity: 0.5;
  z-index: 0;
}

.bundle-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.sub-headline {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #ff8c42);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

.bundles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bundle-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  max-width: 350px;
  position: relative;
  border: 1px solid var(--primary-color);
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bundle-card.featured {
  border: 2px solid var(--secondary-color);
}

.bundle-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: center;
  width: 120px;
  text-align: center;
  z-index: 2;
}

.bundle-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bundle-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-align: center;
  text-transform: uppercase;
}

.product-image {
  margin: 0 auto 1.5rem;
  position: relative;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bundle-card:hover .product-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing {
  margin: 1rem 0;
  text-align: center;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.discounted-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.savings {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

.shipping-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin: 0.5rem 0;
}

.supply-duration {
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.benefits li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.add-to-cart {
  background: linear-gradient(135deg, var(--secondary-color), #0d2b7a);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: auto;
  text-transform: uppercase;
}

.add-to-cart:hover {
  background: linear-gradient(135deg, #0d2b7a, var(--secondary-color));
  box-shadow: 0 5px 15px rgba(27, 65, 149, 0.4);
}

.bundle-card.featured .add-to-cart {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.bundle-card.featured .add-to-cart:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 3rem auto 1rem;
  max-width: 500px;
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.guarantee-badge img {
  width: 24px;
  height: 24px;
}

.supply-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bundles-container {
    max-width: 900px !important;
  }
}

@media (max-width: 992px) {
  .bundle-card {
    max-width: 45% !important;
  }

  .headline {
    font-size: 1.8rem !important;
  }

  .sub-headline {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 768px) {
  .bundles-container {
    flex-direction: column !important;
    align-items: center !important;
  }

  .bundle-card {
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .bundle-card:last-child {
    margin-bottom: 0 !important;
  }

  .headline {
    font-size: 1.6rem !important;
  }

  .sub-headline {
    font-size: 1rem !important;
  }
}
.add-to-cart a {
  text-decoration: none !important;
  color: white !important;
}
@media (max-width: 480px) {
  .bundle-section {
    padding: 2rem 0.5rem !important;
  }

  .headline {
    font-size: 1.4rem !important;
  }

  .discount-badge {
    font-size: 0.9rem !important;
    padding: 0.4rem 1rem !important;
  }

  .bundle-content {
    padding: 1rem !important;
  }

  .discounted-price {
    font-size: 1.8rem !important;
  }

  .original-price {
    font-size: 1rem !important;
  }
}

/* Modern Bundle Section CSS */
/*:root {*/
/*    --primary-color: #55afb2;*/
/*    --primary-dark: #438a8d;*/
/*    --primary-light: #d9f2f7;*/
/*    --secondary-color: #217242;*/
/*    --accent-color: #ff6b35;*/
/*    --text-dark: #2b5859;*/
/*    --text-light: #6c757d;*/
/*    --white: #ffffff;*/
/*    --light-gray: #f8f9fa;*/
/*    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
/*    --transition: all 0.3s ease;*/
/*}*/

/* Base Styles */
/*.bundle-section {*/
/*    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;*/
/*    background: linear-gradient(135deg, #f5f9ff 0%, #e6f2ff 100%);*/
/*    padding: 3rem 1rem;*/
/*    color: var(--text-dark);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.bundle-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg4NSwgMTc1LCAxNzgsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');*/
/*    opacity: 0.5;*/
/*    z-index: 0;*/
/*}*/

/*.bundle-header {*/
/*    text-align: center;*/
/*    margin-bottom: 2.5rem;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.headline {*/
/*    font-size: 2.2rem;*/
/*    font-weight: 800;*/
/*    color: var(--text-dark);*/
/*    margin-bottom: 1rem;*/
/*    line-height: 1.3;*/
/*    text-transform: none;*/
/*    letter-spacing: -0.5px;*/
/*}*/

/*.sub-headline {*/
/*    font-size: 1.3rem;*/
/*    font-weight: 400;*/
/*    color: var(--text-light);*/
/*    max-width: 700px;*/
/*    margin: 0 auto 1.5rem;*/
/*    line-height: 1.5;*/
/*}*/

/*.discount-badge {*/
/*    display: inline-block;*/
/*    background: linear-gradient(135deg, var(--accent-color), #ff8c42);*/
/*    color: var(--white);*/
/*    padding: 0.5rem 1.5rem;*/
/*    border-radius: 50px;*/
/*    font-weight: 700;*/
/*    font-size: 1.1rem;*/
/*    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);*/
/*    margin-top: 1rem;*/
/*    animation: pulse 2s infinite;*/
/*}*/

/*.bundles-container {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    gap: 1.5rem;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.bundle-card {*/
/*    background: var(--white);*/
/*    border-radius: 12px;*/
/*    box-shadow: var(--shadow);*/
/*    overflow: hidden;*/
/*    transition: var(--transition);*/
/*    width: 100%;*/
/*    max-width: 350px;*/
/*    position: relative;*/
/*}*/

/*.bundle-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
/*}*/

/*.bundle-card.featured {*/
/*    border: 2px solid var(--primary-color);*/
/*}*/

/*.bundle-badge {*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: -30px;*/
/*    background: var(--secondary-color);*/
/*    color: var(--white);*/
/*    padding: 0.25rem 2rem;*/
/*    font-size: 0.85rem;*/
/*    font-weight: 700;*/
/*    transform: rotate(45deg);*/
/*    transform-origin: center;*/
/*    width: 120px;*/
/*    text-align: center;*/
/*    z-index: 2;*/
/*}*/

/*.bundle-content {*/
/*    padding: 1.5rem;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.bundle-title {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 1rem;*/
/*    color: var(--text-dark);*/
/*    text-align: center;*/
/*}*/

/*.product-image {*/
/*    margin: 0 auto 1.5rem;*/
/*    position: relative;*/
/*    text-align: center;*/
/*}*/

/*.product-image img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*    transition: var(--transition);*/
/*}*/

/*.bundle-card:hover .product-image img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.featured-badge {*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    background: var(--accent-color);*/
/*    color: var(--white);*/
/*    padding: 0.25rem 1rem;*/
/*    border-radius: 50px;*/
/*    font-size: 0.8rem;*/
/*    font-weight: 700;*/
/*    white-space: nowrap;*/
/*}*/

/*.pricing {*/
/*    margin: 1rem 0;*/
/*    text-align: center;*/
/*}*/

/*.original-price {*/
/*    font-size: 1.2rem;*/
/*    color: var(--text-light);*/
/*    text-decoration: line-through;*/
/*    margin-bottom: 0.25rem;*/
/*}*/

/*.discounted-price {*/
/*    font-size: 2.2rem;*/
/*    font-weight: 800;*/
/*    color: var(--primary-dark);*/
/*    line-height: 1;*/
/*}*/

/*.savings {*/
/*    font-size: 0.9rem;*/
/*    font-weight: 600;*/
/*    color: var(--accent-color);*/
/*    margin-top: 0.5rem;*/
/*}*/

/*.shipping-info {*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*    color: var(--secondary-color);*/
/*    text-align: center;*/
/*    margin: 0.5rem 0;*/
/*}*/

/*.supply-duration {*/
/*    font-size: 1rem;*/
/*    color: var(--text-light);*/
/*    text-align: center;*/
/*    margin-bottom: 1.5rem;*/
/*    font-weight: 500;*/
/*}*/

/*.benefits {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 1.5rem 0;*/
/*    flex-grow: 1;*/
/*}*/

/*.benefits li {*/
/*    padding: 0.5rem 0;*/
/*    position: relative;*/
/*    padding-left: 1.75rem;*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.5;*/
/*}*/

/*.benefits li::before {*/
/*    content: "✓";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    color: var(--secondary-color);*/
/*    font-weight: bold;*/
/*}*/

/*.add-to-cart {*/
/*    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));*/
/*    color: var(--white);*/
/*    border: none;*/
/*    padding: 1rem;*/
/*    font-size: 1.1rem;*/
/*    font-weight: 700;*/
/*    border-radius: 8px;*/
/*    cursor: pointer;*/
/*    transition: var(--transition);*/
/*    width: 100%;*/
/*    margin-top: auto;*/
/*}*/

/*.add-to-cart:hover {*/
/*    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));*/
/*    box-shadow: 0 5px 15px rgba(85, 175, 178, 0.4);*/
/*}*/

/*.bundle-card.featured .add-to-cart {*/
/*    background: linear-gradient(135deg, var(--secondary-color), #2e8b57);*/
/*}*/

/*.bundle-card.featured .add-to-cart:hover {*/
/*    background: linear-gradient(135deg, #2e8b57, var(--secondary-color));*/
/*}*/

/*.guarantee-badge {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 0.75rem;*/
/*    margin: 3rem auto 1rem;*/
/*    max-width: 500px;*/
/*    background: var(--white);*/
/*    padding: 0.75rem 1.5rem;*/
/*    border-radius: 50px;*/
/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);*/
/*    font-size: 0.9rem;*/
/*    font-weight: 500;*/
/*    color: var(--text-dark);*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.guarantee-badge img {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*}*/

/*.supply-disclaimer {*/
/*    text-align: center;*/
/*    font-size: 0.8rem;*/
/*    color: var(--text-light);*/
/*    margin-top: 2rem;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*!* Animations *!*/
/*@keyframes pulse {*/
/*    0% {*/
/*        transform: scale(1);*/
/*    }*/
/*    50% {*/
/*        transform: scale(1.05);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*!* Responsive Design *!*/
/*@media (max-width: 1200px) {*/
/*    .bundles-container {*/
/*        max-width: 900px;*/
/*    }*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .bundle-card {*/
/*        max-width: 45%;*/
/*    }*/

/*    .headline {*/
/*        font-size: 1.8rem;*/
/*    }*/

/*    .sub-headline {*/
/*        font-size: 1.1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .bundles-container {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    .bundle-card {*/
/*        max-width: 100%;*/
/*        margin-bottom: 1.5rem;*/
/*    }*/

/*    .bundle-card:last-child {*/
/*        margin-bottom: 0;*/
/*    }*/

/*    .headline {*/
/*        font-size: 1.6rem;*/
/*    }*/

/*    .sub-headline {*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .bundle-section {*/
/*        padding: 2rem 0.5rem;*/
/*    }*/

/*    .headline {*/
/*        font-size: 1.4rem;*/
/*    }*/

/*    .discount-badge {*/
/*        font-size: 0.9rem;*/
/*        padding: 0.4rem 1rem;*/
/*    }*/

/*    .bundle-content {*/
/*        padding: 1rem;*/
/*    }*/

/*    .discounted-price {*/
/*        font-size: 1.8rem;*/
/*    }*/

/*    .original-price {*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/
.clinically-researched-section {
  background-image: url(../images/clinically-researched-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: left;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.clinically-researched-section-copy {
  font-family: "Montserrat", sans-serif;
  max-width: 50vw;
  padding: 0 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.clinically-researched-section-copy .headline {
  text-align: left;
  line-height: 2em;
  color: var(--dk-blue);
  font-size: 2.25em;
  font-weight: 400;
  text-transform: uppercase;
}

.clinically-researched-section-copy .sub-headline {
  text-align: left;
  line-height: 1.1em;
  color: var(--md-blue);
  font-size: 1.5625em;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.accordion-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--super-lt-blue);
  border-radius: 5px;
  margin-bottom: 7px;
  overflow: visible;
}

.set > a {
  display: block;
  padding: 2px 15px 2px 60px;
  text-decoration: none;
  color: var(--dk-blue);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 22px;
  font-weight: 700;
}

.set > a img {
  position: absolute;
  top: -0.5em;
  left: -0.5em;
  z-index: 8;
}

.set > a i {
  position: absolute;
  right: 10px;
  color: var(--dk-blue);
  font-size: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.set a span {
  font-weight: normal;
  color: var(--dk-blue);
  font-size: 12px;
}

.set > a.active {
  background-color: var(--dk-blue);
  color: #fff;
  position: relative;
}

.set > a.active i {
  color: #fff;
}

.faq {
  width: 70%;
}

.faq .content {
  padding: 2em;
}

.faq .content p {
  font-size: 0.75em;
  color: var(--md-gray);
}

.faq .content h6 {
  font-size: 1em;
  color: var(--dk-gray);
  margin: 0.5em 0 0 0.5em;
}

.faq .set a {
  border: 1px solid var(--super-lt-blue);
  border-radius: 4px;
}

.faq hr {
  margin: 0 1rem 2em;
  color: inherit;
  border: 0;
  border-top: var(--lt-gray) solid;
  opacity: 0.25;
}

.content {
  font-family: "Montserrat", sans-serif;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--super-lt-blue);
  border-bottom: 2px solid var(--super-gray);
  display: none;
}

.content p {
  padding: 10px 15px;
  margin: 0;
  color: var(--super-gray);
}

.power-behind {
  font-family: "Montserrat", sans-serif;
  background-image: url(../images/power-behind-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-content: center;
}

.power-behind .headline {
  text-align: center;
  line-height: 2em;
  color: var(--white);
  font-size: 2.5em;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.power-behind .sub-headline {
  text-align: center;
  line-height: 1.1em;
  color: var(--white);
  font-size: 1.5625em;
  font-weight: 400;
  max-width: 60vw;
  margin-left: auto;
  margin-right: auto;
}

.ingredients-section {
  font-family: "Montserrat", sans-serif;
  background-color: var(--super-lt-blue);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  padding-bottom: 2em;
}

.ingredients-section .headline {
  text-align: center;
  line-height: 1.2em;
  color: var(--dk-blue);
  font-size: 2.5em;
  font-weight: 300;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.ingredients {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3%;
  margin: 1.5em;
  width: 65vw;
  margin-left: auto;
  margin-right: auto;
}

.ingredients img {
  clip-path: circle(50% at 50% 50%);
  border: 1px solid var(--dk-blue);
  border-radius: 50%;
  max-width: 6em;
  margin: 1em;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.ingredients img:hover {
  transform: scale(1.1);
}

.ingredients p {
  color: var(--dk-blue);
  font-size: 0.9em;
  font-weight: 600;
}

.ingredients div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-section {
  background-color: var(--white);
  /*min-height: 70vh;*/
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  padding-bottom: 2em;
}

.testimonial-section .headline {
  text-align: center;
  line-height: 1.2em;
  color: var(--md-blue);
  font-size: 2.875em;
  font-weight: 300;
  text-transform: uppercase;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.carousel {
  /*padding: 0 15vw;
    max-width: 70vw;
    padding: 0 10vw;
    margin-left: auto;
    margin-right: auto;*/
}

.carousel-item {
  gap: 3em;
}

.carousel-item img {
  float: left;
  height: 30vh;
  border: 1px solid var(--md-blue);
}

.carousel-item p {
  color: var(--md-blue);
  font-size: 0.87em;
  font-weight: 400;
}

.carousel-item p span {
  float: right;
  margin-top: 3em;
  font-weight: 500;
  color: var(--md-blue);
  font-size: 0.8em;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(85, 175, 180, 0.5);
}

.carousel-indicators {
  display: none !important;
}

.carousel-inner {
  display: flex;
  align-items: center;
}

.carousel-inner .active {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
}

.slide {
  padding: 0 10vw;
}

.guarantee-section {
  background-color: var(--dk-blue);
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  padding-bottom: 2em;
}

.guarantee-terms {
  display: flex;
  align-items: center;
  gap: 3em;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-terms img {
  transform: rotate(-20deg);
}

.guarantee-section .headline {
  font-family: "Times New Roman", Times, serif !important;
  text-align: center;
  line-height: 1em;
  color: var(--white);
  font-size: 3em;
  font-weight: 300;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-section p {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
}

.bundle-save-section {
  background-color: var(--white);
  font-family: "Montserrat", sans-serif;
  color: var(--dk-blue);
  min-height: 70vh;
  display: flex;
  padding-top: 2em;
  padding-bottom: 2em;
  gap: 3em;
}

.bundle-save-section .headline {
  line-height: 1.2em;
  font-size: 2.5em;
  font-weight: 600;
  text-transform: uppercase;
}

.bundle-save-section ul {
  margin-top: 1em;
}

.bundle-save-section ul li {
  line-height: 2em;
  font-size: 1.3em;
  font-weight: 300;
  margin-left: 0;
  list-style: none;
  border-bottom: 1px solid var(--lt-blue);
  width: 70%;
}

.bundle-save-section-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.bundle-save-section-copy img {
  width: fit-content;
  max-width: 50%;
}

.bundle-save-section .btn-submit {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  color: var(--white);
  border-color: var(--md-blue);
  background-color: var(--md-blue);
  border-radius: 5px;
  font-weight: 600;
  width: fit-content;
  padding: 0 1em;
  margin: 1em 0 0;
  cursor: pointer;
}

.contact {
  display: flex;
  max-width: 70vw;
  gap: 3em;
  margin: 3em auto;
}

/*.contact div{
    min-width:50%;
}*/
.footer {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dk-blue);
  padding-top: 2em;
  padding-bottom: 2em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer p {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 2em;
}

.footer-disclaimer p {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--white);
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

.footer-disclaimer h6 {
  text-align: center;
  color: var(--white);
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5em;
}

.footer-links ul {
  display: flex;
  /*flex-direction: row;*/
  justify-content: space-evenly;
}

.footer-links ul li {
  text-align: center;
  list-style: none;
  border: 0.5px solid var(--lt-blue);
  padding: 0.3em 1em;
  border-radius: 4px;
  text-decoration: none;
}

.footer-links ul a {
  text-decoration: none;
  font-size: 0.8em;
  color: var(--lt-blue);
}

.footer-links ul a:hover {
  color: var(--white);
}

.footer-links ul li:hover {
  border: 0.5px solid var(--white);
}

/*
	.frustration-form h3{
		font-weight: 700;
		color: #fff;
		text-transform: uppercase;
	}
	.radio-box {
	    float: left;
	    width: 45%;
	}
	.form-field {
	    float: left;
	    width: 55%;
	}
	.radio-box .radio label {
	    color: #192336;
	    font-size: 16px;
	}
	.form-field .row{
		margin: 0 -3px;
	}
	.form-field .col-sm-6{
		padding: 0 3px;
	}
	.form-field .form-group{
		margin-bottom:  10px;
	}
	.form-field .form-control{
		height: 32px;
		border-color: #7B7B7B;
		background-color: #E2E2E2;
		font-size: 20px;
		font-weight: 300;
		color: #7a7a7a;
		padding:0px 8px;
		line-height: 32px;
	}
	.form-field p{
		font-size: 13px;
		color: #192336;
	}
	.form-field p a{
	    color: #192336;
	    text-decoration: underline;
	}
	.form-field .btn-submit{
		font-size: 20px;
		border-color: #192336;
		border-radius: 6px;
		font-weight: 400;
	}
	.form-field .btn-submit span{
		font-size: 17px;
		font-weight: 300;
	}
*/

/***************************  UPSELL START  ***************************/
#us_top-banner {
  background: var(--md-blue);
  border-bottom: solid 2px var(--dk-blue);
  padding: 1em 2em;
  position: sticky;
  top: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 5vw;
  z-index: 1000;
}

#us_top-banner img {
  height: 1.7em;
}

.us_congrats-hdr {
  font-family: "Montserrat", sans-serif;
  background-image: url(../images/us_congratulations.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-content: center;
  background-position-y: -140px;
  text-transform: uppercase;
}

.us_congrats-hdr .headline {
  text-align: center;
  line-height: 1.2em;
  color: var(--dk-blue);
  font-size: 5vw;
  font-weight: 900;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff,
    -2px -2px 0 #ffffff, 2px 0px 0 #ffffff, 0px 2px 0 #ffffff,
    -2px 0px 0 #ffffff, 0px -2px 0 #ffffff;
}

.us_congrats-hdr .sub-headline {
  background-color: var(--dk-blue);
  padding: 8px 36px;
  text-align: center;
  line-height: 1.2em;
  color: var(--white);
  font-size: 2vw;
  font-weight: 500;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.us_deck {
  background-color: rgba(199, 225, 228, 0.3);
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2em 0;
}

.us_deck-copy {
  font-family: "Montserrat", sans-serif;
  max-width: 70vw;
  padding: 1.2em 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.us_deck h3 {
  color: var(--md-blue);
  font-size: 2.75em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1em;
}

.us_deck h4 {
  color: var(--dk-blue);
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.1em;
}

.us_deck h5 {
  color: var(--md-gray);
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2em;
}

.us_deck p {
  color: var(--md-gray);
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.2em;
  text-align: left;
  align-self: flex-start;
  margin: 0 0 1em;
}

.us_deck img {
  width: 30vw;
  margin: 0;
}

.us-deck-2 {
  background-image: url(../images/girl-stretching.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2em 0;
}

.us-deck-2 h3 {
  color: var(--md-blue);
  font-size: 2.75em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1em;
}

.us-deck-2 h4 {
  color: var(--dk-blue);
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.1em;
}

.us-deck-2 h5 {
  color: var(--md-gray);
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2em;
}

.us-deck-2 p {
  color: var(--md-gray);
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.2em;
  text-align: left;
  align-self: flex-start;
  margin: 0 0 1em;
}

.us-deck-2 img {
  width: 30vw;
  margin: 0;
}

hr.us {
  border-top: 1px solid var(--dk-gray);
  margin: 0.7em 0;
  width: 80vw;
  margin: 0 auto;
}

.profile {
  width: 80vw;
  display: flex;
  gap: 2em;
  align-items: flex-start;
  margin-top: 1em;
}

.profile p {
  color: var(--lt-gray);
}

.profile img {
  clip-path: circle(47% at 50% 46%);
  max-width: 150px;
}

.us_cta {
  background-color: #d4b8b2;
  color: var(--super-gray);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.25em 0.75em;
  border: 0px;
  text-transform: uppercase;
  width: 70vw;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}

.us_cta a {
  text-decoration: none;
  color: var(--super-gray);
}

.us_cta:hover {
  background-color: #b72040;
  color: var(--white);
  font-weight: 800;
}

.us_cta a:hover {
  text-decoration: none;
  color: var(--white);
}

.us_decline {
  margin: 1em 0 1.2em;
}

.us_decline a {
  font-size: 1em;
}

.us_pdf-lockup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  margin: 1.5em;
  text-align: left;
}

.us_pdf-lockup h5 {
  font-size: 1.4em !important;
  font-weight: 500 !important;
  text-align: center !important;
  color: #b72040 !important;
}

.us_pdf-lockup h5 span {
  font-size: 1.7em !important;
  line-height: 1.1em !important;
  font-weight: 800 !important;
}

.us_pdf-lockup h3 {
  font-size: 2em !important;
  color: var(--lt-gray) !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.us_pdf-lockup h2 {
  font-size: 4.5em !important;
  color: #b72040 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.us_pdf-lockup img {
  max-width: 200px;
  border: 1px solid var(--md-gray);
  -webkit-box-shadow: 0px 10px 13px -7px #000000,
    5px 5px 11px 2px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 11px 2px rgba(0, 0, 0, 0);
  transform: rotate(-10deg);
}

.arrow-down {
  background-color: #b72040;
  clip-path: polygon(50% 100%, 0 50%, 100% 50%);
  min-height: 80px;
  width: 100%;
  margin-top: -30px;
}

.us_about-hpv-hdr {
  font-family: "Montserrat", sans-serif;
  background-color: #8289e8;
  min-height: 120px;
  padding: 2em 0;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 2em;
}

.us_about-hpv-hdr h3 {
  color: var(--white);
  font-weight: 600;
}

.us_about-hpv h5 {
  color: var(--md-gray);
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
}

.us_about-hpv p {
  text-align: center;
  font-size: 1.1em;
  max-width: 70vw;
  margin: 0 auto;
}

.us_about-hpv-learn {
  max-width: 50vw;
  display: flex;
  flex-direction: row;
  gap: 3em;
  justify-content: space-between;
  align-items: center;
  margin: 3em auto;
}

.us_about-hpv-learn .title {
  width: 40%;
}

.us_about-hpv-learn h2 {
  color: var(--dk-blue);
}

.us_about-hpv-learn ul {
  background-color: var(--dk-blue);
  color: var(--white);
  padding: 0.5em 0.5em 0.5em 3.3em;
  font-size: 1.3em;
  border-radius: 8px;
  clip-path: polygon(6% 0, 100% 0%, 100% 100%, 6% 100%, 6% 65%, 0 50%, 6% 35%);
}

.us_about-hpv-respond {
  max-width: 50vw;
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  justify-content: space-between;
  align-items: center;
  margin: 3em auto;
}

.us_about-hpv-respond .title {
  width: 40%;
}

.us_about-hpv-respond h2 {
  color: var(--md-blue);
}

.us_about-hpv-respond ul {
  background-color: var(--md-blue);
  color: var(--white);
  padding: 0.5em 1.8em 0.5em 1.7em;
  font-size: 1.3em;
  border-radius: 8px;
  clip-path: polygon(94% 35%, 100% 50%, 94% 65%, 94% 100%, 0 100%, 0 0, 94% 0);
}

/****************************  UPSELL END  ****************************/
/****************************  INFO START  ****************************/

.info {
  padding: 30px 10vw;
  color: var(--dk-blue);
}

.info h1 {
  font-size: 3em;
  font-weight: 400;
  text-align: center;
  margin: 1em 0;
}

.info h2 {
  font-size: 2em;
  font-weight: 400;
  text-align: left;
  margin-top: 1em;
}

.info p {
  font-weight: 400;
}

.info a {
  color: var(--md-blue);
}

.ref-clinically-researched-section-copy {
  font-family: "Montserrat", sans-serif;
  max-width: 50vw;
  padding: 0 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.ref-clinically-researched-section-copy .headline {
  text-align: left;
  line-height: 2em;
  color: var(--dk-blue);
  font-size: 2.25em;
  font-weight: 400;
  text-transform: uppercase;
}

.ref-clinically-researched-section-copy .sub-headline {
  text-align: left;
  line-height: 1.1em;
  color: var(--md-blue);
  font-size: 1.5625em;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

/****************************** INFO END  *****************************/
/****************************  TY START  ****************************/

.ty {
  padding: 30px 10vw;
  color: var(--lt-gray);
}

.ty h1 {
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin: 1em auto;
}

.ty h2 {
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  margin-top: 0;
}

.ty h3 {
  font-size: 1.7em;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}

.ty p {
  font-weight: 400;
}

.ty img {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.ty_cta {
  box-sizing: border-box;
  background-color: var(--md-blue);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.5em 0.75em;
  border: 0px;
  text-transform: uppercase;
  width: 50vw;
  border-radius: 5px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}

.ty_cta a {
  text-decoration: none;
  color: var(--white);
}

.ty_cta:hover {
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--white);
  font-size: 1.2em;
  background-color: var(--dk-blue);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.6);
}

.ty_cta a:hover {
  text-decoration: none;
  color: var(--white);
}

.ty-profile {
  width: 80vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
}

.ty-profile .intro {
  font-family: "times", serif;
  max-width: 80%;
  margin: 0 auto;
  font-size: 1.5em;
  text-align: center;
}

.ty-profile p {
  color: var(--lt-gray);
  max-width: 80%;
  font-size: 1em;
  margin: 0;
}

.ty-profile img {
  clip-path: circle(47% at 50% 46%);
  max-width: 180px;
}

.ty .social-head {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.social-group {
  display: flex;
  justify-content: center;
  gap: 10%;
  margin-bottom: 2em;
}

.social-icon {
  text-align: center;
}

.social-icon a {
  color: var(--lt-gray);
  text-decoration: none;
  cursor: pointer;
}

.social-icon a:hover {
  color: var(--md-blue);
  text-decoration: none;
  cursor: pointer;
}

/****************************** TY END  *****************************/

/******************************************************************************/
/******************************** RESPONSIVE **********************************/
/******************************************************************************/

@media screen and (max-width: 1064px) {
  #top-banner img {
    height: 2em;
  }

  .headline-section h1 {
    font-size: 3em;
  }

  .headline-section h2 {
    font-size: 2em;
    line-height: 1em;
  }

  .banner-cta {
    font-size: 1.1em;
  }

  .video-section {
    flex-wrap: wrap;
  }

  .frustration-form {
    margin: 0 auto;
  }

  .frustration-form h1 {
    text-align: center;
  }

  /* .dont-wait-section {background-position-x:120%;padding:1em;}
    .dont-wait-section h3{font-size:2em;}
    .dont-wait-section h4{font-size:1.9em;}
    .dont-wait-section h5{font-size:1.5em;}
    .dont-wait-section img{width:20%;} */
  .top-3-section {
    background-position-x: -35%;
  }

  .top-3-section-copy {
    max-width: 45vw;
    padding: 1em;
  }

  .top-3-section-copy h4 {
    font-size: 1.65em;
    text-align: center;
  }

  .set a span {
    display: none;
  }

  .bundles {
    gap: 3em;
  }

  .bundle-6 .bundle-title {
    font-size: 1.7em;
  }

  .bundle-1 .btn-info {
    font-size: 1.3em;
    padding: 0.5em;
  }

  .bundle-3 .btn-info {
    font-size: 1.3em;
    padding: 0.5em;
  }

  .bundle-6 .btn-info {
    font-size: 1.3em;
    padding: 0.5em;
    margin: 0.5em 0 0;
  }

  .bundle-1,
  .bundle-3 {
    min-height: 400px;
    width: 265px;
    height: 435px;
  }

  .bundle-6 {
    min-height: 400px;
    height: 500px;
    width: 325px;
  }

  .bundle-1::after,
  .bundle-3::after {
    margin-left: 240px;
    margin-top: -435px;
  }

  .bundle-6::after {
    margin-left: 300px;
    margin-top: -465px;
  }

  .bundle-save-section img {
    max-width: 50%;
  }

  .bundle-save-section ul li {
    width: 100%;
  }

  .bundle-save-section .btn-submit {
    font-size: 1.35em;
    padding: 0.25em 1em;
  }

  .guarantee-section p {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 991px) {
  .video-box {
    /*padding-top: 53.2%;*/
  }

  .contact {
    flex-direction: column;
  }

  .banner-cta {
    display: none;
  }

  .fold-section h1 {
    padding-top: 150px;
  }

  .headline-section h1 {
    font-size: 3.3em;
  }

  .headline-section h2 {
    line-height: 1em;
    font-size: 2em;
  }

  .frustration-form {
    padding: 1vh 0;
    width: 75%;
  }

  #top-banner {
    gap: 0;
  }

  #top-banner img {
    margin: 0 auto;
    height: 2em;
  }

  .bundles {
    flex-direction: column;
    gap: 1.2em;
  }

  .bundle-3,
  .bundle-1 {
    width: 400px;
    height: 530px;
    max-width: 100%;
  }

  .bundle-6 {
    width: 400px;
    height: 565px;
    max-width: 100%;
  }

  .bundle-6::after,
  .bundle-3::after,
  .bundle-1::after {
    position: relative;
    margin-left: 375px;
    margin-top: -460px;
  }

  .top-3-section {
    background-position-x: -50%;
  }

  .bundle-save-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .guarantee-terms {
    flex-wrap: wrap;
    justify-content: center;
  }

  .guarantee-section p {
    text-align: center;
  }

  .bundle-save-section-copy {
    align-items: center;
    width: 75%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .video-box {
    max-width: 600px; /*padding-top: 340px;*/
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.5em;
  }

  .headline-section h2 {
    font-size: 1.5em;
  }

  .frustration-form {
    width: 100%;
  }

  /* .dont-wait-section{background-position-x: 165%;min-height:50vh;}
	.dont-wait-section-copy{max-width:none;gap:0;width:45%;}
	.dont-wait-section h3 {font-size:1.6em;}
	.dont-wait-section h5 {font-size:1.25em;} */
  .carousel-item {
    gap: 0;
  }

  .carousel-item p i {
    display: none;
  }

  .power-behind .headline {
    line-height: 1.2em;
    max-width: 100vw;
  }

  .power-behind .sub-headline {
    max-width: 80vw;
  }

  .testimonial-section .headline {
    max-width: 100vw;
  }

  .clinically-researched-section {
    min-height: 65vh;
    background-position-x: -75px;
  }

  .clinically-researched-section-copy {
    gap: 0.7em;
  }

  .clinically-researched-section-copy .headline {
    line-height: 1.2em;
  }

  .clinically-researched-section-copy .sub-headline {
    font-size: 1.25em;
  }

  .accordion-container {
    gap: 2em;
  }

  .set > a {
    font-size: 16px;
    padding: 0.6em 0 0.6em 3.5em;
  }

  .set .content p {
    padding: 25px 15px;
  }

  .top-3-section {
    background-position-x: -50%;
  }

  .top-3-section-copy {
    max-width: 50vw;
  }

  .top-3-section-copy h2 {
    font-size: 1.75em;
  }

  .top-3-section-copy h5 {
    font-size: 1.2em;
  }

  .top-3-section-copy h4 {
    font-size: 1.25em;
    text-align: center;
  }

  .top-3-section-copy p {
    line-height: 1.2em;
    font-size: 0.85em;
  }

  .top-3-section-copy img {
    width: 2.5em;
  }

  .ingredients-section .headline {
    max-width: 100vw;
    font-size: 2em;
  }

  .bundle-save-section ul {
    padding-left: 0;
  }

  .bundle-save-section ul li {
    margin: 0.5em 0;
  }

  .footer-links ul {
    padding: 0;
    gap: 1.75em;
  }

  .footer-links ul li {
    padding: 1em;
  }

  .footer-links ul a {
    font-size: 1em;
  }

  .footer-disclaimer h6 {
    max-width: 90vw;
  }

  .faq {
    width: 90%;
  }

  .faq div a {
    padding: 1em;
  }

  .footer-disclaimer p {
    max-width: 90vw;
  }

  /***********************  UPSELL START  ***********************/
  .us_congrats-hdr {
    background-position-y: -85px;
  }

  .us_congrats-hdr .headline {
    font-size: 3.5em;
    max-width: 100vw;
  }

  .us_congrats-hdr .sub-headline {
    font-size: 1.4em;
    max-width: 100vw;
  }

  .us_deck-copy {
    max-width: 90vw;
  }

  .us_deck-copy h3 {
    font-size: 2.5em;
    font-weight: 800;
  }

  .us_deck-copy h5 {
    font-size: 1.5em;
  }

  .us_deck ul {
    max-width: 90vw;
  }

  .us_deck-copy img {
    width: 50vw;
  }

  .us_about-hpv-learn,
  .us_about-hpv-respond {
    max-width: 80vw;
  }

  .us_about-hpv h5 {
    font-size: 1.6em;
  }

  .us-deck-2 {
    background-position-x: right;
  }
}

@media screen and (max-width: 425px) {
  .video-section {
    min-height: auto;
  }

  .frustration-form {
    display: none;
  }

  #unmute {
    display: none;
  }

  .headline-section {
    padding: 0.6em;
  }

  .headline-section h1 {
    font-size: 2em;
  }

  .headline-section h2 {
    font-size: 1.25em;
    line-height: 1.25em;
  }

  .video-box {
    max-width: 100vw;
  }

  .top-3-section {
    background-image: url(../images/top-3-ballet_bottom.png);
  }

  .top-3-section-copy {
    max-width: 100vw;
    margin-top: 420px;
  }

  /* .dont-wait-section{background-position-x:right;padding-top:350px;flex-direction:column;}
    .dont-wait-section img {width:45%;}
    .dont-wait-section-copy {width:100%;text-align:center;padding:1em;} */
  .clinically-researched-section {
    background-position-x: 0;
    justify-content: center;
  }

  .clinically-researched-section-copy {
    max-width: 100vw;
    margin-top: 380px;
    justify-content: center;
  }

  .clinically-researched-section .headline {
    text-align: center;
    font-size: 1.5em;
  }

  .clinically-researched-section .sub-headline {
    text-align: center;
  }

  .accordion-container {
    margin-bottom: 2em;
  }

  .power-behind .headline {
    line-height: 1em;
    font-size: 2em;
  }

  .power-behind .sub-headline {
    max-width: 100vw;
    font-size: 1em;
  }

  .ingredients-section {
    align-items: center;
  }

  .ingredients div {
    width: 100%;
  }

  .ingredients-section .headline {
    max-width: 100vw;
    font-size: 1.5em;
    line-height: 1em;
  }

  .ingredients {
    flex-direction: column;
    margin: 0;
  }

  .bundle-6::after,
  .bundle-3::after,
  .bundle-1::after {
    margin-left: 325px;
  }

  .bundle-save-section img {
    max-width: 75%;
  }

  .bundle-save-section .headline {
    font-size: 2em;
  }

  .bundle-save-section-copy {
    width: 100%;
  }

  .bundle-save-section .btn-submit {
    font-size: 1.25em;
    padding: 0.5em 1em;
  }

  .bundle-section .headline {
    font-size: 1em;
    max-width: 100vw;
    margin-top: 0;
  }

  .bundle-save-section ul li {
    margin: 0.5em 0;
  }

  .testimonial-section .headline {
    font-size: 2.75em;
  }

  .testimonial-section .sub-headline {
    font-size: 1.35em;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .carousel-inner {
    height: auto;
  }

  .carousel-inner .active {
    flex-wrap: wrap;
  }

  .set > a.active {
    border-radius: 6px;
  }

  /***********************  UPSELL START  ***********************/
  .us_congrats-hdr {
    background-position-y: 0;
  }

  .us_congrats-hdr .headline {
    font-size: 2em;
  }

  .us_congrats-hdr .sub-headline {
    font-size: 0.9em;
    padding: 8px 10px;
  }

  .us_deck-copy h3 {
    font-size: 2em;
  }

  .us_deck-copy h5 {
    font-size: 1.25em;
  }

  .us_deck-copy img {
    width: 75vw;
  }

  .profile {
    gap: 1em;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid var(--lt-blue);
    padding-top: 1em;
  }

  .us_pdf-lockup {
    flex-direction: column;
  }

  .us_pdf-lockup img {
    max-width: 45vw;
    width: 45vw;
  }

  .us_about-hpv-hdr {
    padding: 1em;
  }

  .us_about-hpv-hdr h3 {
    font-size: 1.75em;
    text-align: center;
  }

  .us_cta {
    margin-top: 1em;
  }

  .us_about-hpv-learn,
  .us_about-hpv-respond {
    flex-direction: column;
    gap: 1em;
  }

  .us_about-hpv-learn h2,
  .us_about-hpv-respond h2 {
    font-size: 2em;
    text-align: center;
  }

  .us_about-hpv-learn .title,
  .us_about-hpv-respond .title {
    width: 90%;
  }

  .us_about-hpv-learn ul,
  .us_about-hpv-respond ul {
    padding: 2em 2.5em 1em 2.5em;
    clip-path: polygon(
      35% 10%,
      50% 0,
      65% 10%,
      100% 10%,
      100% 100%,
      0 100%,
      0 10%
    );
  }

  /***********************  TY START  ***********************/
  .ty .social-head {
    line-height: 1em;
    padding: 0 0 1em;
  }

  .ty img {
    max-width: 70vw;
  }

  .ty_cta {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .headline-section h1 {
    font-size: 1.5em;
  }

  .headline-section h2 {
    font-size: 1em;
  }

  h5 {
    font-size: 1.25em;
  }

  /* .dont-wait-section-copy {padding:1em 0;}
    .dont-wait-section-copy h3:first-child{font-size:1.65em;}
    .dont-wait-section-copy h4{font-size:1.5em;} */
  .bundle-section .headline {
    font-size: 1.1em;
  }

  .bundle-section .sub-headline {
    font-size: 1.25em;
    max-width: 100vw;
  }

  .bundle-3,
  .bundle-1,
  .bundle-6 {
    max-width: 85%;
  }

  .bundle-3,
  .bundle-1 {
    height: 455px;
  }

  .bundle-6 {
    height: 465px;
  }

  .bundle-6::after,
  .bundle-3::after,
  .bundle-1::after {
    margin-left: 262px;
    margin-top: -445px;
  }

  .top-3-section-copy {
    margin-top: 380px;
  }

  .clinically-researched-section-copy {
    margin-top: 340px;
  }

  .accordion-container {
    width: 100vw;
  }

  .testimonial-section .headline {
    font-size: 2em;
    max-width: 75vw;
  }

  .guarantee-section .headline {
    font-size: 2em;
    max-width: 100vw;
  }

  .guarantee-terms {
    gap: 1em;
    max-width: 100vw;
  }

  .guarantee-terms p {
    font-size: 0.8em;
    margin-bottom: 0;
  }

  .bundle-save-section .headline {
    font-size: 1.5em;
  }

  .bundle-save-section ul {
    margin-top: 0;
    padding-left: 0;
  }

  .bundle-save-section ul li {
    font-size: 1.5em;
    line-height: 2em;
    border-bottom: 1px solid var(--lt-blue);
  }

  .bundle-save-section .btn-submit {
    font-size: 1.15em;
    padding: 0.75em;
  }

  .accordion-container .faq {
    margin-bottom: 0;
    margin-top: 0;
  }

  .faq {
    width: 90vw;
    margin: 0;
  }

  .set > a {
    padding: 8px 8px 8px 60px;
  }

  .footer-disclaimer h6 {
    max-width: 90vw;
    font-size: 0.75em;
    font-weight: 400;
  }

  .footer-disclaimer p {
    max-width: 90vw;
    margin-top: 1em;
    text-align: center;
  }

  .footer-links ul {
    gap: 1.5em;
    padding: 0;
  }

  .footer-links ul li {
    padding: 1em;
  }

  .spinner p {
    max-width: 90vw;
    text-align: center;
  }

  /*.frustration-form h1 span{font-size: .5em!important;line-height: 0!important;}
    .frustration-form div button{font-size:1.2em!important;}*/
  .info h1 {
    font-size: 2em;
  }

  .info h2 {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 320px) {
  #top-banner {
    padding: 0.5em 2em;
  }

  #top-banner img {
    height: 1.25em;
  }

  /* .dont-wait-section-copy h3:first-child{font-size:1.5em}
    .top-3-section-copy{margin-top:310px;}
    .top-3-section-copy h5{line-height:1.2em;} */
  h5 {
    display: none;
  }

  /*.frustration-form > button{font-size:1.2em;}*/
  .bundle-1,
  .bundle-3,
  .bundle-6 {
    max-width: 85vw;
  }

  .bundle-1::after,
  .bundle-3::after,
  .bundle-6::after {
    margin-left: 245px;
    margin-top: -430px;
  }

  .bundle-3 .btn-info,
  .bundle-1 .btn-info,
  .bundle-6 .btn-info {
    font-size: 1.1em;
    margin-top: 1, 5em;
  }

  .bundle-6 {
    height: 490px;
  }

  .bundle-6 .bundle-title {
    font-size: 1.5em;
  }

  .bundle-6 .btn-info {
    margin: 2.5em 0 0;
  }

  .bundle-6::after {
    margin-top: -445px;
  }

  .clinically-researched-section-copy {
    margin-top: 290px;
  }

  .guarantee-section .headline {
    font-size: 1.8em;
  }

  .bundle-save-section .btn-submit {
    font-size: 0.95em;
    padding: 1em;
  }

  .set > a {
    font-size: 0.8em;
    padding: 8px 8px 8px 4.5em;
  }

  .set .content p {
    padding: 20px 15px;
    font-size: 0.85em;
    line-height: 1.4em;
  }

  .ingredients-section .headline {
    font-size: 1.25em;
    line-height: 1.25em;
  }

  .slide {
    padding: 0 5vw;
  }

  /***********************  UPSELL START  ***********************/
  .us_congrats-hdr .headline {
    font-size: 1.6em;
  }

  .us_congrats-hdr .sub-headline {
    font-size: 0.7em;
  }

  .us_deck-copy h3 {
    font-size: 1.5em;
  }

  .us_deck-copy {
    padding: 0;
  }

  /***********************  TY START  ***********************/
  .ty h1 {
    font-size: 1.5em;
    margin: 0 auto 1em;
  }

  .ty .social-head {
    font-size: 1.5em;
    line-height: 1.2em;
  }

  .ty-profile .intro {
    max-width: 100%;
    font-size: 1.25em;
    line-height: 1.3em;
    margin: 1em auto 0;
  }

  .ty {
    padding: 20px;
  }

  .ty h3 {
    font-size: 1.1em;
  }

  .ty_cta {
    font-size: 1.1em;
  }
}

@media screen and (min-width: 2121px) {
  p {
    font-size: 2em;
  }

  #top-banner {
    align-items: center;
  }

  #top-banner img {
    height: 3em;
  }

  .banner-cta {
    font-size: 2em;
    padding: 0.25em 0.8em;
  }

  .headline-section {
    padding: 2em;
  }

  .headline-section h1 {
    font-size: 7em;
    line-height: 1.5em;
  }

  .headline-section h2 {
    font-size: 3.75em;
    line-height: 1.5em;
  }

  .video-section {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .video-box {
    max-width: 50vw;
  }

  .video-section .ftc {
    font-size: 1em;
    margin-top: 1.5em;
  }

  .dont-wait-section {
    background-size: contain;
  }

  .dont-wait-section img {
    width: 19%;
    margin-right: 2em;
  }

  /* .dont-wait-section-copy{max-width:45%;padding:0 2em;gap:2.5em;}
    .dont-wait-section-copy h3{font-size:4.75em;}
    .dont-wait-section-copy h4{font-size:3.5em;}
    .dont-wait-section-copy h5{font-size:3em;} */
  .top-3-section {
    background-position-x: -10%;
  }

  .top-3-section-copy {
    max-width: 55%;
    padding: 0 2em;
    gap: 2em;
    margin: 2em 0;
  }

  .top-3-section-copy h2 {
    font-size: 4.5em;
  }

  .top-3-section-copy img {
    width: 8%;
  }

  .top-3-section-copy h5 {
    font-size: 3em;
    font-weight: 600;
    line-height: 1em;
  }

  .top-3-section-copy h4 {
    font-size: 3.5em;
  }

  .bundle-section .headline {
    font-size: 3.5em;
  }

  .bundle-section .sub-headline {
    font-size: 2.5em;
  }

  .bundles {
    margin-top: 4em;
  }

  .bundle-1,
  .bundle-3 {
    width: 25%;
    height: 840px;
  }

  .bundle-6 {
    width: 30%;
    height: 960px;
  }

  .bundle-title {
    font-size: 2.5em;
  }

  .bundle-6 .bundle-title {
    font-size: 3.25em;
  }

  .bundle-was {
    font-size: 2.5em;
  }

  .bundle-is {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1em;
  }

  .shipping {
    font-size: 2em;
    margin-top: 0.6em;
  }

  .supply {
    font-size: 2em;
  }

  .bundle-3 .btn-info,
  .bundle-1 .btn-info {
    font-size: 2.25em;
  }

  .bundle-6 .btn-info {
    font-size: 2.5em;
  }

  .bundle-3::after,
  .bundle-1::after {
    margin-left: 95%;
    margin-top: -550px;
  }

  .bundle-6::after {
    margin-left: 96%;
    margin-top: -640px;
  }

  .supply-disclaimer {
    font-size: 1.3em;
  }

  .clinically-researched-section-copy .headline {
    font-size: 3.5em;
  }

  .clinically-researched-section-copy .sub-headline {
    font-size: 3em;
  }

  .accordion-container {
    gap: 3.5em;
    margin-bottom: 4em;
  }

  .set > a {
    padding: 1em 1em 1em 5em;
    font-size: 2em;
  }

  .set > a.active {
    border-radius: 0.5em;
  }

  .set > a img {
    width: 4.5em;
    left: -1em;
    top: -0.5em;
  }

  .set a span {
    font-size: 0.8em;
  }

  .power-behind .headline {
    font-size: 4.5em;
  }

  .power-behind .sub-headline {
    font-size: 3em;
    line-height: 1.3em;
  }

  .ingredients-section .headline {
    font-size: 4.5em;
    max-width: 65vw;
  }

  .ingredients {
    margin: 3em;
    margin-left: auto;
    margin-right: auto;
  }

  .ingredients img {
    max-width: 100%;
    width: 200px;
  }

  .ingredients p {
    font-size: 1.8em;
    font-weight: 500;
  }

  .testimonial-section .headline {
    font-size: 5em;
  }

  .carousel-item img {
    width: 25%;
    height: auto;
  }

  .carousel-item p {
    font-size: 2em;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 5rem;
    height: 5rem;
  }

  .guarantee-section .headline {
    font-size: 5em;
  }

  .guarantee-terms img {
    width: 100%;
  }

  .bundle-save-section {
    gap: 10%;
  }

  .bundle-save-section img {
    width: 50%;
  }

  .bundle-save-section .headline {
    font-size: 3.5em;
  }

  .bundle-save-section ul {
    margin-top: 0;
    margin-bottom: 2.5em;
    padding-left: 3.5em;
  }

  .bundle-save-section ul li {
    line-height: 2.5em;
    font-size: 3em;
    border-bottom: 1px solid var(--lt-blue);
    width: 70%;
  }

  .bundle-save-section-copy img {
    width: 350px;
  }

  .bundle-save-section .btn-submit {
    font-size: 3em;
  }

  .faq .set a {
    padding: 0.5em 1em;
  }

  .faq .content h6 {
    font-size: 2.25em;
  }

  .faq .content p {
    font-size: 1.5em;
  }

  .footer-disclaimer h6 {
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 1.5em;
  }

  .footer-links ul a {
    font-size: 1.8em;
  }

  .footer-disclaimer p {
    font-size: 1.25em;
  }

  .kl-private-reset-css-Xuajs1 {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  /*.frustration-form > div h1 span{font-size:38px!important;line-height:20px!important;}*/
}

@media screen and (max-width: 2120px) and (min-width: 1680px) {
  .headline-section h1 {
    font-size: 5em;
    line-height: 1em;
  }

  .headline-section h2 {
    font-size: 3em;
    line-height: 1em;
  }

  .dont-wait-section-copy h3 {
    font-size: 16px;
  }

  .dont-wait-section-copy h4 {
    font-size: 2em;
  }

  .dont-wait-section-copy h5 {
    font-size: 2em;
  }

  .top-3-section {
    background-position-x: -10%;
  }

  .top-3-section-copy h2 {
    font-size: 3em;
  }

  .top-3-section-copy h4 {
    font-size: 2.5em;
  }

  .top-3-section-copy h5 {
    font-size: 2.25em;
  }

  .top-3 p {
    font-size: 1.5em;
  }

  .video-box {
    max-width: 50vw;
  }

  .ingredients-section .headline {
    max-width: 100%;
  }

  .ingredients {
    width: 80vw;
  }

  .guarantee-section p {
    font-size: 1.1em;
    line-height: 1.3em;
  }

  .bundle-section .headline {
    font-size: 2.75em;
  }

  .bundle-section .sub-headline {
    font-size: 2.25em;
  }

  .bundle-1,
  .bundle-3 {
    width: 25%;
    height: 600px;
  }

  .bundle-1::after,
  .bundle-3::after {
    margin-left: 95%;
  }

  .bundle-6 {
    width: 35%;
    height: 800px;
  }

  .bundle-6::after {
    margin-left: 97%;
  }

  .bundle-1 .btn-info,
  .bundle-3 .btn-info {
    font-size: 1.75em;
  }

  .bundle-6 .btn-info {
    font-size: 2em;
  }

  .set > a {
    padding: 1em 1em 1em 4em;
  }

  /*.frustration-form > div h1 span{font-size:42px!important;line-height:.6em!important;}*/
  .kl-private-reset-css-Xuajs1 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-1: #ee7344;
  --color-2: #d1d4db;
}

body {
  font-family: Montserrat, sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1200px;
  min-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

footer {
  margin-top: 20px;
  font-size: 14px;
  padding: 10px 20px;
}

footer a {
  text-decoration: none;
  color: #0575cc;
}

#main-container {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-shadow: 6px 0 15px rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  vertical-align: -40%;
  margin-right: 5px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-1);
  border-radius: 34px;
  transition: 0.1s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 28px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.1s;
}

input:checked + .slider:before {
  transform: translateX(-25.2px);
  box-shadow: 0 0 2px #2196f3;
}

input:checked + .slider {
  background-color: var(--color-2);
}

.decorated {
  display: inline-block;
  color: var(--color-1);
  font-size: 18px;
  white-space: nowrap;
  position: relative;
}

.decorated::after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  left: -10px;
  bottom: -47px;
  position: absolute;
  background-image: url("https://assets.codepen.io/9277864/underline-1.svg");
  background-repeat: no-repeat;
  transform: rotate(6.19rad);
}

.pricing-plan {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.plan {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.4);
  padding: 23px;
  min-width: 220px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}

.plan:hover,
.button:hover {
  transform: scale(1.009);
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
}

.whole {
  font-weight: bold;
  font-size: 35px;
}

.cent {
  font-weight: bold;
}

.button {
  color: white;
  text-decoration: none;
  background-color: var(--color-1);
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 1px 0 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.title {
  font-weight: 600;
  margin-bottom: 12px;
}

ul {
  list-style-type: none;
}

ul li {
  margin-bottom: 8px;
}

ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("https://assets.codepen.io/9277864/check.svg");
  margin-right: 5px;
  filter: invert(56%) sepia(67%) saturate(5340%) hue-rotate(142deg)
    brightness(105%) contrast(101%);
}

.first-cut {
  display: flex;
  flex-direction: column;
}

.best {
  position: relative;
}

.popular {
  position: absolute;
  top: -65px;
  right: -57.5px;
  width: 100px;
  height: 200px;
  overflow: hidden;
  transform: rotate(-45deg);
}

.inner {
  transform: rotate(45deg);
  background-color: #00ba96;
  width: 100px;
  height: 100px;
  top: 20px;
  left: -50px;
  position: relative;
  border-top-right-radius: 10px;
}

.popular p {
  font-weight: bold;
  font-size: 18px;
  transform: rotate(46deg) translate(50px, -4px);
  color: white;
}

li:last-child {
  display: flex;
  align-items: flex-end;
}

li:last-child::before {
  align-self: center;
}

.label {
  display: inline-block;
  margin-right: 5px;
  padding: 4px 12px;
  background-color: #445566;
  color: white;
  border-radius: 6px;
}
.product-card-left {
  /* height: 910px; */
  width: 380px;
}
.product-card-right {
  /* height: 910px;   */
  width: 380px;
}

.tooltip:hover {
  cursor: help;
}

@media only screen and (max-width: 1100px) {
  .wrapper {
    height: auto;
  }

  .first-cut {
    gap: 40px;
    flex-direction: row;
  }

  .pricing-plan {
    flex-direction: column;
  }

  #main-container {
    margin-top: 20px;
    padding: 26px;
    width: 960px;
  }

  .plan {
    max-width: 100%;
    padding: 20px;
    flex-direction: row;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 870px) {
  .first-cut {
    gap: 0;
    flex-direction: column;
  }

  .plan {
    flex-direction: column;
  }

  .button {
    /*     width: 75%; */
  }
}

@media only screen and (max-width: 620px) {
  .plan {
    padding: 16px;
  }

  #main-container {
    padding: 20px;
  }

  .button {
    width: 100%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");

.codepen-footer {
  font-family: "Patrick Hand", cursive;
  font-size: 17px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #232323;
  color: white;
  text-align: center;
  height: 38px;
  font-size: 21px;
  display: flex;
  justify-content: space-between;
  padding: 6px 20px;
}

.codepen-footer a {
  color: #ee7344;
  text-decoration: none;
}

@media (max-width: 648px) {
  .product-content-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
  .product-content-container-left,
  .product-content-container-center,
  .product-content-container-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 8px;
  }
  .product-card-check {
    padding: 0.3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-card {
    background-color: #fff;
  }
  .product-details {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 1.5rem;
  }

  .product-price {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-price h4 {
    text-align: center;
    font-size: 3.3rem;
    color: #0049a0;
    font-weight: bold;
  }

  .price-info {
    margin-top: auto;
    text-align: left;
  }
  .product-bonus {
    width: 100%;
    font-size: 0.9rem;
    color: #0049a0;
    text-align: left;
    font-weight: 600;
  }
  .product-content-container-left-second,
  .product-content-container-center-second,
  .product-content-container-right-second {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
}

.other-details ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.other-details ul li {
  text-align: left;
  font-size: 1.3rem;
}
.product-card-check {
  padding: 2rem 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-check h5 {
  margin-top: 1rem;
  text-align: center;
}
.product-card-check .other-details {
  margin-top: 1rem;
}
.product-card-center {
  width: 380px;
  background-color: #f9f8da;
}
.product-content-container-left,
.product-content-container-center,
.product-content-container-right {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  flex-direction: column;
  gap: 8px;
}
.top-nav-wrapper {
  width: 100%;
  background-color: #e9f7fa;
  display: flex;
  justify-content: center;
}

.top-nav {
  max-width: 1400px;
  width: 100%;
}
.product-details-second {
  width: 100%;
}

@media (max-width: 648px) {
  .product-content-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
  .product-content-container-left,
  .product-content-container-center,
  .product-content-container-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 8px;
  }
  .product-card-check {
    padding: 0.3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-image {
    width: 100%;
  }
  .product-card {
    background-color: #fff;
  }
  .product-details {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 1.5rem;
  }

  .product-price {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-price h4 {
    text-align: center;
    font-size: 3.3rem;
    color: #0049a0;
    font-weight: bold;
  }

  .price-info {
    margin-top: auto;
    text-align: left;
  }
  .product-bonus {
    width: 100%;
    font-size: 0.9rem;
    color: #0049a0;
    text-align: left;
    font-weight: 600;
  }
  .product-content-container-left-second,
  .product-content-container-center-second,
  .product-content-container-right-second {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 8px;
  }
}
.product-details {
  /* background: red; */
  width: 100%;
}
.product-card-left-second {
  width: 100%;
}
.information {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
  width: 100%;
}

.vsl-container {
  background: linear-gradient(135deg, #e0e8ff 0%, #c5d7ff 35%, #a0f0ff 100%);

  padding-top: 12vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cta {
  top: 20px;
  right: 27px;
  position: fixed;
  padding: 15px 20px;
  background-color: #f8db41;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.cta:hover {
  transform: scale(1.04);
}
.vsl-container h1 {
  color: white;
  font-size: 4vw;
  text-shadow: 1px 1px 9px black;
}
.video-container {
  border: 4px solid white;
  width: 70vw;
  /* aspect-ratio: 16 / 9;  */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Sound Button */
/* Sound Button */
.sound-toggle {
  background: transparent;
  border: none;
  position: absolute;
  width: 25vw; /* Responsive width */
  max-width: 200px;
  aspect-ratio: 1 / 1;
}
.sound-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Overlay Button */
.play-overlay {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: none;
  align-content: center;
  width: 14vw; /* Responsive width */
  max-width: 140px;
  aspect-ratio: 1 / 1;
  background: #0049a0;
  border-radius: 50%;
}
.play-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA Button (top-right) */
.cta {
  top: 20px;
  right: 20px;
  position: fixed;
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8db41;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1vw;
  z-index: 500000;
  padding: 0 10px;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #ffeb3b;
  cursor: pointer;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cta {
    width: 120px;
    height: 45px;
    font-size: 14px;
    top: 15px;
    right: 15px;
  }
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: white;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown h1 {
  font-size: 3vw;
  font-weight: 600;
  text-align: center;
}
#timer {
  margin-top: 1vw;
}
.loading-message {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px;
  color: #007bff;
}
#delayedContent{
  width: 100%;
}