/** Shopify CDN: Minification failed

Line 254:10 Unexpected "{"
Line 254:19 Expected ":"
Line 255:18 Expected identifier but found whitespace
Line 255:20 Unexpected "{"
Line 255:29 Expected ":"
Line 255:80 Expected ":"
Line 256:21 Expected identifier but found whitespace
Line 256:23 Unexpected "{"
Line 256:32 Expected ":"
Line 256:86 Expected ":"
... and 138 more hidden warnings

**/


/* CSS from section stylesheet tags */
.promo-banner-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
        max-width: 90%;
        margin: 0 auto;
    }

    .banner-container-item {
        border: 6px solid #0033A0;
        padding: 20px;
        text-align: center;
        background-color: #FBF8F3;
        border-radius: 25px;
        width: 48%;
        position: relative;
        overflow: hidden;
    }

    .banner-background-desktop {
        position: absolute;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        width: 100%; 
        height: auto; 
        z-index: 0;
    }

    .banner-overlay-desktop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FCF6F0;
        opacity: 0.6;
        z-index: 1;
    }

    .banner-title-desktop,
    .banner-subtitle-desktop,
    .banner-code-container-desktop,
    .banner-details-desktop,
    .banner-link-desktop {
        position: relative;
        z-index: 2;
    }

    .banner-title-desktop {
        font-size: 35px;
        font-weight: 700;
        font-family: DIN Round Pro !important;
        color: #0033A0;
    }

    .banner-subtitle-desktop {
        font-size: 20px;
        font-weight: 700;
        font-family: DIN Round Pro !important;
        color: #0033A0;
        padding-bottom: 20px;
    }

    .banner-code-container-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        background: linear-gradient(to right, #00257A, #0475D7, #00257A);
        border-radius: 5px;
        padding: 10px 20px;
        width: 80% !important;
        margin: auto;
    }

    .banner-code-desktop {
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        font-family: Gotham Rounded Medium !important;
    }

    .banner-button-desktop {
        font-size: 16px;
        font-weight: bold;
        color: #00257A;
        background-color: #ffffff;
        padding: 4px 40px;
        border-radius: 7px;
        border: 2px solid #ffffff;
        cursor: pointer;
        text-align: center;
        font-family: Gotham Rounded Medium !important;
    }

    .banner-button-desktop:hover {
        opacity: 0.8;
    }

    .banner-details-desktop {
        font-size: 12px;
        color: #0033a0;
        padding-top: 20px;
    }

    .banner-link-desktop {
        font-size: 12px;
        color: #0033A0;
        padding: 10px 20px;
        display: inline-block;
        margin: 10px 0;
        cursor: pointer;
        text-decoration: underline;
        font-family: Gotham Rounded Light!important;
    }

   

    @media (max-width: 768px), (max-width: 1024px), (max-width: 820px)  {
        .promo-banner-container {
            flex-direction: column;
            gap: 15px;
        }

        .banner-container-item {
            width: 100%;
            border: 4px solid #0033A0;
        }

        .banner-code-container-desktop {
            width: 100% !important;
            gap: 0px;
            padding: 20px 20px;
            flex-direction: column;
        }

        .banner-code-desktop,
        .banner-button-desktop {
            font-size: 15px;
            font-weight: bold;
            padding-bottom: 10px;
            border-radius: 5px;
            width: 100%; 
            margin-bottom: 0px; 
            text-align: center;
        }

        .banner-subtitle-desktop {
            font-size: 13px;
        }

        .banner-title-desktop {
            font-size: 30px;
        }
    }
