@font-face {
  font-family: "heading";
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2");
}
@font-face {
  font-family: "bold";
  font-weight: 700;
  src: url("../fonts/NotoSans-Bold.woff2");
}
@font-face {
  font-family: "semibold";
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.woff2");
}
@font-face {
  font-family: "regular";
  font-weight: 400;
  src: url("../fonts/NotoSans-Regular.woff2");
}
@font-face {
  font-family: "light";
  font-weight: 300;
  src: url("../fonts/Poppins-Light.woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bodyclr);
  font-family: "regular";
}

:root {
  --white: #fff;
  --black: #000;
  --txtclr: #0F172A;
  --desc: #64748B;
  --bodyclr: #FFFDF3;
  --red: #D10002;
  --border: #E2E8F0;
  --lightblue: #AED4FF;
  --antifungul-banner-bg: linear-gradient(to bottom, #5ac0ee, #7fd5f6, #98dff9, #bae7fc, #fefefe, #ade1f9, #61c4ed, #40b3e7, #25a0db);
  --af-mobile-top: #5ac0ee;
  --af-mobile-mid: #98dff9;
  --af-mobile-soft: #bae7fc;
  --af-mobile-bottom: #40b3e7;
}

main {
  position: relative;
  width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 88px 64px;
}
@media only screen and (max-width: 991px) {
  .wrapper {
    padding: 50px 20px;
  }
}

.btn_hover {
  transition: all ease 0.2s;
}
.btn_hover:hover {
  transform: translateY(-2px);
}

/* Hide number input default arrows (spin buttons) on all browsers */
input[type=number] {
  /* Chrome, Safari, Edge, Opera */
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  /* Firefox */
  -moz-appearance: textfield;
  /* Remove top/bottom and default arrows/all browser */
  -webkit-appearance: textfield;
          appearance: textfield;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.header.is-scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.header.is-scrolled .header__inner {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .header.is-scrolled .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header.is-scrolled .header__logo-img {
  width: 60px;
  height: 60px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 21px 64px;
  transition: padding 0.35s ease;
}
@media only screen and (max-width: 991px) {
  .header__inner {
    padding: 20px;
  }
}
.header__logo {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.header__logo-img {
  display: block;
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: width 0.35s ease, height 0.35s ease;
}
.header__toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1002;
}
@media only screen and (max-width: 991px) {
  .header__toggler {
    display: flex;
  }
}
.header__toggler-bar {
  width: 100%;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__toggler.is-active .header__toggler-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__toggler.is-active .header__toggler-bar:nth-child(2) {
  opacity: 0;
}
.header__toggler.is-active .header__toggler-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media only screen and (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
  }
}
@media only screen and (max-width: 991px) {
  .header__nav.is-active {
    transform: translateX(0);
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
.header__menu-item {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}
.header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--black);
  font-family: "semibold";
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.5s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.header__link:hover::after, .header__link.is-active::after {
  width: 100%;
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .header__link {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 18px;
  }
}
.header__dropdown-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header__menu-item--dropdown.is-open .header__dropdown-icon {
  transform: rotate(180deg);
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  list-style: none;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
}
@media only screen and (max-width: 991px) {
  .header__dropdown {
    position: static;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease;
  }
}
@media only screen and (min-width: 992px) {
  .header__menu-item--dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .header__menu-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
@media only screen and (max-width: 991px) {
  .header__menu-item--dropdown.is-open .header__dropdown {
    max-height: 200px;
  }
}
.header__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.header__dropdown-link:hover, .header__dropdown-link.is-active {
  color: #e31837;
  background: rgba(227, 24, 55, 0.06);
}
@media only screen and (max-width: 991px) {
  .header__dropdown-link {
    padding: 12px 0 12px 16px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  section h1,
  section h2,
  section h3,
  section h4,
  section h5,
  section h6,
  section p {
    text-align: center;
  }
  .header,
  .header *,
  [class*=banner],
  [class*=banner] *,
  .footer_main,
  .footer_main *,
  [class*=card],
  [class*=card] *,
  [class*=Card],
  [class*=Card] *,
  .blog-detail-box,
  .blog-detail-box *,
  .privacy_policy_content,
  .privacy_policy_content *,
  .Blog-list-box,
  .Blog-list-box *,
  .faqAccordion,
  .faqAccordion *,
  .location_search,
  .location_search *,
  .contact_form,
  .contact_form *,
  .floatingBox,
  .floatingBox *,
  .quiz_options,
  .quiz_options *,
  .quiz_result,
  .quiz_result * {
    text-align: left;
  }
  button,
  [class*=_btn],
  [class*=__btn],
  [class*=__submit],
  [class*=__button],
  .quiz_option,
  .quiz_nav_btn,
  .result_btn,
  .load-more a,
  [class*=card] button,
  [class*=card] [class*=_btn],
  [class*=card] [class*=__btn],
  [class*=card] [class*=__map],
  [class*=Card] button,
  [class*=Card] [class*=_btn],
  [class*=Card] [class*=__btn] {
    text-align: center;
  }
  .health_tips_container,
  .health_tips_content,
  .social_container .top_content,
  .location_left,
  .backend_mankind_main .right_content .content_box,
  .advanced_skin_main .heading,
  .advanced_skin_main .right_box .content .bottom_text,
  .howToUseSection__inner > div:first-child,
  .check_symptoms_main .quiz_left,
  .other_brands_container .top_content,
  .aboutProduct__head,
  .suitableSection__title,
  .benefitsSection__title,
  .faqSection__title,
  .howToUseSection__title,
  .howToUseSection__desc,
  .contact_info {
    align-items: center;
    text-align: center;
  }
  .health_tips_content__btn,
  .social_container .top_content .heading,
  .backend_mankind_main .right_content .content_box a {
    margin-left: auto;
    margin-right: auto;
  }
}
.home_banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2183/1329;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home_banner {
    aspect-ratio: unset;
    min-height: 90vh;
    height: auto;
  }
}
.home_banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home_banner__picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 700.67px) {
  .home_banner__picture--desktop {
    display: none;
  }
}
.home_banner__picture--mobile {
  display: none;
}
@media (max-width: 700.67px) {
  .home_banner__picture--mobile {
    display: block;
  }
}
.home_banner__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 54% 36%;
     object-position: 54% 36%;
}
@media only screen and (min-width: 992px) and (max-height: 850px) {
  .home_banner__img {
    -o-object-position: 62% 14%;
       object-position: 62% 14%;
  }
}
@media only screen and (min-width: 1200px) {
  .home_banner__img {
    -o-object-position: 52% 38%;
       object-position: 52% 38%;
  }
}
@media only screen and (min-width: 1600px) {
  .home_banner__img {
    -o-object-position: 48% 40%;
       object-position: 48% 40%;
  }
}
@media only screen and (max-width: 991px) {
  .home_banner__img {
    -o-object-position: 68% center;
       object-position: 68% center;
  }
}
.home_banner__wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  padding-top: 140px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .home_banner__wrapper {
    padding-top: 20px;
    padding-bottom: 0px;
    align-items: flex-start;
  }
}
.home_banner__content {
  max-width: 756px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .home_banner__content {
    height: 100%;
    justify-content: space-between;
  }
}
.home_banner__title {
  display: flex;
  flex-direction: column;
  font-size: 96px;
  font-weight: 500;
  line-height: 1.26;
  color: #0C3660;
  margin-bottom: 32px;
  margin-top: 75px;
  font-family: "heading";
  transition: all ease 0.5s;
}
@media (max-width: 1293px) {
  .home_banner__title {
    font-size: 72px;
  }
}
@media (max-width: 1120px) {
  .home_banner__title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .home_banner__title {
    font-size: 64px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 563px) {
  .home_banner__title {
    font-size: 48px;
  }
}
.home_banner__title span:first-child {
  font-family: "light";
  font-weight: 500;
}
.home_banner__title.pdp_banner_title {
  margin-bottom: 15px;
}
.home_banner__title.pdp_banner_title span:nth-of-type(1) {
  font-family: "heading";
  font-weight: 500;
}
.home_banner__title.pdp_banner_title span:nth-of-type(2) {
  font-family: "light";
  font-weight: 300;
}
.home_banner__title.pdp_banner_title span:nth-of-type(3) {
  font-family: "light";
  font-weight: 300;
}
.home_banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  font-family: "semibold";
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.home_banner__btn:hover {
  transform: translateY(-2px);
}
@media only screen and (max-width: 991px) {
  .home_banner__btn {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .home_banner__btn {
    font-size: 16px;
  }
}
.home_banner .home_banner__description {
  font-size: 18px;
  line-height: 28px;
  font-family: "regular";
  padding-bottom: 75px;
}
.home_banner .home_banner__buy_now {
  font-size: 24px;
  line-height: 34px;
  font-family: "regular";
  padding-bottom: 18px;
  text-align: center;
  display: block;
  max-width: 293px;
  color: #0c3660;
}
.home_banner .home_banner__buy_now strong {
  font-family: "bold";
}
.home_banner .home_banner__buy_now_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 12px;
  max-width: 293px;
}
.home_banner .home_banner__buy_now_list ul a {
  box-shadow: 0px 3px 6.3px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 6px;
  overflow: hidden;
}
.home_banner .home_banner__buy_now_list ul li {
  background-color: #fff;
  padding: 0px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 45px;
}
.home_banner .home_banner__chemist_shops {
  font-size: 14px;
  line-height: 24px;
  font-family: "regular";
  padding-left: 14px;
  color: #000;
  padding-top: 11px;
}
.home_banner--pdp {
  min-height: 110vh;
  height: auto;
}
.home_banner--pdp .home_banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home_banner--pdp .home_banner__img {
  min-height: 100%;
}
.home_banner--pdp .home_banner__wrapper {
  position: relative;
  inset: auto;
  align-items: flex-start;
}
.home_banner--pdp .home_banner__title {
  font-size: clamp(42px, 4.8vw, 72px);
}
@media (max-width: 992px) {
  .home_banner--pdp .home_banner__picture--desktop {
    display: none;
  }
}
.home_banner--pdp .home_banner__picture--mobile {
  display: none;
}
@media (max-width: 992px) {
  .home_banner--pdp .home_banner__picture--mobile {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .home_banner--pdp {
    min-height: 100svh;
    height: 100svh;
    max-height: 100svh;
    aspect-ratio: unset;
    background: linear-gradient(to right, #c4d2e5 0%, #bccddf 25%, #b8c9de 50%, #b3c4d9 75%, #abbed3 100%);
  }
  .home_banner--pdp .home_banner__img--mobile {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom center;
       object-position: bottom center;
    box-shadow: none;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .home_banner--pdp .home_banner__wrapper {
    position: absolute;
    inset: 0;
    padding: 96px 20px 16px;
    align-items: stretch;
  }
  .home_banner--pdp .home_banner__content {
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .home_banner--pdp .pdp_banner_title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.15;
  }
  .home_banner--pdp .home_banner__description {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.45;
    max-width: 300px;
  }
  .home_banner--pdp .home_banner__buy_now {
    margin-top: auto;
    padding-bottom: 10px;
    text-align: center;
    max-width: 100%;
    font-size: 18px;
  }
  .home_banner--pdp .home_banner__buy_now_list {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home_banner--pdp .home_banner__buy_now_list::-webkit-scrollbar {
    display: none;
  }
  .home_banner--pdp .home_banner__buy_now_list ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    max-width: none;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 2px 24px;
  }
  .home_banner--pdp .home_banner__buy_now_list ul a {
    flex: 0 0 auto;
    text-decoration: none;
  }
  .home_banner--pdp .home_banner__buy_now_list ul li {
    min-width: 110px;
    min-height: 40px;
    padding: 0 20px;
  }
  .home_banner--pdp .home_banner__chemist_shops {
    display: none;
  }
}
@media only screen and (max-width: 992px) and (max-width: 563px) {
  .home_banner--pdp .home_banner__wrapper {
    padding-top: 112px;
    padding-bottom: 12px;
  }
  .home_banner--pdp .pdp_banner_title {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .home_banner--pdp .home_banner__description {
    font-size: 14px;
    line-height: 1.4;
    max-width: 150px;
  }
  .home_banner--pdp .home_banner__buy_now {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .home_banner--pdp .home_banner__buy_now_list ul {
    gap: 6px;
  }
  .home_banner--pdp .home_banner__buy_now_list ul li {
    min-width: 100px;
    min-height: 36px;
    padding: 0 16px;
  }
}
@media only screen and (min-width: 992px) and (max-height: 850px) {
  .home_banner--pdp .home_banner__wrapper {
    padding-top: 140px;
    padding-bottom: 56px;
  }
  .home_banner--pdp .pdp_banner_title {
    font-size: 72px;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .home_banner--pdp .home_banner__description {
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1400px) and (max-height: 750px) {
  .home_banner--pdp .home_banner__wrapper {
    padding-top: 88px;
    padding-bottom: 48px;
  }
  .home_banner--pdp .pdp_banner_title {
    font-size: 56px;
    margin-top: 24px;
  }
  .home_banner--pdp .home_banner__description {
    padding-bottom: 20px;
  }
  .home_banner--pdp .home_banner__buy_now {
    padding-bottom: 14px;
  }
}
.home_banner--contact {
  height: 494px;
  min-height: 494px;
  overflow: hidden;
  background: #9ccdfc;
}
.home_banner--contact .home_banner__media {
  position: absolute;
  inset: 24px 0 0;
  z-index: 0;
}
.home_banner--contact .home_banner__img {
  min-height: 100%;
  -o-object-position: center top;
     object-position: center top;
}
.home_banner--contact .home_banner__wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding-top: 108px;
  padding-bottom: 54px;
  text-align: center;
}
.home_banner--contact .home_banner__content {
  max-width: 430px;
  margin: 0 auto;
}
.home_banner--contact .home_banner__title {
  display: block;
  margin: 0 0 23px;
  color: #0c3660;
  font-family: "regular";
  font-size: 72px;
  font-weight: 400;
  line-height: 82px;
  letter-spacing: -1.28px;
}
.home_banner--contact .home_banner__description {
  max-width: 260px;
  margin: 0 auto;
  padding-bottom: 0;
  color: #000;
  font-size: 18px;
  line-height: 28px;
  font-family: "regular";
}
@media (max-width: 768px) {
  .home_banner--contact .home_banner__picture--desktop {
    display: none;
  }
}
.home_banner--contact .home_banner__picture--mobile {
  display: none;
}
@media (max-width: 768px) {
  .home_banner--contact .home_banner__picture--mobile {
    display: block;
    max-width: 450px;
    width: 100vw;
    margin: 0 0 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .home_banner--contact {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    background-color: #9fcffd;
    background-image: linear-gradient(180deg, #9dcefd 0%, #9fcffd 12%, #a0d0fd 28%, #a3d1fd 42%, #a6d3fd 55%, #aad5fd 68%, #b1d9fd 82%, #b6dcfe 100%);
  }
  .home_banner--contact .home_banner__media {
    position: absolute;
    inset: 0;
    top: 0;
    background-color: #9fcffd;
    background-image: linear-gradient(90deg, #9dcefd 0%, #9fcffd 50%, #96c9fc 100%);
  }
  .home_banner--contact .home_banner__img--mobile {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .home_banner--contact .home_banner__wrapper {
    position: absolute;
    inset: 0;
    min-height: unset;
    padding: 96px 24px 24px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  .home_banner--contact .home_banner__content {
    max-width: 100%;
    margin: 0;
    justify-content: flex-start;
  }
  .home_banner--contact .home_banner__title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
  }
  .home_banner--contact .home_banner__description {
    max-width: 280px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 563px) {
  .home_banner--contact .home_banner__wrapper {
    padding-top: 120px;
  }
  .home_banner--contact .home_banner__title {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .home_banner--contact .home_banner__description {
    max-width: 240px;
    font-size: 14px;
    line-height: 1.45;
  }
}

.shop-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1100;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
@media only screen and (max-width: 767px) {
  .shop-icons {
    top: 60%;
    transform: translateY(-60%);
  }
}
.shop-icons__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.shop-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-icons__link:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 767px) {
  .shop-icons__link {
    width: 28px;
    height: 28px;
  }
}
.shop-icons__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.floatingBox {
  position: relative;
  max-width: 1174px;
  width: 90%;
  margin: -64px auto 0 auto;
  padding: 36px 32px;
  border-radius: 20px;
  background-color: var(--white);
  z-index: 2;
  box-shadow: 0px 5px 17.1px 0px rgba(0, 0, 0, 0.2509803922);
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .floatingBox {
    margin: 20px auto 0 auto;
  }
}
.floatingBox .floating_box_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  .floatingBox .floating_box_grid {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.floatingBox .floating_box_grid .grid_box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.floatingBox .floating_box_grid .grid_box:not(:first-child) {
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
@media only screen and (max-width: 991px) {
  .floatingBox .floating_box_grid .grid_box:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .floatingBox .floating_box_grid .grid_box:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.floatingBox .floating_box_grid .grid_box .box_icon {
  width: 58px;
  height: 58px;
}
.floatingBox .floating_box_grid .grid_box .box_icon img {
  width: 100%;
}
.floatingBox .floating_box_grid .grid_box .box_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floatingBox .floating_box_grid .grid_box .box_content h3,
.floatingBox .floating_box_grid .grid_box .box_content p {
  text-transform: uppercase;
  transition: all ease 0.5s;
}
.floatingBox .floating_box_grid .grid_box .box_content h3 {
  color: var(--txtclr);
  font-size: 28px;
  line-height: 32px;
  font-family: "heading";
}
@media only screen and (max-width: 1200px) {
  .floatingBox .floating_box_grid .grid_box .box_content h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .floatingBox .floating_box_grid .grid_box .box_content h3 {
    line-height: 1;
  }
}
.floatingBox .floating_box_grid .grid_box .box_content p {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--desc);
  font-family: "bold";
}
@media (min-width: 991px) and (max-width: 1025px) {
  .floatingBox .floating_box_grid .grid_box .box_content h3 {
    font-size: 18px;
  }
}

.advanced_skin_main {
  width: 100%;
}
.advanced_skin_main .heading {
  color: var(--black);
  font-size: 72px;
  font-family: "heading";
  font-weight: 500;
  letter-spacing: -4px;
  transition: all ease 0.5s;
}
.advanced_skin_main .heading span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .advanced_skin_main .heading {
    font-size: 42px;
    text-align: center;
    letter-spacing: -2px;
    max-width: 285px;
    width: 100%;
    margin: 0 auto;
  }
}
.advanced_skin_main .advanced_skin_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .advanced_skin_main .advanced_skin_grid {
    grid-template-columns: 1fr;
  }
}
.advanced_skin_main .advanced_skin_grid .left_img {
  width: 100%;
}
.advanced_skin_main .advanced_skin_grid .left_img img {
  width: 100%;
}
.advanced_skin_main .advanced_skin_grid .right_box {
  width: 100%;
}
.advanced_skin_main .advanced_skin_grid .right_box .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content {
    gap: 32px;
  }
}
.advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 20px;
  justify-content: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
@media only screen and (max-width: 767px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  justify-content: center;
}
.advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid .box_img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid .box_img img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 563px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid .box_img {
    width: 60px;
    height: 60px;
  }
}
.advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid h3 {
  font-family: "heading";
  font-weight: 500;
  color: var(--black);
  font-size: 22px;
  line-height: 28px;
}
@media only screen and (max-width: 991px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid h3 {
    max-width: 160px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content .top_boxes .box_grid h3 {
    font-size: 14px;
    line-height: 1.3;
  }
}
.advanced_skin_main .advanced_skin_grid .right_box .content .bottom_text {
  max-width: 489px;
  width: 100%;
  margin: 0 auto;
}
.advanced_skin_main .advanced_skin_grid .right_box .content .bottom_text p {
  font-size: 20px;
  font-family: "regular";
  font-weight: 400;
  color: #292929;
}
@media only screen and (max-width: 767px) {
  .advanced_skin_main .advanced_skin_grid .right_box .content .bottom_text p {
    text-align: center;
  }
}

.backend_mankind_main {
  width: 100%;
  background-color: var(--lightblue);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  .backend_mankind_main {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    padding-bottom: 50px;
  }
}
.backend_mankind_main .left_img {
  width: 100%;
  height: 100%;
}
.backend_mankind_main .left_img img {
  width: 100%;
  height: 100%;
}
.backend_mankind_main .right_content {
  width: 100%;
}
.backend_mankind_main .right_content .content_box {
  max-width: 601px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.backend_mankind_main .right_content .content_box h2,
.backend_mankind_main .right_content .content_box p {
  transition: all ease 0.5s;
}
.backend_mankind_main .right_content .content_box h2 {
  color: #0C3660;
  font-family: "heading";
  font-weight: 500;
  font-size: 72px;
  letter-spacing: -4px;
}
.backend_mankind_main .right_content .content_box h2 span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .backend_mankind_main .right_content .content_box h2 {
    letter-spacing: -2px;
  }
}
.backend_mankind_main .right_content .content_box p {
  color: #292929;
  font-family: "regular";
  font-weight: 400;
  font-size: 20px;
}
.backend_mankind_main .right_content .content_box a {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--red);
  padding: 12px 24px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-family: "semibold";
  font-weight: 600;
  font-size: 20px;
  margin-top: 24px;
}
@media only screen and (max-width: 991px) {
  .backend_mankind_main .right_content .content_box {
    padding: 0 20px;
    gap: 12px;
    text-align: center;
  }
  .backend_mankind_main .right_content .content_box h2 {
    font-size: 48px;
  }
  .backend_mankind_main .right_content .content_box a {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .backend_mankind_main .right_content .content_box h2 {
    font-size: 38px;
  }
  .backend_mankind_main .right_content .content_box p {
    font-size: 16px;
  }
  .backend_mankind_main .right_content .content_box a {
    margin-top: 12px;
  }
}

.check_symptoms_main {
  width: 100%;
}
.check_symptoms_main .quiz_layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .check_symptoms_main .quiz_layout {
    grid-template-columns: 1fr;
  }
}
.check_symptoms_main .quiz_heading {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_heading {
    text-align: center;
  }
}
.check_symptoms_main .quiz_heading,
.check_symptoms_main .result_heading {
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -4px;
  transition: all ease 0.5s;
}
.check_symptoms_main .quiz_heading span,
.check_symptoms_main .result_heading span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_heading,
  .check_symptoms_main .result_heading {
    font-size: 40px;
    letter-spacing: -2px;
  }
}
.check_symptoms_main .result_heading {
  font-family: "heading";
  font-weight: 500;
  font-size: 72px;
}
.check_symptoms_main .result_heading span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .check_symptoms_main .result_heading {
    font-size: 40px;
    text-align: center;
  }
}
.check_symptoms_main .quiz_divider,
.check_symptoms_main .result_divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: 24px 0 32px;
}
.check_symptoms_main .result_divider {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--lightblue);
}
.check_symptoms_main .quiz_question {
  font-family: "heading";
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_question {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.check_symptoms_main .quiz_options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_options {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.check_symptoms_main .quiz_options--text .quiz_option {
  justify-content: center;
  padding: 18px 24px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_options--text .quiz_option {
    padding: 14px 10px;
  }
}
.check_symptoms_main .quiz_option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 10px;
  border: 1.5px solid #BDBDBD;
  border-radius: 100px;
  background-color: #FCE4E6;
  cursor: pointer;
  text-align: left;
  transition: all ease 0.25s;
}
.check_symptoms_main .quiz_option:hover {
  border-color: var(--red);
  background-color: #F5D0D3;
}
.check_symptoms_main .quiz_option .quiz_option_text {
  font-size: 24px;
  color: #0D0D0D;
  font-family: "regular";
  font-weight: 400px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_option .quiz_option_text {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
  }
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_option .quiz_option_text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_option {
    padding: 5px 8px 5px 5px;
    gap: 6px;
    border-width: 1px;
    min-height: 52px;
  }
}
.check_symptoms_main .quiz_option.is-selected {
  background-color: #F5D0D3;
  border-color: var(--red);
  border-width: 2px;
}
.check_symptoms_main .quiz_option.is-selected .quiz_option_text {
  font-family: "semibold";
  font-weight: 600;
}
.check_symptoms_main .quiz_option_thumb {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--white);
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_option_thumb {
    width: 60px;
    height: 60px;
  }
}
.check_symptoms_main .quiz_option_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.check_symptoms_main .quiz_option_thumb--icon {
  background-color: #0C3660;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_option_thumb--icon {
    padding: 4px;
  }
}
.check_symptoms_main .quiz_option_thumb--icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.check_symptoms_main .quiz_option_text {
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
  transition: all ease 0.3s;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_option_text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_option_text {
    font-size: 12px;
  }
}
.check_symptoms_main .quiz_left {
  width: 100%;
  padding: 88px 64px;
  background-color: #F9F9ED;
  box-shadow: 2px 0px 16px 0px rgba(0, 0, 0, 0.1019607843);
}
@media only screen and (max-width: 991px) {
  .check_symptoms_main .quiz_left {
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_left {
    padding: 24px 16px;
    box-shadow: none;
  }
}
.check_symptoms_main .quiz_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_nav {
    margin-top: 20px;
    gap: 12px;
  }
}
.check_symptoms_main .quiz_nav_btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.25s;
  box-shadow: 0 4px 12px rgba(12, 54, 96, 0.18);
}
@media only screen and (max-width: 563px) {
  .check_symptoms_main .quiz_nav_btn {
    width: 40px;
    height: 40px;
    box-shadow: none;
  }
}
.check_symptoms_main .quiz_nav_btn svg {
  width: 16px;
  height: 16px;
}
.check_symptoms_main .quiz_nav_btn--prev {
  background-color: #C4C4C4;
  color: var(--white);
}
.check_symptoms_main .quiz_nav_btn--prev svg {
  transform: scaleX(-1);
}
.check_symptoms_main .quiz_nav_btn--prev.is-active {
  background-color: var(--red);
}
.check_symptoms_main .quiz_nav_btn--prev:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.check_symptoms_main .quiz_nav_btn--next {
  background-color: #C4C4C4;
  color: var(--white);
}
.check_symptoms_main .quiz_nav_btn--next.is-active {
  background-color: var(--red);
}
.check_symptoms_main .quiz_nav_btn--next:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.check_symptoms_main .quiz_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 991px) {
  .check_symptoms_main .quiz_right {
    border-left: none;
    padding-left: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
}
.check_symptoms_main .quiz_progress {
  position: relative;
  width: 339px;
  height: 339px;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_progress {
    width: 220px;
    height: 220px;
  }
}
.check_symptoms_main .quiz_progress_svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.check_symptoms_main .quiz_progress_track {
  fill: none;
  stroke: #E6E6E6;
  stroke-width: 10;
}
.check_symptoms_main .quiz_progress_fill {
  fill: none;
  stroke: #0C3660;
  stroke-width: 18;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.check_symptoms_main .quiz_progress_text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 0 16px;
}
.check_symptoms_main .quiz_progress_text span:first-child {
  font-family: "heading";
  font-weight: 500;
  font-size: 56px;
  color: var(--black);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_progress_text span:first-child {
    font-size: 36px;
  }
}
.check_symptoms_main .quiz_progress_text span:last-child {
  font-family: "regular";
  font-weight: 400;
  font-size: 24px;
  color: var(--black);
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_progress_text span:last-child {
    font-size: 16px;
  }
}
.check_symptoms_main .quiz_cta {
  max-width: 368px;
  width: 100%;
  text-align: center;
  font-family: "light";
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -4%;
  color: #0C3660;
}
.check_symptoms_main .quiz_cta strong {
  font-family: "heading";
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .quiz_cta {
    font-size: 16px;
  }
}
.check_symptoms_main .check_symptoms_result {
  width: 100%;
  text-align: center;
  padding: 88px 64px;
  background-color: var(--bodyclr);
  background-image: radial-gradient(ellipse 50% 100% at 50% 77%, #FFF5F5 0, #FFECEC 28%, #FCE8EA 46%, rgb(252, 232, 234) 62%, transparent 100%);
}
.check_symptoms_main .check_symptoms_result.is-hidden {
  display: none;
}
@media only screen and (max-width: 991px) {
  .check_symptoms_main .check_symptoms_result {
    padding: 50px 20px;
  }
}
.check_symptoms_main .check_symptoms_quiz.is-hidden {
  display: none;
}
.check_symptoms_main .quiz_step.is-hidden {
  display: none;
}
.check_symptoms_main .quiz_products.is-hidden {
  display: none;
}
.check_symptoms_main .result_product {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 40px auto 36px;
  max-width: 640px;
}
.check_symptoms_main .result_pedestal {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 8px;
}
.check_symptoms_main .result_pedestal img {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}
.check_symptoms_main .result_product h3 {
  font-family: "semibold";
  font-weight: 700;
  font-size: 32px;
  color: #0C3660;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .result_product h3 {
    font-size: 22px;
  }
}
.check_symptoms_main .result_product p {
  max-width: 650px;
  width: 100%;
  font-family: "regular";
  font-weight: 400;
  font-size: 20px;
  color: #0C3660;
}
@media only screen and (max-width: 767px) {
  .check_symptoms_main .result_product p {
    font-size: 16px;
  }
}
.check_symptoms_main .result_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.check_symptoms_main .result_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "semibold";
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all ease 0.2s;
  border: 1.5px solid transparent;
}
.check_symptoms_main .result_btn svg {
  width: 18px;
  height: 18px;
}
.check_symptoms_main .result_btn--retake {
  background-color: #FFF5F5;
  border-color: var(--red);
  color: var(--red);
}
.check_symptoms_main .result_btn--buy {
  background-color: var(--red);
  color: var(--white);
}
.check_symptoms_main .result_btn:hover {
  transform: translateY(-2px);
}

.solution_slider_main {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .solution_slider_main {
    margin-top: 50px;
  }
}

.solution_slider {
  width: 100%;
  position: relative;
}
.solution_slider__swiper {
  width: 100%;
}
.solution_slider__swiper .swiper-wrapper {
  align-items: stretch;
}
.solution_slider__swiper .swiper-slide {
  height: auto;
  display: flex;
  align-self: stretch;
}
.solution_slider__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 31px;
  height: 31px;
  margin-top: -20px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 54, 96, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.3s;
  padding: 0;
}
.solution_slider__btn--prev {
  left: 62px;
}
.solution_slider__btn--prev svg {
  transform: rotate(180deg);
}
.solution_slider__btn--next {
  right: 62px;
}
.solution_slider__btn svg {
  display: block;
}
.solution_slider__btn:hover {
  background: rgba(12, 54, 96, 0.4);
}
.solution_slider__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media only screen and (max-width: 991px) {
  .solution_slider__btn {
    margin-top: -18px;
  }
  .solution_slider__btn--prev {
    left: 16px;
  }
  .solution_slider__btn--next {
    right: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .solution_slider__btn {
    margin-top: -16px;
  }
  .solution_slider__btn--prev {
    left: 12px;
  }
  .solution_slider__btn--next {
    right: 12px;
  }
}

.solution_slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 991px) {
  .solution_slide {
    background-size: cover;
  }
}
.solution_slide__content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  flex: 1;
  padding: 88px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .solution_slide__content {
    padding: 50px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.solution_slide__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .solution_slide__left {
    order: 2;
    align-items: center;
    max-width: 100%;
    gap: 2px;
  }
}
.solution_slide__label {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 24px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 767px) {
  .solution_slide__label {
    font-size: 16px;
  }
}
.solution_slide__title {
  color: #0C3660;
  font-family: "light";
  font-weight: 300;
  font-size: 72px;
  line-height: 97px;
  letter-spacing: -2px;
  transition: all ease 0.5s;
}
.solution_slide__title span {
  font-family: "semibold";
  font-weight: 600;
}
@media (max-width: 1300px) {
  .solution_slide__title {
    font-size: 58px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 1200px) {
  .solution_slide__title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .solution_slide__title {
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 1.2;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .solution_slide__title {
    font-size: 32px;
  }
}
.solution_slide__center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .solution_slide__center {
    order: 1;
  }
}
.solution_slide__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media only screen and (max-width: 991px) {
  .solution_slide__img {
    max-width: 260px;
  }
}
@media only screen and (max-width: 767px) {
  .solution_slide__img {
    max-width: 220px;
  }
}
.solution_slide__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 380px;
  justify-self: end;
}
@media only screen and (max-width: 991px) {
  .solution_slide__right {
    order: 3;
    align-items: flex-start;
    align-self: flex-start;
    max-width: 100%;
    justify-self: center;
    gap: 20px;
    text-align: center;
  }
}
.solution_slide__desc {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 20px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 767px) {
  .solution_slide__desc {
    font-size: 16px;
  }
}
.solution_slide__btn {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--red);
  padding: 16px 40px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-family: "semibold";
  font-weight: 600;
  font-size: 20px;
  transition: all ease 0.2s;
}
@media only screen and (max-width: 767px) {
  .solution_slide__btn {
    font-size: 16px;
    padding: 10px 20px;
    margin: 0 auto;
  }
}

.social_section_main {
  width: 100%;
  padding: 0 50px;
  background-color: var(--white);
}
@media only screen and (max-width: 991px) {
  .social_section_main {
    padding: 0;
  }
}

.social_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.social_container .top_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .social_container .top_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
}
.social_container .top_content .heading {
  width: -moz-fit-content;
  width: fit-content;
}
.social_container .top_content .heading h2 {
  font-size: 72px;
  letter-spacing: -4px;
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .social_container .top_content .heading h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
  }
}
.social_container .top_content .heading h2 span {
  font-family: "light";
  font-weight: 300;
}
.social_container .top_content .top_right_icons {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 33px;
}
.social_container .top_content .top_right_icons .icons {
  width: 62px;
  height: 62px;
}
.social_container .top_content .top_right_icons .icons img {
  width: 100%;
}
.social_container .top_content .top_right_icons a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  transition: all ease 0.3s;
}
.social_container .top_content .top_right_icons a:hover {
  transform: scale(1.05);
}
.social_container .bottom_slider {
  width: 100%;
}

.social_slider {
  width: 100%;
  position: relative;
  overflow: visible;
}
.social_slider__track {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.social_slider__swiper {
  width: 100%;
  overflow: visible;
}
.social_slider__swiper .swiper-slide {
  width: 211.5px;
  height: auto;
}
.social_slider__shade {
  display: none;
}
.social_slider__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  margin-top: -13.5px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.3s;
  padding: 0;
}
.social_slider__btn--prev {
  left: -35px;
}
.social_slider__btn--next {
  right: -35px;
}
.social_slider__btn svg {
  display: block;
}
.social_slider__btn--prev svg {
  transform: rotate(180deg);
}
.social_slider__btn:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.social_slider__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .social_slider__btn {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .social_slider__btn--prev {
    left: -12px;
  }
  .social_slider__btn--next {
    right: -12px;
  }
}

.social_card {
  position: relative;
  width: 211.5px;
  height: 370.125px;
  border-radius: 12px;
  overflow: hidden;
}
.social_card__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.social_card__media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.social_card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.5s ease;
}
.social_card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #920000 0%, #E21B22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}
.social_card__play svg {
  display: block;
  width: 16px;
  height: auto;
  margin-left: 3px;
}
.social_card:hover .social_card__shade, .social_card.is-playing .social_card__shade {
  transform: translateY(100%);
  opacity: 0;
}
.social_card:hover .social_card__play, .social_card.is-playing .social_card__play {
  transform: translate(-50%, -50%) translateY(-120px);
  opacity: 0;
}
.social_card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}
.social_card__user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social_card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.social_card__name {
  color: var(--white);
  font-family: "regular", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials_main {
  width: 100%;
  padding: 0 50px;
}
@media only screen and (max-width: 991px) {
  .testimonials_main {
    padding: 0;
  }
}

.testimonial_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.testimonial_container .top_heading {
  width: 100%;
  text-align: center;
}
.testimonial_container .top_heading h2 {
  font-size: 56px;
  letter-spacing: -2px;
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  line-height: 1.1;
}
@media only screen and (max-width: 991px) {
  .testimonial_container .top_heading h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }
}
.testimonial_container .top_heading h2 span {
  font-family: "light";
  font-weight: 300;
}
.testimonial_container .bottom_slider {
  width: 100%;
  overflow: visible;
}

