* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

summary {
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .desktop-large-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

.banner {
  background-color: rgba(226, 198, 187, 0.29);
  padding-block: 7px;
}

@media only screen and (max-width: 767px) {
  .banner {
    background-color: #FFF4EF;
    padding-block: 5px;
  }
}

.banner__wrapper {
  width: 1252px;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .banner__wrapper {
    width: 100%;
  }
}

.banner__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.banner__item {
  position: relative;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .banner__item {
    font-size: 10px;
    line-height: 16px;
  }
}

.banner__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #000;
}

@media only screen and (max-width: 767px) {
  .banner__item:not(:last-child)::after {
    content: none;
  }
}

.benefits {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 20px 25px;
}

@media only screen and (max-width: 767px) {
  .benefits {
    width: 100%;
    padding: 12px 20px 25px;
  }
}

.benefits__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-block-end: 30px;
}

@media only screen and (max-width: 767px) {
  .benefits__title {
    font-size: 26px;
    line-height: 30px;
    margin-block-end: -7px;
  }
}

.benefits__title span {
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #FF6E88;
  margin-block-end: 13px;
}

@media only screen and (max-width: 767px) {
  .benefits__title span {
    font-size: 18px;
    line-height: 22px;
    margin-block-end: 10px;
  }
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block-end: 77px;
}

@media only screen and (max-width: 767px) {
  .benefits__list {
    display: block;
    margin-block-end: 15px;
    padding-inline: 30px;
  }
}

.benefits__item {
  position: relative;
  padding-inline: 32px;
  /* For desktop and tablet view only */
}

@media only screen and (max-width: 1023px) {
  .benefits__item {
    padding-inline: 15px;
    padding-block: 20px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .benefits__item:not(:last-child) {
    border-bottom: 1px solid #E2C6BB;
  }
}

@media only screen and (min-width: 768px) {
  .benefits__item {
    /* vertical divider on all except last column */
    /* horizontal divider on first row */
  }

  .benefits__item:not(:nth-child(3n))::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 94%;
    background-color: #E2C6BB;
  }

  .benefits__item:nth-child(n+4):not(:nth-child(3n))::before {
    height: 100%;
    top: 0;
    bottom: auto;
  }

  .benefits__item:nth-child(-n+3)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E2C6BB;
  }

  .benefits__item:nth-child(-n+3) {
    padding-bottom: 65px;
  }

  .benefits__item:nth-child(n+4) {
    padding-block: 30px 20px;
  }
}

.benefits__card {
  text-align: center;
}

.benefits__card-image {
  width: 200px;
  margin: 0 auto 17px;
}

@media only screen and (max-width: 767px) {
  .benefits__card-image {
    width: 100px;
    margin-block-end: -8px;
  }
}

.benefits__card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-block-end: 12px;
}

@media only screen and (max-width: 767px) {
  .benefits__card-title {
    font-size: 18px;
    line-height: 26px;
    margin-block-end: 5px;
  }
}

.benefits__card-desc {
  font-size: 20px;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  .benefits__card-desc {
    font-size: 16px;
    line-height: 22px;
  }
}

.benefits__guarantee {
  text-align: center;
}

.comparison {
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  padding: 45px 20px 62px;
}

@media only screen and (max-width: 767px) {
  .comparison {
    width: 100%;
    padding: 0 20px 25px;
  }
}

.comparison__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-block-end: 47px;
}

@media only screen and (max-width: 767px) {
  .comparison__title {
    font-size: 26px;
    line-height: 30px;
    margin-block-end: 13px;
  }
}

.comparison__title span {
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #FF6E88;
  margin-block-end: 43px;
}

@media only screen and (max-width: 767px) {
  .comparison__title span {
    font-size: 18px;
    line-height: 22px;
    margin-block-end: 10px;
  }
}

.comparison__title small {
  font-size: 40px;
}

@media only screen and (max-width: 767px) {
  .comparison__title small {
    font-size: 26px;
  }
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison__table th {
  font-weight: 600;
  line-height: 28px;
}

.comparison__table thead th {
  font-size: 26px;
  text-align: center;
  padding: 24px 13px 0px;
}

@media only screen and (max-width: 767px) {
  .comparison__table thead th {
    font-size: 12px;
    line-height: 18px;
    color: #626262;
    padding: 5px 7px 20px;
  }
}

.comparison__table thead th:first-child {
  width: 47%;
}

@media only screen and (max-width: 767px) {
  .comparison__table thead th:first-child {
    width: 40%;
  }
}

.comparison__table thead th:nth-child(2) {
  width: 18.5%;
  background-color: #ffeae2;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .comparison__table thead th:nth-child(2) {
    width: 20%;
  }
}

