:root {
  --main-font: "Work Sans";
  --title-font: "Crimson Text";
  --green: #013329;
  --green-light: #175044;
  --green-system: #008d5e;
  --red-system: #ef0000;
  --black: #000000;
  --white: #fff;
}

/*** 

====================================================================
	Reset
====================================================================

***/
html {
  scroll-behavior: smooth;
}

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

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

b {
  font-weight: 600;
}

/*** 
  ====================================================================
      Global Settings
  ====================================================================
   ***/
body {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1276px;
  margin: 0 auto;
  padding: 0 30px;
}

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

@media (max-width: 1024px) {
  .auto__container {
    padding: 0 16px;
  }
}
@media (max-width: 540px) {
  .auto__container {
    padding: 0 16px;
  }
}
h1 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 60px;
  line-height: 105%;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: var(--green);
}
h1 span {
  font-weight: 600;
  font-style: italic;
}

h2 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: var(--green);
}
h2 span {
  font-style: italic;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
h2 span.no-line::before {
  display: none;
}
h2 span::before {
  position: absolute;
  content: "";
  bottom: 10%;
  left: 0;
  width: 100%;
  border-radius: 4px;
  height: 3px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
h2 span.uniq {
  color: var(--red-system);
}
h2 span.uniq::before {
  display: none;
}

h3 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 34px;
  line-height: 130%;
  color: var(--green-light);
}

h4 {
  font-weight: 600;
  font-size: 26px;
  line-height: 140%;
  text-transform: uppercase;
}
h4 span {
  position: relative;
}
h4 span::before {
  position: absolute;
  content: "";
  bottom: 10%;
  left: 0;
  width: 100%;
  border-radius: 4px;
  height: 3px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}

h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  color: #000000;
}

p.sm {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
p.xsm {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
p.med {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}

.box {
  position: relative;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.box:last-child {
  margin-bottom: 0;
}
.box p {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.box p:last-child {
  margin-bottom: 0;
}
.box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.box::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 4px;
  background: var(--white);
  content: "";
}
.box span.gold {
  background: linear-gradient(270.46deg, rgba(200, 137, 129, 0.86) -41.39%, rgba(247, 242, 231, 0.86) 68.07%, rgba(216, 177, 167, 0.86) 110.95%, rgba(212, 152, 145, 0.86) 137.41%), #ffffff;
  border-radius: 4px;
  font-weight: 700;
}

.goldInfo {
  padding: 12px 16px;
  margin-bottom: 16px;
}
.goldInfo:last-child {
  margin-bottom: 0;
}
.goldInfo {
  background: linear-gradient(270.46deg, rgba(200, 137, 129, 0.86) -41.39%, rgba(247, 242, 231, 0.86) 68.07%, rgba(216, 177, 167, 0.86) 110.95%, rgba(212, 152, 145, 0.86) 137.41%), #ffffff;
  border-radius: 4px;
}
.goldInfo p {
  margin-bottom: 16px;
}
.goldInfo p:last-child {
  margin-bottom: 0;
}

.attent {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #ffedec;
  border: 1px solid #ef0000;
  border-radius: 4px;
  margin-bottom: 20px;
}
.attent.solid svg {
  fill: #ef0000;
  stroke: #fff;
  stroke-width: 1.75px;
}
.attent:last-child {
  margin-bottom: 0;
}
.attent svg {
  width: 24px;
  height: 24px;
}
.attent span {
  flex: 1;
  margin-left: 12px;
}

.infoWhite {
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--white);
  margin-bottom: 16px;
}
.infoWhite:last-child {
  margin-bottom: 0;
}
.infoWhite__item {
  display: flex;
  align-items: center;
}
.infoWhite__item span {
  margin-left: 12px;
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  color: #000000;
}
.infoWhite__item svg {
  width: 24px;
  height: 24px;
}

.lucide-icon {
  width: 100%;
  height: 100%;
  max-width: 32px;
  max-height: 32px;
}

.cta {
  border-radius: 100px;
  padding: 15px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
}
.cta.sm {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  padding: 9px;
}
.cta img {
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 12px;
  position: relative;
  z-index: 1;
}
.cta span {
  position: relative;
  z-index: 1;
}
.cta::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: linear-gradient(268.52deg, #02493b 10.17%, #013329 64.53%, #100b0d 98.74%);
}
.cta::after {
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(268.52deg, #100b0d 1.26%, #013329 35.47%, #02493b 89.83%);
  border-radius: 100px;
}
.cta:disabled {
  background: #999999;
  pointer-events: none;
}
.cta:disabled::before {
  opacity: 0;
}
.cta:disabled::after {
  opacity: 0;
}
.cta:hover::before {
  opacity: 1;
}
.cta:hover::after {
  opacity: 1;
}

.redList {
  margin-bottom: 16px;
}
.redList:last-child {
  margin-bottom: 0;
}
.redList p {
  margin-bottom: 8px;
}
.redList ul {
  padding: 16px 12px;
  background: #ffe1e1;
  border: 1px solid #ef0000;
  border-radius: 4px;
  margin-bottom: 16px;
}
.redList ul:last-child {
  margin-bottom: 0;
}
.redList li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  color: #000000;
  margin-bottom: 8px;
}
.redList li p {
  margin-left: 12px;
  flex: 1;
}
.redList li:last-child {
  margin-bottom: 0;
}
.redList li span {
  flex: 1;
  font-style: italic;
  margin-left: 12px;
}
.redList li svg {
  width: 24px;
  height: 24px;
}

.addBtn {
  display: inline-block;
  cursor: pointer;
  padding: 7px 12px;
  border: 1px solid var(--green);
  border-radius: 100px;
  color: #013329;
  background: transparent;
}
.addBtn:hover {
  background: linear-gradient(268.52deg, #02493b 10.17%, #013329 64.53%, #100b0d 98.74%);
  color: var(--white);
}
.addBtn.sm {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
}

.applePay {
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 100px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.applePay:hover {
  opacity: 0.6;
}
.applePay img {
  width: 60px;
}

.googlePay {
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 100px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.googlePay:hover {
  opacity: 0.6;
}
.googlePay img {
  width: 60px;
}

.main {
  overflow: hidden;
}

.countdown {
  margin-bottom: 40px;
}
.countdown:last-child {
  margin-bottom: 0;
}
.countdown__title {
  margin-bottom: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  line-height: 140%;
  text-transform: uppercase;
  color: #175044;
}
.countdown__inner {
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #ef0000;
  border-bottom: 1px solid #ef0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  color: #000000;
  padding: 8px;
}
.countdown__inner span {
  margin-left: 12px;
  font-weight: 600;
  font-size: 25px;
  line-height: 140%;
  color: #ff2d2d;
}
.countdown__inner {
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
}
.countdown__inner img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: 12px;
}

.kit {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}
.kit:last-child {
  margin-bottom: 0;
}
.kit.active .kit__inner {
  border: 1px solid var(--green);
}
.kit.popular .kit__inner {
  background: #ffedec;
}
.kit.popular .kit__badge {
  background: linear-gradient(268.52deg, #02493b 10.17%, #013329 64.53%, #100b0d 98.74%);
}
.kit.best .kit__inner {
  background: #ffedec;
}
.kit.best .kit__badge {
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  color: var(--green);
  border-radius: 6px 6px 0px 0px;
}
.kit__badge {
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: 6px 6px 0px 0px;
  font-weight: 600;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff;
}
.kit__inner {
  position: relative;
  padding: 16px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 4px;
}
.kit__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.kit__info-title {
  font-family: "Crimson Text";
  font-weight: 600;
  font-size: 25px;
  line-height: 130%;
  color: #000000;
}
.kit__info-price {
  font-family: "Work Sans";
  font-weight: 600;
  font-size: 19px;
  line-height: 140%;
  color: #ef0000;
}
.kit__info-price span {
  font-weight: 500;
  font-size: 19px;
  line-height: 140%;
  text-decoration-line: line-through;
  margin-left: 6px;
  display: inline-block;
  color: #999999;
}
.kit__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kit__save {
  padding: 3px 8px;
  background: #008d5e;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
}
.kit__tag {
  padding: 4px 8px 3px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}
.kit__tag.green {
  background: linear-gradient(90deg, #dff6f2 0%, #c9eae5 100%);
}
.kit__tag.blue {
  background: linear-gradient(90deg, #dcf4fe 0%, #9ad4eb 100%);
  border-radius: 3px;
}
.kit__tag.red {
  color: #fff;
  background: linear-gradient(90deg, #d6707c 0%, #ad4d58 100%);
}

@media (max-width: 1340px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 1240px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 20px;
  }
  body {
    font-size: 16px;
  }
  p.med {
    font-size: 18px;
  }
  .cta {
    font-size: 16px;
    padding: 12px;
  }
  .cta img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 35px;
  }
  body {
    font-size: 18px;
  }
  h4 {
    font-size: 20px;
    line-height: 140%;
  }
  p.xsm {
    font-size: 12px;
  }
  .redList ul {
    padding: 12px 8px;
  }
}
.footer {
  background: var(--green);
  color: var(--white);
}
.footer__copy {
  display: none;
}
.footer__inner {
  padding: 48px 0 32px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #175044;
}
.footer__inner-logo {
  display: flex;
  width: 100%;
  max-width: 190px;
  margin-bottom: 32px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-content {
  width: 35%;
}
.footer__inner-links {
  width: 25%;
}
.footer__inner-links a {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
}
.footer__inner-links a:last-child {
  margin-bottom: 0;
}
.footer__inner-contact {
  width: 40%;
}
.footer__inner-contact-item {
  margin-bottom: 16px;
}
.footer__inner-contact-item p {
  margin-bottom: 8px;
}
.footer__inner-contact-item p a {
  color: var(--white);
}
.footer__inner-contact-item p:last-child {
  margin-bottom: 0;
}
.footer__inner-contact-item:last-child {
  margin-bottom: 0;
}
.footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0;
}
.footer__payments-item {
  display: flex;
  margin: 4px;
  width: calc(7.5% - 8px);
  max-width: 38px;
}
.footer__payments-item img {
  width: 100%;
}
.footer h4 {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .footer__inner-logo {
    width: 120px;
  }
}
@media (max-width: 840px) {
  .footer__copy {
    display: block;
    text-align: center;
    border-top: 1px solid #175044;
    padding: 32px 0 20px 0;
  }
  .footer__inner {
    flex-wrap: wrap;
  }
  .footer__inner-links {
    width: 50%;
  }
  .footer__inner-contact {
    width: 50%;
  }
  .footer__inner-content {
    width: 100%;
    margin-bottom: 20px;
    max-width: unset;
  }
  .footer__inner-content p {
    display: none;
  }
}
@media (max-width: 540px) {
  .footer__payments-item {
    width: 14.2%;
  }
  .footer__inner {
    padding: 32px 0 0 0;
    border-bottom: unset;
  }
  .footer__inner-logo {
    margin: 0 auto 32px auto;
    width: 117px;
  }
  .footer__inner-links {
    width: 100%;
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #175044;
  }
  .footer__inner-contact {
    width: 100%;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid #175044;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header.sticky {
  animation: 0.2s linear sticky;
  position: fixed;
  background: var(--white);
}
.header.sticky .upheader {
  position: relative;
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.upheader {
  background: var(--green);
  padding: 8px 0;
  color: var(--white);
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.upheader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.upheader__tag {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  padding: 0 20px;
  border-right: 1px solid var(--white);
}
.upheader__tag:last-child {
  border-right: 0;
}
.upheader__tag span {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.upheader__tag img {
  width: 80px;
  margin-right: 8px;
}

.downheader {
  padding: 16px 0;
}
.downheader.white {
  background: var(--white);
}
.downheader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.downheader__inner-btns {
  display: flex;
  align-items: center;
}
.downheader__inner-btns .downheader__inner-cart {
  margin-left: 32px;
}
.downheader__inner-search {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.downheader__inner-logo {
  width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.downheader__inner-logo img {
  width: 100%;
}
.downheader__inner-cart {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.downheader__inner-cart span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 100px;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uniheader {
  padding: 16px 0 24px 0;
}
.uniheader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.uniheader__inner-logo {
  width: 116px;
  display: flex;
  margin: 0 auto 20px auto;
}
.uniheader__inner-logo img {
  width: 100%;
}
.uniheader__inner-teens {
  position: relative;
  padding: 4px 12px 4px 6px;
  display: flex;
  align-items: center;
}
.uniheader__inner-teens img {
  position: relative;
  z-index: 1;
  width: 104px;
  margin-right: 12px;
}
.uniheader__inner-teens p {
  position: relative;
  z-index: 1;
}
.uniheader__inner-teens p.mob {
  display: none;
}
.uniheader__inner-teens::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.uniheader__inner-teens::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50px;
  background: var(--white);
  content: "";
}

@media (max-width: 768px) {
  .upheader__tag {
    flex-direction: column;
    text-align: center;
  }
  .upheader__tag span {
    margin: 0;
  }
  .upheader__tag img {
    margin: 0;
  }
  .uniheader {
    padding: 16px 20px;
  }
  .uniheader__inner-logo {
    width: 92px;
    margin-bottom: 8px;
  }
  .uniheader__inner-teens img {
    width: 88px;
  }
  .uniheader__inner-teens p {
    display: none;
  }
  .uniheader__inner-teens p.mob {
    display: block;
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .upheader__tag {
    font-size: 10px;
    padding: 0;
    width: 33.3%;
  }
  .upheader__tag svg {
    width: 16px;
    height: 16px;
  }
  .downheader {
    padding: 12px 0;
  }
  .downheader__inner-logo {
    width: 92px;
  }
  .downheader__inner-search {
    width: 24px;
    height: 24px;
  }
  .downheader__inner-cart {
    width: 24px;
    height: 24px;
  }
  .downheader__inner-cart span {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
}
@keyframes sticky {
  0% {
    top: -30px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.partners {
  padding: 56px 0;
  overflow: hidden;
}
.partners h2 {
  text-align: center;
  margin-bottom: 22px;
}
.partners h4 {
  text-align: center;
  margin-bottom: 22px;
}
.partners__action {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.partners .swiper-button-next {
  position: static;
  width: 40px;
  margin: 0;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.partners .swiper-button-next::before, .partners .swiper-button-next::after {
  display: none;
}
.partners .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.partners .swiper-button-next:active {
  background: var(--green);
  color: var(--white);
}
.partners .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin: 0;
}
.partners .swiper-button-prev::before, .partners .swiper-button-prev::after {
  display: none;
}
.partners .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.partners .swiper-button-prev:active {
  background: var(--green);
  color: var(--white);
}
.partners .swiper-pagination {
  position: static;
  margin: 0 40px;
  transform: unset;
  display: flex;
  align-items: center;
  width: unset !important;
}
.partners .swiper-pagination-bullet-active {
  background: var(--green);
}
.partners .swiper-slide {
  height: auto;
  flex-direction: column;
  display: flex;
}
.partners .swiper-slide:last-child .partners__item {
  height: 100%;
}
.partners__item {
  padding: 16px 12px;
  position: relative;
  margin: 0 0 20px 0;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
  border-radius: 6px;
  flex: 1;
}
.partners__item:last-child {
  margin-bottom: 0;
}
.partners__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.partners__item::after {
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 6px;
  background: var(--white);
  content: "";
}
.partners__item-logo {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
}
.partners__item-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners__item p {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (max-width: 1240px) {
  .partners__action {
    display: flex;
  }
}
@media (max-width: 540px) {
  .partners {
    padding: 32px 0;
  }
  .partners__action {
    justify-content: space-between;
  }
  .partners .swiper-slide:last-child .partners__item-logo {
    height: 109px;
  }
  .partners__item-logo {
    width: auto;
    margin: 0 0 12px 0;
    height: 40px;
  }
  .partners__item-logo img {
    width: auto;
  }
  .partners__item p {
    text-align: left;
  }
}
.prove {
  padding: 64px 0;
  background: #ffedec;
  border-radius: 28px;
  overflow: hidden;
}
.prove.reverse {
  background: linear-gradient(179.7deg, #ffffff 2.2%, #fffbf8 33.03%, #ffedec 99.77%);
}
.prove__teens {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.prove__teens img {
  width: 104px;
  margin-right: 12px;
}
.prove__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.prove__head {
  max-width: 804px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.prove__head-stars {
  width: 180px;
  display: flex;
  margin: 0 auto;
}
.prove__head-stars img {
  width: 100%;
}
.prove h2 {
  margin-bottom: 8px;
}
.prove .swiper-button-next {
  position: static;
  width: 40px;
  margin: 0;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.prove .swiper-button-next::before, .prove .swiper-button-next::after {
  display: none;
}
.prove .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.prove .swiper-button-next:active {
  background: var(--green);
  color: var(--white);
}
.prove .swiper-button-next:hover {
  background: var(--green-light);
  color: var(--white);
}
.prove .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin: 0;
}
.prove .swiper-button-prev::before, .prove .swiper-button-prev::after {
  display: none;
}
.prove .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.prove .swiper-button-prev:active {
  background: var(--green);
  color: var(--white);
}
.prove .swiper-button-prev:hover {
  background: var(--green-light);
  color: var(--white);
}
.prove .swiper-pagination {
  position: static;
  margin: 0 54px;
  transform: unset;
  display: flex;
  align-items: center;
  width: unset !important;
}
.prove .swiper-pagination-bullet-active {
  background: var(--green);
}
.prove .swiper-slide {
  height: auto;
  flex-direction: column;
  display: flex;
}
.prove .swiper-slide:last-child .partners__item {
  height: 100%;
}
.prove__item {
  padding: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  border-radius: 20px;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
}
.prove__item-image {
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  display: flex;
}
.prove__item-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 540px) {
  .prove {
    padding: 32px 0;
  }
  .prove__teens img {
    width: 88px;
    margin-right: 8px;
  }
  .prove__teens p {
    font-size: 14px;
  }
  .prove .swiper-pagination {
    margin: 0 10px;
  }
  .prove h2 {
    max-width: 343px;
    margin: 0 auto 8px auto;
  }
  .prove__head {
    margin-bottom: 24px;
  }
  .prove__head-stars {
    width: 100px;
  }
  .prove__inner-image {
    max-width: 156px;
  }
}
/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.input {
  position: relative;
}
.input__outer {
  margin-bottom: 12px;
}
.input input {
  width: 100%;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
}
.input input:disabled {
  background: #f2f3f7;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
}
.input input::placeholder {
  color: #717171;
}
.input select {
  width: 100%;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}
.input select::-ms-expand {
  display: none;
}
.input select:disabled {
  background: #f2f3f7;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
}
.input select::placeholder {
  color: #717171;
}
.input.icon--right input,
.input.icon--right select {
  padding-right: 50px;
}
.input.icon--left input {
  padding-left: 50px;
}
.input__error {
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #ef0000;
  margin-top: 2px;
}
.input .icon {
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 16px;
}
.input .icon.icon--left {
  right: unset;
  left: 16px;
}
.input .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.input.float label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #717171;
  transition: 0.2s ease all;
  pointer-events: none;
}
.input.float input:focus,
.input.float input:not(:placeholder-shown) {
  padding: 18.5px 16px 3.5px 16px;
}
.input.float input:focus ~ label,
.input.float input:not(:placeholder-shown) ~ label {
  top: 3.5px;
  transform: translateY(0);
  font-size: 12px;
}
.input.float input:-webkit-autofill ~ label {
  top: 3.5px;
  transform: translateY(0);
  font-size: 12px;
}
.input.float select:focus,
.input.float select:not(:placeholder-shown) {
  padding: 18.5px 16px 3.5px 16px;
}
.input.float select:focus ~ label,
.input.float select:not(:placeholder-shown) ~ label {
  top: 3.5px;
  transform: translateY(0);
  font-size: 12px;
}
.input.float select:-webkit-autofill ~ label {
  top: 3.5px;
  transform: translateY(0);
  font-size: 12px;
}

.check {
  position: relative;
  margin: 8px 0;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  cursor: pointer;
  height: 100%;
  opacity: 0;
}
.check input:checked + label::before {
  border: 1px solid var(--green);
  background: var(--green);
}
.check input:checked + label::after {
  opacity: 1;
}
.check label {
  position: relative;
  padding-left: 28px;
  display: block;
}
.check label::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #b9b9b9;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.check label::after {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  left: 7px;
  width: 4px;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 8px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.method__form {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 0 16px;
  background: #f2f3f7;
}
.method__form.active {
  display: block;
  padding: 16px;
  opacity: 1;
  max-height: 500px;
}
.method__item {
  cursor: pointer;
  position: relative;
}
.method__item-image {
  height: 24px;
  display: flex;
}
.method__item-image img {
  height: 100%;
}
.method__item-icon {
  width: 24px;
  height: 24px;
  display: flex;
}
.method__item-save {
  padding: 3px 8px;
  background: #008d5e;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: #ffffff;
}
.method__item:first-child .method__item-inner {
  border-radius: 6px 6px 0 0;
}
.method__item:last-child .method__item-inner {
  border-radius: 0 0 6px 6px;
}
.method__item input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  cursor: pointer;
  height: 100%;
  opacity: 0;
}
.method__item input:checked ~ .method__item-inner {
  border: 1px solid var(--green);
}
.method__item input:checked ~ .method__item-inner span {
  border: 1px solid var(--green);
}
.method__item input:checked ~ .method__item-inner span::before {
  opacity: 1;
}
.method__item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border: 1px solid #b9b9b9;
}
.method__item-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}
.method__item-title {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.method__item-title span {
  width: 20px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 20px;
  border-radius: 50%;
  position: relative;
  display: flex;
  border: 1px solid #b9b9b9;
  margin-right: 12px;
}
.method__item-title span:before {
  width: 10px;
  height: 10px;
  position: absolute;
  content: "";
  top: 50%;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: var(--green);
  border-radius: 50%;
}
.method__item-title p {
  margin: 0 !important;
}
.method__item-title p small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #000000;
}

@media (max-width: 540px) {
  .check label {
    font-size: 14px;
    line-height: 18px;
  }
}
.cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.cart.active {
  opacity: 1;
  visibility: visible;
}
.cart.active .cart__inner {
  transform: translate(0, 0);
  -moz-ransform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.cart__inner {
  transform: translateX(100%);
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.cart__head {
  padding: 24px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart__head-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.cart__head-close svg {
  pointer-events: none;
}
.cart__head-close:hover {
  opacity: 0.6;
}
.cart__head-logo {
  display: none;
}
.cart__head-teens {
  position: relative;
  padding: 4px 12px 4px 6px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.cart__head-teens img {
  position: relative;
  z-index: 1;
  width: 104px;
  margin-right: 12px;
}
.cart__head-teens p {
  position: relative;
  z-index: 1;
}
.cart__head-teens p.mob {
  display: none;
}
.cart__head-teens::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.cart__head-teens::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50px;
  background: var(--white);
  content: "";
}
.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart__body-back {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #013329;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 12px;
}
.cart__body-back:last-child {
  margin-bottom: 0;
}
.cart__body-back:hover {
  opacity: 0.6;
}
.cart__body-back svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.cart__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 607px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(171.28deg, #ffedec -2.91%, #fffbf8 20.17%, #ffffff 38.19%, #ffffff 61.65%), #ffffff;
}
.cart__foot {
  position: sticky;
  bottom: 0;
  left: 0;
}
.cart__foot-note {
  padding: 3px;
  background: var(--green-light);
  color: var(--white);
  text-align: center;
}
.cart__action {
  padding: 0 24px;
}
.cart__action .cta {
  margin-bottom: 14px;
}
.cart__action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.cart__action-items {
  margin-bottom: 16px;
}
.cart__action-item:last-child {
  margin-bottom: 0;
}
.cart__action-item-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
}
.cart__action-item-save {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-system);
}
.cart__action-item-price {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: #000000;
}
.cart__action-item-price small {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration-line: line-through;
  color: #ef0000;
  display: inline-block;
  margin-right: 8px;
}
.cart__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 0 20px;
}
.cart__payments-item {
  display: flex;
  margin: 4px;
  width: calc(10% - 8px);
  max-width: 38px;
}
.cart__payments-item img {
  width: 100%;
}
.cart__guarantee {
  display: flex;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: linear-gradient(169.83deg, #ffedec -2.25%, #ffffff 37.87%, #fffbf8 85.09%, #ffedec 102.07%);
  border-radius: 16px 16px 0px 0px;
  transition: opacity 0.25s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}
.cart__guarantee.cart__guarantee--hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.cart__guarantee-image {
  width: 92px;
  display: flex;
  margin-right: 8px;
}
.cart__guarantee-image img {
  width: 100%;
}
.cart__guarantee-content {
  width: calc(100% - 100px);
}
.cart__guarantee-content p b {
  margin-bottom: 8px;
  display: block;
}

.cartLine {
  display: flex;
  margin-bottom: 16px;
}
.cartLine:last-child {
  margin-bottom: 0;
}
.cartLine__image {
  width: 96px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
.cartLine__image img {
  width: 100%;
}
.cartLine__info {
  flex: 1;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.cartLine__info-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cartLine__info-btns {
  display: flex;
  align-items: center;
}
.cartLine__info-delete {
  width: 24px;
  height: 24px;
  display: flex;
  margin-left: 32px;
}
.cartLine__info-delete .cart-delete-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
}
.cart-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--main-font);
}
.cart-confirm-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.cart-confirm-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #013329;
  margin-bottom: 12px;
}
.cart-confirm-text {
  color: #013329;
  margin-bottom: 20px;
}
.cart-confirm-text strong {
  font-weight: 600;
}
.cart-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cart-confirm-cancel {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid #013329;
  background: transparent;
  color: #013329;
  cursor: pointer;
}
.cart-confirm-remove.cta {
  flex: 0 0 auto;
  color: #ffffff !important;
  background: #013329 !important;
  position: relative;
  z-index: 1;
}
.cart-confirm-remove.cta::before,
.cart-confirm-remove.cta::after {
  display: none !important;
}
.cart-confirm-remove-text,
.cart-confirm-actions .cart-confirm-remove {
  color: #ffffff !important;
}
.cart-confirm-actions .cart-confirm-remove .cart-confirm-remove-text {
  color: #ffffff !important;
}
.cartLine__info-title {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #013329;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartLine__info-save {
  padding: 3px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  background: #008d5e;
  border-radius: 3px;
}
.cartLine__info-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #013329;
  margin-bottom: 4px;
}
.cartLine__info-price small {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  display: inline-block;
  margin-left: 8px;
  color: #64748b;
}
.cartLine__info-price .cartLine__compare-at {
  text-decoration: line-through;
  color: #ef0000;
  font-weight: 400;
}

.spinbox {
  display: flex;
}
.spinbox button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: transparent;
}
.spinbox input {
  background: transparent;
  box-shadow: unset;
  width: 24px;
  height: 24px;
  text-align: center;
  font-family: "Work Sans";
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}

.cartMight {
  position: relative;
  border-radius: 12px;
  padding: 8px;
  margin-top: 28px;
  margin-bottom: 12px;
}
.cartMight:last-child {
  margin-bottom: 0;
}
.cartMight__scroll {
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cartMight__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cartMight__title {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: #013329;
  margin-bottom: 8px;
}
.cartMight__inner {
  display: flex;
  position: relative;
  z-index: 1;
}
.cartMight__image {
  width: 88px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
.cartMight__image img {
  width: 100%;
}
.cartMight__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cartMight__info-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #013329;
  margin: 2px;
}
.cartMight__info-price {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #013329;
  margin-bottom: 2px;
}
.cartMight::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.cartMight::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 12px;
  background: var(--white);
  content: "";
}

.rate {
  display: flex;
  align-items: center;
}
.rate__number {
  margin-left: 8px;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #000000;
}
.rate__inner {
  position: relative;
  width: 58px;
  height: 9px;
  background: url(../images/icons/starEmpty.svg);
  background-size: 100% 100%;
}
.rate__inner-full {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  background: url(../images/icons/starFull.svg);
  background-size: 58px 9px;
}

.freeShip {
  text-align: center;
  width: 100%;
}
.freeShip p.sm {
  margin-bottom: 10px;
}
.freeShip__range {
  width: 100%;
  height: 3px;
  position: relative;
  background: linear-gradient(268.52deg, #02493b 10.17%, #013329 64.53%, #100b0d 98.74%);
  border-radius: 100px 0px 0px 100px;
  margin-bottom: 10px;
  overflow: visible;
}
.freeShip__range-van {
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013329;
  background: #fff;
  border: 2px solid #008d5e;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: none;
}
.freeShip__range-van.animate {
  opacity: 1;
  visibility: visible;
}
.freeShip__range-van svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.freeShip__range-thumb {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.freeShip__range-thumb svg {
  width: 14px;
  height: 14px;
  stroke-width: 2px;
}
.freeShip__note {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #000000;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-out;
}
.freeShip__note.visible {
  opacity: 1;
  visibility: visible;
}
.freeShip__note.blink {
  animation: freeShipNoteBlink 1s ease-in-out 3;
}
@keyframes freeShipNoteBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.freeShip__note svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

@media (max-width: 650px) {
  .cart__body {
    padding: 16px;
  }
  .cart__head {
    padding: 12px 16px 0 16px;
  }
  .cart__head-teens img {
    width: 88px;
    margin-right: 8px;
  }
  .cart__head-teens p {
    display: none;
    font-size: 14px;
  }
  .cart__head-teens p.mob {
    display: block;
  }
  .cart__head-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart__head-logo {
    width: 92px;
    display: flex;
    margin-bottom: 8px;
  }
  .cart__head-logo img {
    width: 100%;
  }
  .cart__guarantee {
    padding: 8px 16px;
  }
  .cart__guarantee-image {
    width: 84px;
  }
  .cart__guarantee-content p {
    font-size: 12px;
  }
  .cart__guarantee-content p b {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .cart__action-item-title {
    font-size: 16px;
  }
  .cart__action-item-price {
    font-size: 18px;
  }
  .cart__action-item-price small {
    font-size: 12px;
    margin-right: 6px;
  }
  .cart__action-item-save {
    font-size: 16px;
  }
  .cartLine__image {
    width: 89px;
  }
  .cartLine__info {
    flex: 1;
    margin-left: 20px;
  }
  .cartLine__info-save {
    font-size: 12px;
  }
  .cartLine__info-delete {
    width: 16px;
    height: 16px;
  }
  .cartLine__info-price {
    font-size: 14px;
  }
  .cartLine__info-price small {
    font-size: 12px;
    margin-left: 8px;
  }
  .cartLine__info-title {
    font-size: 16px;
  }
  .spinbox {
    width: 50px;
  }
  .spinbox button {
    width: 16px;
    height: 16px;
  }
  .spinbox input {
    width: 16px;
    font-size: 12px;
    height: 16px;
  }
}
.intro {
  padding: 126px 0 50px 0;
  position: relative;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__inner-content {
  width: 50%;
  max-width: 600px;
  text-align: center;
}
.intro__inner-content p {
  margin-bottom: 20px;
}
.intro__inner-content h1 {
  margin-bottom: 12px;
}
.intro__inner-btn {
  max-width: 495px;
  margin: 0 auto 4px auto;
}
.intro__inner-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 20px;
}
.intro__inner-tag svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.intro__inner-list {
  position: relative;
  padding: 12px 16px;
}
.intro__inner-list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.intro__inner-list::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 12px;
  background: var(--white);
  content: "";
}
.intro__inner-item {
  display: flex;
  align-items: center;
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: var(--black);
  margin-bottom: 8px;
  z-index: 1;
  position: relative;
}
.intro__inner-item:last-child {
  margin-bottom: 0;
}
.intro__inner-item span {
  flex: 1;
  margin-left: 12px;
}
.intro__inner-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__inner-item-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.intro__inner-item-icon::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  content: "";
}
.intro__inner-item-icon svg {
  fill: var(--green-system);
  width: 24px;
  height: 24px;
  stroke: var(--white);
  position: relative;
  z-index: 1;
}

@media (max-width: 1240px) {
  .intro__bg img {
    object-position: 70%;
  }
}
@media (max-width: 1024px) {
  .intro__inner-item {
    font-size: 16px;
  }
  .intro__inner-item-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-top: 280px;
    padding-bottom: 16px;
  }
  .intro__bg img {
    object-position: center 15%;
  }
  .intro__inner-content {
    width: 100%;
    max-width: unset;
  }
}
.what {
  padding: 96px 0;
}
.what h2 {
  text-align: center;
  max-width: 804px;
  margin: 0 auto 40px auto;
}
.what__inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.what__inner::before {
  position: absolute;
  top: 44px;
  content: "";
  height: calc(100% - 44px);
  width: 6px;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: linear-gradient(179.83deg, rgba(200, 137, 129, 0.86) 0.3%, rgba(247, 242, 231, 0.86) 6.59%, rgba(216, 177, 167, 0.86) 19.45%, rgba(247, 242, 231, 0.86) 38.47%, rgba(216, 177, 167, 0.86) 59.41%, rgba(212, 152, 145, 0.86) 94.25%), #ffffff;
}
.what__item {
  width: 50%;
  padding-right: 38px;
  margin-bottom: 140px;
  position: relative;
}
.what__item:nth-of-type(even) {
  padding-right: 0;
  padding-left: 38px;
  top: 140px;
  position: relative;
}
.what__item:nth-of-type(even) .what__item-head {
  border-radius: 2px 16px 16px 16px;
}
.what__item:nth-of-type(even) .what__item-badge {
  right: unset;
  left: -24px;
}
.what__item-badge {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 38px;
  right: -19px;
}
.what__item-badge img {
  width: 100%;
  height: 100%;
}
.what__item-time {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.what__item-time img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 12px;
}
.what__item-head {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(143.38deg, rgba(255, 237, 236, 0.6) 15.65%, rgba(255, 251, 248, 0.6) 50.37%, rgba(255, 255, 255, 0.6) 63.71%, rgba(255, 237, 236, 0.6) 82.99%), #ffffff;
  border-radius: 16px 2px 16px 16px;
  border: 1.5px solid #d8b1a7;
  margin-bottom: 12px;
}
.what__item-head-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what__item-head-icon.uniq svg {
  stroke: var(--green);
  fill: transparent;
}
.what__item-head-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.what__item-head-icon::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  content: "";
}
.what__item-head-icon svg {
  fill: var(--green);
  width: 24px;
  height: 24px;
  stroke: var(--white);
  position: relative;
  z-index: 1;
}
.what__item-head h4 {
  flex: 1;
  margin-left: 16px;
}
.what__item-body ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #000000;
  margin-bottom: 4px;
}
.what__item-body ul li:last-child {
  margin-bottom: 0;
}
.what__item-body ul li svg {
  width: 24px;
  height: 24px;
  color: var(--green-system);
}
.what__item-body ul li span {
  flex: 1;
  margin-left: 8px;
}
.what__cta {
  margin: 40px auto 0 auto;
  max-width: 405px;
  text-align: center;
}
.what__cta a {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .what__cta {
    margin-top: 24px;
  }
  .what__inner {
    flex-direction: column;
  }
  .what__inner::before {
    left: 0;
    width: 4px;
    top: 20px;
    height: calc(100% - 20px) !important;
  }
  .what__item {
    width: 100%;
    padding: 0 0 0 32px !important;
    margin-bottom: 32px !important;
    top: unset !important;
  }
  .what__item:last-child {
    margin-bottom: 0 !important;
  }
  .what__item-time {
    margin-bottom: 16px;
  }
  .what__item-time img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
  .what__item-head {
    border-radius: 2px 16px 16px 16px !important;
  }
  .what__item-badge {
    right: unset !important;
    left: -12px !important;
    width: 24px;
    top: 6px;
    height: 24px;
  }
}
@media (max-width: 540px) {
  .what {
    padding: 56px 0;
  }
  .what h2 {
    margin-bottom: 24px;
  }
  .what__item-head {
    padding: 8px 12px;
  }
  .what__item-head h4 {
    margin-left: 8px;
  }
  .what__item-head-icon {
    width: 32px;
    height: 32px;
  }
  .what__item-head-icon svg,
  .what__item-head-icon img {
    width: 16px;
    height: 16px;
  }
}
.guarantee {
  padding: 64px 0px;
  background: linear-gradient(105.97deg, #ffedec 3.73%, #ffffff 37.48%, #fffbf8 77.2%, #ffedec 91.48%), #ffffff;
  border-radius: 28px;
  margin-bottom: 96px;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guarantee__inner-image {
  width: 295px;
  margin-right: 25px;
}
.guarantee__inner-image img {
  width: 100%;
  height: auto;
}
.guarantee__inner-content {
  width: calc(100% - 320px);
  max-width: 840px;
}
.guarantee__inner-box {
  position: relative;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.guarantee__inner-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.guarantee__inner-box::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 4px;
  background: var(--white);
  content: "";
}
.guarantee h2 {
  margin-bottom: 32px;
}
.guarantee h2.mob {
  display: none;
}
.guarantee p {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.guarantee p:last-child {
  margin-bottom: 0;
}

@media (max-width: 840px) {
  .guarantee__inner-image {
    width: 220px;
  }
  .guarantee__inner-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .guarantee h2 {
    display: none;
    text-align: center;
    margin: 0 auto 8px auto;
  }
  .guarantee h2.mob {
    display: block;
  }
  .guarantee__inner {
    flex-direction: column;
  }
  .guarantee__inner-image {
    width: 100%;
    max-width: 220px;
    margin: 0 0 8px 0;
  }
}
@media (max-width: 540px) {
  .guarantee {
    padding: 32px 0;
    margin-bottom: 58px;
  }
  .guarantee h2 {
    max-width: 309px;
  }
  .guarantee__inner-image {
    max-width: 156px;
  }
}
.ingred {
  background: linear-gradient(179.7deg, #ffedec 0.29%, #fffbf8 42.85%, #ffffff 66.29%, #ffedec 99.77%);
  padding: 80px 0;
  margin-bottom: 96px;
}
.ingred.reverse {
  background: linear-gradient(179.7deg, #ffedec 0.29%, #fffbf8 67.03%, #ffffff 97.85%);
}
.ingred h2 {
  max-width: 804px;
  text-align: center;
  margin: 0 auto 56px auto;
}
.ingred h2.mob {
  display: none;
}
.ingred__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
}
.ingred__item:nth-of-type(even) .ingred__item-content {
  order: -1;
}
.ingred__item:last-child {
  margin-bottom: 0;
}
.ingred__item-image {
  width: calc(50% - 15px);
  border-radius: 24px;
  overflow: hidden;
  max-width: 572px;
  display: flex;
}
.ingred__item-image img {
  width: 100%;
  height: auto;
}
.ingred__item-content {
  width: calc(50% - 15px);
  max-width: 572px;
}
.ingred__item-content-head {
  display: flex;
  margin-bottom: 24px;
}
.ingred__item-content-head.mob {
  display: none;
}
.ingred__item-content-head h3 {
  flex: 1;
  margin-left: 16px;
}
.ingred__item-content-head h3 span {
  font-weight: 600;
  font-style: italic;
}
.ingred__item-content-numb {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(195.87deg, rgba(200, 137, 129, 0.86) -89.84%, rgba(247, 242, 231, 0.86) 52%, rgba(216, 177, 167, 0.86) 107.56%, rgba(212, 152, 145, 0.86) 141.84%), #ffffff;
  border-radius: 100px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  color: var(--green-light);
}
.ingred__item-content-box {
  position: relative;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.ingred__item-content-box:last-child {
  margin-bottom: 0;
}
.ingred__item-content-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.ingred__item-content-box::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 4px;
  background: var(--white);
  content: "";
}
.ingred__item-content-box p span {
  text-decoration: underline;
}
.ingred__item-content-body p {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.ingred__item-content-body p:last-child {
  margin-bottom: 0;
}
.ingred__item-content-body ul {
  margin-bottom: 20px;
}
.ingred__item-content-body ul li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  margin-bottom: 12px;
}
.ingred__item-content-body ul li:last-child {
  margin-bottom: 0;
}
.ingred__item-content-body ul li span {
  flex: 1;
  margin-left: 16px;
}
.ingred__item-content-body ul li svg,
.ingred__item-content-body ul li img {
  width: 24px;
  height: 24px;
  color: var(--green);
}
.ingred__cta {
  margin: 40px auto;
  max-width: 405px;
  text-align: center;
}
.ingred__cta a {
  margin-bottom: 4px;
}
.ingred__feature {
  position: relative;
  padding: 28px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.ingred__feature::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.ingred__feature::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 16px;
  background: var(--white);
  content: "";
}
.ingred__feature-item {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
  width: 12.5%;
}
.ingred__feature-item p {
  word-break: break-all;
}
.ingred__feature-item-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}
.ingred__feature-item-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.ingred__feature-item-icon::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background: #fffbf8;
  content: "";
}
.ingred__feature-item-icon img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .ingred__feature-item {
    width: 25%;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .ingred__item {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .ingred__item-content-head {
    display: none;
    margin-bottom: 16px;
    order: 0 !important;
  }
  .ingred__item-content-head.mob {
    display: flex;
  }
  .ingred__item-image {
    width: 100%;
    max-width: unset;
    max-width: 540px;
    margin: 0 0 16px 0;
    order: 1 !important;
  }
  .ingred__item-content {
    max-width: unset;
    width: 100%;
    order: 2 !important;
  }
  .ingred__feature-item p {
    font-size: 14px;
    line-height: 140%;
  }
}
@media (max-width: 540px) {
  .ingred {
    padding: 32px 0;
    margin-bottom: 56px;
  }
  .ingred h2.desk {
    display: none;
  }
  .ingred h2.mob {
    display: block;
  }
  .ingred__item-content-head h3 {
    margin-left: 12px;
  }
  .ingred__item-content-numb {
    font-size: 25px;
    width: 26px;
  }
  .ingred__cta {
    margin: 24px 0;
  }
  .ingred__feature {
    padding: 16px 8px;
    margin: 0 -16px;
  }
  .ingred__feature-item {
    padding: 8px 4px;
  }
  .ingred__feature-item-icon {
    width: 44px;
    height: 44px;
  }
  .ingred__feature-item-icon img {
    width: 20px;
    height: 20px;
  }
  .ingred__feature-item p {
    font-size: 12px;
  }
}
.backed {
  margin-bottom: 96px;
}
.backed h2 {
  max-width: 804px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.backed__cta {
  margin: 0 auto 0 auto;
  max-width: 405px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.backed__cta a {
  margin-bottom: 4px;
}
.backed__tag {
  padding: 12px 40px;
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  border-radius: 100px;
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  line-height: 120%;
  color: #013329;
  text-align: center;
}
.backed__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.backed__head h2 {
  margin-bottom: 16px;
}
.backed__inner {
  padding: 56px;
  position: relative;
}
.backed__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 28px;
}
.backed__inner::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(143.38deg, #ffedec 15.65%, #fffbf8 50.37%, #ffffff 63.71%, #ffedec 82.99%), #ffffff;
  content: "";
}
.backed__inner-row {
  display: flex;
  justify-content: space-between;
  max-width: 1010px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.backed__inner-ugc {
  width: calc(50% - 15px);
  max-width: 495px;
}
.backed__inner-video {
  padding-bottom: 172%;
  position: relative;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  overflow: hidden;
}
.backed__inner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.backed__inner-video video::-webkit-media-controls {
  display: none;
}
.backed__inner-content {
  max-width: 458px;
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
}
.backed__inner-content p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.backed__inner-content p i {
  font-weight: 700;
}
.backed__inner-content p:last-child {
  margin-bottom: 0;
}
.backed__inner-content p {
  text-align: center;
}
.backed__inner-content-avatar {
  width: 136px;
  height: 136px;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px auto;
}
.backed__inner-content-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.backed__inner-box {
  position: relative;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.backed__inner-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.backed__inner-box::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 4px;
  background: var(--white);
  content: "";
}
.backed__inner-box p span.uniq {
  z-index: 1;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #e1c2ba;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .backed__tag {
    font-size: 24px;
  }
  .backed__inner {
    padding: 32px;
  }
  .backed__inner-content-avatar {
    width: 112px;
    height: 112px;
  }
}
@media (max-width: 768px) {
  .backed__inner-row {
    flex-direction: column;
  }
  .backed__inner-content {
    order: -1;
    width: 100%;
    margin-bottom: 32px;
    max-width: unset;
  }
  .backed__inner-ugc {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  .backed {
    padding: 56px 0;
    margin: 0;
  }
  .backed__top {
    font-size: 22px;
    padding: 4px;
  }
  .backed__head {
    margin-bottom: 32px;
  }
  .backed h2 {
    margin-bottom: 24px;
  }
  .backed__inner {
    padding: 16px;
  }
  .backed__inner::before {
    border-radius: 12px;
  }
  .backed__inner::after {
    border-radius: 12px;
  }
  .backed__inner-box {
    padding: 12px 16px;
  }
  .backed__inner-box p {
    font-size: 19px;
    max-width: 279px;
    margin: 0 auto;
  }
  .backed__inner-box p br {
    display: none;
  }
}
.how {
  position: relative;
  overflow: hidden;
  padding-bottom: 84px;
}
.how__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-width: 2156px;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: flex;
}
.how__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 41.53%, rgba(255, 255, 255, 0) 100%);
}
.how__bg img {
  width: 100%;
  height: auto;
}
.how__image {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 804px;
  margin: 0 auto 40px auto;
}
.how__image img {
  width: 100%;
  height: auto;
}
.how__head {
  text-align: center;
}
.how__head p {
  margin-bottom: 20px;
}
.how__head h2 {
  margin-bottom: 16px;
}
.how__head h2 br {
  display: none;
}
.how__inner {
  background: linear-gradient(179.9deg, #02493b 7.58%, #013329 48.24%, #100b0d 99.91%);
  border-radius: 28px;
  padding: 64px 32px;
  margin-bottom: 40px;
}
.how__inner-content {
  max-width: 1027px;
  margin: 0 auto;
}
.how__inner-content h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}
.how__item {
  position: relative;
  margin-bottom: 24px;
  display: flex;
}
.how__item-numb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 41px;
  line-height: 130%;
  color: var(--green);
  background: linear-gradient(276.52deg, rgba(200, 137, 129, 0.86) -77.3%, rgba(247, 242, 231, 0.86) 63.69%, rgba(216, 177, 167, 0.86) 118.91%, rgba(212, 152, 145, 0.86) 152.99%), #ffffff;
}
.how__item:last-child {
  margin-bottom: 0;
}
.how__item-image {
  display: flex;
  height: auto;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  width: 45%;
}
.how__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.how__item-content {
  background: #ffedec;
  border-radius: 0 24px 24px 0;
  padding: 32px;
  width: 55%;
  text-align: center;
}
.how__item-content h3 {
  max-width: 428px;
  margin: 0 auto 12px auto;
  border-radius: 50px;
  padding: 10px;
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  border-radius: 100px;
}
.how__item-content p {
  max-width: 428px;
  margin: 0 auto;
  text-align: center;
}
.how__video {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 804px;
  margin: 0 auto 40px auto;
  padding: 4px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.how__video video {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.how__video video::-webkit-media-controls {
  display: none;
}
.how__cta {
  margin: 40px auto 0 auto;
  max-width: 405px;
  text-align: center;
}
.how__cta a {
  margin-bottom: 4px;
}

@media (max-width: 1240px) {
  .how__item {
    margin-bottom: 32px;
  }
  .how__item-numb {
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: -24px;
    width: 54px;
    height: 54px;
    font-size: 25px;
  }
  .how__item-content {
    width: 50%;
  }
  .how__item-image {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .how__item-content {
    padding: 16px;
  }
}
@media (max-width: 650px) {
  .how__item {
    flex-direction: column;
  }
  .how__item-numb {
    width: 40px;
    height: 40px;
    top: -20px;
  }
  .how__item-image {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }
  .how__item-content {
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 540px) {
  .how {
    padding: 56px 0;
    margin: 0;
  }
  .how__head h2 {
    margin-bottom: 8px;
  }
  .how__head h2 br {
    display: block;
  }
  .how__head p br {
    display: none;
  }
  .how__cta {
    margin-top: 24px;
  }
  .how__inner {
    padding: 32px 16px;
    margin: 0 -16px 32px -16px;
    border-radius: 20px;
  }
  .how__image {
    padding: 0;
    background: unset;
    border-radius: 0;
    margin: 0 -16px 32px -16px;
    width: calc(100% + 32px);
  }
  .how__video {
    padding: 0;
    background: unset;
    border-radius: 0;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
  .how__video video {
    border-radius: 0;
  }
}
.why {
  padding: 80px 0;
  margin-bottom: 56px;
  background: linear-gradient(179.7deg, #ffedec 0.29%, #ffffff 25.63%, #fffbf8 99.77%);
}
.why.reverse {
  background: linear-gradient(179.7deg, #ffffff 2.2%, #fffbf8 70.19%, #ffedec 99.77%);
}
.why h2 {
  margin-bottom: 40px;
}
.why__inner {
  display: flex;
  justify-content: space-between;
}
.why__inner-alert {
  margin: 67px 0 32px 0;
  padding: 12px;
  background: #ffe1e1;
  border-width: 1px 0px;
  border-style: solid;
  border-color: #ef0000;
}
.why__inner-alert h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--white);
  margin-bottom: 6px;
}
.why__inner-alert h4 svg {
  width: 24px;
  height: 24px;
  fill: #ef0000;
  stroke: #fff;
  stroke-width: 1.75px;
}
.why__inner-alert-text {
  font-weight: 600;
  font-size: 23px;
  line-height: 140%;
  text-align: center;
}
.why__inner-alert-text span {
  color: #ef0000;
}
.why__inner-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
}
.why__inner-image img {
  width: 100%;
}
.why__inner-content {
  width: calc(100% - 510px);
  max-width: 595px;
}
.why__inner-side {
  width: 495px;
  margin-left: 15px;
}
.why p {
  margin-bottom: 12px;
}
.why p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1240px) {
  .why__inner-alert {
    margin: 24px 0;
  }
  .why__inner-side {
    width: 420px;
  }
  .why__inner-content {
    width: calc(100% - 435px);
  }
}
@media (max-width: 840px) {
  .why__inner {
    flex-direction: column;
  }
  .why__inner-content {
    width: 100%;
    margin-bottom: 24px;
    max-width: unset;
  }
  .why__inner-image {
    max-width: 450px;
    margin: 0 auto 24px auto;
  }
  .why__inner-side {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 540px) {
  .why {
    padding: 32px 0;
    margin-bottom: 32px;
    background: linear-gradient(179.7deg, #ffedec 0.29%, #fffbf8 83.58%, #ffedec 99.77%);
  }
  .why h2 {
    text-align: center;
    margin-bottom: 24px;
  }
  .why__inner-alert {
    margin: 24px -16px;
  }
}
.reviews {
  padding: 56px 0 96px 0;
}
.reviews h2 {
  text-align: center;
  max-width: 804px;
  margin: 0 auto 32px auto;
}
.reviews__rate {
  margin-bottom: 40px;
}
.reviews__rate-head {
  margin-bottom: 16px;
}
.reviews__rate-text {
  font-weight: 400;
  font-size: 26px;
  line-height: 145%;
  text-align: center;
}
.reviews__rate-numb {
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 84px;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #013329;
}
.reviews__rate-numb img {
  width: 64px;
  object-fit: contain;
  height: 64px;
  margin-right: 10px;
}
.reviews__item {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.reviews__items {
  max-width: 600px;
  margin: 0 auto;
}
.reviews__item-stars {
  display: flex;
}
.reviews__item-stars svg {
  width: 20px;
  color: var(--green);
  height: 20px;
  margin-right: 6px;
}
.reviews__item-stars svg:last-child {
  margin-right: 0;
}
.reviews__item-stars svg.solid {
  fill: var(--green);
}
.reviews__item-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 24px;
  width: calc(100% - 75px);
}
.reviews__item-range-inner {
  flex: 1;
  margin-right: 24px;
  background: #f2f3f7;
  border: 1px solid #999999;
  border-radius: 100px;
  position: relative;
  height: 16px;
}
.reviews__item-range-inner span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  border-radius: 2px;
}
.reviews__item-range p {
  width: 61px;
}
.reviews__item:last-child {
  margin-bottom: 0;
}
.reviews__image {
  display: flex;
  padding: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  border-radius: 28px;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
}
.reviews__image img {
  width: 100%;
  height: auto;
  border-radius: 27px;
}
.reviews__image picture {
  width: 100%;
  display: flex;
}
.reviewsCard {
  break-inside: avoid;
  background: #ffffff;
  margin: 10px;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.reviewsCard:nth-child(1) {
  flex: 1;
}
.reviewsCards {
  display: flex;
  margin: 0 -10px;
}
.reviewsCards__col {
  width: 20%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.reviewsCard__image {
  width: 100%;
  display: flex;
}
.reviewsCard__image img {
  width: 100%;
}
.reviewsCard__content {
  width: 100%;
  padding: 16px;
}
.reviewsCard__content-star {
  width: 100%;
  max-width: 130px;
  display: flex;
}
.reviewsCard__content-star img {
  width: 100%;
}

@media (max-width: 1240px) {
  .reviews__rate-numb {
    font-size: 64px;
  }
  .reviews__rate-numb img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 840px) {
  .reviewsCard {
    margin: 8px;
  }
  .reviewsCards {
    flex-wrap: wrap;
    margin: 0 -8px;
  }
  .reviewsCards__col {
    width: 50%;
  }
  .reviewsCards__col:last-child {
    flex-direction: row;
    width: 100%;
  }
  .reviewsCards__col:last-child .reviewsCard {
    width: calc(50% - 16px);
    height: auto;
  }
  .reviewsCard p {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .reviews {
    padding: 32px 0 56px 0;
  }
  .reviews h2 {
    margin-bottom: 24px;
  }
  .reviews__rate-text {
    font-size: 18px;
  }
  .reviews__rate-numb {
    font-size: 44px;
  }
  .reviews__rate-numb img {
    width: 38px;
    height: 38px;
  }
  .reviews__item-range p {
    font-size: 14px;
    width: 48px;
  }
  .reviews__item-range-inner {
    margin-right: 12px;
    height: 10px;
  }
  .reviews__item-stars svg {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  .reviews__image {
    background: transparent;
    box-shadow: unset;
    border-radius: unset;
  }
}
.preferred {
  padding: 64px 0;
  background: #ffedec;
  border-radius: 28px;
  margin-bottom: 96px;
  overflow: hidden;
}
.preferred__action {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.preferred__head {
  margin-bottom: 56px;
}
.preferred__head-stars {
  width: 180px;
  display: flex;
  margin: 0 auto 8px auto;
}
.preferred__head-stars img {
  width: 100%;
}
.preferred__head h3 {
  text-align: center;
  padding: 12px 16px;
  background: linear-gradient(269.99deg, rgba(200, 137, 129, 0.86) -18.4%, rgba(247, 242, 231, 0.86) 64.78%, rgba(216, 177, 167, 0.86) 97.36%, rgba(212, 152, 145, 0.86) 117.46%), #ffffff;
}
.preferred__item {
  position: relative;
  padding: 12px;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
}
.preferred__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.preferred__item::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 20px;
  background: var(--white);
  content: "";
}
.preferred__item-ugc {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.preferred__item-video {
  padding-bottom: 172%;
  position: relative;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  overflow: hidden;
}
.preferred__item-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preferred__item-video video::-webkit-media-controls {
  display: none;
}
.preferred__item-content {
  position: relative;
  z-index: 1;
}
.preferred__item-content-rate {
  width: 108px;
  display: flex;
}
.preferred__item-content-rate img {
  width: 100%;
}
.preferred__item-content-head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: space-between;
}
.preferred__item-cta {
  padding: 12px;
  display: flex;
  justify-content: space-between;
}
.preferred__item-cta-image {
  width: 96px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.preferred__item-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.preferred__item-cta-content {
  width: calc(100% - 116px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preferred__item-cta-content-text {
  margin-bottom: 8px;
}
.preferred__item-cta-content p.sm {
  font-weight: 600;
  margin-bottom: 4px;
}
.preferred__item-cta {
  background: linear-gradient(280.38deg, rgba(200, 137, 129, 0.86) -93.77%, rgba(247, 242, 231, 0.86) 55.13%, rgba(216, 177, 167, 0.86) 113.45%, rgba(212, 152, 145, 0.86) 149.44%), #ffffff;
  border-radius: 12px;
}
.preferred .swiper-button-next {
  position: static;
  width: 40px;
  margin: 0;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.preferred .swiper-button-next::before, .preferred .swiper-button-next::after {
  display: none;
}
.preferred .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.preferred .swiper-button-next:active {
  background: var(--green);
  color: var(--white);
}
.preferred .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin: 0;
}
.preferred .swiper-button-prev::before, .preferred .swiper-button-prev::after {
  display: none;
}
.preferred .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.preferred .swiper-button-prev:active {
  background: var(--green);
  color: var(--white);
}
.preferred .swiper-pagination {
  position: static;
  margin: 0 40px;
  transform: unset;
  display: flex;
  align-items: center;
  width: unset !important;
}
.preferred .swiper-pagination-bullet-active {
  background: var(--green);
}
.preferred .swiper-slide {
  height: auto;
  flex-direction: column;
  display: flex;
}
.preferred .swiper-slide:last-child .partners__item {
  height: 100%;
}

@media (max-width: 1240px) {
  .preferred__action {
    display: flex;
  }
}
@media (max-width: 540px) {
  .preferred {
    padding: 32px 0;
    margin-bottom: 56px;
  }
  .preferred__head {
    margin-bottom: 24px;
  }
  .preferred__head-stars {
    width: 100px;
    margin: 0 auto 8px auto;
  }
  .preferred__head h3 {
    font-size: 23px;
  }
  .preferred__action {
    justify-content: space-between;
  }
}
.checkout {
  padding-top: 150px;
  background: linear-gradient(171.28deg, #ffedec -2.91%, #fffbf8 32.05%, #ffffff 88.66%), #ffffff;
}
.checkout .auto__container {
  padding: 0;
  max-width: unset;
}
.checkout__inner {
  display: flex;
}
.checkout__form {
  width: calc(100% - 607px);
  background: #ffffff;
  padding-bottom: 106px;
}
.checkout__form-body {
  padding: 22px 20px;
  max-width: 745px;
  margin: 0 auto;
}
.checkout__form-body p {
  margin-bottom: 16px;
}
.checkout__form-foot {
  padding: 22px 20px;
  max-width: 745px;
  margin: 0 auto;
}
.checkout__form-foot p {
  margin-bottom: 12px;
  text-align: center;
}
.checkout__form-foot p a {
  color: var(--green-system);
  font-weight: 600;
}
.checkout__form-foot button {
  width: 100%;
}
.checkout__form-head {
  padding: 16px 20px;
  position: relative;
  background: #fffbf8;
}
.checkout__form-head-inner {
  display: flex;
  justify-content: space-between;
  max-width: 705px;
  margin: 0 auto;
}
.checkout__form-head::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.checkout__form-head::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.checkout__form-head-tag {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.checkout__form-head-tag-icon {
  display: flex;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  position: relative;
}
.checkout__form-head-tag-icon img {
  width: 16px;
  position: absolute;
  top: -3px;
  right: -3px;
}
.checkout__info {
  width: 607px;
  position: relative;
}
.checkout__info::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.checkout__info-body {
  padding: 32px;
}
.checkout__info-head {
  padding: 16px 32px;
  background: #ffedec;
  position: relative;
}
.checkout__info-head::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.checkout__info-head::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
}
.checkout__fast {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}
.checkout__fast p {
  width: 100%;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #717171;
}
.checkout__fast a {
  width: calc(50% - 6px);
}
.checkout__or {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #717171;
  text-transform: uppercase;
  justify-content: space-between;
  margin-bottom: 22px;
}
.checkout__or span {
  height: 2px;
  background: #dbdbdb;
  width: calc(50% - 30px);
}
.checkout__total-price {
  font-weight: 600;
  font-size: 26px;
  line-height: 145%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout__total-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout__total-text p.sm {
  color: #717171;
}
.checkout__total .divider {
  margin: 12px 0;
  height: 1px;
  width: 100%;
  background: var(--white);
}
.checkout__sub {
  margin-bottom: 48px;
}
.checkout__sub-price {
  font-weight: 600;
  font-size: 26px;
  line-height: 145%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout__sub-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout__sub-text p.sm {
  color: #717171;
}
.checkout__links {
  display: flex;
  flex-wrap: wrap;
}
.checkout__links a {
  display: block;
  margin: 4px 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-decoration-line: underline;
  color: #175044;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.checkout__links a:hover {
  opacity: 0.5;
}
.checkout__group {
  margin-bottom: 28px;
}
.checkout__group:last-child {
  margin-bottom: 0;
}
.checkout__group h6 {
  margin-bottom: 16px;
}
.checkout__group h6 span {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #717171;
}
.checkout__group h6 span svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.checkout__dis {
  position: relative;
  padding-right: 70px;
  width: 100%;
  margin: 24px 0;
}
.checkout__dis button {
  position: absolute;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 4px;
  top: 0;
  right: 0;
  font-size: 14px;
}
.checkout__dis button::before {
  border-radius: 4px;
}
.checkout__dis button::after {
  border-radius: 4px;
}
.checkout .mob {
  display: none;
}

.testi {
  border: 1px solid #f1e5dc;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
}
.testi:last-child {
  margin-bottom: 0;
}
.testi__rate {
  margin-bottom: 6px;
  width: 80px;
  display: flex;
}
.testi__rate img {
  width: 100%;
}
.testi__info {
  display: flex;
  align-items: center;
  margin: 4px;
}
.testi__info-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}
.testi__info-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.testi__info-text {
  margin-left: 6px;
  flex: 1;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #717171;
}
.testi__info-text span {
  display: block;
  font-style: normal;
  color: #000;
}

@media (max-width: 1240px) {
  .checkout__form {
    width: calc(100% - 420px);
  }
  .checkout__info {
    width: 420px;
  }
}
@media (max-width: 840px) {
  .checkout__form {
    width: 100%;
    order: 1;
    padding-bottom: 42px;
  }
  .checkout__sub {
    margin: 0;
  }
  .checkout__sub-text {
    font-size: 16px;
  }
  .checkout__sub-price {
    font-size: 20px;
  }
  .checkout__info {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    order: 0;
    width: 100%;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    background: transparent;
  }
  .checkout__info-body {
    padding: 20px 16px;
  }
  .checkout__info-head {
    display: none;
  }
  .checkout__info.active {
    display: block;
    opacity: 1;
    max-height: 500px;
  }
  .checkout__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffedec;
    position: relative;
    order: -1;
  }
  .checkout__action::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  }
  .checkout__action::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  }
  .checkout__action-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #000000;
  }
  .checkout__action button {
    display: flex;
    align-items: center;
    background: transparent;
    font-family: "Work Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
  }
  .checkout__action button.active svg {
    transform: rotate(180deg);
  }
  .checkout__action button svg {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    margin-left: 8px;
  }
  .checkout .mob {
    display: block;
  }
  .checkout .desk {
    display: none;
  }
  .checkout__links {
    justify-content: center;
  }
  .checkout__links a {
    font-size: 14px;
  }
  .testi__items {
    padding: 20px 16px;
  }
}
@media (max-width: 768px) {
  .checkout {
    padding-top: 114px;
  }
  .checkout__inner {
    flex-direction: column;
  }
  .checkout__form-head-tag {
    width: calc(33.3% - 8px);
    margin: 0 4px;
  }
  .checkout__form-head-tag p {
    font-size: 12px;
    line-height: 140%;
  }
}
.hero {
  padding: 120px 0 0 0;
  position: relative;
}
.hero .auto__container {
  position: static;
  max-width: unset;
  padding: 0;
}
.hero__inner {
  display: flex;
  padding-left: 40%;
}
.hero__inner-video {
  width: 40%;
  position: absolute;
  top: 120px;
  left: 0;
  height: calc(100% - 120px);
  display: flex;
}
.hero__inner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__inner-content {
  padding: 40px 20px 20px 20px;
  background: url(../images/lander/heroBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.hero__inner-image {
  width: 100%;
  display: flex;
  max-width: 806px;
  margin: 29px auto 0 auto;
}
.hero__inner-image picture {
  width: 100%;
}
.hero__inner-image img {
  width: 100%;
}
.hero__inner-text {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  max-width: 580px;
  margin: 0 auto;
}
.hero__inner-teens {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hero__inner-teens img {
  width: 104px;
  margin-right: 12px;
}
.hero__inner-note {
  margin-bottom: 16px;
  position: relative;
  padding: 4px 16px;
}
.hero__inner-note p {
  color: #ef0000;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.hero__inner-note::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.hero__inner-note::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50px;
  background: var(--white);
  content: "";
}
.hero__inner-cta {
  max-width: 408px;
  margin: 28px auto 0 auto;
  text-align: center;
}
.hero__inner-cta a {
  margin-bottom: 4px;
}
.hero h1 {
  margin-bottom: 4px;
}

@media (max-width: 1340px) {
  .hero__inner-content {
    padding: 20px;
  }
  .hero__inner-text {
    max-width: 500px;
  }
  .hero__inner-image {
    max-width: 600px;
  }
}
@media (max-width: 1024px) {
  .hero__inner {
    padding-left: 45%;
  }
  .hero__inner-video {
    width: 45%;
  }
  .hero__inner-cta {
    margin-top: 16px;
  }
  .hero__inner-text {
    max-width: 420px;
  }
  .hero__inner-image {
    max-width: 420px;
  }
}
@media (max-width: 840px) {
  .hero {
    background: url(../images/lander/heroBg.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero .auto__container {
    padding: 0 16px;
  }
  .hero__inner {
    padding: 0;
    flex-direction: column;
    padding: 16px 0;
  }
  .hero__inner-content {
    order: -1;
    max-width: unset;
    background: transparent;
    padding: 0;
  }
  .hero__inner-text {
    max-width: unset;
  }
  .hero__inner-video {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  .hero__inner-video video {
    position: static;
  }
}
@media (max-width: 540px) {
  .hero {
    padding-top: 102px;
  }
  .hero__inner-teens {
    margin-bottom: 12px;
  }
  .hero__inner-teens img {
    width: 88px;
    margin-right: 8px;
  }
  .hero__inner-teens {
    font-size: 14px;
  }
  .hero__inner-note {
    padding: 4px 10px;
    font-size: 14px;
    margin-bottom: 12px;
  }
  .hero__inner h1 {
    max-width: 330px;
    margin: 0 auto 8px auto;
  }
}
.choice {
  padding: 56px 0;
}
.choice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  margin: 0 auto 40px auto;
}
.choice__head h4 {
  margin-bottom: 16px;
}
.choice__head h2 {
  margin-bottom: 16px;
}
.choice__head-title {
  margin-bottom: 16px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 68px;
  line-height: 100%;
  text-align: center;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #013329;
}
.choice__head-stars {
  width: 180px;
  display: flex;
}
.choice__head-stars img {
  width: 100%;
}
.choice__inner {
  padding: 1px;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  border-radius: 28px;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
}
.choice__inner-items {
  background: var(--white);
  display: flex;
  align-items: center;
  border-radius: 28px;
  padding: 32px;
}
.choice__inner-items.start {
  align-items: flex-start;
  padding: 32px 64px;
}
.choice__inner-items.solo {
  padding: 32px 0;
}
.choice__inner-items.solo .choice__inner-item {
  width: 100%;
}
.choice__inner-items.solo .choice__inner-item picture {
  width: 100%;
}
.choice__inner-item {
  width: 33.3%;
  display: flex;
}
.choice__inner-item.col-55 {
  width: 55%;
}
.choice__inner-item.col-45 {
  width: 45%;
}
.choice__inner-item img {
  width: 100%;
  height: auto;
  border-radius: 27px;
}
.choice__cta {
  max-width: 405px;
  margin: 48px auto 0 auto;
  text-align: center;
}
.choice__cta a {
  margin-bottom: 4px;
}

@media (max-width: 1340px) {
  .choice__inner {
    border-radius: 20px;
  }
  .choice__inner-items {
    border-radius: 20px;
    padding: 24px !important;
  }
  .choice__head-title {
    font-size: 54px;
  }
  .choice__head-stars {
    width: 160px;
  }
}
@media (max-width: 1240px) {
  .choice__head-title {
    font-size: 48px;
  }
  .choice__head-stars {
    width: 140px;
  }
}
@media (max-width: 540px) {
  .choice__cta {
    margin-top: 24px;
  }
  .choice__inner {
    border: unset;
    box-shadow: unset;
    background: transparent;
  }
  .choice__inner-items {
    flex-direction: column;
    background: transparent;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  .choice__inner-item {
    width: 100% !important;
    padding: 16px;
  }
  .choice__inner-item:nth-child(3) {
    order: -1;
  }
  .choice__head {
    margin-bottom: 16px;
  }
  .choice__head h2 br {
    display: none;
  }
  .choice__head h2 {
    max-width: 343px;
    margin: 0 auto 8px auto;
  }
  .choice__head h4 {
    max-width: 344px;
    margin: 0 auto 12px auto;
  }
  .choice__head-title {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .choice__head-stars {
    width: 100px;
  }
}
.showup {
  padding: 88px 0;
  background: linear-gradient(179.24deg, #ffedec 17.04%, #ffffff 58.66%, #ffffff 97.88%);
}
.showup h2 {
  max-width: 804px;
  text-align: center;
  margin: 0 auto 56px auto;
}
.showup__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.showup__inner-content {
  width: calc(50% - 15px);
}
.showup__inner-media {
  width: calc(50% - 15px);
  max-width: 495px;
  display: flex;
}
.showup__inner-media img {
  width: 100%;
  border-radius: 24px;
}
.showup__inner-video {
  width: calc(50% - 15px);
  max-width: 495px;
  display: flex;
}
.showup__inner-video video {
  width: 100%;
  border-radius: 24px;
}
.showup h6 {
  margin-bottom: 24px;
}
.showup p {
  margin-bottom: 16px;
}
.showup p:last-child {
  margin-bottom: 0;
}
.showup__cta {
  max-width: 405px;
  margin: 0 auto;
  text-align: center;
}
.showup__cta a {
  margin-bottom: 4px;
}

@media (max-width: 1340px) {
  .showup h2 {
    max-width: 580px;
  }
}
@media (max-width: 1024px) {
  .showup h2 {
    max-width: 450px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .showup__cta {
    margin-top: 28px;
  }
  .showup__inner {
    flex-direction: column;
    margin: 0;
  }
  .showup__inner-media {
    order: 2;
    width: 100%;
    max-width: 540px;
    margin: 24px auto 0 auto;
  }
  .showup__inner-content {
    width: 100%;
  }
  .showup__inner-video {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 24px auto;
  }
}
@media (max-width: 540px) {
  .showup {
    padding: 32px 0;
  }
  .showup h2 {
    margin-bottom: 24px;
  }
  .showup__inner-media video,
  .showup__inner-media img {
    border-radius: 12px;
  }
}
.problem {
  padding-bottom: 72px;
}
.problem h2 {
  max-width: 700px;
  text-align: center;
  margin-bottom: 50px;
  margin: 0 auto 50px auto;
}
.problem h2 span {
  display: block;
}
.problem p {
  margin-bottom: 16px;
}
.problem p:last-child {
  margin-bottom: 0;
}
.problem ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.problem ul li svg {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
}
.problem__inner {
  background: #ffedec;
  border-radius: 28px;
  padding: 64px 32px;
}
.problem__inner-text {
  margin-bottom: 56px;
}
.problem__inner-text:last-child {
  margin-bottom: 0;
}
.problem__inner-content {
  max-width: 803px;
  margin: 0 auto;
}
.problem__inner-image {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  margin-bottom: 56px;
}
.problem__inner-image img {
  width: 100%;
}
.problem__inner-video {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  margin-bottom: 56px;
  width: 100%;
}
.problem__inner-video video {
  width: 100%;
}

@media (max-width: 540px) {
  .problem {
    padding: 24px 0;
  }
  .problem .auto__container {
    padding: 0;
  }
  .problem h2 {
    max-width: 342px;
    margin: 0 auto 24px auto;
  }
  .problem__inner {
    padding: 32px 16px;
  }
  .problem__inner-text {
    margin-bottom: 24px;
  }
  .problem__inner-image {
    border-radius: 12px;
    margin-bottom: 24px;
  }
  .problem__inner-video {
    border-radius: 12px;
    margin-bottom: 24px;
  }
}
.procons {
  padding: 88px 0 44px 0;
  margin-bottom: 88px;
  background: linear-gradient(179.79deg, #ffedec 2.2%, #fffbf8 11.43%, #ffffff 31.7%, #fffbf8 101.99%);
}
.procons__head {
  text-align: center;
  max-width: 804px;
  margin: 0 auto 56px auto;
}
.procons h2 {
  margin-bottom: 40px;
}
.procons p {
  margin-bottom: 16px;
}
.procons p:last-child {
  margin-bottom: 0;
}
.procons__inner {
  max-width: 1010px;
  margin: 0 auto;
  position: relative;
}
.procons__inner::before {
  position: absolute;
  top: 0;
  content: "";
  left: 200px;
  width: calc(50% - 103px);
  height: 100%;
  background: #ffe1e1;
  border-radius: 24px;
}
.procons__inner::after {
  position: absolute;
  content: "";
  right: 0;
  width: calc(50% - 103px);
  height: 100%;
  top: 0;
  background: linear-gradient(179.98deg, #02493b 9.15%, #013329 64.9%, #100b0d 99.98%);
  border-radius: 24px;
}
.procons__item {
  display: flex;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.procons__item:nth-child(1) {
  margin-bottom: 0;
}
.procons__item:last-child {
  margin-bottom: 0;
}
.procons__item-title {
  padding: 12px;
  width: calc(50% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.procons__item-title:nth-child(1) {
  width: 200px;
}
.procons__item-title span {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 372px;
  padding: 10px 8px;
  font-family: "Crimson Text";
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  color: #000000;
}
.procons__item-title.white span {
  background: #ffffff;
  border-radius: 12px;
}
.procons__item-title.gold span {
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  border-radius: 12px;
}
.procons__item-image {
  width: 200px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 100px);
}
.procons__item-image:nth-child(1) {
  width: 200px;
}
.procons__item-image img {
  max-width: 372px;
  width: 100%;
  border-radius: 12px;
}
.procons__item-semi {
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  color: #000000;
  background: linear-gradient(180deg, #ffedec 0%, #fff 100%);
  border-radius: 24px 0px 0px 0px;
}
.procons__item-semi.white {
  background: transparent;
}
.procons__item-text {
  width: calc(50% - 100px);
  text-align: center;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.procons__item-text.gold h6,
.procons__item-text.gold p {
  color: var(--white);
}

@media (max-width: 1024px) {
  .procons__item-title span {
    font-size: 30px;
  }
}
@media (max-width: 840px) {
  .procons__item-title span {
    font-size: 24px;
  }
  .procons__item-image {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .procons__inner::before {
    width: calc(50% - 63px);
    left: 120px;
  }
  .procons__inner::after {
    width: calc(50% - 63px);
  }
  .procons__item-text h6 {
    font-size: 16px;
  }
  .procons__item-text p {
    font-size: 14px;
  }
  .procons__item-title {
    width: calc(50% - 60px);
  }
  .procons__item-title span {
    font-size: 18px;
    padding: 2px 8px;
    border-radius: 4px !important;
  }
  .procons__item-title:nth-child(1) {
    width: 120px;
  }
  .procons__item-image:nth-child(1) {
    width: 120px;
  }
  .procons__item-image {
    width: calc(50% - 60px);
  }
  .procons__item-semi {
    font-size: 14px;
    width: 120px;
  }
  .procons__item-text {
    width: calc(50% - 60px);
  }
}
@media (max-width: 540px) {
  .procons {
    margin-bottom: 56px;
  }
  .procons__inner::before {
    width: calc(50% - 43px);
    left: 82px;
    border-radius: 12px;
  }
  .procons__inner::after {
    border-radius: 12px;
    width: calc(50% - 43px);
  }
  .procons__item-image:nth-child(1) {
    width: 82px;
  }
  .procons__item-image {
    width: calc(50% - 41px);
  }
  .procons__item-semi {
    font-size: 12px;
    width: 82px;
  }
  .procons__item-title {
    width: calc(50% - 41px);
  }
  .procons__item-title:nth-child(1) {
    width: 82px;
  }
  .procons__item-title span {
    font-size: 12px;
  }
  .procons__item-text {
    padding: 8px;
    width: calc(50% - 41px);
  }
  .procons__item-text p {
    font-size: 12px;
    line-height: 18px;
  }
  .procons__item-text h6 {
    font-size: 12px;
  }
}
.shield h2 {
  max-width: 804px;
  margin: 0 auto 56px auto;
  text-align: center;
}
.shield__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.shield__head-image {
  width: 50%;
  display: flex;
}
.shield__head-image img {
  width: 100%;
}
.shield__head-content {
  width: calc(50% - 20px);
  max-width: 495px;
}
.shield__head-content ul {
  margin-bottom: 24px;
}
.shield__head-content ul li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  color: #000000;
  margin-bottom: 12px;
}
.shield__head-content ul li:last-child {
  margin-bottom: 0;
}
.shield__head-content ul li svg {
  width: 24px;
  height: 24px;
  color: var(--green-system);
}
.shield__head-content ul li span {
  flex: 1;
  margin-left: 12px;
}
.shield__head-content p {
  margin-bottom: 16px;
}
.shield__image {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}
.shield__image img {
  width: 100%;
}
.shield h4 {
  text-align: center;
  max-width: 804px;
  margin: 0 auto 48px auto;
}
.shield__item {
  padding-bottom: 60px;
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shield__item:last-child {
  padding-bottom: 0;
}
.shield__item-title {
  font-family: "Crimson Text";
  font-style: italic;
  font-weight: 400;
  font-size: 62px;
  line-height: 100%;
  border-radius: 0 40px 40px 0;
  color: var(--green);
  padding: 2px 30px 2px 0;
  border: 1px solid #e0beb6;
  border-left: unset;
  margin-bottom: 8px;
}
.shield__item h3 {
  margin-bottom: 8px;
}
.shield__item:nth-child(1)::before {
  top: 30px;
  left: 0;
  width: 6px;
  height: calc(100% - 30px);
}
.shield__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(179.83deg, rgba(200, 137, 129, 0.86) 0.3%, rgba(247, 242, 231, 0.86) 6.59%, rgba(216, 177, 167, 0.86) 19.45%, rgba(247, 242, 231, 0.86) 38.47%, rgba(216, 177, 167, 0.86) 59.41%, rgba(212, 152, 145, 0.86) 94.25%), #ffffff;
}
.shield__item::after {
  position: absolute;
  content: "";
  top: 18px;
  left: -9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(319.64deg, rgba(200, 137, 129, 0.86) -15.77%, rgba(247, 242, 231, 0.86) 51.36%, rgba(216, 177, 167, 0.86) 77.66%, rgba(212, 152, 145, 0.86) 93.88%), #ffffff;
}
.shield__item-content p {
  margin-bottom: 16px;
}
.shield__item-content p:last-child {
  margin-bottom: 0;
}
.shield__item-content ul {
  margin-bottom: 24px;
}
.shield__item-content ul:last-child {
  margin-bottom: 0;
}
.shield__item-content ul li {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 145%;
  color: #000000;
  margin-bottom: 12px;
}
.shield__item-content ul li:last-child {
  margin-bottom: 0;
}
.shield__item-content ul li svg {
  width: 24px;
  height: 24px;
  color: var(--green-system);
}
.shield__item-content ul li span {
  flex: 1;
  margin-left: 12px;
}
.shield__item-inner {
  display: flex;
  padding: 32px;
  justify-content: space-between;
  background: linear-gradient(172.36deg, #ffffff 0.34%, #fffbf8 9.06%, #fffbf8 68.58%, #ffedec 98.91%);
  border-radius: 24px;
}
.shield__item-video {
  width: calc(45% - 15px);
  display: flex;
  height: auto;
  max-width: 450px;
}
.shield__item-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 0 80px 80px 0;
}
.shield__item-content {
  width: 55%;
}

@media (max-width: 1340px) {
  .shield__item-title {
    font-size: 54px;
  }
}
@media (max-width: 1024px) {
  .shield__item-inner {
    padding: 20px;
  }
  .shield__item-title {
    font-size: 42px;
  }
}
@media (max-width: 840px) {
  .shield__item-inner {
    flex-direction: column;
  }
  .shield__item-video {
    width: 100%;
    margin-bottom: 24px;
  }
  .shield__item-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .shield__head {
    flex-direction: column;
  }
  .shield__head-image {
    width: 100%;
    margin-bottom: 24px;
  }
  .shield__head-content {
    width: 100%;
  }
  .shield__image {
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .shield h4 {
    font-size: 18px;
    line-height: 145%;
    font-weight: 400;
    text-transform: none;
    text-align: left;
  }
  .shield h4 span {
    font-weight: 600;
  }
}
@media (max-width: 540px) {
  .shield h2 {
    max-width: 338px;
    margin: 0 auto 24px auto;
  }
  .shield__head {
    margin-bottom: 20px;
  }
  .shield__item {
    padding-left: 24px;
    padding-bottom: 50px;
  }
  .shield__item h3 {
    margin: 0 20px;
  }
  .shield__item::before {
    width: 4px;
  }
  .shield__item::after {
    width: 18px;
    height: 18px;
    left: -7px;
  }
  .shield__item-title {
    font-size: 38px;
    margin-bottom: 6px;
    margin: 0 20px 6px 20px;
  }
}
.ugc {
  margin: 56px 0 128px 0;
}
.ugc__head {
  max-width: 804px;
  margin: 0 auto 56px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ugc__head h2 {
  margin-bottom: 16px;
}
.ugc__head h2:last-child {
  margin-bottom: 0;
}
.ugc__tag {
  padding: 12px 40px;
  background: linear-gradient(270.02deg, rgba(200, 137, 129, 0.86) 0.02%, rgba(247, 242, 231, 0.86) 72.56%, rgba(216, 177, 167, 0.86) 100.97%, rgba(212, 152, 145, 0.86) 118.51%), #ffffff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 34px;
  line-height: 120%;
  color: #013329;
  text-align: center;
}
.ugc__inner {
  padding: 64px 32px;
  background: #ffedec;
  border-radius: 28px;
  overflow: hidden;
}
.ugc__inner-slider {
  max-width: 1010px;
  margin: 0 auto;
}
.ugc__inner-video {
  display: flex;
}
.ugc__inner-video-inner {
  padding-bottom: 172%;
  position: relative;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.ugc__inner-video-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc__inner-video-inner video::-webkit-media-controls {
  display: none;
}
.ugc__action {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.ugc .swiper-button-next {
  position: static;
  width: 40px;
  margin: 0;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.ugc .swiper-button-next::before, .ugc .swiper-button-next::after {
  display: none;
}
.ugc .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.ugc .swiper-button-next:active {
  background: var(--green);
  color: var(--white);
}
.ugc .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin: 0;
}
.ugc .swiper-button-prev::before, .ugc .swiper-button-prev::after {
  display: none;
}
.ugc .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.ugc .swiper-button-prev:active {
  background: var(--green);
  color: var(--white);
}
.ugc .swiper-pagination {
  position: static;
  margin: 0 40px;
  transform: unset;
  display: flex;
  align-items: center;
  width: unset !important;
}
.ugc .swiper-pagination-bullet-active {
  background: var(--green);
}

@media (max-width: 1340px) {
  .ugc {
    margin: 32px 0 80px 0;
  }
  .ugc__tag {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .ugc__tag {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .ugc__tag {
    font-size: 20px;
    padding: 4px 24px;
  }
  .ugc__action {
    display: flex;
  }
}
@media (max-width: 540px) {
  .ugc {
    padding: 0;
    margin: 32px 0;
  }
  .ugc__inner {
    padding: 32px 16px;
  }
  .ugc .auto__container {
    padding: 0;
  }
  .ugc__head {
    margin-bottom: 24px;
  }
  .ugc__action {
    justify-content: space-between;
  }
}
.ready {
  margin-bottom: 100px;
}
.ready__inner {
  padding: 72px 32px;
  overflow: hidden;
  background: linear-gradient(335.66deg, rgba(212, 152, 145, 0.86) -16.48%, rgba(247, 242, 231, 0.86) 62.43%, rgba(216, 177, 167, 0.86) 87.58%, rgba(212, 152, 145, 0.86) 111.52%), #ffffff;
  border-radius: 28px;
}
.ready__inner-slider {
  margin-bottom: 40px;
}
.ready__cta {
  max-width: 405px;
  margin: 0 auto;
  text-align: center;
}
.ready__cta a {
  margin-bottom: 4px;
}
.ready h3 {
  margin-bottom: 16px;
  text-align: center;
  font-style: italic;
}
.ready h2 {
  text-align: center;
  max-width: 806px;
  margin: 0 auto 56px auto;
}
.ready__item-image {
  display: flex;
}
.ready__item-image img {
  border-radius: 24px;
  width: 100%;
}
.ready__item-star {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  padding: 2px 8px;
  display: flex;
  box-shadow: 0px 67px 27px rgba(154, 116, 116, 0.01), 0px 38px 23px rgba(154, 116, 116, 0.05), 0px 17px 17px rgba(154, 116, 116, 0.09), 0px 4px 9px rgba(154, 116, 116, 0.1);
  border-radius: 100px;
  width: 96px;
}
.ready__item-star img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ready__item-star::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.ready__item-star::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50px;
  background: var(--white);
  content: "";
}

@media (max-width: 540px) {
  .ready {
    padding: 0;
    margin: 32px 0;
  }
  .ready__inner {
    padding: 32px 16px;
  }
  .ready h2 {
    max-width: 311px;
    margin: 0 auto 24px auto;
  }
}
.detail {
  padding-top: 120px;
  background: linear-gradient(-25deg, #ffffff 0%, #fff 33.03%, #ffedec 99.77%);
}
.detail__foot {
  text-align: center;
  background: linear-gradient(90deg, rgba(200, 137, 129, 0.86) -8.85%, rgba(247, 242, 231, 0.86) 63.01%, rgba(216, 177, 167, 0.86) 91.15%, rgba(212, 152, 145, 0.86) 108.52%), #ffffff;
  padding: 12px;
}
.detail__inner {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 110px 0;
}
.detail__inner-main {
  width: calc(50% - 15px);
  max-width: 572px;
}
.detail__inner-info {
  width: calc(50% - 15px);
  max-width: 572px;
}
.detailSlider {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.detailSlider__item {
  padding-bottom: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.detailSlider__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.detailNav {
  overflow: hidden;
  margin-bottom: 32px;
}
.detailNav__item {
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.detailNav__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  pointer-events: none;
}
.detail .swiper-slide {
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}
.detail .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--green);
}
.detail .swiper-button-next {
  position: absolute;
  width: 40px;
  margin: 0;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.detail .swiper-button-next::before, .detail .swiper-button-next::after {
  display: none;
}
.detail .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.detail .swiper-button-next:active {
  background: var(--green);
  color: var(--white);
}
.detail .swiper-button-next:hover {
  background: var(--green-light);
  color: var(--white);
}
.detail .swiper-button-prev {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin: 0;
}
.detail .swiper-button-prev::before, .detail .swiper-button-prev::after {
  display: none;
}
.detail .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.detail .swiper-button-prev:active {
  background: var(--green);
  color: var(--white);
}
.detail .swiper-button-prev:hover {
  background: var(--green-light);
  color: var(--white);
}
.detail__alert {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  color: #000000;
  background: #ffe9ae;
  border: 1px solid #f4b301;
  border-radius: 4px;
}
.detail__alert svg {
  width: 22px;
  min-width: 22px;
  height: 22px;
  fill: red;
  stroke: white;
}
.detail__alert span {
  margin-left: 12px;
}
.detail__ps {
  padding: 8px 16px;
  background: #f2f3f7;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 32px;
  color: #000000;
}
.detail__trust {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}
.detail__trust-title {
  font-weight: 400;
  font-size: 31px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 8px;
}
.detail__trust-content {
  width: calc(100% - 230px);
  max-width: 274px;
}
.detail__trust-logo {
  width: 100%;
  max-width: 120px;
  display: flex;
  margin-bottom: 10px;
}
.detail__trust-verify {
  width: 100%;
  display: flex;
  max-width: 204px;
}
.detail__trust img {
  width: 100%;
}
.detail__trust-score {
  width: 218px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 23px;
  line-height: 145%;
  color: #000000;
  text-align: center;
  background: #f3f3f3;
  border-radius: 8px;
}
.detail__trust-score span {
  font-size: 53px;
  line-height: 1;
}
.detail__teens {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.detail__teens img {
  width: 104px;
  margin-right: 12px;
}
.detail__title {
  font-family: "Crimson Text";
  font-weight: 700;
  font-size: 46px;
  line-height: 105%;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #013329;
  margin-bottom: 24px;
}
.detail ul {
  margin-bottom: 24px;
}
.detail ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.detail ul li:last-child {
  margin-bottom: 0;
}
.detail ul li span {
  flex: 1;
  margin-left: 12px;
}
.detail ul li svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}
.detail p {
  margin-bottom: 16px;
}
.detail p:last-child {
  margin-bottom: 0;
}
.detail .cta {
  margin-bottom: 20px;
}
.detail__kits {
  margin-bottom: 40px;
}
.detail__delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px;
  margin-bottom: 12px;
  background: rgba(0, 141, 94, 0.1);
  border-radius: 100px;
}
.detail__delivery p {
  display: flex;
  align-items: center;
  margin: 0;
}
.detail__delivery p span {
  width: 8px;
  height: 8px;
  display: flex;
  border-radius: 50%;
  background: var(--green-system);
  margin-right: 8px;
}
.detail__delivery p span {
  margin-right: 4px;
}
.detail__delivery p img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
.detail__feature {
  display: flex;
  justify-content: space-between;
}
.detail__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(33.3% - 10px);
}
.detail__feature-item p {
  max-width: 117px;
  margin: 0 auto;
}
.detail__feature-item svg,
.detail__feature-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}
.detail .mob {
  display: none;
}

@media (max-width: 1024px) {
  .detail .desk {
    display: none;
  }
  .detail .mob {
    display: block;
  }
  .detail__inner {
    flex-direction: column;
  }
  .detail__inner-main {
    width: 100%;
    max-width: unset;
  }
  .detail__inner-info {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .detail {
    padding-top: 102px;
    overflow: hidden;
  }
  .detail__foot h3 {
    font-size: 23px;
  }
  .detail__delivery {
    padding: 4px 12px;
  }
  .detail__delivery p img {
    margin-right: 4px;
  }
  .detailNav {
    overflow: visible;
  }
  .detail .countdown {
    margin: 0 -16px 32px -16px;
  }
  .detail__kits {
    margin-bottom: 32px;
  }
  .detail__feature {
    margin-bottom: 40px;
  }
  .detail__trust {
    justify-content: unset;
  }
  .detail__trust-score {
    width: 130px;
  }
  .detail__trust-content {
    width: calc(100% - 150px);
    max-width: 150px;
    margin-left: 20px;
  }
  .detail__inner {
    padding: 16px 0 32px 0;
  }
  .detail__title {
    font-size: 29px;
    margin-bottom: 16px;
  }
  .detail__teens {
    margin-bottom: 6px;
  }
  .detail__teens img {
    width: 72px;
  }
  .detail__teens p {
    font-size: 14px;
  }
}
.heal {
  margin-bottom: 112px;
}

.ritual {
  margin-bottom: 65px;
}
.ritual h2 {
  max-width: 804px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.ritual h2 span {
  display: block;
}
.ritual__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.ritual__item {
  width: calc(25% - 20px);
  margin: 10px;
}
.ritual__item-video {
  padding-bottom: 172%;
  position: relative;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.ritual__item-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ritual__item-video video::-webkit-media-controls {
  display: none;
}

@media (max-width: 840px) {
  .ritual {
    margin-bottom: 68px;
  }
  .ritual__item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 540px) {
  .ritual {
    margin-bottom: 38px;
  }
  .ritual h2 {
    margin-bottom: 32px;
  }
  .ritual__inner {
    margin: 0 -8px;
  }
  .ritual__item {
    width: calc(50% - 16px);
    margin: 8px;
  }
}
@font-face {
  font-family: "Crimson Text";
  src: url("./fonts/CrimsonText-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson Text";
  src: url("./fonts/CrimsonText-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson Text";
  src: url("./fonts/CrimsonText-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Crimson Text";
  src: url("./fonts/CrimsonText-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Toast notifications */
@keyframes storefront-toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes storefront-toast-out {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/*# sourceMappingURL=main.css.map */