.testimonial_slider {
  width: 100%;
  position: relative;
  overflow: visible;
  padding-bottom: 40px;
}
.testimonial_slider__track {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 0;
}
.testimonial_slider__swiper {
  width: 100%;
  overflow: visible;
}
.testimonial_slider__swiper .swiper-wrapper {
  align-items: center;
}
.testimonial_slider__swiper .swiper-slide {
  height: auto;
  box-sizing: content-box;
  padding: 48px 0;
}
@media only screen and (max-width: 991px) {
  .testimonial_slider__swiper .swiper-slide {
    padding: 28px 0;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_slider__swiper .swiper-slide {
    padding: 12px 0;
  }
}
@media only screen and (max-width: 563px) {
  .testimonial_slider__swiper .swiper-slide {
    padding: 0;
  }
}
.testimonial_slider__swiper .swiper-slide-active {
  z-index: 3;
}
.testimonial_slider__shade {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}
.testimonial_slider__shade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bodyclr) 0%, rgba(255, 253, 243, 0) 100%);
}
.testimonial_slider__shade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bodyclr) 0%, rgba(255, 253, 243, 0) 100%);
}
@media only screen and (max-width: 991px) {
  .testimonial_slider__shade {
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_slider__shade {
    width: 45px;
  }
}
@media only screen and (max-width: 563px) {
  .testimonial_slider__shade {
    display: none;
  }
}
.testimonial_slider__btn {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  margin-top: -13.5px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.3s;
  padding: 0;
}
.testimonial_slider__btn--prev {
  left: -35px;
}
.testimonial_slider__btn--next {
  right: -35px;
}
.testimonial_slider__btn svg {
  display: block;
}
.testimonial_slider__btn--prev svg {
  transform: rotate(180deg);
}
.testimonial_slider__btn:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.testimonial_slider__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .testimonial_slider__btn {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .testimonial_slider__btn--prev {
    left: -12px;
  }
  .testimonial_slider__btn--next {
    right: -12px;
  }
}
.testimonial_slider__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial_slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #0c3660;
  opacity: 1;
  transition: all ease 0.3s;
}
.testimonial_slider__pagination .swiper-pagination-bullet-active {
  background: #0c3660;
  border-color: #0c3660;
}