.comparison__table thead th:nth-child(2) img {
  width: 100%;
}

.comparison__table thead th:nth-child(3),
.comparison__table thead th:nth-child(4) {
  width: 17.25%;
}

@media only screen and (max-width: 767px) {

  .comparison__table thead th:nth-child(3),
  .comparison__table thead th:nth-child(4) {
    width: 20%;
  }
}

.comparison__table tbody th {
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .comparison__table tbody th {
    font-size: 12px;
    line-height: 18px;
    color: #0E0F0F;
    padding-inline-end: 32px;
    padding-block-end: 17px;
  }
}

.comparison__table tbody td {
  padding: 28px 18px 8px;
}

@media only screen and (max-width: 767px) {
  .comparison__table tbody td {
    padding: 0 10px 17px;
  }
}

.comparison__table tbody td:nth-child(2) {
  background-color: #ffeae2;
}

.comparison__table tbody tr:last-child td:nth-child(2) {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-block-end: 28px;
}

.comparison__logo {
  width: 55px;
  height: 55px;
  margin: 0 auto 13px;
}

@media only screen and (max-width: 767px) {
  .comparison__logo {
    width: 25px;
    height: 25px;
  }
}

.comparison__icon {
  width: 35px;
  height: 35px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .comparison__icon {
    width: 15px;
    height: 15px;
  }
}

.faq {
  width: 977px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px 45px;
}

@media only screen and (max-width: 767px) {
  .faq {
    width: 100%;
    padding: 25px 20px 13px;
  }
}

.faq__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-block-end: 18px;
}

@media only screen and (max-width: 767px) {
  .faq__title {
    font-size: 26px;
    line-height: 30px;
    margin-block-end: -5px;
  }
}

.faq__title span {
  color: #FF6E88;
}

.faq__item:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .faq__item:not(:last-of-type) {
    border-bottom-color: #E2C6BB;
  }
}

.faq__item[open] .faq__question {
  font-weight: 600;
  color: #FF8DA1;
  padding-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .faq__item[open] .faq__question {
    padding-block-end: 12px;
  }
}

.faq__item[open] .faq__question::after {
  top: 33px;
  transform: rotate(-135deg);
}

@media only screen and (max-width: 767px) {
  .faq__item[open] .faq__question::after {
    top: 50%;
  }
}

.faq__question {
  cursor: pointer;
  position: relative;
  font-size: 23px;
  line-height: 26px;
  padding-block: 25px;
  padding-inline-end: 30px;
}

@media only screen and (max-width: 767px) {
  .faq__question {
    font-size: 16px;
    line-height: 26px;
    padding-block: 20px 13px;
    padding-inline-end: 87px;
  }
}

.faq__question::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  border-right: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .faq__question::after {
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }
}

.faq__answer {
  font-size: 23px;
  line-height: 30px;
  padding-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .faq__answer {
    font-size: 14px;
    line-height: 22px;
  }
}

.faq__guarantee {
  text-align: center;
  margin-block-start: 30px;
}

@media only screen and (max-width: 767px) {
  .faq__guarantee {
    margin-block-start: 20px;
  }
}

.footer {
  width: 1188px;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
  font-size: 23px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .footer {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}

.footer p {
  margin-block-start: 8px;
}

.footer a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer__wrapper {
  padding-block: 50px;
  border-top: 1px solid #E2C6BB;
}

@media only screen and (max-width: 767px) {
  .footer__wrapper {
    padding-block: 20px;
  }
}

.footer__logo {
  width: 200px;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 767px) {
  .footer__logo {
    margin-block-end: 12px;
  }
}

.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .footer__list {
    gap: 12px;
  }
}

.footer__item {
  position: relative;
}

.footer__item:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  font-size: 23px;
}

@media only screen and (max-width: 767px) {
  .footer__item:not(:last-child)::after {
    font-size: 14px;
    right: -8px;
  }
}

.footer__copyright small {
  font-size: 23px;
  line-height: 32px;
}

@media only screen and (max-width: 767px) {
  .footer__copyright small {
    font-size: 14px;
    line-height: 22px;
  }
}

.guarantee__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: #04B662;
  border-radius: 15px;
  margin-block-end: 15px;
  padding: 11px 55px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .guarantee__link {
    width: 100%;
    gap: 20px;
    margin-block-end: 2px;
    padding: 10px 20px;
    font-size: 18px;
  }
}

.guarantee__link-icon {
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("./icon-download.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .guarantee__link-icon {
    width: 30px;
    height: 30px;
  }
}

.guarantee__text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .guarantee__text {
    font-size: 12px;
  }
}

.guarantee__text-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("./icon-dollar.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .guarantee__text-icon {
    width: 15px;
    height: 15px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
}

.header.is-sticky {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

.header.is-sticky .header__hamburger {
  position: fixed;
  top: 14px;
  right: 10px;
}

.header__wrapper {
  width: 1192px;
  max-width: 100%;
  margin: 0 auto;
  padding: 33px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

@media only screen and (max-width: 1023px) {
  .header__wrapper {
    width: 100%;
    padding: 8px 10px 5px;
  }
}

.header__logo {
  max-width: 201px;
  flex-basis: 201px;
  flex-shrink: 0;
}

@media only screen and (max-width: 1023px) {
  .header__logo {
    max-width: 93px;
    flex-basis: 93px;
  }
}

.header__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__item {
  position: relative;
  flex-shrink: 0;
}

.header__item:first-child .header__link {
  padding-inline-start: 0;
}

.header__item:last-child .header__link {
  padding-inline-end: 0;
}

.header__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #000;
}

.header__link {
  font-size: 18px;
  color: #000;
  padding-inline: 20px;
}

.header__link--account {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__link--account-login {
  padding-inline-end: 15px;
}

.header__link--account-signup {
  padding-inline-start: 15px;
}

.header__icon {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.header__icon--login {
  width: 22px;
  height: 19px;
  background-image: url(./icon-login.png);
  background-size: contain;
}

.header__icon--signup {
  width: 19px;
  height: 19px;
  background-image: url(./icon-signup.png);
  background-size: contain;
}

.header__hamburger {
  cursor: pointer;
  position: fixed;
  top: 50px;
  right: 10px;
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex-direction: column;
  justify-content: space-between;
  width: 17px;
  height: 12px;
  background: none;
  border: none;
  padding: 0;
  z-index: 12;
}

@media only screen and (max-width: 1023px) {
  .header__hamburger {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .header__hamburger {
    top: 35px;
  }
}

.header__hamburger span {
  display: block;
  height: 2px;
  background: #000;
  transform-origin: center;
  transition: all 0.3s ease;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media only screen and (max-width: 1023px) {

  .header__nav,
  .header__account {
    display: none;
  }
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  z-index: 11;
}

.header__mobile-menu.is-open {
  right: 0;
}

.header__mobile-menu .header__mobile-nav {
  margin-bottom: 40px;
}

.header__mobile-menu .header__mobile-nav .header__list {
  flex-direction: column;
}

.header__mobile-menu .header__mobile-nav .header__item {
  width: 100%;
  border-bottom: 1px solid #000;
}

.header__mobile-menu .header__mobile-nav .header__item:first-child {
  border-top: 1px solid #000;
}

.header__mobile-menu .header__mobile-nav .header__item::after {
  content: none;
}

.header__mobile-menu .header__mobile-nav .header__link {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.header__mobile-menu .header__link--account {
  border-radius: 30px;
  border: 1px solid #FF6E88;
  padding: 10px;
  margin-block-start: 15px;
  justify-content: center;
}

.hero {
  width: 1186px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px 33px;
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .hero {
    display: block;
    width: 100%;
    padding: 13px 20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .hero__image {
    width: calc(100% - 90px);
    margin: 0 auto 12px;
  }
}

.hero__rating {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border: 2px solid #E2C6BB;
  border-radius: 60px;
  margin-block-end: 7px;
  padding-inline: 16px;
}

@media only screen and (max-width: 1023px) {
  .hero__rating {
    display: flex;
    gap: 10px;
    padding-inline: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .hero__rating {
    width: calc(100% - 8px);
    margin: 0 auto 20px;
    justify-content: space-between;
    border-width: 1px;
    border-radius: 15px;
  }
}

.hero__rating-star {
  display: block;
  width: 67px;
  height: 11px;
  background-image: url("./icon-star.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .hero__rating-star {
    width: 46px;
    height: 8px;
  }
}

.hero__rating-text {
  font-size: 18px;
}

@media only screen and (max-width: 1023px) {
  .hero__rating-text {
    font-size: 13px;
    line-height: 20px;
  }
}

.hero__rating-image {
  display: block;
  width: 80px;
  height: 25px;
  background-image: url("./rating-image.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .hero__rating-image {
    width: 56px;
    height: 18px;
  }
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-block-end: 5px;
}

@media only screen and (max-width: 767px) {
  .hero__title {
    font-size: 22px;
    line-height: 31px;
    text-align: center;
    margin-block-end: 12px;
  }
}

.hero__list-label {
  font-size: 18px;
  font-weight: 700;
  color: #FF6E88;
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .hero__list-label {
    font-size: 16px;
    margin-block-end: 12px;
  }
}

.hero__list {
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .hero__list {
    margin-block-end: 18px;
  }
}

.hero__item {
  position: relative;
  font-size: 18px;
  padding-inline-start: 35px;
}

@media only screen and (max-width: 767px) {
  .hero__item {
    font-size: 14px;
    line-height: 17px;
    padding-inline-start: 30px;
  }
}

.hero__item:not(:last-child) {
  margin-block-end: 12px;
}

@media only screen and (max-width: 767px) {
  .hero__item:not(:last-child) {
    margin-block-end: 8px;
  }
}

.hero__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("./icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .hero__item::before {
    width: 15px;
    height: 15px;
  }
}

.hero__note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 2px solid #E2C6BB;
  border-radius: 15px;
  margin-block-start: 13px;
  margin-inline-end: 59px;
  padding: 10px;
}

@media only screen and (max-width: 1023px) {
  .hero__note {
    margin-inline-end: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero__note {
    gap: 20px;
    margin-block-start: 40px;
    padding: 6px 10px;
  }
}

.hero__note-icon {
  display: block;
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  flex-shrink: 0;
  background-image: url("./icon-baby.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero__note-desc {
  position: relative;
  font-size: 16px;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .hero__note-desc {
    font-size: 12px;
    line-height: 18px;
  }
}

.hero__note-desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 1px;
  height: 78%;
  background-color: #E2C6BB;
}

@media only screen and (max-width: 767px) {
  .hero__note-desc::before {
    left: -10px;
    height: 72%;
  }
}

.hero__guarantee {
  width: 380px;
}

@media only screen and (max-width: 767px) {
  .hero__guarantee {
    width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .hero__guarantee .guarantee__link {
    width: 100%;
    padding-inline: 30px;
  }
}

.mission {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
}

@media only screen and (max-width: 767px) {
  .mission {
    width: 100%;
  }
}

.mission__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 30px;
  padding-block: 50px;
  border-top: 1px solid #E2C6BB;
  border-bottom: 1px solid #E2C6BB;
}

@media only screen and (max-width: 767px) {
  .mission__wrapper {
    display: block;
    border-top: none;
    padding-block: 10px 12px;
  }
}

.mission__title {
  font-size: 40px;
  line-height: 52px;
  margin-block-end: 10px;
}

@media only screen and (max-width: 767px) {
  .mission__title {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }
}

.mission__desc {
  font-size: 20px;
  line-height: 26px;
}

@media only screen and (max-width: 767px) {
  .mission__desc {
    font-size: 16px;
    line-height: 22px;
  }
}

.mission__desc:not(:last-of-type) {
  margin-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .mission__desc:not(:last-of-type) {
    margin-block-end: 0;
  }
}

@media only screen and (max-width: 767px) {
  .mission__image {
    margin-block: 12px 17px;
  }
}

.offer {
  width: 1175px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px 42px;
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .offer {
    display: block;
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .offer__image {
    width: calc(100% - 90px);
    margin: 0 auto 17px;
  }
}

.offer__rating {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border: 2px solid #E8F6FF;
  border-radius: 60px;
  margin-block-end: 15px;
  padding-inline: 16px;
}

@media only screen and (max-width: 1023px) {
  .offer__rating {
    display: flex;
    width: 100%;
    gap: 5px;
    padding-inline: 4px;
  }
}

@media only screen and (max-width: 767px) {
  .offer__rating {
    width: calc(100% - 8px);
    margin: 0 auto 20px;
    padding-inline: 10px;
    gap: 10px;
    justify-content: space-between;
    border: 1px solid #E2C6BB;
    border-radius: 15px;
  }
}

.offer__rating-star {
  display: block;
  width: 67px;
  height: 11px;
  background-image: url("./icon-star.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .offer__rating-star {
    width: 46px;
    height: 8px;
  }
}

.offer__rating-text {
  font-size: 18px;
}

@media only screen and (max-width: 1023px) {
  .offer__rating-text {
    font-size: 13px;
    line-height: 20px;
  }
}

.offer__rating-image {
  display: block;
  width: 80px;
  height: 25px;
  background-image: url("./rating-image.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .offer__rating-image {
    width: 56px;
    height: 18px;
  }
}

.offer__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-block-end: 12px;
}

@media only screen and (max-width: 767px) {
  .offer__title {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }
}

.offer__desc {
  font-size: 23px;
  line-height: 27px;
  margin-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .offer__desc {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-block-end: 15px;
  }
}

.offer__list-label {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border-top: 1px solid #000;
  padding-block-start: 25px;
  margin-block-end: 17px;
}

@media only screen and (max-width: 767px) {
  .offer__list-label {
    font-size: 17px;
    line-height: 21px;
    padding-block-start: 15px;
    padding-inline-start: 5px;
    margin-block-end: 8px;
  }
}

.offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
  padding-inline-start: 35px;
  margin-block-end: 40px;
}

@media only screen and (max-width: 767px) {
  .offer__list {
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 7px;
    padding-inline-start: 5px;
    margin-block-end: 17px;
  }
}

.offer__item {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  padding-inline-start: 35px;
}

@media only screen and (max-width: 767px) {
  .offer__item {
    font-size: 14px;
    line-height: 24px;
    padding-inline-start: 20px;
  }
}

.offer__item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("./icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .offer__item::before {
    width: 15px;
    height: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .offer__item:nth-child(even) {
    padding-inline-start: 35px;
  }

  .offer__item:nth-child(even)::before {
    left: 15px;
  }
}

.offer__price {
  text-align: center;
}

.offer__price-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #FF0004;
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .offer__price-title {
    font-size: 25px;
    line-height: 35px;
    margin-block-end: 12px;
  }
}

.offer__price-title span {
  display: block;
  font-size: 26px;
  line-height: 36px;
  color: #9D9D9D;
}

@media only screen and (max-width: 767px) {
  .offer__price-title span {
    font-size: 18px;
    line-height: 25px;
  }
}

.offer__guarantee {
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .offer__guarantee {
    margin-block-end: 12px;
  }
}

@media only screen and (max-width: 1023px) {
  .offer__guarantee .guarantee__link {
    width: 100%;
    padding-inline: 30px;
  }
}

.offer__payment {
  width: 312px;
  margin: 0 auto 15px;
}

@media only screen and (max-width: 767px) {
  .offer__payment {
    width: calc(100% - 105px);
    margin-block-end: -5px;
  }
}

.offer__note {
  position: relative;
  display: inline-block;
  font-size: 16px;
  padding-inline-start: 25px;
}

@media only screen and (max-width: 767px) {
  .offer__note {
    font-size: 10px;
    line-height: 14px;
    padding-inline-start: 20px;
  }
}

.offer__note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  transform: translateY(-50%);
  width: 14px;
  height: 17px;
  background-image: url("./icon-lock.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .offer__note::before {
    width: 9px;
    height: 11px;
  }
}

.order-now {
  background-image: url("./offer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
  padding: 20px 20px 15px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .order-now {
    padding: 22px 20px 21px;
  }
}

.order-now__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: #fff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 767px) {
  .order-now__title {
    font-size: 20px;
    line-height: 22px;
  }
}

.order-now__title span {
  display: block;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .order-now__title span {
    font-size: 16px;
    line-height: 22px;
  }
}

.overview {
  position: relative;
  background-color: #FFF4EF;
  margin-block-start: 35px;
}

@media only screen and (max-width: 767px) {
  .overview {
    background-color: rgba(226, 198, 187, 0.1);
    margin-block-start: 5px;
  }
}

.overview::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 5px;
  left: 0;
  width: 346px;
  height: 524px;
  background-image: url("./overview-left.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .overview::before {
    content: none;
  }
}

.overview::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 20px;
  right: 0;
  width: 347px;
  height: 524px;
  background-image: url("./overview-right.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .overview::after {
    content: none;
  }
}

.overview__triangle {
  display: block;
  width: 100vw;
  height: 55px;
  background: #fff;
  margin-left: calc(50% - 50vw);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media only screen and (max-width: 767px) {
  .overview__triangle {
    height: 40px;
  }
}

.overview__wrapper {
  position: relative;
  width: 1106px;
  max-width: 100%;
  margin: 0 auto;
  padding: 92px 20px 38px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .overview__wrapper {
    width: 100%;
    padding: 40px 20px 5px;
  }
}

.overview__wrapper::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 53px;
  height: 93px;
  background-image: url("./icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .overview__wrapper::before {
    width: 29px;
    height: 52px;
    top: -30px;
  }
}

.overview__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .overview__title {
    font-size: 26px;
    line-height: 30px;
    margin-block-end: 13px;
  }
}

.overview__desc {
  font-size: 20px;
  line-height: 28px;
  margin-block-end: 38px;
}

@media only screen and (max-width: 767px) {
  .overview__desc {
    font-size: 16px;
    line-height: 22px;
    margin-block-end: 15px;
  }
}

.overview__image {
  width: 714px;
  max-width: 100%;
  margin: 0 auto 43px;
}

@media only screen and (max-width: 767px) {
  .overview__image {
    width: 100%;
    margin-block-end: 20px;
  }
}

.problem {
  width: 1192px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .problem {
    width: 100%;
  }
}

.problem__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: #FF0000;
  text-align: center;
  margin-block-end: 35px;
}

@media only screen and (max-width: 767px) {
  .problem__title {
    font-size: 20px;
    line-height: 26px;
    margin-block-end: 12px;
  }
}

.problem__title span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .problem__title span {
    font-size: 18px;
    line-height: 22px;
    margin-block-end: 10px;
  }
}

.problem__list {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 47px;
  margin-block-end: 25px;
}

@media only screen and (max-width: 1023px) {
  .problem__list {
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .problem__list {
    grid-template-columns: 1fr;
    margin-block-end: 15px;
  }
}

.problem__item {
  height: 100%;
}

.problem__card {
  position: relative;
  height: 100%;
  border: 2px solid #E2C6BB;
  border-radius: 15px;
  padding: 15px 10px 22px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .problem__card {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 20px;
    padding: 12px 10px 10px;
    text-align: left;
  }
}

.problem__card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background-image: url("./icon-cross.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .problem__card::before {
    content: none;
  }
}

.problem__card-image {
  padding-inline: 5px;
  margin-block-end: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .problem__card-image {
    padding-inline: 0;
    margin-block: 3px 0;
  }
}

.problem__card-image img {
  border-radius: 15px;
}

.problem__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .problem__card-title {
    font-size: 14px;
    line-height: 19px;
    margin-block-end: 2px;
  }
}

.problem__card-desc {
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .problem__card-desc {
    font-size: 14px;
    line-height: 19px;
  }
}

.problem__desc {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #FF6E88;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .problem__desc {
    font-size: 20px;
    line-height: 26px;
  }
}

.promo {
  background-color: #FF6E88;
  padding: 6px 20px 3px;
}

@media only screen and (max-width: 767px) {
  .promo {
    padding-block: 0;
  }
}

.promo__desc {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .promo__desc {
    font-size: 11px;
    line-height: 21px;
  }
}

.reviews {
  background-color: #FFF4EF;
}

.reviews__wrapper {
  width: 1148px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px 41px;
}

@media only screen and (max-width: 767px) {
  .reviews__wrapper {
    width: 100%;
    padding: 15px 20px;
  }
}

.reviews__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-block-end: 15px;
}

@media only screen and (max-width: 767px) {
  .reviews__title {
    font-size: 26px;
    line-height: 30px;
  }
}

.reviews__title span {
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #FF6E88;
  margin-block-end: 17px;
}

@media only screen and (max-width: 767px) {
  .reviews__title span {
    font-size: 18px;
    line-height: 22px;
    margin-block-end: 13px;
  }
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-block-end: 60px;
}

@media only screen and (max-width: 767px) {
  .reviews__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-block-end: 35px;
  }
}

.reviews__item {
  height: 100%;
}

.reviews__card {
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 767px) {
  .reviews__card {
    padding-inline-end: 25px;
  }
}

.reviews__card-star {
  display: block;
  width: 104px;
  height: 17px;
  background-image: url("./icon-star.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .reviews__card-star {
    width: 50px;
    height: 8px;
    margin-block-end: 10px;
  }
}

.reviews__card-desc {
  font-size: 20px;
  line-height: 28px;
  margin-block-end: 25px;
}

@media only screen and (max-width: 767px) {
  .reviews__card-desc {
    font-size: 16px;
    line-height: 22px;
    font-style: italic;
    margin-block-end: 8px;
  }
}

.reviews__card-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 1023px) {
  .reviews__card-author {
    gap: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__card-author {
    gap: 15px;
  }
}

.reviews__card-image {
  max-width: 62px;
  flex-basis: 62px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .reviews__card-image {
    max-width: 35px;
    flex-basis: 35px;
  }
}

.reviews__card-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  .reviews__card-name {
    font-size: 15px;
    line-height: 17px;
  }
}

.reviews__card-verified {
  position: relative;
  display: block;
  padding-inline-start: 29px;
  margin-block-start: -3px;
  font-size: 14px;
  color: #04B662;
}

@media only screen and (max-width: 1023px) {
  .reviews__card-verified {
    padding-inline-start: 20px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__card-verified {
    font-size: 11px;
    line-height: 11px;
    padding-inline-start: 22px;
    margin-block-start: 5px;
  }
}

.reviews__card-verified::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 15px;
  background-image: url("./icon-verified.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .reviews__card-verified::before {
    width: 12px;
    height: 13px;
  }
}

.reviews__guarantee {
  text-align: center;
}

.science {
  width: 1192px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 20px;
}

@media only screen and (max-width: 767px) {
  .science {
    width: 100%;
    padding: 15px 20px;
  }
}

.science__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-block-end: 8px;
}

@media only screen and (max-width: 767px) {
  .science__title {
    font-size: 26px;
    line-height: 31px;
    margin-block-end: 5px;
  }
}

.science__title span {
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #FF6E88;
  margin-block-end: 8px;
}

@media only screen and (max-width: 767px) {
  .science__title span {
    font-size: 18px;
    margin-block-end: 0;
  }
}

.science__desc {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin-block-end: 45px;
}

@media only screen and (max-width: 767px) {
  .science__desc {
    font-size: 16px;
    line-height: 22px;
    margin-block-end: 27px;
  }
}

.science__list {
  counter-reset: item;
  padding-inline: 55px;
  margin-block-end: 50px;
}

@media only screen and (max-width: 1023px) {
  .science__list {
    padding-inline: 0;
  }
}

@media only screen and (max-width: 767px) {
  .science__list {
    margin-block-end: 20px;
  }
}

.science__item {
  counter-increment: item;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .science__item::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 17px;
    height: 91%;
    border-left: 2px dotted #000;
  }
}

@media only screen and (max-width: 767px) {
  .science__item:last-child::before {
    height: 85%;
  }
}

.science__item:not(:last-child) {
  margin-block-end: 50px;
}

@media only screen and (max-width: 767px) {
  .science__item:not(:last-child) {
    margin-block-end: 23px;
  }
}

.science__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .science__card {
    display: block;
    padding-inline: 56px 28px;
  }
}

.science__card--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.science__card--reverse .science__card-content {
  order: 2;
}

.science__card--reverse .science__card-image {
  order: 1;
}

.science__card-content {
  position: relative;
  padding-inline: 70px 92px;
}

@media only screen and (max-width: 1023px) {
  .science__card-content {
    padding-inline-end: 0;
  }
}

@media only screen and (max-width: 767px) {
  .science__card-content {
    padding-inline: 0;
  }
}

.science__card-content::before {
  content: counter(item);
  position: absolute;
  top: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e2c6bb;
  font-size: 32px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .science__card-content::before {
    width: 35px;
    height: 35px;
    top: 5px;
    left: -56px;
    font-size: 22px;
  }
}

.science__card-title {
  font-size: 32px;
  line-height: 48px;
  margin-block-end: 5px;
}

@media only screen and (max-width: 767px) {
  .science__card-title {
    font-size: 20px;
    line-height: 30px;
    margin-block-end: 15px;
  }
}

.science__card-desc {
  font-size: 20px;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  .science__card-desc {
    font-size: 16px;
  }
}

.science__card-image {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .science__card-image {
    margin-block-end: 12px;
  }
}

.science__card-image img {
  border-radius: 15px;
}

.science__guarantee {
  text-align: center;
}