.content-wrapper-about-us {
    position: absolute;
    padding: 0 30px;
    margin-left: 8%;
    top: 7vw;
    width: 50%;
  }
  .content-wrapper-about-us-mobile {
    display: none;
  }

  .about-us-title {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .content-wrapper-about-us-desktop-left {
    text-align: left;
  }

  .content-wrapper-about-us-desktop-center {
    text-align: center;
  }

  .content-wrapper-about-us-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }

    .mobile {
      display: block;
    }

    .about-us-title-mobile {
      margin: 20px 0 10px 0;
    }

    .content-wrapper-about-us {
      display: none;
    }

    .content-wrapper-about-us-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }

    .content-wrapper-about-us-mobile-left {
      text-align: left;
    }

    .content-wrapper-about-us-mobile-center {
      text-align: center;
    }

    .content-wrapper-about-us-mobile-right {
      text-align: right;
    }

    .about-us-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    }

    .ages-stages {
      font-family: Arial, sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .ages-stages__title {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #00257A;
      /* font-family: DIN Round Pro; */
      text-align: center;
      line-height: 61.82px;
    }

    .ages-stages__list {
      display: flex;
      flex-direction: row;
      gap: 20px;
    }

    .more-item {
      flex: 0 0 calc(33.333% - 14px);
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      scroll-snap-align: start;
    }

    .more-item__image-container {
      width: 100%;
      padding-top: 66.67%; /* 3:2 aspect ratio */
      position: relative;
      overflow: hidden;
    }

    .more-item__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .more-item__content {
      padding: 15px;
    }

    .more-item__title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .more-item__description {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .more-item__link {
      display: inline-block;
      padding: 8px 15px;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
    }

    .ages-stages__navigation {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }


    @media (max-width: 768px) {
    .ages-stages__list {
      display: flex;
      flex-direction: column;
    }
  }
.section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    }

    .article-lower {
      font-family: Arial, sans-serif;
      width: 100%;
      align-items: center;
      display: flex;
      flex-direction: column;
      padding: 1rem 5rem;
      margin: 5rem 0;
    }

    .article-lower__title {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #00257A;
      /* font-family: DIN Round Pro; */
      text-align: center;
      line-height: 61.82px;
    }

    .article-lower__list {
      max-width: 70%;
      display: grid;
      grid-template-columns: auto auto auto;
      gap: 20px;
    }

    .articlelower-item {
      flex: 0 0 calc(33.333% - 14px);
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      scroll-snap-align: start;
    }

    .articlelower-item__image-container {
      width: 100%;
      padding-top: 66.67%; /* 3:2 aspect ratio */
      position: relative;
      overflow: hidden;
    }

    .articlelower-item__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .articlelower-item__content {
      padding: 15px;
      text-align: center;
    }

    .articlelower-item__title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .articlelower-item__description {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .articlelower-item__link {
      display: inline-block;
      padding: 8px 15px;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px; 
    }

    .article-lower__navigation {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }

    @media (max-width: 768px) {
    .article-lower__list {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  }
article-refer_ol {
  list-type-style: none;
  padding: 0px;
}
.article-thead-col {
    background-color: #60acf5;
  }
.article-content__wrapper {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
  
.article-content__heading{
    font-size: 30px;
    color: #01257a;
    font-weight: bold;
    text-align: left;
    line-height: 50px;
}

.article-content__text {
    text-align: left;
    font-size: 16px;
}

.article-content__buttons{
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}

.article-content__buttons .article-content__buttons--multiple{
    line-height: 0.5;
}
.text_divider{
  margin-top: 20px;
  display: inline-flex;
  height: auto;
}

@media screen and (min-width: 500px) {
  .article-content__wrapper{
    width: 70%;
  }
}

/* @media screen and (min-width: 1001px) {
  .article-content__wrapper{
    width: 60%;
  }
} */
.article-content__wrapper {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
  
.article-content__heading{
    font-size: 30px;
    color: #01257a;
    font-weight: bold;
    text-align: left;
    line-height: 50px;
}

.article-content__text {
    text-align: left;
    font-size: 16px;
}

.article-content__buttons{
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}

.article-content__buttons .article-content__buttons--multiple{
    line-height: 0.5;
}
.text_divider{
  margin-top: 20px;
  display: inline-flex;
  height: auto;
}

@media screen and (min-width: 500px) {
  .article-content__wrapper{
    width: 70%;
  }
}

/* @media screen and (min-width: 1001px) {
  .article-content__wrapper{
    width: 60%;
  }
} */
.article-upper__blocks {
    font-size: 30px;
    font-weight: bold;
    color: #01257a;
    text-align: center;
    gap: 50px;
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 50px auto 100px auto;
}
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  /* General Styles */
  .authproduct_banner-section {
    background-size: contain;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
  }

  .authproduct_banner-mobile,
  .authproduct_banner-content-mobile {
    display: none;
  }

  .authproduct_banner-content {
    position: absolute;
    top: clamp(0%, 2vw, 10%);
    right: clamp(5%, 5vw, 10%);
    max-width: 52%;
  }

  .authproduct_banner-subtitle h5,
  .authproduct-subtitle-container h6 {
    width: 100%;
    font-family: 'Gotham Rounded Light' !important;
  }

  .authproduct_banner-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 36vw;
  }
  @media (max-width: 1200px) {
    .authproduct_banner-content {
      max-width: 58%;
      top: clamp(0%, 0vw, 10%);
      right: clamp(5%, 5vw, 10%);
    }
  }

  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .authproduct_banner-mobile {
      display: block;
      height: auto;
      object-fit: contain;
      width: 100%;
    }

    .authproduct_banner-section {
      display: none;
    }

    .authproduct_banner-content {
      display: none;
    }

    .authproduct_banner-content-mobile {
      display: block;
      width: 90%;
      margin: 1rem auto;
      position: relative;
    }

    .authproduct_banner-title {
      text-align: left;
    }

    .authproduct_banner-button {
      width: 100%;
      text-align: center;
    }
  }
/* General Styles */
.authproduct_button-section {
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 1% 2%;
}

.authproduct_button-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  position: relative;
  transform: translateY(-4vh);
  margin-top: -5vh;
}

.authproduct_button-subtitle p {
  margin: 0;
}

.authproduct_button-button {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  width: 30%;
  margin-bottom: 1vh;
  margin-top: 8vh;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .authproduct_button-button {
    display: none;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .authproduct_button-content {
    display: none;
    width: 100%;
  }
}
/* General Styles */
.authproduct_content-textitem {
  text-align: left;
  width: 60%;
  height: auto;
  position: relative;
  align-content: center;
  display: flex;
  flex-direction: column;
  color: #00257A;
}

.authproduct_content-title {
  font-weight: bold;
  width: 100%;
}

.authproduct_content-titledescription h6 {
  margin-top: 2vh;
  font-family: 'Gotham Rounded Light' !important;
}

.authproduct_description {
  font-family: 'Gotham Rounded Light' !important;
}

.authproduct_content-footnote {
  width: 100%;
  margin-top: 2vh;
}

.authproduct_content-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.inner-image{
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

.authproduct_content-image {
  width: 80%;
  height: auto;
  object-fit: contain;
  /* margin-top: 2%; */
  display: flex;
}

.authproduct_content-wholeitem {
  display: block;
  margin: 0 5vw;
}
.desktop-hide{
  display: none;
}
.mobile-hide{
  display: block;
}

.footnote-container p {
  font-size: 10px !important;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .authproduct_content-wholeitem {
    flex-direction: column-reverse;
  }
  .authproduct_content-textitem {
    width: 100%;
    order: 0;
  }

  .authproduct_content-title {
    width: 100%;
  }

  .authproduct_content-titledescription {
    width: 100%;
  }

  .authproduct_content-footnote {
    width: 100%;
  }
  .authproduct_content-container {
    width: 100%;
  }

  .authproduct_content-image {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}

@media screen and (max-width: 480px) {
  .authproduct_content-textitem {
    margin-left: 0;
    order: 2; 
  }

  .authproduct_content-title {
    width: 100%;
  }

  .authproduct_content-titledescription {
    width: 100%;
  }

  .authproduct_content-footnote {
    width: 100%;
    margin-top: -1vh;
  }
  .authproduct_content-container {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }

  .authproduct_content-image {
    width: 100%;
    margin-top: 0;
    order: 1;
  }
  
  .footnote-container p {
    font-size: 8px !important;
  }
  .desktop-hide{
    display: block;
  }
  .mobile-hide{
    display: none;
  }
}
/* General Styles */
.authproduct_content_right-textitem {
  text-align: left;
  width: 53vw;
  height: auto;
}

.authproduct_content_right-title {
  font-weight: bold;
  width: 100%;
}

.authproduct_content_right-titledescription h6 {
  width: 100%;
  margin-top: 2vh;
  font-family: 'Gotham Rounded Light' !important;
}

.authproduct_description {
  font-family: 'Gotham Rounded Light' !important;
}

.authproduct_content_right-footnote {
  width: 100%;
}

.authproduct_content_right-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.authproduct_content_right-image {
  width: 50%;
  height: auto;
  object-fit: contain;
  margin-top: 2%;
  margin-left: auto;
}

.authproduct_content_right-wholeitem {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .authproduct_content_right-textitem {
    width: 100%;
  }

  .authproduct_content_right-title {
    width: 100%;
  }

  .authproduct_content_right-titledescription {
    width: 100%;
  }

  .authproduct_content_right-image {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .authproduct_content_right-title {
    width: 100%;
  }

  .authproduct_content_right-titledescription {
    width: 100%;
  }

  .authproduct_content_right-image {
    width: 100%;
    margin: 5% 0;
  }
}
.section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    }

/* General Styles */
.authproduct_lowerbanner-button{
  z-index: 999;
  position: relative;
}
.authproduct-lower {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.authproduct-lower__title {
  font-weight: bold;
  margin-bottom: 20px;
  color: {{ section.settings.heading_color }};
}

.authproduct-lower__list {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  gap: 45px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.authproduct-lower-item {
  flex: 0 0 calc(33.333% - 14px);
  margin-top: 10vh;
}

.authproduct-lower-item__image-container {
  width: 100%;
  margin-bottom: 5vh;
}

.authproduct-lower-item__image {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.authproduct-lower-item__content {
  padding-top: 15px;
  max-width: 320px;
}

.authproduct-lower-item__title {
  font-weight: bold;
  margin-bottom: 5px;
}

.authproduct-lower-item__description {
  margin-bottom: 10px;
}

.authproduct-lower-item__link {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
}

.authproduct-lower__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.authproduct-lower__arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.3s, color 0.3s;
}

.authproduct_lowerbanner-text {
  width: 27%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0% 2%;
  margin-right: 3%;
}

.authproduct_lowerbanner-text__title {
  font-weight: bold;
  margin-bottom: 2vh;
}

.authproduct_lowerbanner-text__titledescription {
  font-weight: bold;
}

.image__campaign {
  width: 100%;
  height: 50vh;
}

.image_campaign-mobile {
  display: none;
}

.authproduct_lowerbanner-button {
  display: inline-block;
  /* padding: 10px 20px; */
  text-decoration: none;
  border-radius: 5px;
  text-align: left;
  width: 100%;
}

.authproduct_btn {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  width: 180px;
  background-color: #00257A;
  color: #FFFFFF;
  margin-top: 25px;
}

.authproduct-image__lowerbanner {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  /* transform: translateY(12vh); */
  margin-top: -37vh;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .authproduct-lower__list {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .image__campaign {
    display: none;
  }

  .image_campaign-mobile {
    display: block;
    height: auto;
    width: 45%;
    margin: 0px 25vw;
    /* margin: 0 12vw; */
  }
  .authproduct-lower-item__image {
    width: 100%;
    /* margin: 0px 25vw; */
  }
  .authproduct_lowerbanner-text {
    width: 90%;
    margin-left: 0;
    position: relative;
    top: -28vh;
    margin: 0 auto;
  }

  .authproduct_lowerbanner-text__title {
    width: 100%;
  }

  .authproduct_lowerbanner-text__titledescription {
    width: 100%;
  }

  .authproduct_btn {
    width: 100%;
  }

  .authproduct-lower-item__image-container {
    width: 90%;
    position: relative;
    top: -21vh;
    margin: 0 auto;
  }

  .authproduct-image__lowerbanner {
    width: 100%;
    height: 74vh;
    position: relative;
    top: 0px;
    z-index: 10;
    overflow: hidden;
  }

  .image-authproduct-container {
    position: relative;
    transform: translateY(-80vh);
  }

  .authproduct-lower {
    height: 550px;
  }
}

@media screen and (max-width: 480px) {
  .authproduct-lower__list {
      flex-direction: column;
      align-items: center;
      height: auto;
    }
  .authproduct-lowerbanner__mobile {
    display: block;
    height: auto;
    width: 100%;
    margin: 0 5rem;
  }

  .image_campaign-mobile {
    display: block;
    height: auto;
    width: 50%;
    margin: 0px 25vw;
  }

  .authproduct-lower-item__image-container {
    width: 90%;
    position: relative;
    top: -21vh;
    left: 0vw;
  }

  .authproduct-lower-item__image {
    width: 100%;
    margin: 0px auto;
  }
  .authproduct_lowerbanner-text {
    width: 100%;
    margin-left: 0;
    position: relative;
    top: -26vh;
    padding: 0px 7vw;
    margin: 0 auto;
  }
  .authproduct_btn {
    width: 100%;
  }
  .image-authproduct-container {
    transform: translateY(-80vh);
  }
  .authproduct-image__lowerbanner {
    width: 100%;
    height: 74vh;
    position: relative;
    top: 0px;
    z-index: 10;
    overflow: hidden;
    margin-bottom: -30vh;
  }
  .authproduct-lower {
    height: 500px;
  }
}
.authproduct__media {
    position: absolute;
    width: 90%;
    top: 0;
    bottom: 0;
    left: 5%;
    right: 0;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media screen and (max-width: 768px){
    .authproduct__media{
      padding: 0%;
    }
  }
.explore-topics-section {
    width: 100%;
    position: relative;
  }

  .content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .image-container-desktop {
    flex-basis: 20%;
    width: 20%;
  }

  .responsive-image {
    width: 100%;
    height: auto;
  }

  .button-container {
    flex-basis: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 6%;
  }

  .background-with-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 8%;
  }

  .background-with-buttons:hover {
    opacity: 0.9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  .image-container-mobile{
    display: none;
  }

  @media (max-width: 768px) {
    .explore-topics-banner {
      display: none;
    }

    .content-wrapper {
      position: relative;
      flex-direction: column;
      align-items: center;
      width: 90%;
      margin: 0 auto;
      padding-bottom: 50px
    }

    .image-container-desktop {
      display: none;
    }

    .image-container-mobile {
      display: block;
      position: relative;
      width: 40%;
      margin: 0 auto;
      transform: translate(0px, 10px);
    }

    .button-container {
      width: 95%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
    }

    .background-with-buttons {
      width: 100%;
      height: 50px;
      padding: 0;
    }

    .background-with-buttons-1{
     order:1
    }

    .background-with-buttons-2{
      order:3
    }

    .background-with-buttons-3{
      order:5
    }

    .background-with-buttons-4{
      order:2
    }

    .background-with-buttons-5{
      order:4
    }
    .image-banner-section .image-banner-image{
      display: none;
    }
  }
.banner-fullsize-desktop {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .banner-fullsize-mobile {
    display: none;
    position: relative;
  }

  @media (max-width: 500px) {
    .banner-fullsize-desktop {
      display: none;
    }

    .banner-fullsize-mobile {
      display: block;
      margin-top: 10px;
    }
  }
.banner-text-section {
  position: relative;
  overflow: hidden;
}

.slide__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.align--top {
  top: 0;
  transform: none;
}

.align--center {
  top: 50%;
  transform: translateY(-50%);
}

.align--bottom {
  top: auto;
  bottom: 0;
  transform: none;
}

.align-md--left {
  left: 0;
}

.align-md--center {
  left: 50%;
  transform: translate(-50%, -50%);
}

.align-md--right {
  right: 0;
}

@media screen and (max-width: 749px) {
  .slide__content {
    width: 100% !important;
    padding: 15px;
  }
}
.banner-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .banner-content-container {
    position: absolute;
    top: clamp(5%, 3vw, 15%);
    right: clamp(4%, 10vw, 10%);
    max-width: 30%;
  }

  .title {
    margin-bottom: clamp(0px, 1vw, 15px);
  }

  .subtitle-container * {
    color: inherit !important;
  }

  .subtitle,
  .body {
    margin-bottom: clamp(0px, 2.5vw, 10px);
    line-height: 1.2;
  }

  .subtitle p,
  .body p {
    margin: 0;
  }

  .banner-button {
    padding: 10px 70px;
    margin-top: 20px;
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .banner-button:hover {
    opacity: 0.8;
  }

  .banner-background-desktop {
    display: block;
  }

  .banner-background-mobile {
    display: none;
  }

  @media (max-width: 1450px) {
    .banner-content-container {
      top: clamp(10%, 4vw, 20%);
      right: clamp(4%, 8vw, 10%);
      max-width: 35%;
    }

    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .banner-button {
      padding: 10px 55px;
      margin-top: 10px;
    }
  }

  @media (max-width: 1200px) {
    .banner-content-container {
      top: clamp(5%, 5vw, 10%);
      right: clamp(4%, 4vw, 6%);
      max-width: 40%;
    }

    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .banner-button {
      padding: 8px 45px;
      margin-top: 8px;
    }
  }

  @media (max-width: 950px) {
    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .banner-button {
      padding: 8px 40px;
      margin-top: 5px;
    }
  }

  @media (max-width: 768px) {
    .title {
      margin-bottom: 3px;
    }

    .subtitle,
    .body {
      margin-bottom: 3px;
    }

    .banner-button {
      padding: 6px 30px;
      margin-top: 2px;
    }
  }

  @media (max-width: 500px) {
    .banner-background-desktop {
      display: none;
    }

    .banner-background-mobile {
      display: block;
    }

    .banner-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      margin: 20px auto 40px;
      position: relative;
    }

    .title {
      margin-bottom: 10px;
    }

    .subtitle,
    .body {
      margin-bottom: 10px;
    }

    .banner-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
.children-banner-background.mobile img{
    width: 100%;
  }
  .children-banner-content-wrapper {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .children-banner-content-wrapper-mobile {
    display: none;
  }

  .children-banner-title,
  .children-banner-subtitle {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .children-banner-content-wrapper-desktop-left {
    text-align: left;
  }

  .children-banner-content-wrapper-desktop-center {
    text-align: center;
  }

  .children-banner-content-wrapper-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .children-banner-title-mobile {
      margin: 20px 0 10px 0;
    }
    .children-banner-content-wrapper {
      display: none;
    }
    .children-banner-content-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .children-banner-content-wrapper-mobile-left {
      text-align: left;
    }
    .children-banner-content-wrapper-mobile-center {
      text-align: center;
    }
    .children-banner-content-wrapper-mobile-right {
      text-align: right;
    }
    .children-banner-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.shop-now-title-color h3 {
     color: #6c6c6c;
   }

   .pages-title-color h3 {
     color: #00257A;
   }

  .privilege-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: column;
  }

  .privilege-content-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin-top: -10%;
    /* margin: 5% 0%; */
    /* padding: 5%; */
  }

  /* Position classes for desktop */
  .desktop-top-align {
    top: 10%;
  }

  .desktop-center-align {
    top: 50%;
    /* transform: translate(-50%, -50%); */
  }

  .desktop-bottom-align {
    bottom: 10%;
    top: auto;
  }

  .privilege-title-container {
    width: 100%;
    max-width: 71%;
    justify-self: center;
  }
  .privilege-title {
    margin: 15px 0;
  }
  .privilege-subtitle-container {
    max-width: 90%;
    /* justify-self: center; */
  }

  .privilege-subtitle {
    margin-bottom: 10px;
    font-weight: normal;
    display: block;
  }

  .privilege-background-desktop {
    display: block;
    width: 100%;
  }

  .privilege-background-mobile {
    display: none;
    width: 100%;
  }

  /* Text alignment classes */
  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

  .text-right {
    text-align: right;
  }
  @media screen and (max-width: 1200px) {
    .privilege-title-container {
      max-width: 80%;
    }
  }

  @media (max-width: 768px) {
    .privilege-content-container {
      width: 100%;
    }

    .privilege-background-desktop {
      display: none;
    }

    .privilege-background-mobile {
      display: block;
      width: 100%
    }

    .privilege-subtitle-container {
      text-align: left;
      width: 100%;    
    }

    .mobile-top-align {
      margin-bottom: 20px;
    }

    .mobile-bottom-align {
      margin-top: 20px;
    }

    .privilege-title {
      margin-bottom: 10px;
    }

  }
  @media screen and (max-width: 480px) {
    .privilege-subtitle-container {
      text-align: left;
      width: 100%;    
    }
  }
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

.club-privilege {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.club-privilege__title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #00257A;
  /* font-family: DIN Round Pro; */
  text-align: center;
  line-height: 61.82px;
}

.club-privilege__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privilege-item {
  flex: 0 0 calc(33.333% - 14px);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  border-top: 10px solid #00257a;
}

.privilege-item__image-container {
  width: 100%;
  padding-top: 34.5%;
  position: relative;
  overflow: hidden;
  /* border-top: 10px solid #00257a; */
}

.privilege-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.privilege-item__image-container_2 {
  width: 100%;
  padding-top: 34.5%;
  position: relative;
  overflow: hidden;
}

.privilege-item__content {
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.privilege-item__title {
  font-weight: bold;
  margin-bottom: 5px;
  max-width: 80%;
}

.privilege-item__description {
  margin-bottom: 10px;
}

.privilege-item__link {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
}

.club-privilege__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}


@media (max-width: 768px) {
    .club-privilege__list {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    }
    .privilege-item__content {
        flex-direction: column;
    }
    .privilege-item__title {
        text-align: center;
        margin-bottom: 1vh;
    }
}
.parentsider-section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .parentsider-header {
    text-align: center;
    /* margin-bottom: 20px; */
    margin: 5% auto;
  }
  
  .parentsider-promo {
    display: flex;
    gap: 20px;
    background-color: #D4EFFD;
    padding: 25px;
    border-radius: 8px;
  }
  
  .promo-image-desktop {
    /* border-radius: 8px; */
    display: flex;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .promo-image-mobile {
    display: none;
  }
  
  .parentsider-footer {
    display: flex;
    justify-content: space-between;
    margin: 7% auto 0;
  }
  
  .app-download {
    width: 50%;
    height: auto;
  }
  
  .app-buttons{
    display: flex;
    flex-direction: row;
    width: 70%;
    height: auto;
    gap: 50px;
    margin-top: 2vh;
  }

  .tnc-subdetail-container{
    padding-left: 20px;
  }
  .terms-conditions {
    margin-right: 10vw;
  }
  
  .terms-conditions-label {
    margin-left: 20px;
  }

  .tnc-detail-container{
    margin-top: 20px;
  }

@media screen and (max-width: 768px){
    .promo-image-desktop {
        display: none;
    }

  .promo-image-mobile {
    display: block;
    width: 100%;
  }

  .parentsider-promo {
    padding: 10px;
  }
  .parentsider-footer {
    flex-direction: column;
    width: 100%;
  }
  .app-download {
    width: 100%
  }
  .app-buttons {
    width: 100%;
    margin-top: 1vh;
    height: auto;
    gap: 20px;
    }
    .terms-conditions {
        margin-top: 3vh;
    }
    .terms-conditions-label {
      margin-left: 0;
    }
    .tnc-detail-container {
      margin-top: 10px;
      margin-left: -23px;
  }
}

@media screen and (max-width: 480px){
    .promo-image-desktop {
        display: none;
    }

  .promo-image-mobile {
    display: block;
    width: 100%;
  }
  .parentsider-promo {
    padding: 10px;
  }
  .parentsider-footer {
    flex-direction: column;
    width: 100%;
  }
  .app-download {
    width: 80%
  }
  .app-buttons {
    width: 100%;
    margin-top: 1vh;
    height: auto;
    gap: 20px;
    }
    .terms-conditions {
        margin-top: 3vh;
        margin-right: 0;
    }
    .terms-conditions-label {
      margin-left: 0;
    }

}
.contact-us-form {
    max-width: 100%;
    font-family: Arial
    , sans-serif;
    color: #333;
    background-color: #fff;
    padding: 20px;
  }

  .contact-us-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .contact-us-group {
    margin-bottom: 15px;
  }

  .contact-us-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .contact-us-group input[type='text'],
  .contact-us-group input[type='email'],
  .contact-us-group input[type='tel'],
  .contact-us-group select,
  .contact-us-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
  }

  .contact-us-terms {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 20px;
  }

  .contact-us-terms input[type='checkbox'] {
    margin-right: 10px;
    vertical-align: top;
  }


  .contact-us-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00205b;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
  }

  .contact-us-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-us-form {
      padding: 15px;
    }
  }
.contact-form-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 40px;
    background-color: #fff;
  }

  .contact-form-title {
    text-align: left;
  }

  .contact-form-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
  }

  .contact-form-group {
    width: 100%;
    margin: 15px 0;
  }

  .contact-form-group p {
    display: block;
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 12px;
    border: 0px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    color: #999;
    background-color: rgb(153 153 153 / 13%);
  }

  textarea {
    resize: none;
  }

  input::placeholder {
    color: #aaa;
    font-style: italic;
  }

  .contact-radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  input[type='checkbox'],
  input[type='radio'] {
    width: auto;
    margin-right: 8px;
  }

  .contact-submit-button {
    background-color: #002c77;
    color: white;
    padding: 8px;
    width: 30%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .contact-submit-button:hover {
    background-color: #004bb5;
  }

  input::placeholder {
    font-style: normal;
  }


  .contact-form-row.custom-responsive {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; 
}

.contact-form-row.custom-responsive .contact-form-group {
  flex: 1; 
}



  /* Phone Breakpoint: Further reduce font sizes */
  @media screen and (max-width: 768px) {
    .contact-form-section {
      margin: 30px auto;
    }

    .contact-submit-button {
      width: 100%;
      border-radius: 4px;
    }

    @media (max-width: 768px) { 
  .contact-form-row.custom-responsive {
    flex-direction: column;
  }

  .contact-form-row.custom-responsive .contact-form-group {
    width: 100%;
  }
}
  }
/* Content Image Alignment Classes */
.content-image-align-center { 
  align-items: center; 
} 

.content-image-align-left { 
  left: 25%; 
} 

.content-image-align-image-left { 
  left: 25%; 
} 

.content-image-align-right { 
  right: 25%; 
} 

.content-image-align-image-right { 
  left: 75%; 
} 

.content-image-text-align-left { 
  text-align: left; 
}

.content-image-text-align-center { 
  text-align: center; 
}

.content-image-text-align-right { 
  text-align: right; 
} 

/* Background and Section Styles */
.content-image-background { 
  background-color: {{ section.settings.background_color | default: '#00257A' }}; 
  padding: 0; 
  margin: 0;
}

/* Main Section Styles */
.content-image-section {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 10rem;
  background: linear-gradient(
        to right,
        #00257A 0%,
        #0475D7 67%,
        #00257A 100%
    );
}

.content-image-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35%;
  height: 400px;
  left: 10%;
  position: relative;
}

.content-image-desktop {
  display: block;
}

.content-image-mobile {
  display: none;
}

.content-image-title,
.content-image-subtitle {
  margin: 10px 0;
}

.content-image-description {
  margin: 20px 0;
}

.content-image-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}

.content-image-banner {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40%;
  height: auto;
  max-width: 700px;
}

/* Responsive Styles */
@media (max-width: 1300px) {
  .content-image-content {
    width: 50%;
    height: 315px;
    left: 5%;
  }

  .content-image-banner {
    left: 60%;
  }

  .content-image-description p {
    font-size: 0.8rem;
  }

  .content-image-title h2 {
    font-size: 2rem;
  }

  .content-image-title {
    margin: 0;
  }

  .content-image-description {
    margin: 0;
  }
}

@media (max-width: 1100px) {
  .content-image-banner {
    left: 51%;
    width: 50%;
  }

  .content-image-content {
    width: 40%;
  }
}

@media (max-width: 850px) {
  .content-image-banner {
    left: 44%;
    width: 57%;
  }
}

@media (max-width: 768px) {
  .content-image-section {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 20px;
    background: transparent;
  }

  .content-image-content {
    height: 300px;
    background: linear-gradient(
        to right,
        #00257A 0%,
        #0475D7 67%,
        #00257A 100%
    );
  }

  .content-image-subtitle {
    margin: 5px 0;
  }

  .content-image-description {
    margin: 10px 0;
  }

  .content-image-banner {
    left: 45%;
    width: 50%;
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .content-image-text-background { 
    background-color: {{ section.settings.background_color | default: '#00257A' }}; 
    left: 0; 
    margin: 0; 
  } 
  
  .content-image-align-image-left { 
    left: 50%; 
  } 
  
  .content-image-background { 
    background-color: transparent; 
  }
  
  .content-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .content-image-desktop {
    display: none;
  }

  .content-image-mobile {
    display: block;
    order: 1;
  }

  .content-image-content {
    width: 100%;
    height: 250px;
    order: 2;
     background: linear-gradient(
        to right,
        #00257A 0%,
        #0475D7 67%,
        #00257A 100%
    );
  }

  .content-image-title,
  .content-image-subtitle,
  .content-image-description,
  .content-image-button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .content-image-banner {
    position: relative;
    left: 0;
    width: 100%;
    top: 0;
  }
}
/* Basic styling for the background image section */
  .custom-background-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    width: 1920px;
  }

  .custom-background-section .overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-background-section .content-wrapper {
    max-width: 700px;
    color: #fff;
  }

  .custom-background-section .title {
    font-size: 64px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.6px;
  }

  .custom-background-section .subtitle {
    font-size: 25px;
    font-weight: 350;
    line-height: 36px;
    letter-spacing: 0.6px;
    color: #00257a;
  }

  @media (max-width: 767px) {
    .custom-background-section {
      height: 200px;
      width: 390px;
    }

    .background-image-wrapper {
      height: 200px; /* Smaller height for mobile */
      width: 390px;
      background-size: contain; /* Adjust background scaling for smaller screens */
      background-repeat: no-repeat;
    }
    .custom-background-section .title {
      font-size: 24px;
      font-weight: 700;
      line-height: 30.91px;
    }

    .custom-background-section .subtitle {
      font-size: 12px;
      font-weight: 400;
      line-height: 14.4px;
    }
    .custom-background-section .content-wrapper {
    padding-left: 15px;
    text-align: center;

    /* margin-left: -36px;
        margin-top: 130px; */
    }
  }
  /* } */
  /* .custom-background-section .content-wrapper {
    padding-left: 15px;
    text-align: center; /* Center-align text for better readability on mobile */
  } */
.background-sec {
  margin: 0;
}

.custom-banner-section {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 10rem;
}

.custom-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35%;
  height: 400px;
  left: 10%;
  position: relative;
}

.custom-banner-desktop {
  display: block;
}

.custom-banner-mobile {
  display: none;
}

.custom-banner-title,
.custom-banner-subtitle {
  margin: 10px 0;
}

.custom-banner-description {
  margin: 20px 0;
}

.custom-banner-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}

.image-banner {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40%;
  height: auto;
  max-width: 700px;
}

@media (max-width: 1300px) {
  .custom-banner-content {
    width: 50%;
    height: 315px;
    left: 5%;
  }

  .image-banner {
    left: 60%;
  }

  .custom-banner-description p {
    font-size: 0.8rem;
  }

  .custom-banner-title h2 {
    font-size: 2rem;
  }

  .custom-banner-title{
    margin: 0;
  }

  .custom-banner-description{
    margin: 0;
  }
}

@media (max-width: 1100px) {
  .image-banner {
    left: 51%;
    width: 50%;
  }

  .custom-banner-content {
      width: 40%;
    }
}

@media (max-width: 850px) {
  .image-banner {
    left: 44%;
    width: 57%;
  }
}

@media (max-width: 768px) {
  .custom-banner-section {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 20px;
  }

  .custom-banner-content {
    height: 300px;
  }

  .custom-banner-subtitle {
    margin: 5px 0;
  }

  .custom-banner-description {
    margin: 10px 0;
  }

  .image-banner {
    left: 45%;
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width: 580px) {
  .custom-banner-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .custom-banner-desktop {
    display: none;
  }

  .custom-banner-mobile {
    display: block;
    order: 1;
  }

  .custom-banner-content {
    width: 100%;
    height: 250px;
    order: 2;
  }

  .custom-banner-title,
  .custom-banner-subtitle,
  .custom-banner-description,
  .custom-banner-button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-banner {
    position: relative;
    left: 0;
    width: 100%;
    top: 0;
  }
}
.responsive-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.responsive-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .responsive-banner {
    height: 40vh; /* Smaller height for tablets and phones */
  }
}

@media (max-width: 480px) {
  .responsive-banner {
    height: 30vh; /* Smaller height for smaller phones */
  }
}
.cus-address-row {
    margin: 15px 0;
  }
  .button-container-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .title-icon-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  .address-management {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system
    , BlinkMacSystemFont
    , 'Segoe UI'
    , Roboto
    , Oxygen
    , Ubuntu
    , Cantarell
    , sans-serif;
  }
  .column {
    display: flex;
    flex-direction: column;
    flex: 50%;
    padding: 0 5px;
    flex: 1;
    margin-right: 10px;
  }
  /* Address list container */
  .address-list {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }

  /* Individual address card */
  .address-item {
    flex: 1;
    position: relative;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background-color: #fcf6f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
  }

  .default-address {
    background-color: #d4effd;
  }

  /* Address content styling */
  .address-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0 0 15px;
  }

  .address-item p {
    margin: 5px 0;
    color: #00257a;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Actions container */
  .actions {
    display: flex;
    align-items: flex-start;
  }

  /* Edit and Delete buttons */
  .edit-btn,
  .delete-btn {
    background: none;
    border: none;
    margin-top: -10px;
    margin-right: -10px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
  }

  .edit-btn:hover {
    color: #1e3a8a;
  }

  .delete-btn:hover {
    color: #dc2626;
  }

  /* Default address checkbox */
  .address-item input[type='checkbox'] {
    margin-right: 8px;
  }

  .address-item input[type='checkbox'] + p {
    display: inline-block;
    color: #059669;
    font-size: 13px;
  }

  /* Add New Address button */
  .add-address-btn {
    width: 25%;
    padding: 15px;
    background-color: #002b7f;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .add-address-btn:hover {
    background-color: #1e3a8a;
  }

  /* Address Form Styling */
  .address-form {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 20px;
  }

  .address-form h2 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 20px;
  }

  /* Form fields */
  .address-form label {
    display: block;
    margin-bottom: 8px;
    color: #4d4d4d !important;
    font-size: 14px;
    font-weight: 700;
  }

  .address-form input[type='text'],
  .address-form select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-right: 10px;
    font-size: 14px;
  }

  .address-form input[type='text']:focus,
  .address-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  /* Form buttons */
  .save-btn,
  .cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 200px;
  }

  .save-btn {
    background-color: #002b7f;
    color: white;
    border: none;
  }

  .save-btn:hover {
    background-color: #1e3a8a;
  }

  .cancel-btn {
    background-color: transparent;
    color: #00257a;
    border: 2px solid #00257a;
  }

  .cancel-btn:hover {
    background-color: #e5e7eb;
  }
  @media (max-width: 1024px) {
    .add-address-btn {
      width: 30%;
    }
    .column {
      flex: 0 0 48%;
    }
    .column-mobile {
      flex: 1;
      box-sizing: border-box;
    }
  }

  @media (max-width: 768px) {
    .add-address-btn {
      width: 70%;
    }
    .row label {
      height: 35px;
    }
    .address-list {
      display: flex;
      flex-direction: column;
    }
    .column {
      /* flex: 0 0 45%; */

      flex: 100%;
      padding: 5px 0;

    }
    .column-mobile {
      flex: 1;
      box-sizing: border-box;
    }
  }

  @media (max-width: 500px) {
    .row label {
      height: 25px;
    }
  }
.colorful-title h3 {
    color: #999999;
  }
  .pages-title-color h3 {
    color: #00257a;
  }

  .colorful-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .colorful-content-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  /* Position classes for desktop */
  .desktop-top-align {
    top: 10%;
  }

  .desktop-center-align {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .desktop-bottom-align {
    bottom: 10%;
    top: auto;
  }

  .colorful-title {
    margin: 15px 0;
  }

  .colorful-subtitle {
    margin: 5px;
    font-weight: normal;
    display: block;
  }

  .coloful-background-desktop {
    display: block;
  }

  .coloful-background-mobile {
    display: none;
  }

  /* Text alignment classes */
  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

  .text-right {
    text-align: right;
  }

  @media (max-width: 500px) {
    .colorful-content-container {
      width: 80%;
    }

    .coloful-background-desktop {
      display: none;
    }

    .coloful-background-mobile {
      display: block;
    }

    .mobile-top-align {
      margin-bottom: 20px;
    }

    .mobile-bottom-align {
      margin-top: 20px;
    }

    .colorful-title {
      margin-bottom: 10px;
    }
  }
#recover,
  #recover + div {
    display: none;
  }

  #recover:target {
    display: block;
  }

  #recover:target + div {
    display: block;
  }

  #recover:target ~ #login,
  #recover:target ~ #login + div {
    display: none;
  }

  .login__grid {
    gap: 2vw;
    align-items: start;
    width: 90%;
    margin: 40px 5% 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .login__form-container {
    background-color: #fff;
    border-radius: 8px;
    align-self: start;
  }

  .login__image-register {
    text-align: center;
  }

  .image-picker_login {
    width: 500px;
    height: auto;
  }

  .register-button,
  .login__login-button {
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00257a;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    border: none;
  }

  .cancel-button {
    background-color: #d3d3d3;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 60%;
  }

  .login__login-button {
    width: 60%;
  }

  .register-button {
    width: 100%;
  }

  .login__login-button h6,
  .register-button h6 {
    color: white;
  }
  .register-footnote {
    color: #4d4d4d;
    padding: 10px 0 50px;
    margin: 0;
  }

  .login__subtitle {
    margin-bottom: 15px;
  }

  .input-group {
    margin: 0 !important;
  }

  .login__input input {
    background-color: #f5f5f5;
    color: #333;
    padding: 10px;
    border-radius: 4px;
  }

  .login__input input::placeholder {
    text-align: left;
    color: #999999;
  }

  .login__extra-fields {
    display: flex;
    align-items: center;
    margin: 5px 0 20px;
  }

  .login__email-text {
    margin: 0;
  }

  .login__forgot-text {
    margin: 0 5px 0 0;
  }

  .login__forgot p {
    text-decoration: underline;
    margin: 0;
  }

  .register-button:hover {
    background-color: #00257a;
    color: #fff;
  }

  .image-picker__content {
    width: 80%;
  }

  .login__image-picker {
    display: flex;
    justify-content: flex-end;
  }

  @media (max-width: 768px) {
    .login__grid {
      display: block;
      margin: 20px auto 50px;
    }
    .login__login-button,
    .register-button {
      width: 100%;
      border-radius: 5px;
    }

    .cancel-button {
      width: 100%;
      border-radius: 5px;
    }

    .login__image-picker {
      margin: 40px 0;
    }
    .login__extra-fields {
      margin: 5px 0 15px;
    }
    .register-footnote {
      padding: 10px 0 20px;
    }
    .image-picker__content {
      width: 100%;
    }
  }
.register__form-container {
    width: 40%;
    background-color: #fff;
    border-radius: 8px;
    align-self: start;
}

.form__error-message {
    position: relative;
    bottom: 15px;
}

@media (max-width: 768px) {
    .register__form-container {
        width: 100%;
    }

    .form__error-message {
        bottom: 10px;
    }
}
.development-banner-content-wrapper {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .development-banner-content-wrapper-mobile {
    display: none;
  }

  .development-banner-title,
  .development-banner-subtitle {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .development-banner-content-wrapper-desktop-left {
    text-align: left;
  }

  .development-banner-content-wrapper-desktop-center {
    text-align: center;
  }

  .development-banner-content-wrapper-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .development-banner-title-mobile {
      margin: 20px 0 10px 0;
    }
    .development-banner-content-wrapper {
      display: none;
    }
    .development-banner-content-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .development-banner-content-wrapper-mobile-left {
      text-align: left;
    }
    .development-banner-content-wrapper-mobile-center {
      text-align: center;
    }
    .development-banner-content-wrapper-mobile-right {
      text-align: right;
    }
    .development-banner-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.content-wrapper-about-us {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .content-wrapper-about-us-mobile {
    display: none;
  }

  .about-us-title {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .content-wrapper-about-us-desktop-left {
    text-align: left;
  }

  .content-wrapper-about-us-desktop-center {
    text-align: center;
  }

  .content-wrapper-about-us-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }

    .mobile {
      display: block;
    }

    .about-us-title-mobile {
      margin: 20px 0 10px 0;
    }

    .content-wrapper-about-us {
      display: none;
    }

    .content-wrapper-about-us-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }

    .content-wrapper-about-us-mobile-left {
      text-align: left;
    }

    .content-wrapper-about-us-mobile-center {
      text-align: center;
    }

    .content-wrapper-about-us-mobile-right {
      text-align: right;
    }

    .about-us-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.child-submit {
    display: flex;
    justify-content: center;
  }
  .child-submit-button{
    font-weight: 700; 
    background-color: #00257a; 
    color: white; 
    padding: 8px 30px; 
    width:40%;  
    border: none; 
    border-radius: 10px; 
    cursor: pointer;
    display: flex; 
    align-items: center; 
    justify-content: center;
  }
  .child-details:nth-child(even) {
    background-color: #9999994d;
  }
  .child-details:nth-child(even) .profile-form-control {
    background-color: #f6f6f6;
  }
  .child-entry:nth-child(even) {
    background-color: #9999994d;
  }
  .child-entry:nth-child(even) .profile-form-control {
    background-color: #f6f6f6;
  }
  .child-details {
    margin-top: 5px;
    padding: 2px;
  }
  .profile-preferences-container {
    display: flex;
    width: 80%;
    margin: 0 auto;
  }

  .edit-profile-required {
    margin-bottom: 20px;
  }

  /* Sidebar styling */
  .profile-sidebar {
    display: block;
    width: 25%;
    background-color: #ffffff;
    padding: 20px;
  }

  .profile-mobile-bar {
    display: none;
  }

  .profile-nav-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #dadce0;
    border: none;
    color: #00257a;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .profile-nav-active,
  .profile-nav-button:hover {
    background-color: #00257a;
    color: #ffffff;
  }

  .profile-submit-container {
    width: 40%;
    margin: 20px auto;
    border-radius: 10px;
  }

  .profile-submit-btn {
    background-color: #00257a;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .profile-submit-btn:hover {
    background-color: #001a4a;
  }

  .profile-cancel-btn {
    background-color: white;
    color: #00257a;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #00257a;
  }

  .profile-cancel-btn:hover {
    background-color: #d3d3d3;
  }

  /* My Profile */
  .my-profile-form {
    max-width: 100%;
    background-color: #fff;
    padding: 20px;
  }

  .my-profile-group {
    margin-bottom: 15px;
  }

  .my-profile-group label,
  .my-profile-first-name label,
  .my-profile-last-name label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #4d4d4d;
  }

  .my-profile-group input[type='text'],
  .my-profile-group input[type='email'],
  .my-profile-group input[type='tel'],
  .my-profile-group input[type='date'],
  .my-profile-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #000000;
  }

  .my-profile-first-name,
  .my-profile-last-name {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .my-profile-language,
  .my-profile-name {
    display: flex;
    gap: 20px;
  }

  .my-profile-language label,
  .my-profile-gender label {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .my-profile-shipping-link {
    color: #00205b;
    text-decoration: underline;
    display: inline-block;
  }

  .my-profile-shipping-link:hover {
    color: #001a4a;
  }

  .profile-login-button {
    color: #00205b;
    text-decoration: underline;
  }

  /* Content area styling */
  .profile-content {
    width: 75%;
    padding: 20px;
    background-color: #ffffff;
  }

  .profile-section {
    display: none;
  }

  #profile {
    display: block;
  }

  .profile-agreement-text {
    color: #333333;
    margin-bottom: 15px;
  }

  .profile-checkbox-label {
    display: block;
    margin: 10px 0;
    color: #333333;
  }

  .profile-contact-options label {
    display: inline-block;
    margin-right: 20px;
  }

  input[type='checkbox'] {
    margin-right: 10px;
  }

  .edit-profile-form {
    width: 100%;
  }

  .profile-form-group {
    margin-bottom: 20px;
  }

  .profile-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #4d4d4d;
  }

  .profile-form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #000000;
    margin-bottom: 10px;
  }

  .profile-date-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .profile-date-input-container input {
    flex: 1;
  }

  .profile-calendar-button {
    background: none;
    border: none;
    color: #00257a;
    cursor: pointer;
    padding: 0;
  }

  .profile-button-group {
    display: flex;
    gap: 10px;
    margin: 0;
  }

  .profile-confirm-button {
    background-color: #00257a;
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }

  .profile-cancel-button {
    background-color: white;
    color: #00257a;
    border: 1px solid #00257a;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
  }

  .profile-add-child-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #00257a;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 8px 40px 8px 40px;
    cursor: pointer;
    font-weight: bold;
    margin: 20px 0;
    margin-left: 0px;
  }

  .profile-add-child-button span {
    font-weight: bold;
  }

  .sample-request-button-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .add-child-wrapper{
    display: flex;
    gap: 20px;
  }

  #child-details-form{
    background: #DADCE0;
    padding: 10px;
    margin-top: 40px;
  }

  /* .child-input-wrapper{
    display: flex;
  } */

  .child-list-wrapper >div {
    display: flex;
    flex-grow: 1;
    align-items: end;
  }

  .child-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .child-input-wrapper{
    flex-grow: 1;
  }

  .child-input-wrapper label{
    font-family: 'DIN Round Pro' !important;
    color: #00257A;
  }


  .confirm-button, .button-cancel{
    padding: 8px 28px;
    border: 2px solid #00257A;
    font-family: 'Gotham Rounded Book' !important;
    font-size: 20px;
    border-radius: 10px;
  }

  .confirm-button{
    background: #00257A;
    color: white;
  }

  .button-cancel{
    background: white;
    color: #00257A;
  }


  /* Responsive adjustments */
  @media (max-width: 768px) {
    .profile-preferences-container {
      width: 100%;
      flex-direction: column;
    }

    .profile-sidebar {
      display: none;
    }

    .profile-mobile-bar {
      display: block;
      width: 90%;
      margin: 0 auto;
    }

    .profile-bar-size {
      padding: 10px;
    }

    .mobile-nav-content {
      background: white;
    }

    .mobile-nav-option {
      width: 100%;
      padding: 10px;
      text-align: left;
      border: none;
      background: white;
      color: #00257a;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: block;
    }

    .mobile-nav-option:hover {
      background-color: #f5f5f5;
    }

    .mobile-nav-option.active {
      background-color: #00257a;
      color: white;
    }

    .my-profile-form {
      padding: 15px;
    }

    .profile-submit-container {
      width: 100%;
    }

    .profile-submit-btn {
      border-radius: 4px;
    }

    .profile-cancel-btn {
      border-radius: 4px;
    }

    .profile-content {
      width: 90%;
      padding: 0;
      margin: 20px auto 0 auto;
    }

    .profile-add-child-button{
      display: flex;
      justify-self: center;
    }

    .child-submit-button{
      width: 100%;
      display: block;
    }
  }
/* minimum width to hide  */

  .hero-banner-desktop {
    min-height: 70vh;
    position: relative;
    display: none;
    justify-content: end;
  }

  .hero-banner-mobile {
    position: relative;
  }

  .banner-mobile-img-wrapper {
    min-height: 30vh;
    background-size: contain;
  }

  .hero-title {
    max-width: 700px;
    color: white;
    font-size: 36px;
    position: absolute;
    bottom: 10%;
    left: 5%;
  }

  .hero-title-mobile {
    color: white;
    position: absolute;
    bottom: 10%;
    left: 5%;
  }

  .hero-subtitle-wrapper {
    flex-basis: 50%;
    padding: 0px 20px;
    max-width: 650px;
    margin-top: 5%;
  }

  .hero-subtitle-wrapper h3 {
    font-size: 25px;
    padding: 20px 0px 5px 0px;
    font-family: 'Gotham Rounded Light' !important;
  }

  .button-wrappers {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .button-wrappers a {
    display: block;
  }

  .app-wrappers img {
    width: 250px;
    object-fit: cover;
  }

  .download-button {
    height: 100%;
    aspect-ratio: square;
    max-width: 225px;
    object-fit: contain;
  }

  .download-button-mobile {
    height: 100%;
    aspect-ratio: square;
    max-width: 185px;
    object-fit: contain;
  }

  .qr-code {
    height: 100%;
    aspect-ratio: square;
    max-width: 165px;
    object-fit: contain;
  }

  .video-section {
    padding: 2rem 20px;
  }

  .responsive-iframe {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    border-radius: 20px; /* Full width of the container */
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
  }

  .responsive-iframe iframe {
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Optional: Remove iframe border */
  }

  .app-info-wrapper-section {
    padding: 0px 20px;
  }

  .app-info-wrapper {
    max-width: 1440px;
    margin: auto;
    border: 11px solid #00257a;
    border-radius: 50px;
    padding: 3rem;
    background: #d4effd;
  }

  .app-info-wrapper img {
    margin-bottom: 20px;
  }

  .info-sections > h3 {
    text-align: center;
    margin-bottom: 2.75rem;
  }

  .info-section-inner {
    text-align: center;
  }

  .info-section-inner img {
    object-fit: contain;
  }

  .divider-wrapper img {
    width: 100%;
    margin-top: 0px;
    object-fit: contain;
  }

  .divider-wrapper {
    margin: 20px 0px;
  }

  .info-section-2 {
    display: grid;
    grid-template-columns: 1;
    text-align: center;
  }

  .info-section-2-image-wrapper {
    grid-row: 1;
  }

  .info-section-2-text-wrapper-desktop {
    display: none;
  }

  .info-section-2-text-wrapper-mobile {
    display: block;
  }

  .info-section-2 > div:nth-child(2) div {
    text-align: center;
  }

  .info-section-2 img {
    object-fit: contain;
    height: 100%;
  }

  .info-section-3 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .info-section-3 :nth-child(2) {
    grid-row: 1;
    height: 100%;
  }

  .info-section-3 img {
    object-fit: contain;
  }

  .download-section {
    margin: 6rem auto;
    max-width: 1440px;
    text-align: center;
  }

  .download-section div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .download-section .app-wrappers {
    display: flex;
    gap: 10px;
  }

  .download-section-button-wrappers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
  }

  @media screen and (min-width: 1024px) {
    .hero-banner-mobile {
      display: none;
    }

    .hero-banner-desktop {
      display: flex;
    }

    .info-section-1 img {
      max-width: 45%;
      height: auto;
      object-fit: contain;
    }

    .info-section-1 {
      display: flex;
    }

    .info-section-1 > div {
      flex-basis: 50%;
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .info-section-inner {
      text-align: unset;
    }

    .info-section-2 {
      display: grid;
      grid-template-columns: 0.5fr 1fr 0.5fr;
      align-items: center;
      text-align: unset;
    }

    .info-section-2-image-wrapper {
      grid-row: unset;
    }

    .info-section-2-text-wrapper-desktop {
      display: block;
    }

    .info-section-2-text-wrapper-mobile {
      display: none;
    }

    .info-section-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      gap: 1.25rem;
      text-align: unset;
    }

    .info-section-3 :nth-child(2) {
      grid-row: unset;
    }

    .divider-wrapper img {
      width: 100%;
      margin-top: 2.75rem;
      object-fit: contain;
    }

    .download-section {
      margin: 6rem auto;
      max-width: 1440px;
      text-align: center;
    }

    .video-section {
      padding: 6rem 20px;
    }

    .download-section-button-wrappers {
      flex-direction: row; 
      justify-content: center;
      align-items: center;
      padding-top: 20px;
    }
  }
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  .enfamama-upper-bannerContainer {
    position: relative;
    overflow: hidden;
  }

  .enfamama-upper__img {
    min-height: 50vh;
    width: 100%;
    object-fit: cover;
    position: relative;
  }
  .enfamama-upper__imgmobile {
    display: none;
  }

  .enfamama-upper-bannertitle {
    bottom: 10%;
    position: absolute;
    left: 2%;
    width: 40%;
  }

  .enfamama-upper-bannertitletext {
    display: flex;
  }
  .enfamama-upper-bannertitletext-mobile {
    display: none;
  }

  .enfamama-upper-containerLogin {
    top: 5%;
    position: absolute;
    right: 0;
    width: 40%;
    margin: 0 3%;
  }

  .image-enfamama-upper-container {
    width: 100%;
    object-fit: contain;
  }
  .image__enfamama-rewards {
    width: 191px;
    height: 130px;
    object-fit: contain;
  }

  .enfamama-upperText {
    display: flex;
    width: 100%;
    margin-top: 3%;
  }

  .enfamama-upper-containerButton {
    display: flex;
    margin-top: 2rem;
    width: 30rem;
    gap: 50px;
  }

  .joinbtn,
  .submitbtn {
    border: solid 1px #003087;
    width: 16vw;
    padding: 0.5%;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    place-items: center;
    text-align: center;
    justify-content: center;
  }


  .button_divider {
    width: 40px;
    display: inline-flex;
    height: auto;
  }


  /* Media query for responsiveness */
  @media screen and (max-width: 1024px) {
    .enfamama-upper__img {
      display: none;
    }
    .enfamama-upper__imgmobile {
      display: block;
      height: auto;
    }

    .enfamama-upper-bannertitle {
      width: 61%;
      left: 5%;
      top: 25%;
    }

    .enfamama-upper-bannertitletext {
      width: 66%;
      position: absolute;
      top: -42%;
      display: none;
    }
    .enfamama-upper-bannertitletext-mobile {
      display: block;
      position: relative;
      top: 13%;
      left: 0;
      width: 16rem;
      color: #00257A;
    }

    .enfamama-upper-containerLogin {
      width: 100%;
      max-width: 100%;
      top: auto;
      margin: 0;
      position: relative;
      padding: 1rem;
    }


    .image-enfamama-upper-container {
      width: 8rem;
    }

    .enfamama-upperText {
      text-align: left;
      width: 100%;
    }

    .enfamama-upper-containerButton {
      display: block;
      width: 100%;
    }

    .joinbtn,
    .submitbtn {
      width: 80%;
      height: 35px;
      margin-bottom: 0.5rem;
      padding: 4%;
    }

    .submitbtn {
      margin-left: 0;
    }
  }

  /* Additional media query for extra small devices */
  @media screen and (max-width: 1024px) {
    .enfamama-upper__img {
      display: none;
    }
    .enfamama-upper__imgmobile {
      display: block;
      height: auto;
    }
    .enfamama-upper-bannertitle {
      width: 61%;
      left: 5%;
      top: -10%;
    }
    .enfamama-upper-bannertitletext {
      display: none;
    }
    .enfamama-upper-bannertitletext-mobile {
      display: block;
      position: relative;
      top: 46%;
      width: 70vw;
      color: #00257A;
    }

    .enfamama-upperText {
      text-align: left;
      width: 88%;
    }

    .joinbtn,
    .submitbtn {
      width: 90%;
      height: 35px;
      margin-bottom: 1rem;
      padding: 4%;
    }

  }
.image_banner {

}
.section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    }

:root {
  --spacing-xs: 0.625rem;  /* 10px */
  --spacing-sm: 1.25rem;   /* 20px */
  --spacing-md: 1.875rem;  /* 30px */
  --spacing-lg: 2.5rem;    /* 40px */
  --spacing-xl: 9.375rem;  /* 150px */
  --border-color: #e0e0e0;
  --container-max-width: 2000px;
  --content-width: min(90%, 1200px);
}


.enfamama-lower {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-sm);
}


.enfamama-lower__title {
  /* font-size: clamp(20px, 2.5vw, 24px); */
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
  display: block;
}


/* .enfamama-lower__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-sm) 0;
  align-items: start;
} */
.enfamama-lower__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.image-accelerated-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  position: relative;
  left: -1%;
  width: 25%;
}
.image__accelerated {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.mobile-title {
  display: none;
}


/* .enfamama-lower-item {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-md);
  width: 90%;
} */

.enfamama-lower-item__image-container {
  position: relative;
  aspect-ratio: 3 / 2;
  margin-top: -6rem;
  width: 90%;
}


.enfamama-lower-item__image {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 42vh;
  height: auto;
  object-fit: contain;
}

.enfamama-lower-item__content {
  padding-top: 5vh;
  max-width: 28vw;
}

.enfamama-lower-item__title {
  /* font-size: clamp(16px, 2vw, 18px); */
  font-weight: bold;
  margin-bottom: var(--spacing-xs);
}

.enfamama-lower-item__description {
  /* font-size: clamp(13px, 1.5vw, 14px); */
  margin-bottom: var(--spacing-xs);
  width: 88%;
}


.custom-container {
  width: 16%;
}

.custom-container__header {
  max-width: 320px;
}

.custom-container__text {
  font-weight: bold;
  padding: 0.5rem 1rem;
}


.image-banner-container {
  width: 100%;
  margin-top: var(--spacing-md);
}

.image__banner {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}


/* Media Queries */

@media screen and (max-width: 1430px) {
  .custom-container__text {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .enfamama-lower{
   padding: 0; 
  }

  .enfamama-lower__navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .enfamama-lower__arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
  }
  .enfamama-lower-item__description {
    width: 88%;
  }

  .enfamama-lower__arrow:hover {
    background-color: var(--border-color);
  }
}

@media screen and (max-width: 480px) {
.enfamama-lower__title {
  /* font-size: clamp(20px, 2.5vw, 24px); */
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
  display: block;
}
  .mobile-title {
    display: block;
    text-align: center;
    position: relative;
  }
  .enfamama-lower__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    position: relative;
  }

  .enfamama-lower-item {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 1rem;
    align-items: center;
  }
  .enfamama-lower-item__content {
    padding-top: 5vh;
    max-width: 100%;
  }

  .enfamama-lower-item__description {
    width: 88%;
  }
  .enfamama-middle {
  position: relative;
  }
  .image__accelerated {
    height: auto;
    max-height: 300px;
    display: none;
  }

  .custom-container {
    width: 100%;
  }
  .custom-container__header {
    margin-top: 5%;
    margin-left: 14%;
  }
  .custom-container__text {
    font-weight: bold;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
  }
  .image__banner {
    height: auto;
    max-height: 300px;
    display: none;
  }
}
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  /* Base variables for consistent styling */
  :root {
    --primary-color: #003087;
    --text-color: #000;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
  }

  .enfamama-middle {

    padding: 100px 20px 0;
  }
  /* Typography */
  .enfamama-middle__title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  .enfamama-middle__titledescription {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 5vh;
  }

  /* List Container */
  .enfamama-middle__list {
    width: 100%;
    gap: var(--spacing-lg);
    margin: 0 auto;
  }

  /* Item Card */
  .enfamamamiddle-item {
    display: flex;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    margin-bottom: 0.7rem;

  }

  .enfamamamiddle-item__image-container {
    width: 80px;
    background-color: var(--white);
    position: relative;
    min-width: 80px;
  }

  .enfamamamiddle-item__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .enfamamamiddle-item__content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
    background-color: var(--primary-color);

  }

  .enfamamamiddle-item__title {
    color: var(--white);
  }

  .enfamamamiddle-item__description {
    color: var(--white);
  }

  /* Footer Text */
  .enfamama_text {
    list-style-type: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
    width: 100%;
  }

  .enfamama_text li {
    margin-bottom: var(--spacing-sm);
  }

  .enfamama_text a {
    color: var(--primary-color);
    text-decoration: none;
  }


  /* Mobile Optimizations */
  @media screen and (min-width: 1024px) {

    .enfamamamiddle-item {
      width: 388px;
      height: 92px;

    }

    .enfamama-middle__list {
      display: flex;
      max-width: 1440px;
      margin: auto;
    }

    .enfamamamiddle-item__image-container {
      min-width: 100px;
      width: 100px;
    }


  }

  @media screen and (max-width: 480px) {
    .enfamamamiddle-item__description {
      font-weight: bold;
    }
  }
.see-all-products-home {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 70px 0;
  }

  .see-all-button {
    border: none;
    background: none;
    text-decoration: underline;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    color: #00257a !important;
  }

  .home-products-container {
    width: 80%;
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .see-all-products {
      margin: 40px 0;
    }

    .home-products-container {
      width: 100%;
    }
  }
.submit-btn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00257a;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    border-radius: 10px;
    position: relative;
  }

  .submit-btn-footer:hover {
    background-color: #001a4a;
  }

  .main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
  }
  .section-footer {
    display: grid;
    width: 100%;
    grid-template-columns: 45% 45%;
    color: var(--RB-Dark-Blue, #01257b);
    justify-content: space-between;
    /* margin-bottom: 10vw; */
  }
  .row {
    display: flex;
    width: 100%;
    flex-direction: row;
    color: var(--RB-Dark-Blue, #01257b);
    justify-content: space-between;
  }
  .contact-form-footer {
    display: grid;
    width: 100%;
    grid-template-columns: 45% 45%;
    color: var(--RB-Dark-Blue, #01257b);
    justify-content: space-between;
  }
  .bold {
    font-weight: 700;
  }
  .rowContact {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .rowSocial {
    display: flex;
    flex-direction: row;
  }
  .mt-5 {
    margin-top: 5rem;
  }
  .col {
    display: flex;
    flex-direction: column;
    width: 40%;
  }
  .colLogo {
    display: flex;
    width: fit-content;
    margin-right: 5px;
    align-items: center;
  }
  .colAuto {
    display: flex;
    flex-direction: column;
    width: webkit-fit-content;
  }
  .line {
    width: 100%;
    border: 1px solid #00257a;
  }
  .line-mobile {
    display: none;
  }
  .linklist {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .linklist-about-us {
    display: flex;
    flex-direction: column;
  }
  .linklist-item {
    text-decoration: underline;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
  .linklist-item a {
    color: #00257a;
    font-weight: 600;
  }
  .flex-start {
    align-items: flex-start;
  }
  .flex-end {
    align-items: flex-end;
  }
  .justify-end {
    justify-content: flex-end !important;
  }
  .justify-start {
    justify-content: flex-start !important;
  }
  .justify-between {
    justify-content: space-between !important;
  }
  .header {
    color: var(--RB-Dark-Blue, #01257b);
    margin: 0 !important;
  }
  .header span {
    margin-top: 10px;
  }
  .icon-header {
    display: flex;
    align-items: center;
  }
  .chat-us {
    color: var(--RB-Dark-Blue, #01257b);
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .contact-text {
    color: var(--RB-Dark-Blue, #01257b);
    font-weight: 700;
    margin: 5px 0 0;
  }
  .social-title {
    display: flex;
    color: var(--RB-Dark-Blue, #01257b);
    line-height: 30px;
    font-weight: 700;
  }
  .width-80 {
    width: 80%;
  }
  .margin-1 {
    margin: 1rem;
  }
  .footer-mj-container {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .desktop__img-chat-us {
    display: block;
    height: auto;
  }

  .footer-form-css {
    width: 100%;
  }

  .footer-form-css .contact-form-footer {
    display: flex;
    width: 100%;
  }

  #footer-form-container {
    padding: 0;
  }

  .contact-form-div {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .chat-us-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0;
  }

  .linklist-container {
    width: 100%;
    padding: 0;

  }

  .linklist-div {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 40%;
    justify-content: space-between;
  }

  .list-div {
    width: 100%;
  }

  .col-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .layer-img {
    width: 100vw;
  }

  .footer-image {
    position: relative;
    background-image: url('{{ section.settings.footer_layer | image_url: width: section.settings.footer_layer.width }}');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat
  }

  .row.justify-end.bold h6 {
    width: 100%;
  }
  .footer-redeem-exclusive {
    margin: 0;
    font-size: 12px !important;
    font-weight: bold;
  }


  @media (max-width: 768px) {

    .col {
      width: 100% !important;
    }

    .desktop__img-chat-us {
      width: 60%;
      height: auto;
    }

    .linklist-section {
      margin-top: 0.5rem;
    }

    .linklist-about-us {
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }

    .linklist {
      display: grid;
      grid-template-columns: 30% 70%;
    }

    .linklist-item {
      padding-top: 0;
      padding-bottom: 0;
    }

    .section-footer {
      padding: 1rem 0;
      display: flex;
      flex-direction: column;
    }
    .line-mobile {
      display: flex;
      width: 100%;
      border: 1px solid #00257a;
    }
    .contact-form-footer {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .chat-us {
      margin: 1rem 0;
    }

    .main {
      padding: 1rem;
    }

    .linklist-div {
      display: flex;
      flex-direction: column;
    }

    .col-list {
      display: flex;
      margin-top: 2rem;
    }

    .footer-image {
      background-image: none;
    }
    .footer-redeem-exclusive {
      margin: 0;
      font-size: 10px !important;
      font-weight: bold;
    }
    .row.justify-end.bold h6 {
      width: 90%;
      margin-left: 0;
      margin-right: auto;
    }
  }
.banner-container-desktop {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
  }

  .banner-top-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-form__right-content {
    margin: 20px;
  }

  .banner-container-desktop {
    gap: 0;
  }


  /*

   .banner-container-mobile { 
   position: relative; 
   } 
*/

  .desktop__img {
    display: none;
  }
  .mobile__img {
    display: block;
  }

  .banner-container-desktop-top {
    position: relative;
    min-height: 30vh;
    width: 100%;
  }

  .banner-container-desktop-top .banner-form__img {
    position: absolute;
    width: 100%;
    object-fit: cover;
  }
  .banner-container-desktop-top .banner-form__text {
    position: absolute;
  }


  /*

   .desktop-banner-title { 
   width: 100%; 
   max-width: 807px; 
   color: white; 
   } 

   .desktop-banner-title h3 { 
   color: white; 
   font-size: 36px; 
   } 

   .desktop-banner-title h6 { 
   color: white; 
   } 
*/

  .banner-container-mobile img {
    height: 100%;
    object-fit: contain;
  }

  /* Form Banner */
  .enfamama-form {
    background-color: #ffffff;
    border-radius: 20px;
  }


  /*

   .enfamama-form-mobile { 
   width: 90%; 
   margin: 20px auto; 
   max-width: 450px; 
   } 
*/

  .enfamama-form-desktop {
    width: 100%;
    margin: auto;
    max-width: 450px;
  }

  .logged-in-message-wrapper-desktop {
    padding: 20px;
  }

  .enfamama-form form {
    display: flex;
    flex-direction: column;
  }

  .enfamama-form h2 {
    color: #003087;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .enfamama-form input,
  .enfamama-form select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
    background: #f6f6f6;
    color: black;
  }
  .enfamama-form input::placeholder,
  textarea::placeholder {
    font-style: normal;
  }

  .form-row {
    display: flex;
    gap: 10px;
  }

  .phone-input {
    display: flex;
    align-items: center;
  }

  .country-code {
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
  }

  .phone-input input {
    border-radius: 0 4px 4px 0;
  }

  .banner-title {
    position: absolute;
    width: 70%;
    padding-left: 5%;
    color: white;
    bottom: 5%;
  }

  .banner-title h3,
  .banner-title h6 {
    color: white;
  }

  .banner-title h3 {
    font-size: 12px;
  }

  .borderLogin {
    border: 4px solid transparent;
    background: linear-gradient(to right, #00257a, #0475d7), linear-gradient(to right, #00257a, #0475d7);
    background-clip: padding-box
    , border-box;
    background-origin: padding-box
    , border-box;
  }

  .home-logo {
    width: 30%;
    height: 30%;
    display: flex;
    margin: 0 auto 1rem;
  }

  .containerLogin {
    background: white;
    border-radius: 20px;
    width: 100%;
    padding: 30px 20px;
  }

  .sd-container {
    position: relative;
    float: left;
  }

  .sd {
    padding: 5px 10px;
    height: 30px;
    width: 150px;
  }

  .enfamama-form .terms {
    font-size: 9px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .enfamama-form .terms input {
    width: auto;
    margin-right: 5px;
    color: black;
  }

  .join-now-container {
    background: #00257a;
    border-radius: 5px;
    padding: 5px 80px;
    display: flex;
    justify-content: center;
    align-self: center;
    width: 50%;
  }

  .join-now-text {
    color: white;
  }

  .join-now-arrow {
    flex-shrink: 0;
    width: 9.16px;
    height: 8.02px;
    position: relative;
    overflow: visible;
  }

  .extra-small-font-size {
    font-size: 8px !important;
  }

  .header-form-group {
    color: #000;
    margin-bottom: 10px;
  }

  .header-form-group h6 {
    color: #4d4d4d;
    font-size: 16px !important;
  }

  .birthday-inputs {
    display: flex;
    align-items: center;
  }

  .banner-form__text {
    width: 80%;
    bottom: 0;
    padding: 20px 20px 5px;
  }

  .banner-form__text h3,
  .banner-form__text h6 {
    color: white;
  }

  .banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
  }

  .banner-link:hover {
    opacity: 0.9;
  }

  @media screen and (min-width: 640px) {
    .banner-container-desktop-top {
      position: relative;
      /* min-height: 80vh; */
    }
  }

  @media screen and (min-width: 1024px) {
    .enfamama-form-desktop {
      position: absolute;
      right: 10%;
      top: 1%;
    }

    .logged-in-message-wrapper-desktop {
      position: absolute;
      right: 0;
      top: 2%;
      max-width: 560px;
    }

    .desktop__img,
    .mobile__img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .mobile__img {
      display: none;
    }

    .desktop__img {
      display: block;
    }

    .banner-form__text {
      width: 50%;
      bottom: 0;
      padding: 20px;
    }
  }
.gentlease-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  /* border-radius: 10px; */
}

.gentlease-text_desktop_left {
  flex: 1;
  text-align: center;
  color: #00257A;
  width: 18%;
}
.gentlease-text_desktop_right {
  flex: 1;
  text-align: center;
  color: white;
  width: 14%;
  margin-right: 3%;
}

.gentlease-text p {
  margin: 0;
  /* font-size: 16px; */
  line-height: 1.5;
}

.gentlease-text strong {
  font-weight: bold;
  color: white;
}

.gentlease-image_desktop {
  flex: 1;
  text-align: center;
  border: 5px solid #FFD700; /* Gold border color */
  border-radius: 20px;
}
.gentlease-image_mobile {
    display: none;
}

.gentlease-image_desktop img {
  width: 100%;
  border-radius: 15px;
}
.gentlease-mobile-container {
    display: none;
}
.gentlease-wholetext-container {
    display: none;
}

@media screen and (max-width: 1200px){
    .gentlease-image_desktop{
        width: 70%;
    }
    
}

@media screen and (max-width: 768px){
    
    .gentlease-text_desktop_left {
        display: none;
    }
    .gentlease-text_desktop_right {
        display: none;
    }
    .gentlease-mobile-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .gentlease-text_mobile {
        flex: 1;
        text-align: center;
        color: white;
    }
    .gentlease-wholetext-container {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 10px;
        margin: 0 1%;
    }
    .gentlease-image_desktop{
        display: none;
    }
    .gentlease-image_mobile img {
        width: 100%;
        border-radius: 15px;
    }
    .gentlease-image_mobile {
        display: flex;
        text-align: center;
        border: 5px solid #FFD700; /* Gold border color */
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px){
    .gentlease-image_desktop{
        display: none;
    }
    .gentlease-image_mobile {
        display: flex;
        text-align: center;
        border: 5px solid #FFD700; /* Gold border color */
        border-radius: 20px;
    }
    .gentlease-text_mobile {
        flex: 1;
        text-align: center;
        color:white
    }
}
.growing-children-banner-content-wrapper {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .growing-children-banner-content-wrapper-mobile {
    display: none;
  }

  .growing-children-banner-title,
  .growing-children-banner-subtitle {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .growing-children-banner-content-wrapper-desktop-left {
    text-align: left;
  }

  .growing-children-banner-content-wrapper-desktop-center {
    text-align: center;
  }

  .growing-children-banner-content-wrapper-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .growing-children-banner-title-mobile {
      margin: 20px 0 10px 0;
    }
    .growing-children-banner-content-wrapper {
      display: none;
    }
    .growing-children-banner-content-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .growing-children-banner-content-wrapper-mobile-left {
      text-align: left;
    }
    .growing-children-banner-content-wrapper-mobile-center {
      text-align: center;
    }
    .growing-children-banner-content-wrapper-mobile-right {
      text-align: right;
    }
    .growing-children-banner-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.btn-submnenu {
    background: none;
    border: none;
  }

  .btn-submnenu:hover {
    color: #fff;
    border: none;
  }

  .header-arrow-icon {
    margin-top: 10px;
    color: #00257a;
  }

  .sublistchild__linkchild {
    font-weight: bold;
    padding: 0 1rem;
  }

  .sublist {
    width: 100%;
  }

  .sublistgrandchild__item {
    font-weight: bold;
    color: var(--navigationColorTextItemSecondLevelModeDark);
  }

  .siteHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
  }

  .shop-now-button {
    padding: 11px 21px;
    border-radius: 34px;
    background: linear-gradient(
      180deg,
      #ecc267 -12.95%,
      #ffffcd 41.4%,
      #ffdc79 102.48%,
      #cca146 138.02%,
      #cf9400 187.99%
    );
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
    font-family: 'DinRoundPro-Bold', sans-serif;
    font-weight: 700;
    white-space: nowrap;
  }

  .shop-now-button:hover {
    transform: translateY(-1px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
  }

  .shop-now-mobile {
    display: none;
  }

  /* Mobile styles */
  @media screen and (max-width: 1300px) {
    .shop-now-button {
      padding: 6px 12px;
    }
  }

  @media screen and (max-width: 768px) {
    .shop-now-button {
      display: none;
    }

    .shop-now-mobile {
      display: block;
      padding: 16px;
      color: #00257a;
      background: linear-gradient(
        180deg,
        #ecc267 -12.95%,
        #ffffcd 41.4%,
        #ffdc79 102.48%,
        #cca146 138.02%,
        #cf9400 187.99%
      );
      border-bottom: 1px solid black;
    }

    .sublistchild__linkchild {
      font-weight: bold;
      padding: 0 1rem;
    }
  }
.how-to-order-section {
      width: 100%;
      height: 100%;
      position: relative;
    }
  
    .how-to-order-content-container {
      position: absolute;
      top: 50%; /* Center the content vertically */
      left: 50%; /* Center the content horizontally */
      transform: translate(-50%, -50%); /* Ensures full centering */
      max-width: 60%;
      text-align: center;
    }
  
    .how-to-order-title {
      margin-bottom: 10px; /* Added space between title and icon */
      font-size: 40px !important;
      text-align: center;
    }
  
    .how-to-order-icon {
      margin-top: 50px; /* Space above the icon */
      width: 100%; /* Adjust size for better display */
      height: auto;
    }
  
    .how-to-order-background {
      display: block;
    }
  
    @media (max-width: 1450px) {
      .how-to-order-content-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Keep content centered */
        max-width: 41%;
      }
  
      .how-to-order-title {
        margin-bottom: 5px;
      }
    }
  
    @media (max-width: 1200px) {
      .how-to-order-content-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 40%;
        text-align: center;
      }
  
      .how-to-order-title {
        margin-bottom: 5px;
      }
    }
  
    @media (max-width: 1023px) {
      .how-to-order-content-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 40%;
        text-align: center;
      }
    }
  
    @media screen and (max-width: 768px) {
      .how-to-order-content-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
  
      .how-to-order-title {
        margin-bottom: 3px;
        font-size: 25px !important;
      }
  
      .how-to-order-icon {
        margin-top: 10px; /* Space above the icon */
    }
    }
  
    @media screen and (max-width: 480px) {
      .how-to-order-content-container {
        top: 50%; /* Center content on mobile */
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        position: relative;
        text-align: center !important;
      }
  
      .how-to-order-title {
        margin-bottom: 10px;
      }
    }
.image-step img {
        object-fit: cover;
    }
    .how-to-order-content {
        border: 6px solid #0033A0;
        padding: 20px;
        text-align: center;
        background-color: #D4EFFD;
        border-radius: 25px;
        max-width: 90%;
        margin: 0px auto 50px auto;
        position: relative;
        overflow: hidden;
    }

    .how-to-order-content h1 {
        font-size: 2.5em;
        font-weight: bold;
        color: #003366;
        margin-bottom: 20px;
    }

    .how-to-order-content .important-notes h2{
        color: #FFFFFF;
        font-size: 2em;
        margin-bottom: 10px;
        text-align: center;
    }

    .how-to-order-content p {
        margin: 0px;
        font-size: 0.9rem;
        text-align: center;
    }

    .how-to-order-content .image-step {
        position: relative;
        margin: 20px 0;
    }

    .how-to-order-content .image-step img.desktop {
        display: block;
        max-width: 75%;
        height: auto;
        margin: auto;
    }

    .how-to-order-content .image-step img.mobile {
        display: none;
        width: 100%;
        height: auto;
    }

    .how-to-order-content img {
        border-radius: 5px;
    }

    .how-to-order-content .important-notes {
        background: linear-gradient(to right, #00257A, #0475D7, #00257A);
        color: #FFFFFF;
        margin: 15px auto;
        padding: 15px 15px;
        max-width: 95%;
    }

    .how-to-order-content .shape-divider {
        margin: 15px 0;
        display: block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .how-to-order-content .shape-divider img {
        width: 100%;
        height: auto;
    }

    @media screen and (max-width: 768px) {
        .how-to-order-content h1 {
            font-size: 1.1rem!important;
            margin-top: 10px;
            margin-bottom: 0px;
        }

        .how-to-order-content p {
            font-size: 0.65rem!important;
            text-align: left;
        }

        .how-to-order-content .important-notes h2{
            font-size: 1.3em!important;
        }

        .how-to-order-content .important-notes {
            padding: 15px 20px;
        }

        .how-to-order-content .image-step img.desktop {
            display: none;
        }

        .how-to-order-content .image-step img.mobile {
            display: block;
        }

        .how-to-order-content {
            padding: 10px;
        }

        .how-to-order-content .image-step {
            margin: 5px 0;
        }
    }
.icon-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    /* Center the banner horizontally */
    flex-wrap: wrap;
    width: 80%;
  }

  .icon-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    max-width: 300px;
  }

  .icon-container img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .icon-container p {
    font-size: 1 rm;
    font-weight: 700;
    color: #003366;
    /* Adjust color as needed */
    font-family: DIN Round Pro !important;
    margin: 0;
  }

  /* Mobile layout */
  @media screen and (max-width: 768px) {
    .icon-banner {
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
      flex-wrap: nowrap;
      /* Prevent wrapping */
      gap: 10px;
      overflow-x: auto;
      /* Allow horizontal scrolling if needed */
      width: 100%;
    }

    .icon-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: none;
    }

    .icon-container img {
      margin-bottom: 5px;
    }
  }
.icon-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    flex-wrap: wrap;
    width: 80%;
  }

  .icon-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    max-width: 270px;
  }

  .icon-container img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .icon-container .desktop-text {
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    font-family: DIN Round Pro !important;
    margin: 0;
    text-transform: uppercase;
    display: block;
  }

  .icon-container .mobile-text {
    font-size: 10px;
    font-weight: 700;
    color: #003366;
    font-family: DIN Round Pro !important;
    margin: 0;
    text-transform: uppercase;
    display: none;
  }

  /* Mobile layout */
  @media screen and (max-width: 768px) {
    .icon-banner {
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
      overflow-x: auto;
      width: 100%;
    }

    .icon-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 30%;
    }

    .icon-container img {
      margin-bottom: 5px;
      width: 45px;
      height: 45px;
    }

    .icon-container .desktop-text {
      display: none;
    }

    .icon-container .mobile-text {
      font-size: 10px !important;
      font-weight: 700;
      color: #003366;
      font-family: DIN Round Pro !important;
      margin: 0;
      text-transform: uppercase;
      display: block;
    }
  }
div img{
        object-fit:cover;
    }
.image-banner-section {
    margin-bottom: 30px;
  }
  .image-banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .image-mobile {
    display: none;
  }
  @media (max-width: 575.98px) {
    .image-banner-image {
      display: none;
    }
    .image-mobile {
      display: flex;
      width: 100%;
      object-fit: contain;
    }
  }
  .image-banner-image {
    width: 100%;
    height: auto;
    margin-top: -12px;
  }
.custom-grid-section {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }

  .grid-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
  }

  .grid-image {
    flex: 0 0 30%;
    padding-right: 10px;
  }

  .grid-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .grid-button {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grid-button .button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }

  .grid-button .button:hover {
    background-color: #0056b3;
  }
.collapsable-container {
    width: 80%;
    margin: 0 auto;
  }

  .btn--colapsable {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
    cursor: pointer;
  }

  .collapse {
    display: none;
    transition: height 0.35s ease;
  }

  .collapse.show {
    display: block;
  }

  .card-header {
    padding: 0;
    cursor: pointer;
  }

  @media screen and (max-width: 768px) {
    .collapsable-container {
      width: 100%;
    }

    .btn--colapsable {
      width: 100%;
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .title__item {
      margin: 0;
      flex: 1;
    }
  }
.image-button-section {
      margin-bottom: 30px;
    }
    .image-button-container {
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .image-button-image {
      width: 100%;
      height: auto;
    }
    .image-button-wrapper {
      margin-top: 20px;
      display: flex;
      width: 100%;
    }
    .image-button-button {
      padding: 10px 140px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: opacity 0.3s ease;
      color: white;
      font-weight: normal;
    }

    .image-button-button:hover {
      opacity: 0.8;
    }

    .image-with-button-mobile, .image-footnote-mobile {
      display: none;
    }

    .image-footnote-desktop {
      display: block;
      width: 80%;
      margin: 0 auto;
      margin-top: 100px;
      margin-bottom: 20px;
    }

    @media (max-width: 500px) {
      .image-with-button-desktop, .image-footnote-desktop {
        display: none;
      }

      .image-with-button-mobile {
        display: block;
        position: relative;
      }

      .image-footnote-mobile {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 10px;
      }

      .image-button-button {
        border-radius: 5px;
        text-align: center;
      }

    }
.grid-article .article-item .overlay-lock-article {
    display: block;
    background-color: rgba(255, 255, 255, 0.8); /* Example semi-transparent white overlay */
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .article-item{
    margin: 1.5rem 1rem;
    position: relative;
  }
  .lock-icon{
    width: 85px;
    position: absolute;
    top: 70px;
    left: 40%;
  }
  .blog-article{
    padding: 3rem 16rem;
  }

  .d-none {
    display: none;
  }

  .toggle-article{
    background: none;
    border: none;
    color: var(--RB-Dark-Blue, #01257b);
    font-weight: 700;
    text-decoration: underline;
  }

  .view-more-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .grid-article {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    color: var(--RB-Dark-Blue, #01257b);
    justify-items: center; 
    align-items: start; 
  }

@media screen and (max-width: 1400px) {
  .article-blog-post {
    padding: 0;
    margin-top: 1rem;
  }

  .blog-article {
    padding: 3rem 7rem !important;
  }
}

@media screen and (max-width: 1200px) {
  .article-blog-post {
    padding: 0;
  }

  .blog-article {
    padding: 3rem 2rem !important;
  }
}

@media screen and (max-width: 1000px) {
  .blog-article {
    padding: 10rem 4rem !important;
  }

  .grid-article {
    display: grid;
    grid-template-columns: auto auto;
  }

  .view-more-container {
    margin-top: 5rem;
  }

}

@media (max-width: 768px) {
  .blog-article{
    padding: 3rem 0.5rem !important
  }

  .grid-article{
    grid-template-columns: auto;
  }
  .article-item{
    margin: 1rem 1rem 0;
  }

  .view-more-container{
    margin-top: 3rem;
  }

  .article__extract{
    padding: 1rem;
  }
}
.continue-browse-button {
    background-color: #00257a;
    border-color: #00257a;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    width: 50%;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    transition: all 350ms ease-out;
  }

  .continue-browse-button:hover {
    background-color: white;
    border: 2px solid #00257a;
    color: #00257a;
    cursor: pointer;
  }

  .cart-items .cart-template__warning {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    margin: 50px auto 100px;
    text-align: center;
  }

  @media screen and (max-width: 768px) {
    .continue-browse-button {
      width: 90%;
      margin: auto;
    }
  }
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  /* Base variables for consistent styling */
  :root {
    --primary-color: #003087;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
  }

  .myacc {
    width: 100%;
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* margin: 10vh 10% 10vh 5%; */
  }
  /* Typography */
  .myacc__heading {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  .myacc__subheading {
    color: var(--text-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  /* List Container */
  .myacc__list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
  }

  /* Item Card */
  .myacc-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    border-radius: 15px;
  }


  .myacc_imageandcontent {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px 0 20px 30px;
  }

  .myacc-item__image-container {
    width: 80px;
    height: 80px;
  }

  .myacc-item__image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .myacc-item__content {
    flex: 1;
    padding-left: 30px;
  }

  .myacc-item__title {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }

  .myacc-item__description {
    color: var(--primary-color);
    margin-bottom: 0;
  }
  .myacc-item__lower-imagecontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 40px;
    position: relative;
    margin-bottom: 20px;


    /*
   position: relative;
   top: -10%;
*/
  }
  .myacc-item__lower-image {
    display: flex;
    width: 100%;
    height: auto;
  }

  /* Mobile Optimizations */
  @media screen and (max-width: 768px) {
    .myacc {
      display: block;
      width: 100%;
      height: auto;
    }
    .myacc__list {
      grid-template-columns: 1fr;
      height: auto;
      display: flex;
      flex-direction: column;
    }
    .myacc-item {

      display: block;
      height: auto;
      margin: 0;
    }
    .myacc-item__image-container {
      width: 60px;
      height: 60px;
    }
    .myacc-item__lower-imagecontainer {
      position: relative;
      height : auto;
    }
  }

  @media screen and (max-width: 480px) {
    .myacc {
      display: block;
      width: 100%;
      height: auto;
    }
    .myacc__list {
      grid-template-columns: 1fr;
      height: auto;
      display: flex;
      flex-direction: column;
    }
    .myacc-item {
      display: block;
      height: auto;
      margin: 0;
    }
    .myacc-item__image-container {
      width: 60px;
      height: 60px;
    }
    .myacc-item__lower-imagecontainer {
      position: relative;
    }
  }
.new-text-with-image h2 {
    color: #ffffff !important;
  }

  .subtitle h4 {
    color: #ffffff !important;
  }

  .button-new-text-with-image{
      width: 100%;
  }

  @media (max-width: 1300px) {
    .new-text-with-image h2 {
      font-size: 2rem;
    }

    .subtitle h4 {
      font-size: 1rem !important;
    }

    .subtitle p {
      font-size: 0.9rem !important;
    }

    .description p {
      font-size: 0.7rem !important;
    }
  }

  @media (max-width: 1024px) {

    .subtitle p {
      font-size: .5rem !important;
    }
  }

  @media (max-width: 950px){
    .new-text-with-image h2 {
      font-size: 1.5rem !important;
    }
  }
/* Basic styling for the background image section */
  .nutrition-faq-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
  }

  .nutrition-faq-section .overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
  }

  .nutrition-faq-section .nutritionfaq-content-wrapper {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1150px;
    gap: 20px;
    margin-right: 0px !important;
  }

  .nutrition-faq-section .title {
    font-size: 54px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.6px;
    margin-top: 100px;
  }

  .nutrition-faq-section .subtitle {
    font-size: 18px;
    font-weight: 350;
    line-height: 36px;
    margin-top: 100px;
    letter-spacing: 0.6px;
    color: #00257a;
  }

  @media (max-width: 767px) {
    .nutrition-faq-section {
      height: 200px;
      width: 390px;
    }

    .nutrition-faq-image-wrapper {
      height: 200px; /* Smaller height for mobile */
      width: 390px;
      background-size: contain; /* Adjust background scaling for smaller screens */
      background-repeat: no-repeat;
    }
    .nutrition-faq-section .title {
      font-size: 24px;
      font-weight: 700;
      line-height: 30.91px;
      text-align: center;
    }

    .nutrition-faq-section .subtitle {
      font-size: 18px;
      font-weight: 400;
      line-height: 14.4px;
      text-align: center;
    }
    .nutrition-faq-section .nutritionfaq-content-wrapper {
      padding-left: 15px;
      text-align: center;
    }
  }
.image__nutritionfaq {
    flex-shrink: 0;
    /* Ensure image doesn't shrink */
    margin-left: 0;
    object-fit: contain;
    width: 480px;
    height: 400px;
    margin-right: 150px;
    margin-top: 45px;
    object-position: left;
  }
  .image-nutrition-faq-container {
    width: 30%;
  }
  .nutrition-faq-section .nutritionfaq-content-wrapper {
    max-width: 1100px;
    color: #fff;
    margin-right: 580px;
  }
  .nutritionfaq__mainContent {
    flex-grow: 1;
    /* Allow collapsible content to grow */
    margin-left: 20px;
  }

  .nutritionfaq__card {
    width: 62vw;
    max-width: 100%;
    /* Make collapsible section fill available space */
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
  }

  .faq-container {
    display: flex;
    flex-direction: row;
  }

  .nutritionfaq__mainContent {
    width: 100%;
    text-align: left;
    max-width: 1200px;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 2rem;
  }

  .card_body img {
    height: 100%;
    object-fit: contain;
    width: auto !important;
  }

  #collapse1 div p:nth-child(2) {
    background: #D4EFFD;
    padding: 10px;
  }

  @media (max-width: 1430px) {
    .nutritionfaq__card {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .nutrition-faq_container {
      flex-direction: column;
      /* Stack elements vertically on mobile */
    }

    .faq-container {
      display: flex;
      flex-direction: column;
    }

    .nutritionfaq__card {
      width: 100%;
    }

    .image__nutritionfaq {
      height: 180px;
      object-position: center;
      position: absolute;
      margin-right: 140px;
      margin-top: 30px;
      width: 100%;
      /* min-width: 400px; */
    }

    .nutritionfaq__mainContent {
      margin-top: 8.5rem;
    }
  }
.table-header {
    background-color: #00257A;
    color: #fff;
    font-weight: 700;
    text-align: center;
  }

  .my-order-section {
    flex-basis: 100%;
    padding: 0 4rem;
  }


  .text-center {
    text-align: center;
    padding: 0.5rem;
  }

  .row-shadow {
    border-radius: 0;
    box-shadow: none;
  }

  .account__main table thead th {
    background-color: #00257A !important;
    color: white !important;
  }

  .order-text-name {
    display: flex;
    justify-content: center;
  }

  .order-name {
    padding: -9px;
    border: 1px solid black;
    width: 50%;
  }

  @media screen and (max-width: 768px) {
    .my-order-section {
      padding: 0;
    }

    .row-shadow {
      border-radius: 10px;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
      , 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .order-name {
      border: 1px solid black;
      text-align: center;
      width: 100%;
    }

    .mobile-table-header-left {
      border-radius: 10px 0 0 10px;
    }

    .mobile-table-header-right {
      border-radius: 0 10px 10px 0;
    }
  }
.terms-and-conditions {
    padding: 2rem;
  }

  .dettol-wrapper {
    max-width: 1280px;
    margin: auto;
  }

  .dettol-wrapper h2 {
    margin: 40px 0px;
    text-align: center;
  }

  .dettol-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  @media screen and (min-width: 640px) {
    .dettol-wrapper h2 {
      margin: 80px 0px;
    }
  }
.inspire-mother-and-baby-wrapper {
    max-width: 1280px;
    margin: auto;
  }

  .inspire-mother-and-baby-wrapper h2 {
    margin: 40px 0;
    text-align: center;
  }

  .inspire-mother-and-baby-wrapper > h4 {
    /* margin: 40px 0px; */
    text-align: center;
  }

  .inspire-mother-and-baby-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .inspire-mother-and-baby-wrapper .bold-text {
    font-weight: 400;
    font-family: 'DIN Round Pro' !important;
    color: #007bff;
  }

  @media screen and (min-width: 640px) {
    .inspire-mother-and-baby-wrapper h2 {
      margin: 80px 0;
    }
  }
.inspire-mother-and-baby-wrapper {
    max-width: 1280px;
    margin: auto;
  }

  .inspire-mother-and-baby-wrapper h2 {
    margin: 40px 0;
    text-align: center;
  }

  .inspire-mother-and-baby-wrapper > h4 {
    /* margin: 40px 0px; */
    text-align: center;
  }

  .inspire-mother-and-baby-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .inspire-mother-and-baby-wrapper .bold-text {
    font-weight: 400;
    font-family: 'DIN Round Pro' !important;
    color: #007bff;
  }

  @media screen and (min-width: 640px) {
    .inspire-mother-and-baby-wrapper h2 {
      margin: 80px 0;
    }
  }
.search-articles-container {
    width: 100%;
    margin: 0 auto;
  }

  .products-search-container {
    margin: 1rem 0;
  }

  .results__title {
    margin: 1rem 0;
  }

  @media screen and (max-width: 500px) {
    .search-articles-container {
      padding: 0;
    }
  }
/* .banner-header {
    object-fit: contain;
    height: 100%;
    width: unset;
  }

  .scientific-formula-page-wrapper {
    max-width: 1024px;
    margin: auto;
    padding-top: 100px;
  }

  .scientific-formula-page-wrapper .banner-body {
    background: #00255c;
    color: white;
    padding: 0 5rem 2rem;
  }

  .scientific-formula-page-wrapper .button-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    padding: 2rem;
    width: 90%;
    gap: 2rem;
  }

  .scientific-formula-page-wrapper button {
    border-radius: 50px;
    border: none;
    color: #00a8ff;
    background: white;
    padding: 0.5rem;
    font-size: 20px;
  }

  .quicktab-wrapper {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
  }

  .quicktab-wrapper li {
    margin: 0 10px;
  }

  .quicktab-wrapper li a {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .quicktab-wrapper li.active a {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
  }

  .quicktab-content .tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 10px;
  }

  .quicktab-content .tab-content.active {
    display: block;
  } */
.parentsider-wrapper {
    max-width: 1280px;
    margin: auto;
  }

  .parentsider-wrapper h2 {
    margin: 40px 0px;
    text-align: center;
  }

  .parentsider-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .parentsider-wrapper .app-wrappers {
    max-width: 800px;
    margin: auto;
  }

  .parentsider-app-section {
    margin: 40px 0px;
    text-align: center;
  }

  @media screen and (min-width: 640px) {
    .parentsider-wrapper h2 {
      margin: 80px 0px;
      text-align: unset;
    }

    .parentsider-app-section {
      margin: 80px 0px;
    }
  }
.art-people-wrapper {
    max-width: 1280px;
    margin: auto;
  }

  .art-people-wrapper h2 {
    margin: 40px 0px;
    text-align: center;
  }

  .art-people-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  @media screen and (min-width: 640px) {
    .art-people-wrapper h2 {
      margin: 80px 0px;
    }
  }
[type='radio'] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .radio-img {
    display: inline-block;
    margin: auto 0px auto 0px;
    width: 30px;
    height: 30px;
    background-image: url('/cdn/shop/files/hexagon-selection.png?v=1745376805'); /* your normal image */
    background-size: contain;
    cursor: pointer;
    background-repeat: no-repeat;
  }

  .radio-img img {
    width: 50%;
    height: 5cap;
    object-fit: cover;
  }

  [type='radio']:checked + .radio-img {
    background-image: url('/cdn/shop/files/hexagon-selection-acitve.png?v=1745376805'); /* your selected version */
  }

  .picky-eater-quiz-content {
    border: 6px solid transparent;
    border-radius: 15px;
    background-image: linear-gradient(#d4effd, #d4effd), linear-gradient(to right, #00257a, #0475d7, #00257a);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 20px;
    text-align: center;
    border-radius: 35px;
    max-width: 60%;
    margin: auto;
    position: relative;
    overflow: hidden;
  }

  .picky-eater-quiz-title,
  .picky-eater-quiz-result-title {
    text-align: center;
    padding: 50px 0px;
  }

  .picky-eater-quiz-content h1 {
    font-size: 2em;
    font-weight: bold;
    color: #003366;
  }

  .quiz-step h2 {
    font-size: 2.1em !important;
  }

  .quiz-intro p {
    margin: 0px;
    font-size: 1rem;
    text-align: left;
    padding-bottom: 40px;
    color: #4d4d4d;
    font-weight: 600;
  }

  .quiz-step h3 {
    font-size: 2rem !important;
    text-align: center;
    font-weight: 600;
    background-image: linear-gradient(to right, #00257a, #0475d7, #00257a);
    width: 50%;
    margin: auto;
    color: #ffffff;
    padding: 10px 0px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .shape-divider {
    margin: auto;
    padding: 20px 0px;
  }

  .picky-eater-quiz-content .shape-divider img {
    width: 100%;
    height: auto;
  }

  .quiz-step.active {
    display: block;
  }

  .quiz-intro {
    text-align: center;
    padding: 20px;
  }

  .buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .step-counter {
    text-align: center;
    margin-bottom: 15px;
    color: #00257a;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Gotham Rounded Medium' !important;
  }

  .step-counter span {
    font-family: 'Gotham Rounded Medium' !important;
  }

  .quiz-step,
  #quiz-title,
  .quiz-content .step-counter,
  .picky-eater-quiz-result-title,
  .picky-eater-banner-text-section {
    display: none;
  }

  #start-quiz {
    padding: 10px 15px;
    margin: 0 5px;
    background: #00257a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Gotham Rounded Medium' !important;
    width: 50%;
    font-size: medium;
  }

  .result {
    text-align: left;
    padding: 30px 0px 0px 0px;
  }

  .result li,
  .result p {
    color: #4d4d4d;
    font-family: Gotham Rounded medium !important;
    font-size: medium;
    font-size: 1rem;
    line-height: normal;
  }

  .prev,
  .next {
    padding: 10px 15px;
    margin: 0 5px;
    background: #00257a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Gotham Rounded Medium' !important;
    width: 50%;
    font-size: medium;
  }

  .error-message {
    color: red;
    display: none;
    margin-top: 10px;
  }

  .picky-eater-quiz-banner {
    padding: 40px 0px;
  }

  .input-white {
    background-color: #ffffff;
    padding: 0px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: inline-flex;
    width: 100%;
  }

  .input-white label {
    color: #00257a;
    font-family: 'Gotham Rounded Medium' !important;
  }

  .input-white.active label {
    color: #ffffff;
  }

  .input-white.active {
    background-color: #00257a;
    box-shadow: 0px 4px 25px rgba(0, 37, 122, 0.5);
  }

  .input-quiz {
    text-align: left;
    padding-top: 25px;
  }

  .input-quiz label {
    padding: 10px 15px;
    cursor: pointer;
  }

  .picky-eater-banner-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .picky-eater-banner-content-container {
    position: absolute;
    top: clamp(45%, 5vw, 20%);
    left: clamp(4%, 10vw, 10%);
    max-width: 34%;
  }

  .picky-eater-title {
    margin-bottom: clamp(0px, 1vw, 15px);
  }

  .picky-eater-subtitle,
  .picky-eater-body {
    margin-bottom: clamp(0px, 2.5vw, 10px);
    line-height: 1.7rem;
  }

  .picky-eater-body p {
    margin: 0;
    font-size: 15px;
  }

  .picky-eater-banner-button {
    padding: 10px 70px;
    margin-top: 20px;
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .picky-eater-banner-button:hover {
    opacity: 0.8;
  }

  .picky-eater-banner-background-desktop {
    display: block;
    margin-top: 50px;
  }

  .picky-eater-banner-background-mobile {
    display: none;
  }

  .drop-down-collapsable__mainContent h2 {
    text-align: center;
  }
  .drop-down-collapsable__card .title__item {
    color: #ffffff;
  }

  .drop-down-collapsable__card .card-header .btn {
    border-radius: 0px;
  }

  .drop-down-collapsable__card .card-header {
    border-bottom: 0px;
    padding: 0px;
  }

  .drop-down-collapsable__card .title__icon {
    color: #ffffff;
    background: none !important;
  }

  .drop-down-card_body {
    padding: 20px 20px !important;
  }

  .drop-down-collapsable {
    flex-shrink: 0;
    margin-left: 0;
    object-fit: contain;
    /* width: 480px;
    height: 400px; */
    /* margin-right: 150px; */
    margin: 35px 0px 45px 0px;
    object-position: left;
  }

  .drop-down-collapsable__card .card-body ol {
    padding: 0.5% 0%;
  }

  .drop-down-collapsable-container {
    width: 30%;
  }
  .drop-down-collapsable-section .drop-down-collapsable-content-wrapper {
    max-width: 1100px;
    color: #fff;
    margin-right: 580px;
  }

  .drop-down-collapsable__card {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
  }

  .drop-down-container {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;
  }

  .drop-down-collapsable__mainContent {
    flex-grow: 1;
    margin-left: 20px;
    text-align: left;
    max-width: 83% !important;
  }

  .drop-down-desktop-img {
    display: block;
    text-align: center;
  }

  .drop-down-mobile-img {
    display: none;
  }

  .drop-down-collapsable__card .card-header .btn:hover {
    background-color: #f2f2f2;
    transition: background-color 0.3s ease;
  }

  #collapsetemplate--18154923327665__reference-drop-down-snrjfe-1 .card-body ol li {
    color: #000000 !important;
  }

  @media (max-width: 1450px) {
    .picky-eater-banner-content-container {
      top: clamp(41%, 4vw, 20%);
      left: clamp(4%, 8vw, 10%);
      max-width: 35%;
    }

    .picky-eater-title {
      margin-bottom: 5px;
    }

    .picky-eater-body {
      margin-bottom: 5px;
    }

    .picky-eater-banner-button {
      padding: 10px 55px;
      margin-top: 10px;
    }
  }

  @media (max-width: 1430px) {
    .drop-down-collapsable__card {
      width: 100%;
    }
  }

  @media (max-width: 1200px) {
    .picky-eater-banner-content-container {
      top: clamp(40%, 5vw, 10%);
      left: clamp(4%, 4vw, 6%);
      max-width: 35%;
    }

    .picky-eater-title {
      margin-bottom: 5px;
    }

    .picky-eater-body {
      margin-bottom: 5px;
    }

    .picky-eater-banner-button {
      padding: 8px 45px;
      margin-top: 8px;
    }
  }

  @media (max-width: 950px) {
    .picky-eater-banner-background-desktop {
      display: none;
    }

    .picky-eater-banner-background-mobile {
      display: block;
      margin-top: 50px;
    }

    .picky-eater-banner-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      padding-top: 20px;
      padding-bottom: 40px;
      position: relative;
    }

    .picky-eater-banner-text-section {
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #00257a, #0475d7, #00257a);
      position: relative;
    }

    .picky-eater-title {
      margin-bottom: 10px;
    }

    .picky-eater-body {
      margin-bottom: 10px;
    }

    .picky-eater-banner-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }

  @media screen and (max-width: 768px) {
    .picky-eater-quiz-content h1 {
      font-size: 1.1rem !important;
      margin-top: 10px;
      margin-bottom: 0px;
    }

    .quiz-step h2 {
      font-size: 1.4em !important;
    }

    .picky-eater-quiz-content .shape-divider {
      width: 80%;
    }

    .quiz-step p {
      font-size: 0.875rem !important;
      text-align: left;
    }

    .quiz-intro p {
      text-align: left;
    }

    .quiz-step h3 {
      font-size: 1.4rem !important;
      width: 80%;
    }

    .picky-eater-quiz-content {
      padding: 20px;
    }

    .picky-eater-quiz-banner {
      padding: 0px;
    }

    .picky-eater-quiz-content {
      border: 4px solid transparent;
      max-width: 90%;
    }

    .picky-eater-quiz-title,
    .picky-eater-quiz-result-title {
      padding: 50px 0px 20px 0px;
    }

    #start-quiz {
      width: 100%;
    }

    .shape-divider {
      padding: 20px 10px;
    }

    .step-counter {
      font-size: 16px;
    }

    .drop-down-desktop-img {
      display: none;
    }

    .drop-down-card_body {
      padding: 20px 0px !important;
    }

    .drop-down-collapsable__card .card-body ol {
      padding: 3% 0%;
    }

    .drop-down-mobile-img {
      display: block;
      text-align: center;
    }

    .drop-down-collapsable__mainContent {
      max-width: 90% !important;
    }

    .drop-down-collapsable_container {
      flex-direction: column;
    }

    .drop-down-container {
      display: flex;
      flex-direction: column;
    }

    .drop-down-collapsable__card {
      width: 100%;
    }

    .drop-down-collapsable {
      object-position: center;
      margin-right: 140px;
      margin-top: 30px;
      width: 100%;
    }
  }
.picky-eater-wrapper {
    position: absolute;
    padding: 0 30px;
    left: 42px;
    top: 3%;
    width: 50%;
  }
  .picky-eater-wrapper-mobile {
    display: none;
  }

  .picky-eater-title{
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .picky-eater-wrapper-desktop-left {
    text-align: left;
  }

  .picky-eater-wrapper-desktop-center {
    text-align: center;
  }

  .picky-eater-wrapper-desktop-right {
    text-align: right;
  }
  .picky-eater-subtitle,
  .picky-eater-highlighted_words{
    line-height: 1.2;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .picky-eater-title-mobile {
      margin: 20px 0 10px 0;
    }
    .picky-eater-wrapper {
      display: none;
    }
    .picky-eater-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .picky-eater-wrapper-mobile-left {
      text-align: left;
    }
    .picky-eater-wrapper-mobile-center {
      text-align: center;
    }
    .picky-eater-wrapper-mobile-right {
      text-align: right;
    }
    .picky-eater-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.podcast-content__heading {
    text-align: left;
    margin-bottom: 1rem;
  }
  .podcast-content__blocks {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    border: 4px solid transparent;
    border-radius: 30px;
    background: linear-gradient(to right, #ecc267, #ffffcd), linear-gradient(to right, #ffdc79, #cf9400);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
  }
  .podcast-contest__blocksInner {
    background-color: #d4effd;
    width: 100%;
    padding: 20px;
    border-radius: 30px;
  }

  .podcast-content__text {
    text-align: left;
    color: #00257a;
    margin-bottom: 2rem;
  }
  .podcast-content__img {
    width: 25%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .content_audioplayer_item {
    width: 25%;
    position: relative;
    margin-bottom: 3vh;
    display: flex;
    justify-content: left;
  }
  .content_audioplayer {
    position: relative;
    visibility: visible !important;
    display: flex;
    justify-content: center;
    place-self: center;
    width: 100%;
    /* left: -10vw;
      top: -4vh;
      margin-top: -6vh; */
  }
  .podcast-content__buttons {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .podcast-content__buttons .podcast-content__buttons--multiple {
    line-height: 0.5;
  }
  .text_divider {
    margin-top: 20px;
    display: inline-flex;
    height: auto;
  }
  .podcast-content__wrapper {
    margin-top: 5rem;
    margin-bottom: 7rem;
  }

  @media screen and (max-width: 768px) {
    .podcast-content__wrapper {
      margin-top: 3rem;
      margin-bottom: 3rem;
    }

    .podcast-content__blocks {
      width: 90%;
      margin: 0 auto;
    }
    .podcast-content__img {
      width: 80%;
    }
    .content_audioplayer_item {
      width: 100%;
      position: relative;
    }
    .content_audioplayer {
      position: relative;
      display: block;
      width: 100%;
      margin-top: 5vh;
      margin-left: 1vw;
    }
  }

  @media screen and (max-width: 480px) {
    .podcast-content__img {
      width: 80%;
    }
    .content_audioplayer_item {
      width: 100%;
      position: relative;
    }
    .content_audioplayer {
      position: relative;
      display: block;
      width: 100%;
      margin-top: 5vh;
      margin-left: 1vw;
    }
  }
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  .podcast-middle {
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 30px;
  }

  .podcast-middle__list {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    width: 90%;
    margin: 0 auto;
  }

  .podcast-middle-item {
    flex: 0 0 calc(33.333% - 14px);
    border: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
  }

  .podcast-middle-item__image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 10px solid #00257a;
  }

  .podcast-middle-item__image {

    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    place-items: center;
  }
  .audioplayer_item {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .audio_player {
    position: relative;
    visibility: visible !important;
    display: flex;
    justify-content: center;
    place-self: center;
    margin-top: -5vh;
  }

  .podcast-middle-item__content {
    padding: 20px 20px 0;
    color: #00257A;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-height: fit-content !important;
  }

  .podcast-middle-item__title {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .podcast-middle-item__link {
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
  }

  .read-more-podcast {
    display: none;
  }

  .read-more-podcast:hover {
    background-color: #fff;
    color: #00257a;
  }

  .load-more-podcast {
    display: none;
  }

  .podcast-middle__navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .podcast-middle__arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    font-size: 24px;
    transition: background-color 0.5s
    , color 0.5s;
    margin-left: 1vw;
  }

  .podcast-middle__arrow:hover {
    background-color: #f0f0f0;
  }

  .podcast-middle__arrow--left {
    left: -20px;
  }

  .podcast-middle__arrow--right {
    right: -20px;
  }

  .hidden {
    display: block;
  }

  .perks-url {
    color: white;
  }

  @media screen and (max-width: 768px) {
    .hidden {
      display: none;
    }

    .podcast-middle {
      padding-bottom: 0;
    }

    .podcast-middle__list {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .podcast-middle-item {
      height: 100%;
      transition: max-height 0.5s ease
      , padding 0.5s ease;
      overflow: hidden;
      padding: 1rem;
    }

    .read-more-podcast {
      display: block;
      background-color: white;
      color: #00257a;
      margin: 0 auto;
      border: none;
      text-decoration: underline;
    }

    .load-more-podcast {
      display: block;
      background-color: white;
      color: #00257a;
      margin: 20px auto 20px;
      border: none;
      text-decoration: underline;
    }

    .podcast-middle__navigation {
      display: none;
    }

    .audioplayer_item {
      display: block;
      width: 100%;
    }
  }
  @media screen and (max-width: 480px) {
    .podcast-middle__list {
      display: flex;
      flex-direction: column;
    }
    .podcast-middle-item {
      overflow: hidden;
    }

    .audioplayer_item {
      display: block;
      width: 100%;
    }
  }
/* .podcastslide_container{
      overflow: hidden;
      position: relative;
      height: 105vh;
      padding-top: 20px;
      padding-bottom: 50px;
    }

    .podcast__slide{
    height: 90vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateY(-3%);
  }
  .podcastslide__image{
    background-size: contain;
    background-repeat: no-repeat;
  }

  swiper-container::part(pagination) {
    bottom: -5px;
    padding: 0px 10px;
    height: 20px;
    background: transparent;
}

  @media screen and (max-width: 768px){
    .podcastslide_container {
      height: 70vh;
      margin-top: -10vh;
    }
    .podcast__slide{
      height: 60vh;
    }
    .podcastslide__image{
      background-size: cover;
    background-repeat: no-repeat;
  }
    swiper-container::part(pagination) {
      height: 4vh !important;
      z-index: 10;
    }

  }
  @media screen and (max-width: 480px){
    .podcastslide_container {
      height: 70vh;
      margin-top: -10vh;
    }
    .podcast__slide{
      height: 60vh;
    }
    .podcastslide__image{
      background-size: cover;
    background-repeat: no-repeat;
  }
    swiper-container::part(pagination) {
      height: 4vh !important;
      z-index: 10;
    }

  } */
  .podcastslide_container {
  overflow: hidden;
  position: relative;
  height: 105vh;
  padding: 20px 0 50px;
}

.podcast__slide {
  height: 90vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(-3%);
}

.podcastslide__image {
  background-size: contain;
  background-repeat: no-repeat;
}

swiper-container::part(pagination) {
  bottom: -5px;
  padding: 0 10px;
  height: 20px;
  background: transparent;
}

@media screen and (max-width: 768px) {
  .podcastslide_container {
    height: 70vh;
    margin-top: -10vh;
  }
  .podcast__slide {
    height: 60vh;
  }
  .podcastslide__image {
    background-size: cover;
  }
  swiper-container::part(pagination) {
    height: 4vh !important;
    z-index: 10;
  }
}

@media screen and (max-width: 480px) {
  .podcastslide_container {
    height: 70vh;
    margin-top: -10vh;
  }
  .podcast__slide {
    height: 50vh;
  }
  .podcastslide__image {
    background-size: cover;
  }
  swiper-container::part(pagination) {
    height: 4vh !important;
    z-index: 10;
  }
}
.podcast-spotify-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .podcast-spotify-image {
    height: 80px;
    width: auto;
    display: block;
  }

  @media screen and (max-width: 768px) {
    .podcast-spotify-container {
      width: 90%;
      margin: 20px auto;
    }

    .podcast-spotify-image {
      height: 30px;
      width: auto;
    }
  }
.podcast_upperbanner-image {
  position: relative;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vw * 0.27);
  max-height: 585px;
}

.podcast_upperbanner-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vw * 0.27);
  max-height: 585px;
}

.podcast_upperbanner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.align--top {
  top: 0;
  transform: none;
}

.align--center {
  top: 50%;
  transform: translateY(-50%);
}

.align--bottom {
  top: auto;
  bottom: 0;
  transform: none;
}

.align-md--left {
  left: 0;
}

.align-md--center {
  left: 50%;
  transform: translate(-50%, -50%);
}

.align-md--right {
  right: 0;
}

@media screen and (max-width: 768px) {

  .podcast_upperbanner-image {
    display: none;
  }

  .podcast_upperbanner-mobile {
    display: block;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
  }
  .podcast_upperbanner-content {
    width: 100% !important;
    padding: 15px;
  }
}


  @media screen and (max-width: 480px) {

  .podcast_upperbanner-image {
  display: none;
  }

  .podcast_upperbanner-mobile {
  display: block;
  position: relative;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  }
  .podcast_upperbanner-content {
  width: 100% !important;
  padding: 15px;
  }
}
.popup-banner-wrapper {
    position: relative;
  }

  .popup-banner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup-banner-content {
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transform: translateY(0);
  }

  .popup-banner-container {
    position: relative;
    display: inline-block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
  }

  .popup-banner-image-wrapper {
    background: #fff;
    padding: 24px 24px 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 4px solid #00257a;
  }

  .popup-banner-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .popup-banner-button {
    background: #00257a;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
  }

  .popup-banner-button:hover {
    background: #001a5c;
  }

  .popup-banner-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 5px;
    display: block;
  }

  .mobile-popup-image {
    display: none;
  }

  .close-popup-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    background: #00257a;
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-popup-banner:hover {
    background: #001a5c;
  }


  @media (max-width: 768px) {
    .popup-banner-container {
      width: 90% !important;
      max-width: 400px;
    }

    .desktop-popup-image {
      display: none !important;
    }

    .mobile-popup-image {
      display: block !important;
    }

    .popup-banner-content {
      transform: translateY(0);
    }
  }


  .popup-banner-overlay.show {
    display: flex !important;
    animation: fadeIn 0.3s ease-in-out;
  }

  .popup-banner-overlay.show .popup-banner-container {
    animation: scaleIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes scaleIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
.pregnancy-banner-content-wrapper {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .pregnancy-banner-content-wrapper-mobile {
    display: none;
  }

  .pregnancy-banner-title,
  .pregnancy-banner-subtitle {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .pregnancy-banner-content-wrapper-desktop-left {
    text-align: left;
  }

  .pregnancy-banner-content-wrapper-desktop-center {
    text-align: center;
  }

  .pregnancy-banner-content-wrapper-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .pregnancy-banner-title-mobile {
      margin: 20px 0 10px 0;
    }
    .pregnancy-banner-content-wrapper {
      display: none;
    }
    .pregnancy-banner-content-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .pregnancy-banner-content-wrapper-mobile-left {
      text-align: left;
    }
    .pregnancy-banner-content-wrapper-mobile-center {
      text-align: center;
    }
    .pregnancy-banner-content-wrapper-mobile-right {
      text-align: right;
    }
    .pregnancy-banner-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.about-us-banner-section {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .about-us-banner-content {
    width: auto;
    position: relative;
    max-width: 35%;
    text-align: {{ section.settings.content_alignment }};
    margin-left: 108px;
    margin-top: 50px;
  }

  .subtitle p {
    margin: 0;
  }

  .about-us-banner-mobile-content {
    width: 100%;
    position: relative;
    padding: 1rem 2rem;
    text-align: {{ section.settings.content_alignment }};
  }

  .subtitle-mobile p {
    margin: 0;
  }
.hidden {
    display: none;
  }
  /* Basic styles for the select dropdown */
  #filter-dropdowns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  #filter-dropdowns select {
    width: 20vw;
    border: none;
    border-radius: 0;
    background-color: #d3d3d3;
    cursor: pointer;
    color: #00257a;
    font-weight: 700;
    padding: 0 30px 0 10px;
    height: 50px;
  }

  #filter-dropdowns select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border: none;
  }

  #filter-dropdowns select:hover {
    background-color: #00257a;
    color: white;
    cursor: pointer;
  }

  .header-text {
    text-align: center;
    color: #00257a;
  }

  .search-box-container {
    padding: 0 50px 50px;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  }

  .search-bar {
    display: flex;
    align-items: center;
    background-color: #d3d3d3;
    overflow: hidden;
    width: 20vw;
    height: 50px;
  }

  .search-bar input::placeholder {
    color: #949494;
  }

  #product-search {
    font-size: inherit;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: transparent;
    color: black;
  }

  #product-search::placeholder {
    font-size: inherit;
    font-weight: bold;
    color: #888;
  }

  #product-search:focus {
    outline: none;
  }

  #search-button {
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #0d47a1;
  }

  #search-button svg {
    width: 15px;
    height: 15px;
  }
  #show-more {
    font-weight: 700;
    color: #00257a;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
  }

  #show-more:hover {
    color: #0056b3;
    text-decoration: none;
  }

  /* Media query for screens smaller than 768px (mobile) */
  @media (max-width: 768px) {
    .search-box-container {
      padding: 0 5% 30px;
      width: 100%;
      margin: 0;
      box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }

    .search-bar {
      width: 100%;
      height: 40px;
      margin: 0;
    }

    #filter-dropdowns {
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
      margin-top: 10px;
    }

    #filter-dropdowns select,
    #filter-dropdowns div {
      width: 100%;
    }

    #filter-dropdowns select {
      height: 40px;
    }
  }
.product-series-banner-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .product-series-banner-content-container {
    position: absolute;
    top: clamp(45%, 5vw, 20%);
    left: clamp(4%, 10vw, 10%);
    max-width: 40%;
  }

  .product-series-title {
    margin-bottom: clamp(0px, 1vw, 15px);
  }

  .product-series-subtitle-container * {
    color: inherit !important;
  }

  .product-series-subtitle,
  .product-series-body {
    margin-bottom: clamp(0px, 2.5vw, 10px);
    line-height: 1.7rem;
  }

  .product-series-subtitle p {
    font-size: 22px;
    font-weight: 600;
    line-height: 2.1rem;
  }

  .product-series-subtitle p,
  .product-series-body p {
    margin: 0;
  }

  .product-series-banner-button {
    padding: 10px 70px;
    margin-top: 20px;
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .product-series-banner-button:hover {
    opacity: 0.8;
  }

  .product-series-banner-background-desktop {
    display: block;
  }

  .product-series-banner-background-mobile {
    display: none;
  }

  @media (max-width: 1450px) {
    .product-series-banner-content-container {
      top: clamp(41%, 4vw, 20%);
      left: clamp(4%, 8vw, 10%);
      max-width: 35%;
    }

    .product-series-title {
      margin-bottom: 5px;
    }

    .product-series-subtitle,
    .product-series-body {
      margin-bottom: 5px;
    }

    .product-series-banner-button {
      padding: 10px 55px;
      margin-top: 10px;
    }
  }

  @media (max-width: 1200px) {
    .product-series-banner-content-container {
      top: clamp(40%, 5vw, 10%);
      left: clamp(4%, 4vw, 6%);
      max-width: 35%;
    }

    .product-series-title {
      margin-bottom: 5px;
    }

    .product-series-subtitle,
    .product-series-body {
      margin-bottom: 5px;
    }

    .product-series-banner-button {
      padding: 8px 45px;
      margin-top: 8px;
    }
  }

  @media (max-width: 950px) {
    .product-series-banner-background-desktop {
      display: none;
    }

    .product-series-banner-background-mobile {
      display: block;
    }

    .product-series-banner-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      padding-top: 20px;
      padding-bottom: 40px;
      position: relative;
    }

    .product-series-banner-text-section {
      width: 100%;
      height: 100%;
      background-color: #00257A;
      position: relative;
    }

    .product-series-title {
      margin-bottom: 10px;
    }

    .product-series-subtitle,
    .product-series-body {
      margin-bottom: 10px;
    }

    .product-series-banner-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
.product-series-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 60px;
    /* padding: 30px 80px 30px 60px; */
    background-position: center;
  }

  .product-series-container {
    flex: 1;
    max-width: 35%;
  }

  .swiper-container-content {
    flex: 1;
    max-width: 65%;
  }

  .product-series-slideshow-banner-desktop {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .product-series-slideshow-banner-mobile {
    display: none;
    position: relative;
  }

  .product-series-slideshow-banner-tablet {
    display: none;
  }

  .product__item {
    padding: 0 !important;
  }

  .swiper-container-content swiper-container::part(button-prev) {
    background-image: url('https://cdn.shopify.com/s/files/1/2637/8420/files/prev-arrow.png?v=1742194246') !important;


    /*

   background-image: url('https://cdn.shopify.com/s/files/1/0027/7145/1963/files/prev-arrow.png?v=1742194238') 
   !important; 
*/
    background-size: contain;
    background-repeat: no-repeat;
    user-select: none;
  }

  .swiper-container-content swiper-container::part(button-next) {
    background-image: url('https://cdn.shopify.com/s/files/1/2637/8420/files/next-arrow.png?v=1742194246') !important;


    /*

   background-image: url('https://cdn.shopify.com/s/files/1/0027/7145/1963/files/next-arrow.png?v=1742194238') 
   !important; 
*/
    background-size: contain;
    background-repeat: no-repeat;
    user-select: none;
  }

  .product-card-series {
    width: 300px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
  }

  .swiper-container-content swiper-container::part(pagination) {
    display: none;
  }

  /* Hide default arrows */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }

  swiper-slide {
    display: flex;
    justify-content: center;
  }

  .product-series-shape {
    transform: translateX(-50px);
    padding-bottom: 20px;
  }

  .shape-desktop-image {
    display: block;
  }

  .shape-mobile-image {
    display: none;
  }

  .product-series-button {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    background-color: #00257a;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: large;
  }

  @media (max-width: 768px) {
    .product-series-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .product-series-container,
    .swiper-container-content {
      max-width: 100%;
    }

    div.product__item {
      padding: 0 !important;
    }

    .product-series-container .product-card-series {
      display: block;
      width: 100%;
    }

    .product-series-wrapper {
      gap: 20px;
      padding: 20px;
    }

    .shape-desktop-image {
      display: none;
    }

    .shape-mobile-image {
      display: block;
    }

    .product-series-shape {
      transform: translateX(0px);
    }

    .product-series-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
.exclusive-promo-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .exclusive-promo-content-container {
    position: absolute;
    top: clamp(10%, 5vw, 20%);
    right: clamp(4%, 15vw, 14%);
    max-width: 30%;
  }

  .exclusive-promo-logo {
    margin-bottom: clamp(0px, 1vw, 15px);
    width: 35%;
    height: auto;
  }

  .exclusive-promo-title {
    margin-bottom: clamp(0px, 1vw, 15px);
    font-size: 40px!important;
  }

  .promo-button {
    padding: 5px 55px;
    display: inline-block;
    margin-right: 10px; 
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    display: block; 
    cursor: pointer;
    border: 1px solid #0033A0;
  }

  .promo-button:hover {
    opacity: 0.8;
  }

  .exclusive-promo-background-desktop {
    display: block;
  }

  .exclusive-promo-background-mobile {
    display: none;
  }

  .exclusive-desktop-only {
      display: none;
  }

  @media (max-width: 1450px) {
    .exclusive-promo-content-container {
      top: clamp(10%, 3vw, 20%);
      right: clamp(4%, 10vw, 13%);
      max-width: 41%;
    }

    .exclusive-promo-title {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 40px;
    }
  }

  @media (max-width: 1200px) {
    .exclusive-promo-content-container {
      top: clamp(5%, 5vw, 10%);
      right: clamp(4%, 8vw, 8%);
      max-width: 40%;
      text-align: left !important;
    }

    .exclusive-promo-title {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 40px;
    }
  }

  @media (max-width: 1023px) {
    .exclusive-promo-content-container {
      top: clamp(5%, 5vw, 10%);
      right: clamp(4%, 5vw, 5%);
      max-width: 40%;
      text-align: left !important;
    }
  }

  @media (min-width: 1024px) {
    .exclusive-desktop-only {
      display: inline; /* or block, depending on your layout */
    }
  }

  @media (max-width: 950px) {
    .exclusive-promo-content-container {}

    .exclusive-promo-title {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 50px;
    }
  }

  @media screen and (max-width: 768px) {
    .exclusive-promo-content-container {
      text-align: left !important; 
    }

    .exclusive-promo-logo {
      display: block; 
      margin-left: 0; 
      margin-right: auto; 
      width: 30%; 
      margin-bottom: clamp(0px, 1vw, 15px); 
    }

    .exclusive-promo-title {
      margin-bottom: 3px;
      font-size: 20px!important;
    }

    .promo-button {
      padding: 5px 40px;
      margin: 2% auto;
      width: 90%;
      text-align: center;
      display: block; 
    }
  }

  @media screen and (max-width: 480px) {
    .exclusive-promo-background-desktop {
      display: none;
    }

    .exclusive-promo-background-mobile {
      display: block;
    }

    .exclusive-promo-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      margin: 20px auto 40px auto;
      position: relative;
      text-align: left !important;
    }

    .exclusive-promo-title {
      margin-bottom: 10px;
    }

    .promo-button {
      padding: 5px 60px;
      margin: 2% auto;
      width: 90%;
      text-align: center;
      display: block; 
    }
  }
.promo-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .promo-content-container {
    position: absolute;
    top: clamp(10%, 5vw, 20%);
    right: clamp(4%, 10vw, 10%);
    max-width: 30%;
  }

  .promo-title{
    margin-bottom: clamp(0px, 1vw, 15px);
  }

  .promo-subtitle {
    font-weight: normal;
  }

  .promo-subtitle,
  .promo-body {
    margin-bottom: clamp(0px, 2.5vw, 10px);
    line-height: 1.2;
  }

  .copy-code-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(90deg, #ECC267 0%, #FFFFCD 29.52%, #FFDC79 91.58%, #CCA146 117.46%, #CF9400 136.88%);
    height: auto;
    padding: 1% 1%;
    border-radius: 5px;
  }

  .promo-button {
    padding: 5px 55px;
    /* margin-top: 20px; */
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .promo-button:hover {
    opacity: 0.8;
  }

  .promo-background-desktop {
    display: block;
  }

  .promo-background-mobile {
    display: none;
  }

  @media (max-width: 1450px) {
    .promo-content-container {
      top: clamp(10%, 3vw, 20%);
      right: clamp(4%, 5vw, 10%);
      max-width: 41%;
    }

    .promo-title{
      margin-bottom: 5px;
    }

    .promo-subtitle,
    .promo-body {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 40px;
    }
  }

  @media (max-width: 1200px) {
    .promo-content-container {
      top: clamp(5%, 5vw, 10%);
      right: clamp(4%, 4vw, 6%);
      max-width: 40%;
    }

    .promo-title{
      margin-bottom: 5px;
    }

    .promo-subtitle,
    .promo-body {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 40px;
    }
  }

  @media (max-width: 950px) {

    .promo-content-container{
        
    }
    .promo-title{
      margin-bottom: 5px;
    }

    .promo-subtitle,
    .promo-body {
      margin-bottom: 5px;
    }

    .promo-button {
      padding: 5px 50px;
    }
  }

  @media screen and (max-width: 768px) {
    
    .promo-content-container{
        text-align: center !important;    
    }

    .promo-title{
      margin-bottom: 3px;
    }

    .promo-subtitle,
    .promo-body {
      margin-bottom: 3px;
    }
    .copy-code-container{
        flex-direction: column;
    }

    .promo-button {
      padding: 5px 40px;
      margin: 2% auto;
      width: 90%;
      text-align: center;
    }
  }

  @media screen and (max-width: 480px) {
    .promo-background-desktop {
      display: none;
    }

    .promo-background-mobile {
      display: block;
    }

    .promo-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      margin: 20px auto 40px auto;
      position: relative;
    }

    .promo-title{
      margin-bottom: 10px;
    }

    .promo-subtitle,
    .promo-body {
      margin-bottom: 10px;
    }

    .copy-code-container{
        flex-direction: column;
    }
    .promo-button {
      padding: 5px 60px;
      margin: 2% auto;
      width: 100%;
      text-align: center;
    }
  }
.image__promo-content {
    flex-shrink: 0; /* Ensure image doesn't shrink */
    width: 300px; /* Adjusted for responsive sizing */
    height: auto;
    margin-left: 0px; /* Align image closer to left */
    object-fit: contain;
    width: 480px;
    height: 400px;
    margin-right: 150px;
    margin-top: 45px;
  }
  .promo-collapsable-section .promo-content-content-wrapper {
    max-width: 100%;
    color: #fff;
    margin-right: 580px;
  }
  .promo-collapsable-section .title {
    font-size: 64px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.6px;
    margin-top: 100px;
    color: #00257a;
  }
  .promo-collapsable-section .subtitle {
    font-size: 18px;
    font-weight: 350;
    line-height: 36px;
    margin-top: 100px;
    letter-spacing: 0.6px;
    color: #00257a;
  }
/* Allow collapsible content to grow */
  /* .promo-content__mainContent {
    flex-grow: 1; 
    margin-left: 20px;
  } */

  .promo-content__card {
    max-width: 100%; /* Make collapsible section fill available space */
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
  }

  .promo-container {
    display: flex;
    flex-direction: row;
    margin: 0 4.2%;
    width: 100%;
  }

  .promo-content__mainContent {
    width: 100%;
    text-align: left;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 2rem;
    flex-grow: 1; /* Allow collapsible content to grow */
  }

  .image__promo-content {
    width: 480px;
    height: 400px;
    margin-left: 0px;
    object-fit: contain;
    object-position: left;
  }

  @media (max-width: 768px) {
    .promo-collapsable_container {
      flex-direction: column; /* Stack elements vertically on mobile */
      /* padding: 0 10px; */
    }

    .promo-container {
      display: flex;
      flex-direction: column;
      margin: 0%;
    }

    .promo-content__card {
      display: block;
    }

    .image__promo-content {
      height: 200px;
      object-position: center;
      position: absolute;
      right: 0%;
    }

    .promo-content__mainContent {
      /* margin-top: 8.5rem; */
    }
  }
.see-all-products {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 70px 0;
    }
  
    .see-shop-now {
    padding: 10px 140px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: normal;
    }
  
    .home-products-container {
      width: 80%;
      margin: 0 auto;
    }

@media screen and (max-width: 768px) {

    .promo-rowProducts {
    max-width: fit-content;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    flex-direction: column;
    }

    .see-all-products {
      margin: 40px 0;
    }

    .home-products-container {
      width: 100%;
    }
}


@media screen and (max-width: 768px) {
  .see-shop-now {
    display: block;
    padding: 5px 70px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
  }

}
.banner-container-exclusive {
    border: 6px solid #0033A0;
    padding: 20px;
    text-align: center;
    background-color: #FBF8F3;
    border-radius: 25px;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .banner-background-exclusive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 0;
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCF6F0;
    opacity: 0.6;
    z-index: 1;
  }

  .banner-title-exclusive,
  .banner-subtitle-exclusive,
  .banner-code-exclusive,
  .banner-button-exclusive,
  .banner-details-exclusive,
  .banner-link-exclusive,
  .banner-code-exclusive-container {
    position: relative;
    z-index: 2;
  }

  .banner-title-exclusive {
    font-size: 35px;
    font-weight: 700;
    font-family: DIN Round Pro !important;
    color: #0033A0;
  }

  .banner-subtitle-exclusive {
    font-size: 20px;
    font-weight: 700;
    font-family: DIN Round Pro !important;
    color: #0033A0;
    padding-bottom: 20px;
  }

  .banner-code-exclusive-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Space between the code and the button */
    background: linear-gradient(to right, #00257A, #0475D7, #00257A);
    border-radius: 5px;
    padding: 10px 20px;
    width: 42%;
    margin: auto;
  }

  .banner-code-exclusive {
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    font-family: Gotham Rounded Medium !important;
  }

  .banner-button-exclusive {
    font-size: 16px;
    font-weight: bold;
    color: #00257A;
    background-color: #ffffff;
    padding: 8px 55px;
    border-radius: 7px;
    border: 2px solid #ffffff;
    cursor: pointer;
    text-align: center;
    font-family: Gotham Rounded Medium !important;
  }

  .banner-button-exclusive:hover {
    opacity: 0.8;
  }

  .banner-details-exclusive {
    font-size: 12px;
    color: #0033a0;
    padding-top: 20px;
  }

  .banner-link-exclusive {
    font-size: 12px;
    color: #0033A0;
    padding: 10px 20px;
    display: inline-block;
    margin: 10px 0;
    cursor: pointer;
    text-decoration: underline;
    font-family: Gotham Rounded Light !important;
  }

  @media (max-width: 1190px) {
    .banner-code-exclusive-container {
      width: 60%;
    }
  }

  @media (max-width: 768px) {
    .banner-container-exclusive {
      border: 4px solid #0033A0;
      max-width: 90%;
    }
    .banner-code-exclusive-container {
      width: 100%;
      gap: 0;
      padding: 20px;
    }
    .banner-code-exclusive,
    .banner-button-exclusive {
      font-size: 15px;
      font-weight: bold;
      padding-bottom: 10px;
      border-radius: 5px;
      width: 100%;
      margin-bottom: 0;
      text-align: center;
    }

    .banner-subtitle-exclusive {
      font-size: 13px;
    }

    .banner-title-exclusive {
      font-size: 30px;
    }

    .banner-code-exclusive-container {
      flex-direction: column;
      /* Stack elements vertically */
    }

  }
.promo-image-button-section {
      margin-bottom: 30px;
    }
    .promo-image-button-container {
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .promo-image-button-image {
      width: 100%;
      height: auto;
    }
    .promo-image-button-wrapper {
        display: flex;
        width: 100%;
        margin-top: -10vh;
    }
    .promo-image-button-button {
      padding: 10px 140px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: opacity 0.3s ease;
      color: white;
      font-weight: normal;
    }

    .promo-image-button-button:hover {
      opacity: 0.8;
    }

    .promo-image-with-button-mobile, .promo-image-footnote-mobile {
      display: none;
    }

    .promo-image-footnote-desktop {
      display: block;
      width: 80%;
      margin: 0 auto;
      margin-top: 100px;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .promo-image-with-button-desktop, .promo-image-footnote-desktop {
        display: none;
      }

      .promo-image-with-button-mobile {
        display: block;
        position: relative;
      }

      .promo-image-button-container {
        height: 60vh;
      }

      .promo-image-footnote-mobile {
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 10px;
      }
      .promo-image-button-wrapper {
        position: relative;
        top: -70%;
      }

      .promo-image-button-button {
        padding: 5px 70px;
        border-radius: 5px;
        width: 90%;
        text-align: center;
        margin-top: 12vh;
      }

    }
    
    @media (max-width: 480px) {
    .promo-image-button-wrapper {
        z-index: 1;
        padding: 0px 5%;
        position: relative;
        transform: translateY(5vh);
        margin-top: 0;
    }
    }
/* Basic styles for the select dropdown */
  #filter-dropdowns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  #filter-dropdowns select {
    width: 20vw;
    border: none;
    border-radius: 0;
    background-color: #d3d3d3;
    cursor: pointer;
    color: #00257a;
    font-weight: 700;
    padding: 0 30px 0 10px;
    height: 50px;
  }

  #filter-dropdowns select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border: none;
  }

  #filter-dropdowns select:hover {
    background-color: #00257a;
    color: white;
    cursor: pointer;
  }

  .header-text {
    text-align: center;
    color: #00257a;
  }

  .promo-product-container {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .search-bar {
    display: flex;
    align-items: center;
    background-color: #d3d3d3;
    overflow: hidden;
    width: 20vw;
    height: 50px;
  }

  .search-bar input::placeholder {
    color: #949494;
  }

  #product-search {
    font-size: inherit;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: transparent;
    color: black;
  }

  #product-search::placeholder {
    font-size: inherit;
    font-weight: bold;
    color: #888;
  }

  #product-search:focus {
    outline: none;
  }

  #search-button {
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #0d47a1;
  }

  #search-button svg {
    width: 15px;
    height: 15px;
  }

  /* Media query for screens smaller than 768px (mobile) */
  @media (max-width: 768px) {
    .promo-product-container {
      padding: 0 5% 30px 5%;
      width: 100%;
      margin: 0;
    }

    .search-bar {
      width: 100%;
      height: 40px;
      margin: 0;
    }

    #filter-dropdowns {
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
      margin-top: 10px;
    }

    #filter-dropdowns select,
    #filter-dropdowns div {
      width: 100%;
    }

    #filter-dropdowns select {
      height: 40px;
    }
  }

  /* Image with Button */
  .promo-product-button-section {
    margin-bottom: 30px;
  }
  .promo-product-button-container {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .promo-product-button-image {
    width: 100%;
    height: auto;
  }
  .promo-product-button-wrapper {
    margin-top: 20px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .promo-product-button-button {
    padding: 10px 140px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: normal;
  }

  .promo-product-button-button:hover {
    opacity: 0.8;
  }

  .promo-product-with-button-mobile,
  .promo-product-footnote-mobile {
    display: none;
  }

  .promo-product-footnote-desktop {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  @media (max-width: 500px) {
    .promo-product-with-button-desktop,
    .promo-product-footnote-desktop {
      display: none;
    }

    .promo-product-with-button-mobile {
      display: block;
      position: relative;
    }

    .promo-product-footnote-mobile {
      display: block;
      width: 90%;
      margin: 0 auto;
      margin-top: 50px;
      margin-bottom: 10px;
    }

    .promo-product-button-button {
      border-radius: 5px;
      width: 90%;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .promo-product-button-wrapper {
      z-index: 1;
    }
  }

  /* Recommended */

  .promo-product__title {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
  }
.quiz-form {
    padding: 5rem 30rem;
  }

  .quiz {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .quiz-container {
    margin: 2rem;
    padding: 2rem;
    border: 0.5rem solid #00257A;
    border-radius: 2.5rem;
    background-color: #D4EFFD;
    color :  #4D4D4D;
    width: 100%;
    text-align: justify;
    font-family: Gotham Rounded Medium!important;
  }

  .quiz-box {
    display: flex;
    justify-content: center;
  }

  .quiz-button {
    background-color: #00257A;
    border-radius: 0.5rem;
    color: white;
    width: 50%;
    padding: 0.5rem;
  }

  .result-box{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hidden-radio {
    display: none;
  }

  .hexagon {
    --b: 4px;
    height: 22px;
    width: 25px;
    aspect-ratio: cos(30deg);
    clip-path: 
    polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%,
    var(--b) 50%,
    calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
    calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
    calc(100% - var(--b)) 50%,
    calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
    calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
    var(--b) 50%);
    background: #00257A;
    cursor: pointer;
  }

  .hexagon-selected {
      background-color: #00257A;
      border-color: #00257A;
      --b: 12.5px;
  }

  .font-family{
    font-family: Gotham Rounded Medium!important;
  }
  
  @media (max-width: 1700px) {
    .quiz-form {
      padding: 5rem 20rem;
    }
  }

  @media (max-width: 1400px) {
    .quiz-form {
      padding: 5rem 15rem;
    }
  }

  @media (max-width: 1200px) {
    .quiz-button {
      width: 65%;
    }
  }

  @media (max-width: 1000px) {
    .quiz-form {
      padding: 3rem 8rem;
    }
  }

  @media (max-width: 768px) {
    .quiz-form {
      padding: 3rem;
    }

    .quiz-container {
      margin: 0;
      padding: 1.5rem;
      border: 6px solid #00257A;
      border-radius: 2rem;
      margin-top: 1rem;
    }

    .quiz-button {
      width: 100%;
      padding: 5px;
      font-size: x-small;
      border-radius: 0.3rem;
    }
  }

  @media (max-width: 400px) {
    .quiz-form {
      padding: 1rem;
    }
  }
.quotation-section {
    width: 60%;
    margin: 0 auto;
    display: flex;
  }

  .quotation-image {
    align-self: flex-start;
  }

  .quotation-image img {
    object-fit: contain;
    object-position: top;
    width: 150px;
    height: auto;
  }

  @media (max-width: 768px) {
    .quotation-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 1rem auto;
      width: 90%;
    }
    .quotation-image {
      align-self: center;
      margin-bottom: 1rem;
    }
    .quotation-image img {
      width: 80px;
      height: auto;
    }
    .quotation-text {
      padding-left: 0 !important;
    }
  }
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  .recommend-item {
    flex: 0 0 calc(33.333% - 14px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }

  .recommend-item__image-container {
    width: 100%;
    padding-top: 66.67%;
    /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
    border-top: 10px solid #00257a;
    flex-shrink: 0;
  }

  .recommend-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recommend-item__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .recommend-item__title {
    font-weight: bold;
  }

  .recommend-item__description {
    margin: 1.5rem 0;
  }

  .recommend-item__link {
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
  }

  .recommend-for-you__navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .recommend-for-you {
    width: 80%;
    margin: 5rem auto 0;
    position: relative;
  }

  .recommend-for-you__title {
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .recommend-for-you__list {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 20px;
    align-items: stretch;
  }

  .recommend-for-you__arrow {
    width: 40px;
    height: 40px;
    margin-left: -65px;
    margin-right: -65px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s, color 0.3s;
  }

  .recommend-for-you__arrow:hover {
    background-color: #f0f0f0;
  }

  .recommend-for-you__arrow--left {
    left: -20px;
  }

  .recommend-for-you__arrow--right {
    right: -20px;
  }

  @media screen and (max-width: 768px) {
    .recommend-for-you__list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .recommend-for-you__arrow {
      display: none;
    }
  }

  @media screen and (max-width: 500px) {
    .recommend-for-you__title {
      font-weight: 700;
      margin-top: 3rem;
      margin-bottom: 1rem;
    }

    .recommend-for-you {
      width: 90%;
      margin: 3rem auto 0;
    }
  }
.result-title {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .quiz-result {
        background-image: linear-gradient(to right, #04287c,#04287c,#044aa5,#0473d4,#50a4e5,#0473d4,#044aa5, #04287c);
        border-radius: 0.3rem;
        border: none;
        color: white;
        width: 50%;
        padding: 0.5rem;
    }

    @media (max-width: 768px) {
        .result-title {
            width: 50%;
            margin: auto;
        }

        .quiz-result{
            width: 100%;
            padding: 0.5rem;
        }
    }
.sitemap__blocks{
  padding: 50px;
}
 

  .sitemap-title h6{
    font-size: 24px;
    margin-top:20px;
  }


  .sitemap__wrapper {
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }

  .sitemap__heading h5,
  .sitemap__title p,
  .sitemap__subtitle p {
    color: #337ab7 !important;
    margin: 10px;
    font-size: 24px;
  }

  .sitemap__title h6,
  .sitemap__subtitle h6 {
    font-weight: normal;
  }

  .sitemap__heading {
    padding: 10px 0;
  }

  .sitemap__title {
    padding-left: 50px;
    padding-top: 10px;
  }

  .sitemap__subtitle {
    padding-left: 100px;
  }

  .text_divider {
    margin-top: 20px;
    display: inline-flex;
    height: auto;
  }


@media screen and (min-width:768px){

.sitemap__blocks {
  
    display: grid;
    grid-template-columns: repeat(2,1fr)
  }

  .sitemap-title-Products{
    grid-column: 1/2;
    grid-row: 1/3;
  }

  .sitemap-title-Tips{
    grid-column: 2/3;
    grid-row:1

  }


  .sitemap-title-Offers{
    grid-column: 2/3;
    grid-row: 2;
  }

  .sitemap-title-Enfamama{
    grid-column: 2/3;
    grid-row: 3;
  }

}



  @media screen and (max-width: 500px) {
   

    .sitemap__heading {
      padding: 0;
    }
    .sitemap__title {
      padding-left: 35px;
      padding-top: 10px;
    }
    .sitemap__subtitle {
      padding-left: 70px;
    }

    .sitemap__wrapper {
      width: 95%;
    }
  }
.slideshow {
    position: relative;
    overflow: hidden;
    padding-top: 0;
  }

  .slideshow-item {
    padding: 40px 0 20px;
    cursor: pointer;
  }

  .page-why-enfagrow-a-pro-gentlease .slideshow-item,
  #shopify-section-template--15977569419323__slideshow_banner_oru432 .slideshow-item {
    padding: 0 !important;
  }

  .page-why-enfagrow-a-pro-gentlease swiper-container::part(bullet-active) {
    background: #512372 !important;
    border: 2px solid #512372 !important;
  }

  .page-why-enfagrow-a-pro-gentlease swiper-container::part(bullet) {
    background: transparent;
    border: 2px solid #512372 !important;
  }

  #shopify-section-template--15977569419323__slideshow_banner_oru432 swiper-container::part(bullet) {
    border: 1px solid #ffffff;
    background: #A883C4;
  }

  .page-why-enfagrow-a-mindpro-gentlease .slideshow {
    margin-top: -2px;
    margin-bottom: -3px;
  }

  .slideshow-banner-desktop {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .slideshow-banner-mobile {
    display: none;
    position: relative;
  }

  .slideshow-banner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  /* Popup Styles - Using the same styles as your hover-popup section */
  .hover-popup-content {
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transform: translateY(38px);
  }

  .popup-container {
    position: relative;
    display: inline-block;
  }

  .hover-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Increased z-index */
  }

  .hover-popup img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
  }

  .close-hover-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    background: #00257a;
    color: #ffffff;
  }

  .hidden {
    display: none !important;
  }

  /* Debug styles - remove in production */
  .slideshow-item[data-has-popup="true"] {
    position: relative;
  }

  .slideshow-item[data-has-popup="true"]::after {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 10;
  }

  @media (max-width: 500px) {
    .slideshow-banner-desktop {
      display: none;
    }
    .slideshow-banner-mobile {
      display: block;
    }
    .slideshow-item {
      padding: 0;
    }
  }

  @media (max-width: 768px) {
    .popup-container {
      width: 90% !important;
    }
    .hover-popup-content {
      transform: translateY(-5px);
    }
    .hover-popup-image {
      display: none !important;
    }
    .mobile-hover-popup {
      display: block !important;
    }
  }
.testimonial-banner-section {
    width: 80%;
    margin: 30px auto;
    height: calc((100vw / 1200) * 350);
    max-height: 350px;
    position: relative;
    overflow: hidden;
  }
  .testimonial-container {
    display: grid;
    grid-template-columns: 30% 70%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  
  .testimonial-image-container_desktop,
  .testimonial-image-container_mobile {
    height: 100%;
    z-index: 1;
  }
  .testimonial-image-container_mobile {
    display: none;
  }
  .testimonial-image-container_desktop {
    display: block;
  }
  .testimonial-content-desktop {
    padding: 0 20px 60px 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .testimonial-text {
    line-height: 1.6;
    color: black;
  }
  .testimonial-content-mobile {
    display: none;
  }
  .author-bar {
    width: 100%;
    height: 60px;
    background-color: #00257a;
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
  }
  .author-name {
    position: absolute;
    z-index: 1;
    margin-left: 10px;
    padding-left: 30%;
  }
  .author-name h4 {
    color: white;
  }

  @media (max-width: 850px) {
    .testimonial-banner-section {
      height: calc((100vw / 1200) * 500);
    }

    .testimonial-content-desktop {
      padding: 0 20px 50px 10px;
    }
    .author-bar {
      height: 50px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-banner-section {
      height: auto;
      max-height: none;
      width: 90%;
      margin: 0 auto;
      overflow: visible;
    }
    
    .testimonial-container {
      grid-template-columns: 100%;
      width: 60%;
    }

    .testimonial-image-container_desktop,
    .testimonial-image-container_mobile {
      width: 100%;
      aspect-ratio: 1 / 1;
    }

    .testimonial-image-container_desktop {
      display: none;
    }

    .testimonial-image-container_mobile {
      display: block;
    }

    .testimonial-content-desktop {
      display: none;
    }

    .testimonial-content-mobile {
      display: block;
      width: 90%;
      margin: 20px auto;
    }

    .testimonial-text {
      text-align: left;
      line-height: 1.5;
    }

    .author-bar {
      height: 70px;
      position: relative;
      margin-top: -50px;
    }

    .author-name {
      padding: 10px 0;
      margin: 0;
      width: 100%;
      text-align: center;
      bottom: 0;
    }
  }
.testimonial-banner-section-2 {
    width: 80%;
    margin: 30px auto;
    height: calc((100vw / 1200) * 350);
    max-height: 350px;
    position: relative;
    overflow: hidden;
  }

  .testimonial-container-2 {
    display: grid;
    grid-template-columns: 70% 30%;
    height: 100%;
    margin: 0 auto;
  }

  .testimonial-image-container_desktop_2,
  .testimonial-image-container_mobile_2 {
    height: 100%;
    z-index: 1;
  }

  .testimonial-image-container_mobile_2 {
    display: none;
  }

  .testimonial-image-container_desktop_2 {
    display: block;
  }
  .testimonial-content-desktop-2 {
    padding: 0 10px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .testimonial-text-2 {
    line-height: 1.6;
    color: black;
  }

  .testimonial-content-mobile-2 {
    display: none;
  }

  .author-bar-2 {
    width: 100%;
    height: 60px;
    background-color: #00257A;
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
  }

  .author-name-2 {
    position: absolute;
    z-index: 1;
    margin-left: 30px;
  }

  .author-name-2 h4 {
    color: white;
  }

  @media (max-width: 850px) {
    .testimonial-banner-section-2 {
      height: calc((100vw / 1200) * 500);
    }

    .testimonial-content-desktop-2 {
      padding: 0 20px 50px 10px;
    }
    .author-bar-2 {
      height: 50px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-banner-section-2 {
      height: auto;
      max-height: none;
      width: 90%;
      margin: 0 auto;
      overflow: visible;
    }

    .testimonial-container-2 {
      grid-template-columns: 100%;
    }

    .testimonial-image-container_desktop_2,
    .testimonial-image-container_mobile_2 {
      width: 60% !important;
      margin: 0 auto;
      aspect-ratio: 1 / 1;
    }

    .testimonial-image-container_desktop_2 {
      display: none;
    }

    .testimonial-image-container_mobile_2 {
      display: block;
    }
    
    .testimonial-content-desktop-2 {
      display: none;
    }

    .testimonial-content-mobile-2 {
      display: block;
      width: 100%;
      margin: 20px auto;
    }

    .testimonial-text-2 {
      text-align: left;
      line-height: 1.5;
    }

    .author-bar-2 {
      height: 70px;
      position: relative;
      margin-top: -50px;
    }

    .author-name-2 {
      padding: 10px 0;
      margin: 0;
      width: 100%;
      text-align: center;
      bottom: 0;
    }
  }
.text-content__wrapper {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }

  .text-content__heading {
    color: #01257a;
    font-weight: bold;
    text-align: left;
    padding: 20px 0;
  }

  .text-content__text {
    text-align: left;
  }

  .text-content__text ul {
    font-size: inherit;
    color: inherit;
  }

  .text-content__buttons {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-content__buttons .text-content__buttons--multiple {
    line-height: 0.5;
  }
  .text_divider {
    margin-top: 20px;
    display: inline-flex;
    height: auto;
  }

  @media screen and (min-width: 500px) {
    .text-content__wrapper {
      width: 80%;
    }
  }

  @media screen and (min-width: 768px) {
    .hide-on-desktop {
      display: none !important;
    }
  }
.text-only {
    width: 80%;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  .text-only h6 {
    font-weight: normal;
  }

  @media (max-width: 768px) {
    .text-only {
      width: 90%;
    }
  }
.text-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.text-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}
.text-section__title {
    font-size: 60px;
    font-weight: 700;
letter-spacing: 0.5px;

}

@media screen and (max-width: 768px) {
  .text-section {
    padding-top: calc({{ section.settings.padding_top }}px * 0.75);
    padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.75);
  }

  .text-section__title {
    font-size: 20px;
font-weight: 700;
margin-top: 10px;
    
  }

  .text-section__subtitle {
    font-size: 16px;
  }
}
.text-table__blocks {
    padding: 20px 30px;
    margin: 20px 0;
  }

  .text-table__wrapper {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }

  .text-table__heading {
    color: #01257a;
    text-align: left;
    padding: 20px 0;
  }

  .text-table__text {
    text-align: left;
    padding: 10px 0;
  }

  .text-table__buttons {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-table__buttons .text-table__buttons--multiple {
    line-height: 0.5;
  }

  .text_divider {
    margin-top: 20px;
    display: inline-flex;
    height: auto;
  }

  .text-content-image-container {
    width: 90%;
    margin: 0 5%;
    position: relative;
    padding-top: 40%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -25px;
  }

  /* Web Partner Styles --------------------------- */
  .web-partner-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .web-partner-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    outline: 1px solid #cccccc;
    border-radius: 10px;
    color: black;
  }

  .web-partner-table thead {
    background-color: #00205b;
  }

  .web-partner-table th {
    text-align: center;
    padding: 1rem !important;
    border-right: 1px solid white;
  }

  .web-partner-table td {
    text-align: left;
    vertical-align: middle;
    padding: 1rem;
    border: 1px solid #dadce0;
  }

  .web-partner-table th:last-child,
  .web-partner-table td:last-child {
    border-right: none;
  }

  .web-partner-table thead th:first-child {
    border-top-left-radius: 10px;
  }

  .web-partner-table thead th:last-child {
    border-top-right-radius: 10px;
  }

  .web-partner-table td:nth-child(2) {
    width: 60%;
  }

  .web-partner-table td:nth-child(3),
  .web-partner-table td:nth-child(4) {
    width: 12%;
    text-align: center;
  }

  .web-partner-table tr.odd {
    background-color: white;
  }

  .web-partner-table tr.even {
    background-color: #eff4f8;
  }

  .web-partner-table tbody tr td p {
    margin: 0;
  }

  .web-partner-table h6 {
    color: white;
  }

  .web-partner-table .link {
    color: #337ab7;
    text-decoration: underline;
    font-size: 0.9rem;
    font-family: 'Gotham Rounded Light' !important;
  }

  .web-partner-table .link:hover {
    text-decoration: underline;
    color: #003399;
  }
  /* Delivery Table Styles ---------------------------- */
  .delivery-table-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .delivery-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    outline: 1px solid #dadce0;
    color: black;
  }

  .column-header,
  .column-text {
    width: 50%;
    padding: 1rem;
    background-color: #00205b;
    border-right: 1px solid #dadce0;
  }

  .column-header {
    border-bottom: 1px solid #dadce0;
  }

  .column-text {
    border-bottom: 1px solid #dadce0;
  }

  .area-header {
    background-color: white;
    border-bottom: 1px solid #dadce0;
    font-weight: normal;
  }

  .area-text {
    background-color: #eff4f8;
  }

  .column-header h6,
  .column-text h6 {
    color: white;
  }
  .area-header p,
  .area-text p {
    margin: 0;
  }

  /* Shipping Rates Styles --------------------- */
  .shipping-rates-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .shipping-rates-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    outline: 1px solid #dadce0;
  }

  .shipping-rates-table td {
    width: 50%;
    padding: 1rem;
  }

  .shipping-rates-table th {
    width: 50%;
    background-color: #00205b;
    border-right: 1px solid white;
    padding: 2rem 1rem;
  }

  .shipping-rates-table td {
    color: #00257a;
    border-bottom: 1px solid #dadce0;
    border-right: 1px solid #dadce0;
  }

  .shipping-rates-table td:last-child {
    border-right: none;
    font-weight: normal;
  }

  .shipping-rates-table tr.odd {
    background-color: #ffffff;
  }

  .shipping-rates-table tr.even {
    background-color: #eff4f8;
  }

  .shipping-rates-table tr.subsequent-kg {
    border-top: 1px solid #dadce0;
  }

  .shipping-rates-table h6 {
    color: white;
  }

  .shipping-rates-table p {
    margin: 0;
  }

  @media screen and (max-width: 500px) {
    .text-table__blocks {
      padding: 15px 20px;
    }

    .text-content__heading {
      padding: 10px 0;
    }

    .text-table__wrapper {
      width: 95%;
    }

    .web-partner-table td,
    .delivery-table td,
    .delivery-table th,
    .shipping-rates-table td,
    .shipping-rates-table th {
      padding: 0.5rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .web-partner-container {
      overflow-x: scroll;
    }

    .web-partner-table tr.even {
      background-color: white;
    }

    .web-partner-table td:nth-child(2) {
      background-color: #eff4f8;
    }

    .area-header,
    .area-text {
      text-align: left;
    }
  }
.thankyou-generic-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .thankyou-generic-content-container {
    position: absolute;
    top: clamp(10%, 5vw, 20%);
    right: 5%;
    max-width: 45%;
  }


  .thankyou-generic-button {
    padding: 10px 70px;
    margin-top: 20px;
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .thankyou-generic-button:hover {
    opacity: 0.8;
  }

  .thankyou-generic-background-desktop {
    display: block;
  }

  .thankyou-generic-background-mobile {
    display: none;
  }

  .thankyou-generic-description{
    display: inline;
    font-family: 'Gotham Rounded Light' !important;
    /* font-family: 'DIN Round Pro' !important; */
    max-width: 95%;
    /* margin-bottom: 28vh; */
  }

  .thankyou-generic-middle{
    display: inline;
    font-weight: bold;"
  }


  @media (max-width: 1450px) {
    .thankyou-generic-content-container {
      top: clamp(10%, 4vw, 20%);
      right: clamp(4%, 8vw, 10%);
      max-width: 35%;
    }

    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .thankyou-generic-button {
      padding: 10px 55px;
      margin-top: 10px;
    }
  }

  @media (max-width: 1200px) {
    .thankyou-generic-content-container {
      top: clamp(5%, 5vw, 10%);
      right: clamp(4%, 4vw, 6%);
      max-width: 40%;
    }

    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .thankyou-generic-button {
      padding: 8px 45px;
      margin-top: 8px;
    }
  }

  @media (max-width: 950px) {
    .title {
      margin-bottom: 5px;
    }

    .subtitle,
    .body {
      margin-bottom: 5px;
    }

    .thankyou-generic-button {
      padding: 8px 40px;
      margin-top: 5px;
    }
  }

  @media (max-width: 768px) {
    .title {
      margin-bottom: 3px;
    }

    .subtitle,
    .body {
      margin-bottom: 3px;
    }

    .thankyou-generic-button {
      padding: 6px 30px;
      margin-top: 2px;
    }

    .thankyou-generic-button-container{
      margin-top: 2rem;
    }
  }

  @media (max-width: 500px) {
    .thankyou-generic-background-desktop {
      display: none;
    }

    .thankyou-generic-background-mobile {
      display: block;
    }

    .thankyou-generic-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      margin: 20px auto 40px auto;
      position: relative;
    }

    .title {
      margin-bottom: 10px;
    }

    .subtitle,
    .body {
      margin-bottom: 10px;
    }

    .thankyou-generic-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
.thankyou-text-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .thankyou-content-container {
    position: absolute;
    top: clamp(10%, 5vw, 20%);
    right: 5%;
    max-width: 45%;
  }

  .thankyou-titlemobile {
    display: none;
  }

  .thankyou-title {
    margin-bottom: clamp(0px, 1vw, 15px);
  }

  .thankyou-subtitle {
    font-weight: normal;
  }

  .thankyou-subtitle,
  .thankyou-body {
    margin-bottom: clamp(0px, 2.5vw, 10px);
    line-height: 1.2;
  }

  .thankyou-subtitle p,
  .thankyou-body p {
    margin: 0;
  }


  .thankyou-button-container {
    display: block;
    justify-self: center;
    position: relative;
    margin-top: 28vh;
    }

  .thankyou-button {
    padding: 5px 70px;
    margin-top: 25px;
    color: white;
    font-weight: normal;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }

  .thankyou-button:hover {
    opacity: 0.8;
  }

  .thankyou-background-desktop {
    display: block;
  }

  .thankyou-background-mobile {
    display: none;
  }
  .thankyou-description{
    display: inline;
    font-family: 'Gotham Rounded Light' !important;
    max-width: 95%;
    margin-bottom: 28vh;
  }

  .thankyou-middle{
    display: inline;
    font-weight: bold;"
  }


  @media (max-width: 1450px) {
    .thankyou-content-container {
        top: clamp(6%, 2vw, 20%);
        right: clamp(6%, 5vw, 10%);
        max-width: 55%;
    }

    .thankyou-title {
      margin-bottom: 5px;
    }

    .thankyou-subtitle,
    .thankyou-body {
      margin-bottom: 5px;
    }

    .thankyou-button {
      padding: 5px 55px;
      margin-top: 25px;
    }
  }

  @media (max-width: 1200px) {
    .thankyou-content-container {
      top: clamp(5%, 2vw, 10%);
      right: clamp(4%, 4vw, 6%);
      max-width: 55%;
    }

    .thankyou-title {
      margin-bottom: 5px;
    }
    .thankyou-button-container {
        margin-top: 17vh;
    }

    .thankyou-subtitle,
    .thankyou-body {
      margin-bottom: 5px;
    }
    .thankyou-bold-body {
        margin-bottom: 0vh;
    }

    .thankyou-button {
      padding: 8px 45px;
      margin-top: 8px;
    }
  }

  @media (max-width: 950px) {
    .thankyou-title {
      margin-bottom: 5px;
    }

    .thankyou-subtitle,
    .thankyou-body {
      margin-bottom: 5px;
    }

    .thankyou-button {
      padding: 8px 40px;
      margin-top: 5px;
    }
  }

  @media (max-width: 768px) {
    .thankyou-title {
      margin-bottom: 3px;
      display: none;
    }
    .thankyou-titlemobile {
      display: flex;
    }

    .thankyou-subtitle,
    .thankyou-body {
      margin-bottom: 3px;
    }

    .thankyou-bold-body {
        margin-bottom: 0vh;
    }
    .thankyou-button-container {
        display: block;
        width: 100%;
        margin-top: 0vh;
    }
    .thankyou-button {
      padding: 6px 30px;
      margin-top: 2px;
    }
  }

  @media (max-width: 500px) {
    .thankyou-background-desktop {
      display: none;
    }

    .thankyou-background-mobile {
      display: block;
    }

    .thankyou-content-container {
      top: 0;
      right: 0;
      max-width: 90%;
      margin: 20px auto 40px auto;
      position: relative;
    }

    .thankyou-title {
      margin-bottom: 10px;
    }

    .thankyou-subtitle,
    .thankyou-body {
      margin-bottom: 10px;
    }
    .thankyou-bold-body {
        margin-bottom: 0vh;
    }
    .thankyou-button {
      padding: 8px 60px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  .tips-resources {
    /* width: 80%; */
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 145px;
  }

  .tips-resources__title {
    text-align: center;
    margin-bottom: 20px;
    flex-direction: row;
    margin-top: -31px;
  }

  .tips-resources__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .tips-resources-item {
    flex: 0 0 calc(25% - 15px);
    border: 1px solid #e0e0e0;
    /* border-radius: 8px;
    overflow: hidden; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .tips-resources-item__image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 8px solid #00257a;
  }

  .tips-resources-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .tips-resources-item__content {
    padding: 15px;
    text-align: center;
  }

  .tips-resources-item__title {
    margin-bottom: 10px;
    position: relative;
  }

  .tips-resources-item__link {
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    background-color: #00257A;
    color: #FFFFFF;
  }

  .tips-resources-item__link p {
    margin: 0;
  }

  @media (max-width: 768px) {
    .tips-resources {
      width: 80%;
      margin-top: 120px;
    }

    .tips-resources-item {
      flex: 0 0 100%;
      max-width: 90%;
    }

    .tips-resources-item__content {
      padding: 0;
      position: relative;
      bottom: 10px;
    }

   .item-image-overlay {
     position: relative;
     display: inline-block;
     width: 100%;
   }

   .item-image-overlay img {
     width: 100%;
     height: auto;
     display: block;
   }

    .item-image-overlay::after {
      content: "";
      position: absolute;
      top: 60%;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, rgb(0 40 135 / 0%), #00257ad4 66%, rgb(0 33 98));;
      pointer-events: none;
      overflow: hidden;
    }


    .tips-resources__title {
      margin-top: -67px;
    }

    .tips-resources-item__title {
      color: #ffffff;
      position: relative;
      bottom: 30px;
      margin: 0;
    }
  }

   @media (max-width: 500px) {
    .tips-resources {
      width: 100%;
    }
   }
.tummies-banner-content-wrapper {
    position: absolute;
    padding: 0 30px;
    margin-left: 7%;
    top: 7vw;
    width: 50%;
  }
  .tummies-banner-content-wrapper-mobile {
    display: none;
  }

  .tummies-banner-title,
  .tummies-banner-subtitle {
    line-height: 1;
    padding-bottom: 5px;
  }

  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .tummies-banner-content-wrapper-desktop-left {
    text-align: left;
  }

  .tummies-banner-content-wrapper-desktop-center {
    text-align: center;
  }

  .tummies-banner-content-wrapper-desktop-right {
    text-align: right;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .desktop {
      display: none;
    }
    .mobile {
      display: block;
    }
    .tummies-banner-title-mobile {
      margin: 20px 0 10px 0;
    }
    .tummies-banner-content-wrapper {
      display: none;
    }
    .tummies-banner-content-wrapper-mobile {
      display: block;
      width: 90%;
      margin: 10px auto;
    }
    .tummies-banner-content-wrapper-mobile-left {
      text-align: left;
    }
    .tummies-banner-content-wrapper-mobile-center {
      text-align: center;
    }
    .tummies-banner-content-wrapper-mobile-right {
      text-align: right;
    }
    .tummies-banner-subtitle-mobile p {
      margin: 0;
      width: 100%;
    }
  }
.whitespace-banner {
    width: 100%;
    background-color: transparent;
    height: var(--desktop-height);
  }
  @media screen and (max-width: 500px) {
    .whitespace-banner {
      height: var(--mobile-height) !important;
    }
  }