.testimonial_card {
  position: relative;
  width: 100%;
  max-width: 435px;
  height: 356px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  transform: scale(0.82);
  transform-origin: center center;
  opacity: 0.55;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .testimonial_card {
    transform: scale(0.9);
  }
}
@media only screen and (max-width: 767px) {
  .testimonial_card {
    height: 320px;
    max-width: 100%;
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 563px) {
  .testimonial_card {
    height: 300px;
    transform: scale(1);
  }
}
.swiper-slide-active .testimonial_card {
  transform: scale(1.18);
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}
@media only screen and (max-width: 991px) {
  .swiper-slide-active .testimonial_card {
    transform: scale(1.08);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-slide-active .testimonial_card {
    transform: scale(1.02);
  }
}
@media only screen and (max-width: 563px) {
  .swiper-slide-active .testimonial_card {
    transform: scale(1);
  }
}
.swiper-slide-prev .testimonial_card, .swiper-slide-next .testimonial_card {
  transform: scale(0.82);
  opacity: 0.55;
}
@media only screen and (max-width: 991px) {
  .swiper-slide-prev .testimonial_card, .swiper-slide-next .testimonial_card {
    transform: scale(0.9);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-slide-prev .testimonial_card, .swiper-slide-next .testimonial_card {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 563px) {
  .swiper-slide-prev .testimonial_card, .swiper-slide-next .testimonial_card {
    transform: scale(1);
  }
}
.testimonial_card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.testimonial_card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px 22px;
  background: linear-gradient(180deg, rgba(152, 200, 255, 0) 0%, rgba(255, 255, 255, 0.8) 69.16%), linear-gradient(0deg, rgba(152, 200, 255, 0.47), rgba(152, 200, 255, 0.47));
  transform: translateY(calc(100% - 106px));
  transition: transform 0.45s ease;
}
.testimonial_card:hover .testimonial_card__content {
  transform: translateY(0);
  background: #98C8FF;
}
.testimonial_card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}
.testimonial_card__stars span {
  width: 14px;
  height: 14px;
  display: block;
  background-color: #f5a623;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial_card__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.testimonial_card__name {
  font-family: "heading", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.testimonial_card__role {
  font-family: "regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}
.testimonial_card__text {
  font-family: "regular", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial_card:hover .testimonial_card__text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.health_tips_main {
  width: 100%;
  background-color: #F9F8F0;
  overflow: hidden;
}

.health_tips_container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 88px 0 88px 64px;
}
@media only screen and (max-width: 991px) {
  .health_tips_container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 20px;
  }
}

.health_tips_content {
  flex: 0 0 362px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (max-width: 991px) {
  .health_tips_content {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.health_tips_content h2 {
  font-size: 72px;
  letter-spacing: -4px;
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  line-height: 1.05;
}
.health_tips_content h2 span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .health_tips_content h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .health_tips_content h2 {
    font-size: 40px;
  }
}
.health_tips_content__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 24px;
  background: var(--red);
  color: var(--white);
  font-family: "regular", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.health_tips_content__btn svg {
  display: block;
  flex-shrink: 0;
}
.health_tips_content__btn:hover {
  transform: translateY(-2px);
}
@media only screen and (max-width: 767px) {
  .health_tips_content__btn {
    font-size: 16px;
  }
}

.health_tips_slider {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-right: 64px;
  padding-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .health_tips_slider {
    width: 100%;
    padding-right: 0;
  }
}
.health_tips_slider__track {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.health_tips_slider__swiper {
  width: 100%;
  overflow: visible;
}
.health_tips_slider__swiper .swiper-wrapper {
  align-items: stretch;
}
.health_tips_slider__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.health_tips_slider__shade {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(270deg, #F9F8F0 0%, rgba(249, 248, 240, 0) 100%);
  pointer-events: none;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .health_tips_slider__shade {
    width: 80px;
  }
}
.health_tips_slider .testimonial_slider__btn {
  top: 50%;
  margin-top: -13.5px;
}
.health_tips_slider .testimonial_slider__btn--prev {
  left: -20px;
}
@media only screen and (max-width: 991px) {
  .health_tips_slider .testimonial_slider__btn--prev {
    left: -12px;
  }
}
.health_tips_slider .testimonial_slider__btn--next {
  right: 60px;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .health_tips_slider .testimonial_slider__btn--next {
    right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .health_tips_slider .testimonial_slider__btn {
    margin-top: -20px;
  }
}

.health_tips_card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: 24px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.health_tips_card:hover {
  border-color: #D8D8D8;
}
.health_tips_card:hover .health_tips_card__img {
  transform: scale(1.08);
}
.health_tips_card__img-wrap {
  flex: none;
  width: 100%;
  aspect-ratio: 288/344;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.health_tips_card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.health_tips_card__footer {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  margin-top: 20px;
}
.health_tips_card__title {
  flex: 1;
  font-family: "heading", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  line-height: 28px;
  margin: 0;
  max-width: 195px;
  width: 100%;
  min-height: 84px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .health_tips_card__title {
    line-height: 1.2;
    font-size: 18px;
    min-height: 64.8px;
  }
}
.health_tips_card__arrow {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.health_tips_card__arrow svg {
  display: block;
}

.ringout_img_main {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .ringout_img_main {
    height: 100%;
  }
}
.ringout_img_main__stage {
  position: relative;
  width: 100%;
}
.ringout_img_main .main_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ringout_img_main .main_img__picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .ringout_img_main .main_img__picture--desktop {
    display: none;
  }
}
.ringout_img_main .main_img__picture--mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .ringout_img_main .main_img__picture--mobile {
    display: block;
  }
}
.ringout_img_main .main_img img, .ringout_img_main .main_img__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.ringout_img_main .animated_img {
  position: absolute;
  z-index: 2;
  left: 46%;
  top: 16%;
  width: 46%;
  transform: scale(0.2);
  transform-origin: 0% 58%;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.ringout_img_main .animated_img img {
  width: 100%;
  height: auto;
  display: block;
}
.ringout_img_main.is-visible .animated_img {
  transform: scale(1);
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .ringout_img_main .animated_img {
    left: 48%;
    top: 18%;
    width: 48%;
  }
}
@media only screen and (max-width: 991px) {
  .ringout_img_main .animated_img {
    top: 20%;
    width: 50%;
    transform: scale(0.22);
    transform-origin: 0% 55%;
  }
}
@media only screen and (max-width: 767px) {
  .ringout_img_main .animated_img {
    top: 22%;
  }
}
@media only screen and (max-width: 563px) {
  .ringout_img_main .animated_img {
    top: 24%;
    transform: scale(0.24);
  }
}

.aboutProduct {
  width: 100%;
  background-color: #fffbf0;
  overflow: hidden;
}
.aboutProduct__head {
  width: 100%;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__head {
    margin-bottom: 32px;
  }
}
.aboutProduct__title {
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  font-size: 72px;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.aboutProduct__title span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__title {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
}
.aboutProduct__desc {
  max-width: 100%;
  color: #292929;
  font-family: "regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__desc {
    font-size: 16px;
    line-height: 1.55;
  }
}
.aboutProduct__grid {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 222px minmax(300px, 452px) 222px;
  grid-template-rows: repeat(2, auto);
  gap: 24px 16px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
}
.aboutProduct__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  border: 1px solid #C2C2C2;
  padding: 28px 24px;
  width: 222px;
  background-color: #FEF6D6;
  border-radius: 16px;
  min-height: 222px;
  box-shadow: 0px 4px 6.7px 0px rgba(0, 0, 0, 0.0588235294);
}
.aboutProduct__card--1 {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
.aboutProduct__card--2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}
.aboutProduct__card--3 {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}
.aboutProduct__card--4 {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__card {
    width: 100%;
    min-height: 140px;
    padding: 20px 16px;
    gap: 12px;
    justify-self: stretch;
  }
  .aboutProduct__card--1 {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
  }
  .aboutProduct__card--2 {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
  }
  .aboutProduct__card--3 {
    grid-column: 1;
    grid-row: 3;
    height: 100%;
  }
  .aboutProduct__card--4 {
    grid-column: 2;
    grid-row: 3;
    height: 100%;
  }
}
.aboutProduct__media {
  grid-column: 2;
  grid-row: 1/3;
  width: 100%;
  max-width: 452px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__media {
    grid-column: 1/-1;
    grid-row: 2;
    max-width: 300px;
    justify-self: center;
    margin: 8px auto;
  }
}
.aboutProduct__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.aboutProduct__icon {
  width: 88px;
  height: 88px;
  padding: 20px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aboutProduct__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutProduct__card-text {
  color: var(--black);
  font-family: "heading";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  max-width: 220px;
}
@media only screen and (max-width: 991px) {
  .aboutProduct__card-text {
    font-size: 14px;
    line-height: 1.35;
    max-width: 100%;
    text-align: center;
  }
}

.suitableSection {
  width: 100%;
  background-color: #b9daf8;
}
.suitableSection__title {
  text-align: center;
  color: #0C3660;
  font-weight: 400;
  font-size: 72px;
  line-height: 82px;
  letter-spacing: -2px;
  margin-bottom: 40px;
}
.suitableSection__title span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .suitableSection__title {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }
}
.suitableSection__grid {
  display: grid;
  grid-template-columns: repeat(5, 243px);
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1300px) {
  .suitableSection__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .suitableSection__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .suitableSection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.suitableCard {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1019607843);
  cursor: pointer;
}
.suitableCard__media {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  border-radius: 8px;
  overflow: hidden;
  transition: top 0.3s ease, right 0.3s ease, bottom 0.3s ease, left 0.3s ease, border-radius 0.3s ease;
  z-index: 1;
}
.suitableCard__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(8px);
  transform: scale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.suitableCard__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.3s ease;
  z-index: 2;
}
.suitableCard__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  color: var(--black);
  font-family: "heading";
  font-size: 22px;
  line-height: 32px;
  transition: opacity 0.35s ease;
  z-index: 3;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .suitableCard__text {
    font-size: 16px;
    line-height: 26px;
    padding: 14px;
  }
}
@media only screen and (max-width: 563px) {
  .suitableCard__text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.suitableCard:hover .suitableCard__media {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
}
.suitableCard:hover .suitableCard__img {
  filter: blur(0);
  transform: scale(1.08);
}
.suitableCard:hover .suitableCard__overlay {
  opacity: 0;
}
.suitableCard:hover .suitableCard__text {
  opacity: 0;
}

.benefitsSection {
  position: relative;
  width: 100%;
  background-color: #fffdf3;
  overflow: hidden;
}
.benefitsSection__wrapper {
  position: relative;
  z-index: 1;
  padding: 0;
}
.benefitsSection__content {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__deskImg {
    display: none;
  }
}
.benefitsSection__mob_benifits_section {
  display: none;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__mob_benifits_section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 72px;
  }
}
.benefitsSection__mob_topLeft {
  display: none;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__mob_topLeft {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.benefitsSection__mob_bottomRight {
  display: none;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__mob_bottomRight {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.benefitsSection__mob_media {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
}
.benefitsSection__mob_circle {
  display: block;
  width: 100%;
  height: auto;
}
.benefitsSection__mob_product {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 80%;
  height: auto;
  z-index: 1;
}
.benefitsSection__mob_list {
  list-style: none;
  margin: 0;
  padding: 28px 34px 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.benefitsSection__mob_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefitsSection__mob_item .benefitsSection__mob_dot {
  width: 44px;
  flex-shrink: 0;
  height: auto;
}
.benefitsSection__mob_item p {
  font-size: 14px;
  color: var(--txtclr);
  font-family: "heading";
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.benefitsSection__title {
  font-size: 56px;
  font-weight: 300;
  line-height: 66px;
  letter-spacing: -2px;
  text-align: center;
  font-family: "light";
  padding: 48px 0 0;
}
.benefitsSection__title p {
  font-family: "heading";
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__title {
    font-size: 40px;
    line-height: 50px;
    padding: 50px 20px 20px 20px;
    margin: 0;
  }
}
.benefitsSection__topLeaf {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 300px;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__topLeaf {
    display: none;
  }
}
.benefitsSection__bottomLeaf {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 190px;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 991px) {
  .benefitsSection__bottomLeaf {
    display: none;
  }
}

.antifungul_banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}
@media only screen and (max-width: 991px) {
  .antifungul_banner {
    background: var(--antifungul-banner-bg) !important;
  }
}
.antifungul_banner__wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100vh;
  max-height: 100vh;
  padding: 120px 64px 40px;
  display: flex;
  align-items: stretch;
}
.antifungul_banner__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.antifungul_banner__top {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  max-width: 760px;
}
.antifungul_banner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  color: #0C3660;
  font-family: "heading";
  font-size: clamp(42px, 3vw, 72px);
  font-weight: 500;
  line-height: 1.12;
}
.antifungul_banner__title span:first-child {
  font-family: "heading";
  font-weight: 500;
}
.antifungul_banner__title span:last-child {
  font-family: "light";
  font-weight: 300;
}
.antifungul_banner__desc {
  max-width: 520px;
  margin: 0 auto;
  color: var(--black);
  text-align: center;
  font-size: 18px;
  font-family: "regular";
  font-weight: 400;
  line-height: 1.45;
}
.antifungul_banner__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.antifungul_banner__picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1400px) {
  .antifungul_banner__picture--desktop img {
    width: 100%;
    height: 100%;
    -o-object-fit: 100% 100%;
       object-fit: 100% 100%;
  }
}
@media (max-width: 992px) {
  .antifungul_banner__picture--desktop {
    display: none;
  }
}
.antifungul_banner__picture--mobile {
  display: none;
}
@media (max-width: 992px) {
  .antifungul_banner__picture--mobile {
    display: flex;
  }
}
.antifungul_banner__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.antifungul_banner__bottom {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 293px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.antifungul_banner__buy_now {
  font-size: 24px;
  line-height: 34px;
  font-family: "regular";
  display: block;
  padding-bottom: 18px;
  text-align: center;
  color: #0c3660;
}
.antifungul_banner__buy_now strong {
  font-family: "bold";
}
.antifungul_banner__buy_now_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.antifungul_banner__buy_now_list li {
  background-color: #fff;
  border-radius: 6px;
  min-height: 45px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.antifungul_banner__buy_now_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 45px;
  text-decoration: none;
  box-shadow: 0px 3px 6.3px 0px rgba(0, 0, 0, 0.2509803922);
}
.antifungul_banner__buy_now_list img {
  display: block;
  max-width: 100%;
  height: auto;
}
.antifungul_banner__chemist_shops {
  font-size: 14px;
  line-height: 24px;
  font-family: "regular";
  padding-top: 11px;
  color: #000;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-height: 850px) {
  .antifungul_banner__wrapper {
    padding-top: 108px;
    padding-bottom: 28px;
  }
  .antifungul_banner__title {
    margin-bottom: 8px;
  }
  .antifungul_banner__buy_now {
    padding-bottom: 12px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .antifungul_banner {
    --af-bg-color: var(--af-mobile-top);
    --af-bg-stop-1: var(--af-mobile-top);
    --af-bg-stop-2: var(--af-mobile-mid);
    --af-bg-stop-3: var(--af-mobile-soft);
    --af-bg-stop-4: var(--af-mobile-bottom);
    min-height: 100svh;
    max-height: 100svh;
    height: 100svh;
    background-color: var(--af-bg-color);
    background-image: linear-gradient(180deg, var(--af-bg-stop-1) 0%, var(--af-bg-stop-2) 42%, var(--af-bg-stop-3) 68%, var(--af-bg-stop-4) 100%);
  }
  .antifungul_banner__wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 100svh;
    max-height: 100svh;
    height: 100svh;
    padding: 96px 20px 16px;
    align-items: stretch;
    background: transparent;
  }
  .antifungul_banner__content {
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    background: transparent;
  }
  .antifungul_banner__top {
    max-width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
  .antifungul_banner__title {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 8px;
    gap: 2px;
  }
  .antifungul_banner__desc {
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.45;
  }
  .antifungul_banner__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .antifungul_banner__picture--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .antifungul_banner__img--mobile {
    width: 100%;
    max-width: 370px;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center center;
       object-position: center center;
    margin-top: 106px;
  }
  .antifungul_banner__bottom {
    margin-top: auto;
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
    align-items: center;
  }
  .antifungul_banner__buy_now {
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .antifungul_banner__buy_now_list {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .antifungul_banner__buy_now_list::-webkit-scrollbar {
    display: none;
  }
  .antifungul_banner__buy_now_list ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    max-width: none;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 2px 24px;
  }
  .antifungul_banner__buy_now_list ul a {
    flex: 1;
    text-decoration: none;
  }
  .antifungul_banner__buy_now_list ul li {
    min-width: 110px;
    min-height: 40px;
    padding: 0 20px;
  }
  .antifungul_banner__chemist_shops {
    display: none;
  }
}
@media only screen and (max-width: 563px) {
  .antifungul_banner__wrapper {
    padding-top: 108px;
    padding-bottom: 12px;
  }
  .antifungul_banner__title {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .antifungul_banner__desc {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
  }
  .antifungul_banner__buy_now {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .antifungul_banner__buy_now_list ul {
    gap: 6px;
  }
  .antifungul_banner__buy_now_list ul li {
    min-width: 100px;
    min-height: 36px;
    padding: 0 16px;
  }
}

.dusting_powder_banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}
.dusting_powder_banner__wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100vh;
  max-height: 100vh;
  padding: 120px 64px 40px;
  display: flex;
  align-items: stretch;
}
.dusting_powder_banner__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dusting_powder_banner__top {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  max-width: 760px;
}
.dusting_powder_banner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  color: #0b2d5c;
  font-family: "heading";
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 800;
  line-height: 1.12;
}
.dusting_powder_banner__title span:first-child {
  font-family: "heading";
  font-weight: 500;
}
.dusting_powder_banner__title span:last-child {
  font-family: "regular";
  font-weight: 300;
}
.dusting_powder_banner__desc {
  max-width: 520px;
  margin: 0 auto;
  color: #0c3660;
  font-size: 18px;
  line-height: 28px;
  font-family: "regular";
  line-height: 1.45;
}
.dusting_powder_banner__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.dusting_powder_banner__picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 700px) {
  .dusting_powder_banner__picture--desktop {
    display: none;
  }
}
.dusting_powder_banner__picture--mobile {
  display: none;
}
@media (max-width: 700px) {
  .dusting_powder_banner__picture--mobile {
    display: flex;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}
.dusting_powder_banner__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.dusting_powder_banner__bottom {
  position: relative;
  z-index: 3;
  margin-top: auto;
  width: 100%;
  max-width: 293px;
  flex-shrink: 0;
  padding-bottom: 8px;
}
.dusting_powder_banner__buy_now {
  font-size: 24px;
  line-height: 34px;
  font-family: "regular";
  display: block;
  padding-bottom: 18px;
  text-align: center;
  color: #0c3660;
}
.dusting_powder_banner__buy_now strong {
  font-family: "bold";
}
.dusting_powder_banner__buy_now_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dusting_powder_banner__buy_now_list li {
  background-color: #fff;
  border-radius: 6px;
  min-height: 45px;
}
.dusting_powder_banner__buy_now_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 45px;
  padding: 0 36px;
  text-decoration: none;
}
.dusting_powder_banner__buy_now_list img {
  display: block;
  max-width: 100%;
  height: auto;
}
.dusting_powder_banner__chemist_shops {
  font-size: 14px;
  line-height: 24px;
  font-family: "regular";
  padding-top: 11px;
  color: #000;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-height: 850px) {
  .dusting_powder_banner__wrapper {
    padding-top: 108px;
    padding-bottom: 28px;
  }
  .dusting_powder_banner__title {
    font-size: clamp(38px, 4vw, 58px);
    margin-bottom: 8px;
  }
  .dusting_powder_banner__desc {
    font-size: 16px;
    line-height: 1.4;
  }
  .dusting_powder_banner__buy_now {
    padding-bottom: 12px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 700px) {
  .dusting_powder_banner__wrapper {
    min-height: 100svh;
    max-height: 100svh;
    height: 100svh;
    padding: 96px 20px 16px;
    align-items: stretch;
    background: transparent;
  }
  .dusting_powder_banner__content {
    height: 100%;
    justify-content: flex-start;
    gap: 0;
    background: transparent;
  }
  .dusting_powder_banner__bottom {
    margin-top: 0;
  }
  .dusting_powder_banner__top {
    max-width: 100%;
    margin-bottom: 8px;
  }
  .dusting_powder_banner__title {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 8px;
    gap: 2px;
  }
  .dusting_powder_banner__desc {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.45;
  }
  .dusting_powder_banner__media {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    background: transparent;
  }
  .dusting_powder_banner__picture--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 100%;
  }
  .dusting_powder_banner__img--mobile {
    max-width: 88%;
    width: 90vw;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .dusting_powder_banner__bottom {
    margin-top: 0;
    max-width: 100%;
    padding-bottom: 0;
  }
  .dusting_powder_banner__buy_now {
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 18px;
  }
  .dusting_powder_banner__buy_now_list {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dusting_powder_banner__buy_now_list::-webkit-scrollbar {
    display: none;
  }
  .dusting_powder_banner__buy_now_list ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 2px 8px;
  }
  .dusting_powder_banner__buy_now_list li {
    min-width: 110px;
    min-height: 40px;
  }
  .dusting_powder_banner__buy_now_list a {
    min-height: 40px;
    padding: 0 20px;
  }
  .dusting_powder_banner__chemist_shops {
    display: none;
  }
}
@media only screen and (max-width: 563px) {
  .dusting_powder_banner__wrapper {
    padding-top: 108px;
    padding-bottom: 12px;
  }
  .dusting_powder_banner__title {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .dusting_powder_banner__desc {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.4;
  }
  .dusting_powder_banner__buy_now {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .dusting_powder_banner__buy_now_list ul {
    gap: 6px;
  }
  .dusting_powder_banner__buy_now_list li {
    min-width: 100px;
  }
  .dusting_powder_banner__buy_now_list a {
    padding: 0 16px;
  }
}

.howToUseSection {
  width: 100%;
  background-color: #b5d7fa;
  --stack-active-top: 75px;
}
.howToUseSection__inner {
  display: grid;
  grid-template-columns: minmax(320px, 466px) 489px;
  gap: 82px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .howToUseSection__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.howToUseSection__title {
  color: #0C0C0C;
  font-family: "regular";
  font-weight: 400;
  font-size: 72px;
  line-height: 82px;
  letter-spacing: -1.6px;
  margin-bottom: 26px;
}
.howToUseSection__title span {
  font-family: "light";
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .howToUseSection__title {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
}
.howToUseSection__desc {
  max-width: 310px;
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 991px) {
  .howToUseSection__desc {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }
}
.howToUseSection__cards {
  position: relative;
  width: 100%;
  max-width: 439px;
  min-height: calc(var(--stack-active-top) + 280px);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .howToUseSection__cards {
    max-width: 350px;
    margin: 0 auto;
  }
}
.howToUseSection__cards:not(.is-ready) {
  opacity: 0;
  visibility: hidden;
}
.howToUseSection__cards.is-ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}
.howToUseSection__cards.is-animating {
  pointer-events: none;
}

.howToUseCard {
  position: absolute;
  left: 0;
  right: 0;
  padding: 18px 12px 10px;
  background-color: #80b7f0;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(20, 82, 140, 0.32);
  transform-origin: center center;
}
.howToUseCard[data-position="0"], .howToUseCard[data-position="1"] {
  cursor: pointer;
}
.howToUseCard[data-position="0"] {
  top: 0;
  z-index: 1;
  background-color: #2e92eb;
}
.howToUseCard[data-position="1"] {
  top: 39px;
  z-index: 2;
  background-color: #57a8f3;
}
.howToUseCard[data-position="2"] {
  top: var(--stack-active-top);
  z-index: 3;
  background-color: #80b7f0;
  cursor: default;
  pointer-events: none;
}
.howToUseCard__num {
  color: #111827;
  font-family: "regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.2px;
}
.howToUseCard__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.howToUseCard__divider {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: rgba(62, 132, 198, 0.45);
  margin: 0 0 9px;
}
.howToUseCard__text {
  color: #111827;
  font-family: "bold";
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .howToUseCard__text {
    font-size: 17px;
  }
}
.howToUseCard__media {
  width: 100%;
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
}
.howToUseCard__media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.faqSection {
  width: 100%;
  background-color: #fffdf3;
}
.faqSection__wrapper {
  padding-top: 70px;
  padding-bottom: 72px;
}
@media only screen and (max-width: 991px) {
  .faqSection__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.faqSection__inner {
  width: 100%;
  max-width: 882px;
  margin: 0 auto;
}
.faqSection__title {
  color: #0C0C0C;
  font-family: "heading";
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .faqSection__title {
    font-size: 28px;
    margin-bottom: 14px;
  }
}

.faqAccordion {
  width: 100%;
}
.faqAccordion__item {
  width: 100%;
  background-color: #afd5fb;
  border-radius: 6px;
  overflow: hidden;
}
.faqAccordion__item + .faqAccordion__item {
  margin-top: 12px;
}
.faqAccordion__button {
  width: 100%;
  min-height: 49px;
  padding: 16px 23px 15px 18px;
  border: 0;
  background: transparent;
  color: var(--black);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: "heading";
  font-weight: 500;
  font-size: 18px;
}
.faqAccordion__icon {
  position: relative;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.faqAccordion__icon::before, .faqAccordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9.3px;
  height: 1.5px;
  background-color: #000;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faqAccordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqAccordion__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  will-change: height;
}
.faqAccordion__content {
  padding: 0 48px 17px 18px;
}
.faqAccordion__content p {
  max-width: 100%;
  color: #242424;
  font-family: "regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.faqAccordion__item.is-active .faqAccordion__button {
  padding-bottom: 10px;
}
.faqAccordion__item.is-active .faqAccordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
@media only screen and (max-width: 767px) {
  .faqAccordion__button {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }
  .faqAccordion__content {
    padding-right: 34px;
    padding-left: 16px;
  }
}

.contact_main {
  position: relative;
  z-index: 2;
  background: #fbf5de;
}
.contact_main__wrapper {
  padding-top: 0;
  padding-bottom: 20px;
}

.home_banner--contact .home_banner__title {
  font-weight: 300;
  font-family: "light";
}
.home_banner--contact .home_banner__title span:first-child {
  font-weight: 500;
  font-family: "heading";
}
.home_banner--contact .home_banner__description {
  text-align: center;
}

.contact_grid {
  display: grid;
  grid-template-columns: minmax(360px, 514px) minmax(520px, 668px);
  gap: 56px;
  align-items: start;
  max-width: 1238px;
  margin: 0 auto 0;
}
@media only screen and (max-width: 991px) {
  .contact_grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: -28px;
  }
}

.contact_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -30px;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .contact_info {
    margin-top: 30px;
  }
}

.contact_info__card,
.contact_form_card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(12, 54, 96, 0.08);
}

.contact_info__card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-height: 144px;
  padding: 35px 32px;
  box-shadow: 0px 12px 32px 0px rgba(12, 54, 96, 0.0392156863);
}
.contact_info__card h2 {
  margin-bottom: 8px;
  color: #0c3660;
  font-weight: 500;
  font-family: "heading";
  font-size: 20px;
  line-height: 30px;
}
.contact_info__card a,
.contact_info__card p,
.contact_info__card address {
  color: #787878;
  font-family: "regular";
  font-size: 15px;
  font-style: normal;
  line-height: 25px;
  text-decoration: none;
}
.contact_info__card--visit {
  min-height: 493px;
  padding-bottom: 32px;
}
@media only screen and (max-width: 563px) {
  .contact_info__card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 24px 20px;
  }
}

.contact_info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--red);
  background: #fff7d8;
  border-radius: 8px;
}
.contact_info__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 563px) {
  .contact_info__icon {
    width: 44px;
    height: 44px;
  }
}

.contact_map {
  grid-column: 1/-1;
  min-height: 322px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #d2d6c5;
  border-radius: 4px;
}
.contact_map iframe {
  display: block;
  width: 100%;
  height: 322px;
  border: 0;
}

.contact_form_card {
  padding: 48px 48px 48px;
  margin-top: -30px;
  height: 100%;
}
.contact_form_card > h2 {
  margin-bottom: 7px;
  color: #0c3660;
  font-family: "heading";
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .contact_form_card > h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.contact_form_card > p {
  margin-bottom: 32px;
  color: #787878;
  font-family: "regular";
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 991px) {
  .contact_form_card > p {
    font-size: 14px;
    line-height: 24px;
    font-family: "regular";
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .contact_form_card {
    padding: 28px 20px;
    height: unset;
  }
}

.contact_form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media only screen and (max-width: 563px) {
  .contact_form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.contact_form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact_form__group label {
  color: #0c3660;
  font-family: "heading" !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-family: "regular";
}
.contact_form__group input,
.contact_form__group textarea {
  width: 100%;
  border: 1px solid rgba(12, 54, 96, 0.1607843137);
  border-radius: 6px;
  outline: none;
  background: #fffdf3;
  color: var(--black);
  font-family: "regular";
  font-size: 15px;
  line-height: 25px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact_form__group input::-moz-placeholder, .contact_form__group textarea::-moz-placeholder {
  color: rgba(120, 120, 120, 0.5019607843);
  font-size: 15px;
  line-height: 25px;
}
.contact_form__group input::placeholder,
.contact_form__group textarea::placeholder {
  color: rgba(120, 120, 120, 0.5019607843);
  font-size: 15px;
  line-height: 25px;
}
.contact_form__group input:focus,
.contact_form__group textarea:focus {
  border-color: #0c3660;
  box-shadow: 0 0 0 2px rgba(12, 54, 96, 0.08);
}
.contact_form__group input {
  height: 46px;
  padding: 0 16px;
}
.contact_form__group textarea {
  min-height: 134px;
  resize: vertical;
  padding: 16px;
}
.contact_form__group--full {
  grid-column: 1/-1;
}
.contact_form__group--file {
  grid-row: span 2;
}

.contact_form__upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 144px;
  gap: 10px;
  padding: 20px 16px;
  border: 1px solid #d7d4c4;
  border-radius: 4px;
  background: var(--bodyclr);
  color: #c7bdad;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact_form__upload:hover, .contact_form__upload--dragover {
  border-color: #0c3660;
  background: #fffdf3;
}
.contact_form__upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.contact_form__upload svg {
  display: block;
  flex-shrink: 0;
}
.contact_form__upload-text {
  color: #c7bdad;
  font-family: "regular";
  font-size: 13px;
  line-height: 20px;
}
.contact_form__upload-hint {
  max-width: 220px;
  color: #bbbab5;
  font-family: "regular";
  font-size: 11px;
  line-height: 16px;
}
.contact_form__upload--has-file .contact_form__upload-text {
  color: #787878;
  font-weight: 500;
}

.contact_form__submit {
  grid-column: 1/-1;
  min-height: 52px;
  border: none;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: "heading";
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact_form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(209, 0, 2, 0.18);
}
@media only screen and (max-width: 991px) {
  .contact_form__submit {
    min-height: 40px;
  }
}

h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.26;
  color: #0C3660;
  font-family: "heading";
  transition: all ease 0.5s;
}
h2 span {
  font-family: "light";
  font-weight: 300;
}

.about .home_banner__title {
  font-size: 64px;
  margin-top: 25px;
  color: #0C3660;
}
.about .home_banner__title span {
  font-family: "light";
  font-weight: 300;
}
@media (max-width: 1300px) {
  .about .home_banner__title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1200px) {
  .about .home_banner__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .about .home_banner__wrapper {
    align-items: flex-start;
    padding-top: 120px;
  }
  .about .home_banner__wrapper .home_banner__content {
    display: block;
  }
  .about .home_banner__wrapper .home_banner__title {
    display: inline;
  }
}

.content-box {
  background-color: var(--lightblue);
  text-align: center;
  font-family: "semibold";
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
}
.content-box .content {
  max-width: 1198px;
  width: 100%;
  margin: 0 auto;
}
.content-box .content p {
  color: #0C3660;
}
@media only screen and (max-width: 991px) {
  .content-box .content p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.skin-box {
  padding: 72px 64px 88px;
}
.skin-box__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(24px, 3vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}
.skin-box__col {
  display: flex;
  flex-direction: column;
}
.skin-box__col--left {
  gap: 48px;
}
.skin-box__col--right {
  gap: 40px;
}
.skin-box__title {
  margin: 0;
  font-family: "semibold";
  font-weight: 600;
  font-size: 64px;
}
.skin-box__intro, .skin-box__text {
  margin: 0;
  line-height: 25px;
  color: #000;
}
.skin-box__text {
  max-width: 320px;
}
.skin-box__visual {
  width: 100%;
  max-width: 620px;
  margin-left: -50px;
}
.skin-box__image {
  position: relative;
  width: 100%;
}
.skin-box__main-image {
  width: 100%;
  max-width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.skin-box__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.skin-box__icon-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 195px;
  min-height: 207px;
  padding: 20px 16px;
  line-height: 1.3;
  color: #000;
  font-size: 22px;
  font-family: "heading";
  font-weight: 500;
  background-color: var(--lightblue);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(12, 54, 96, 0.08);
}
.skin-box__icon-box p {
  margin: 0;
}
.skin-box__icon-box span {
  display: block;
}
.skin-box__icon-box--top {
  top: 4%;
  right: -5%;
}
.skin-box__icon-box--left {
  left: -20%;
  bottom: 2%;
}
.skin-box__icon-box--right {
  right: -5%;
  bottom: 2%;
}
.skin-box__icon img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .skin-box {
    padding: 60px 40px 72px;
  }
  .skin-box__visual {
    max-width: 460px;
  }
  .skin-box__title {
    font-size: 38px;
  }
  .skin-box__icon-box {
    width: 150px;
    min-height: 160px;
    font-size: 20px;
  }
  .skin-box__icon-box--top, .skin-box__icon-box--right {
    right: 0;
  }
  .skin-box__icon-box--right {
    bottom: -10px;
  }
  .skin-box__icon-box--left {
    left: -16%;
  }
  .skin-box__icon img {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .skin-box {
    padding: 50px 20px 60px;
  }
  .skin-box__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .skin-box__col--left {
    gap: 24px;
  }
  .skin-box__col--right {
    gap: 32px;
    flex-direction: column-reverse;
  }
  .skin-box__text {
    max-width: 100%;
  }
  .skin-box__visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .skin-box__main-image {
    max-width: 100%;
  }
  .skin-box__icon-box {
    width: 140px;
    min-height: auto;
    font-size: 18px;
    padding: 16px 12px;
  }
  .skin-box__icon-box--top, .skin-box__icon-box--right {
    right: -20%;
  }
  .skin-box__icon-box--top {
    top: -30px;
  }
  .skin-box__icon-box--right {
    bottom: -10%;
  }
  .skin-box__icon-box--left {
    left: -20%;
  }
  .skin-box__icon img {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 563px) {
  .skin-box__visual {
    max-width: 300px;
  }
  .skin-box__icon-box {
    width: 118px;
    height: 150px;
    font-size: 15px;
    gap: 8px;
    padding: 12px 10px;
  }
  .skin-box__icon-box--top, .skin-box__icon-box--right {
    right: -8%;
  }
  .skin-box__icon-box--left {
    left: -8%;
  }
}

.backed-by-box {
  background-color: var(--lightblue);
  padding: 80px 64px;
}
.backed-by-box__inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.backed-by-box__title {
  margin: 0 0 28px;
  font-family: "heading";
  font-weight: 500;
  font-size: 56px;
}
.backed-by-box__title span {
  display: block;
}
@media only screen and (max-width: 991px) {
  .backed-by-box__title {
    font-size: 38px;
    margin-bottom: 32px;
  }
}
.backed-by-box__grid {
  display: grid;
  grid-template-columns: repeat(6, 154px);
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  max-width: 1024px;
  margin: 0 auto;
}
.backed-by-box__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 20px;
  border-radius: 24px;
  text-align: center;
}
.backed-by-box__card--col-2 {
  grid-column: span 2;
  width: 328px;
  justify-self: center;
  height: 280px;
  min-height: 280px;
}
.backed-by-box__card--col-3 {
  grid-column: span 3;
  width: 489px;
  height: 238px;
  min-height: 238px;
}
.backed-by-box__card--col-3:nth-child(4) {
  justify-self: end;
}
.backed-by-box__card--col-3:nth-child(5) {
  justify-self: start;
}
.backed-by-box__card--science {
  background-color: #86befd;
}
.backed-by-box__card--manufacturing {
  background-color: #fffdf3;
}
.backed-by-box__card--rely {
  background-color: #fff;
}
.backed-by-box__card--trust {
  background-color: #5fa6f6;
}
.backed-by-box__card--image {
  padding: 0;
  overflow: hidden;
}
.backed-by-box__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.backed-by-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 24px;
  flex-shrink: 0;
}
.backed-by-box__icon img {
  display: block;
  max-width: 56px;
  max-height: 56px;
}
.backed-by-box__icon--white {
  background-color: #fff;
}
.backed-by-box__icon--blue {
  background-color: #aed4ff;
}
.backed-by-box__label {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  color: #000;
  font-family: "heading";
  font-weight: 500;
}
.backed-by-box__label span {
  display: block;
}
@media only screen and (max-width: 991px) {
  .backed-by-box {
    padding: 60px 20px;
  }
  .backed-by-box__inner {
    max-width: 100%;
  }
  .backed-by-box__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .backed-by-box__card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    grid-row: auto;
    grid-column: auto;
    justify-self: stretch;
  }
  .backed-by-box__card--col-2, .backed-by-box__card--col-3 {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    grid-row: auto;
    grid-column: auto;
    justify-self: stretch;
  }
  .backed-by-box__card:nth-child(5) {
    grid-column: 1/-1;
  }
  .backed-by-box__photo {
    min-height: 240px;
  }
  .backed-by-box__label {
    font-size: 20px;
  }
}
@media only screen and (max-width: 563px) {
  .backed-by-box__card {
    min-height: 180px;
  }
  .backed-by-box__icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }
  .backed-by-box__icon img {
    max-width: 48px;
    max-height: 48px;
  }
  .backed-by-box__label {
    font-size: 18px;
  }
}

.blog_banner {
  --blog-banner-img-space: clamp(240px, 34vw, 400px);
  background-color: var(--lightblue);
  overflow: hidden;
  padding-top: 108px;
}
.blog_banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  min-height: 420px;
  margin: 0 auto;
}
.blog_banner__media {
  position: absolute;
  left: 64px;
  bottom: 0;
  z-index: 0;
  width: var(--blog-banner-img-space);
  line-height: 0;
  pointer-events: none;
}
.blog_banner__img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: clamp(360px, 52vh, 560px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left bottom;
     object-position: left bottom;
}
.blog_banner__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog_banner__title {
  margin: 0 0 24px;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #0C3660;
  font-family: "heading";
  font-weight: 500;
}
.blog_banner__title span {
  font-family: "light";
  font-weight: 300;
}
.blog_banner__description {
  margin: 0;
  color: #0b2d5c;
  font-size: 20px;
  line-height: 30px;
  line-height: 30px;
  font-family: "regular";
  font-weight: 400;
}
.blog_banner__description span {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .blog_banner {
    --blog-banner-img-space: clamp(220px, 30vw, 340px);
  }
  .blog_banner__title {
    letter-spacing: -1px;
  }
}
@media only screen and (max-width: 991px) {
  .blog_banner {
    --blog-banner-img-space: auto;
    padding-top: 96px;
  }
  .blog_banner__inner {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding: 0 20px;
    overflow: visible;
  }
  .blog_banner__media {
    position: static;
    order: 2;
    width: 72%;
    max-width: 360px;
    margin: 0 auto;
    pointer-events: auto;
  }
  .blog_banner__img {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
  }
  .blog_banner__content {
    order: 1;
    flex: none;
    max-width: 100%;
    padding: 32px 0 24px;
  }
  .blog_banner__title {
    font-size: 48px;
    letter-spacing: -1px;
  }
}
@media only screen and (max-width: 563px) {
  .blog_banner {
    padding-top: 88px;
  }
  .blog_banner__media {
    width: 85%;
    max-width: 300px;
  }
  .blog_banner__title {
    font-size: 40px;
  }
  .blog_banner__description {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
  .blog_banner__description span {
    text-align: center;
  }
}

.related_blogs_section {
  width: 100%;
  padding-top: 0;
}

.Blog-list-box .blog-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.Blog-list-box .blog-list .category {
  padding-top: 24px;
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  font-family: "semibold";
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 991px) {
  .Blog-list-box .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 563px) {
  .Blog-list-box .blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Blog-list-box .load-more {
  overflow: hidden;
  text-align: center;
  padding-top: 70px;
}
.Blog-list-box .load-more a {
  display: block;
  margin: auto;
}
.Blog-list-box .health_tips_card__img-wrap {
  border-radius: 8px;
}

.Blog-list-box h2 {
  font-size: 40px;
}

.blog-upper-head {
  padding: 150px 64px 50px;
  text-align: center;
}
.blog-upper-head h1 {
  font-size: 72px;
  margin-top: 30px;
  margin-bottom: 8px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .blog-upper-head {
    padding: 150px 20px 50px;
  }
  .blog-upper-head h1 {
    font-size: 32px;
  }
}
.blog-upper-head .category {
  font-size: 12px;
  background-color: var(--lightblue);
  padding: 10px 20px;
  border-radius: 6px;
  color: #000;
  text-transform: uppercase;
  font-family: "bold";
}
.blog-upper-head .author-date {
  font-size: 12px;
  color: #525252;
}
.blog-upper-head .author-date span {
  margin-right: 15px;
  font-size: 14px;
}

.blog_banner-detail img {
  width: 100%;
}

.blog-detail-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 64px;
  padding-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .blog-detail-box {
    padding: 20px;
  }
}
.blog-detail-box h2 {
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 40px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .blog-detail-box h2 {
    font-size: 24px;
  }
}
.blog-detail-box p {
  padding-bottom: 30px;
}
.blog-detail-box p b {
  font-family: "heading";
}
.blog-detail-box .quote {
  margin: 30px 0;
  overflow: hidden;
  padding: 30px;
  padding-right: 15%;
  border-radius: 15px;
  font-style: italic;
  background: rgba(174, 212, 255, 0.14);
  border-left: 7px solid rgb(12, 54, 96);
}
.blog-detail-box .quote h2 {
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-box .quote {
    padding: 20px;
    margin-top: 8px;
  }
}
.blog-detail-box .share-this {
  border-top: 1px solid #AED4FF;
  overflow: hidden;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.blog-detail-box .share-this__label {
  color: rgb(64, 73, 69);
  font-size: 14px;
}
.blog-detail-box .share-this__buttons {
  display: flex;
}
.blog-detail-box .share-this .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background: none;
  padding: 0;
}
.blog-detail-box .share-this .share-btn img {
  display: block;
  width: auto;
  height: auto;
  max-width: 18px;
  max-height: 18px;
  transition: all ease 0.2s;
}
.blog-detail-box .share-this .share-btn img:hover {
  scale: 1.1;
}

.privacy_policy_banner {
  background-color: var(--lightblue);
  overflow: hidden;
  padding-top: 108px;
}
.privacy_policy_banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  min-height: 420px;
  margin: 0 auto;
}
.privacy_policy_banner__media {
  position: absolute;
  left: 64px;
  bottom: 0;
  z-index: 0;
  width: var(--privacy-policy-banner-img-space);
  line-height: 0;
  pointer-events: none;
}
.privacy_policy_banner__img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: clamp(360px, 52vh, 560px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left bottom;
     object-position: left bottom;
}
.privacy_policy_banner__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy_policy_banner__title {
  margin: 0 0 24px;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #0c3660;
  font-family: "heading";
}
.privacy_policy_banner__title span {
  font-family: "light";
  font-weight: 300;
}
.privacy_policy_banner__description {
  margin: 0;
  color: #0b2d5c;
  font-size: 20px;
  line-height: 30px;
  line-height: 30px;
  font-family: "regular";
  font-weight: 400;
}
@media only screen and (max-width: 1200px) {
  .privacy_policy_banner {
    --privacy-policy-banner-img-space: clamp(220px, 30vw, 340px);
  }
  .privacy_policy_banner__title {
    letter-spacing: -1px;
  }
}
@media only screen and (max-width: 991px) {
  .privacy_policy_banner {
    --privacy-policy-banner-img-space: auto;
    padding-top: 96px;
  }
  .privacy_policy_banner__inner {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding: 0 20px;
    overflow: visible;
  }
  .privacy_policy_banner__media {
    position: static;
    order: 2;
    width: 72%;
    max-width: 360px;
    margin: 0 auto;
    pointer-events: auto;
  }
  .privacy_policy_banner__img {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
  }
  .privacy_policy_banner__content {
    order: 1;
    flex: none;
    max-width: 100%;
    padding: 32px 0 24px;
  }
  .privacy_policy_banner__title {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .privacy_policy_banner__description {
    text-align: center;
  }
}
@media only screen and (max-width: 563px) {
  .privacy_policy_banner {
    padding-top: 88px;
  }
  .privacy_policy_banner__media {
    width: 85%;
    max-width: 300px;
  }
  .privacy_policy_banner__title {
    font-size: 40px;
  }
  .privacy_policy_banner__description {
    font-size: 16px;
    line-height: 26px;
  }
}

.privacy_policy_main {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .privacy_policy_main {
    margin-top: 50px;
  }
}
.privacy_policy_main__wrapper {
  padding-top: 0;
  padding-bottom: 88px;
}
@media only screen and (max-width: 991px) {
  .privacy_policy_main__wrapper {
    padding-bottom: 50px;
  }
}

.privacy_policy_content {
  width: 100%;
  margin: 0 auto;
}
.privacy_policy_content h3 {
  margin: 0 0 12px;
  color: #0c3660;
  font-family: "heading";
  font-weight: 500;
  font-size: 32px;
  transition: all ease 0.5s;
}
.privacy_policy_content p {
  margin: 0 0 24px;
  color: #0c3660;
  font-family: "regular";
  font-size: 15px;
  line-height: 25px;
}
.privacy_policy_content p:last-child {
  margin-bottom: 0;
}
.privacy_policy_content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.privacy_policy_content ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #0c3660;
  font-family: "regular";
  font-size: 15px;
  line-height: 25px;
}
.privacy_policy_content ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background-color: #0c3660;
}
@media only screen and (max-width: 991px) {
  .privacy_policy_content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .privacy_policy_content p,
  .privacy_policy_content ul li {
    font-size: 14px;
    line-height: 24px;
    font-family: "regular";
  }
  .privacy_policy_content p {
    margin-bottom: 20px;
  }
  .privacy_policy_content ul {
    margin-bottom: 20px;
  }
}

.other_brands_main {
  width: 100%;
  background-color: var(--white);
}

.other_brands_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.other_brands_container .top_content {
  width: 100%;
  text-align: center;
}
.other_brands_container .top_content h2 {
  font-family: "regular";
  font-weight: 400;
  font-size: 40px;
  color: var(--txtclr);
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .other_brands_container .top_content h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.other_brands_container .bottom_logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 72px;
}
@media only screen and (max-width: 991px) {
  .other_brands_container .bottom_logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media only screen and (max-width: 563px) {
  .other_brands_container .bottom_logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.other_brands_container .bottom_logos .brand_logo {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.other_brands_container .bottom_logos .brand_logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.location_main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background-color: var(--lightblue);
}

.location_container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .location_container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.location_left {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .location_left {
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}

.location_heading {
  letter-spacing: -0.72px;
  color: #0C3660;
  font-family: "regular";
  font-weight: 400;
  font-size: 42px;
  transition: all ease 0.5s;
}
.location_heading span {
  font-family: "semibold";
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .location_heading {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }
}

.location_search {
  width: 100%;
  min-width: 0;
  padding: 24px 32px;
  background-color: var(--bodyclr);
  border-radius: 12px;
}
.location_search__field {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  border: 1px solid #CECECE;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bodyclr);
}
.location_search__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--txtclr);
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
  padding: 12px 16px;
}
.location_search__input::-moz-placeholder {
  color: #787878;
}
.location_search__input::placeholder {
  color: #787878;
}
@media only screen and (max-width: 563px) {
  .location_search__input {
    font-size: 14px;
    padding: 12px 10px;
  }
}
.location_search__btn {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 0;
  background-color: var(--red);
  color: var(--white);
  font-family: "semibold";
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 563px) {
  .location_search__btn {
    padding: 12px 14px;
    font-size: 14px;
  }
}
.location_search__geo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--red);
  font-family: "semibold";
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
}
.location_search__geo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.location_search__geo svg {
  flex-shrink: 0;
}
.location_search__error {
  margin: 8px 0 0;
  min-height: 18px;
  color: #d10002;
  font-family: "regular";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media only screen and (max-width: 991px) {
  .location_search {
    padding: 20px;
  }
}
@media only screen and (max-width: 563px) {
  .location_search {
    padding: 16px;
  }
}

.location_card {
  width: 100%;
  min-width: 0;
  height: 187px;
  min-height: 187px;
  padding: 24px 32px;
  background-color: var(--bodyclr);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .location_card {
    padding: 24px;
  }
}
@media only screen and (max-width: 563px) {
  .location_card {
    height: auto;
    min-height: 187px;
    padding: 20px 16px;
  }
}
.location_card__default {
  display: flex;
  align-items: flex-start;
  height: 100%;
  flex: 1;
  min-height: 0;
}
.location_card__default[hidden] {
  display: none;
}
.location_card__hint {
  display: flex;
  align-items: center;
  gap: 12px;
}
.location_card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.location_card__icon svg {
  display: block;
}
.location_card__text {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.location_card__result {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  width: 100%;
}
.location_card__result[hidden] {
  display: none;
}
.location_card__notice {
  flex-shrink: 0;
  margin: 0;
  color: #787878;
  font-family: "regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.location_card__notice--unavailable {
  color: #d10002;
}
.location_card__notice--found {
  color: #0c3660;
}
.location_card__list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}
.location_card__list::-webkit-scrollbar {
  width: 4px;
  border-radius: 4px;
  background: #d8d8d5;
}
.location_card__list::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}
.location_card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e4d8;
}
.location_card__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.location_card__details {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.location_card__item > div {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 0;
  align-items: center;
  padding-right: 10px;
}
.location_card__name {
  margin: 0 0 6px;
  color: #0c3660;
  font-family: "semibold";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  grid-column: 1;
}
.location_card__address, .location_card__pincode {
  margin: 0;
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  grid-column: 1;
}
.location_card__pincode {
  margin-top: 4px;
  color: #787878;
}
.location_card__map {
  grid-column: 2;
  grid-row: 1/span 3;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: "semibold";
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.location_card__map:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 563px) {
  .location_card__map {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }
}

.footer_main {
  width: 100%;
  background-color: var(--bodyclr);
}
.footer_main .wrapper {
  padding-top: 64px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .footer_main .wrapper {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

.footer_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .footer_container {
    gap: 40px;
  }
}

.footer_top {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 0.8fr 1.1fr 1.3fr;
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .footer_top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}
@media only screen and (max-width: 563px) {
  .footer_top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer_brand__logo {
  width: 102px;
  height: 90px;
}
.footer_brand__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer_social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.2s ease;
}
.footer_social__link:hover {
  transform: translateY(-2px);
}
.footer_social__link img {
  display: block;
  width: 24px;
  height: 24px;
}

.footer_col__title {
  color: var(--black);
  font-family: "semibold";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer_col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer_col__list a {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.5s ease;
}
.footer_col__list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.footer_col__list a:hover::after {
  width: 100%;
  opacity: 1;
}
@media (max-width: 1300px) {
  .footer_col__list a {
    font-size: 14px;
  }
}
.footer_col--contact .footer_col__title {
  margin-bottom: 18px;
}

.footer_contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer_contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer_contact__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--txtclr);
}
.footer_contact__icon svg {
  display: block;
}
.footer_contact a {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.5s ease;
}
.footer_contact a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.footer_contact a:hover::after {
  width: 100%;
  opacity: 1;
}
@media (max-width: 1300px) {
  .footer_contact a {
    font-size: 14px;
  }
}
.footer_contact__address {
  color: var(--black);
  font-family: "regular";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  font-style: normal;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #c2c2c2;
}
@media only screen and (max-width: 767px) {
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer_bottom__copy {
  color: #3B3B3B;
  font-family: "regular";
  font-weight: 400;
  font-size: 14px;
}
.footer_bottom__links {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 563px) {
  .footer_bottom__links {
    gap: 16px 20px;
  }
}
.footer_bottom__links a {
  color: #3B3B3B;
  font-family: "regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.5s ease;
}
.footer_bottom__links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease 0.5s;
}
.footer_bottom__links a:hover::after {
  width: 100%;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */