@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

button,
a,
input,
div,
label {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

body {
  background-image: url("../assets/images/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  body {
    background-image: url("../assets/images/bg-mob.webp");
  }
}

.wrapper {
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .wrapper {
    padding-inline: 30px;
  }
}

.header {
  min-height: 80px;
  min-height: clamp(48px, 48px + 32 * (100vw - 400px) / 900, 80px);
  background: #fff;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 80px;
  min-height: clamp(48px, 48px + 32 * (100vw - 400px) / 900, 80px);
}
@media (max-width: 480px) {
  .header__list {
    justify-content: center;
    gap: 20px;
  }
}
.header__item {
  display: flex;
  align-items: center;
  height: auto;
}
.header__link {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: right;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2.8px;
  text-decoration-thickness: 1.5px;
}
.header__link:hover {
  text-decoration: none;
}

@keyframes autoFocus {
  0% {
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
  /* Фокусировка с задержками */
  30% {
    transform: scale(1.05);
    filter: brightness(1) contrast(1);
  }
  35% {
    transform: scale(1.05);
    filter: brightness(1) contrast(1);
  }
  50% {
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
  55% {
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
  65% {
    transform: scale(0.97);
    filter: brightness(0.88) contrast(0.9);
  }
  70% {
    transform: scale(0.97);
    filter: brightness(0.88) contrast(0.9);
  }
  /* Вспышка */
  72% {
    transform: scale(0.97);
    filter: brightness(2.5) contrast(3);
  }
  73% {
    transform: scale(0.97);
    filter: brightness(0.88) contrast(0.9);
  }
  /* Задержка после вспышки (73% → 80%) */
  80% {
    transform: scale(0.97);
    filter: brightness(0.9) contrast(0.92); /* Слегка светлее после вспышки */
  }
  /* Плавное увеличение (80% → 100%) */
  100% {
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
}
.intro__food {
  animation: autoFocus 5s cubic-bezier(0.33, 0, 0.67, 1) infinite;
}

.intro__food {
  position: absolute;
  right: 0;
  top: 27.5%;
  z-index: 2;
  max-width: 280px;
  max-width: clamp(200px, 200px + 80 * (100vw - 850px) / 550, 280px);
  width: 100%;
}
@media (max-width: 1150px) {
  .intro__food {
    left: 35%;
  }
}
@media (max-width: 850px) {
  .intro__food {
    max-width: clamp(165px, 165px + 35 * (100vw - 400px) / 450, 200px);
    top: 38%;
  }
}
@media (max-width: 480px) {
  .intro__food {
    top: 43%;
    left: 45%;
  }
}

.intro__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 133px;
  gap: clamp(70px, 70px + 63 * (100vw - 850px) / 550, 133px);
}
@media (max-width: 850px) {
  .intro__wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 58px;
  }
}
@media (max-width: 480px) {
  .intro__wrapper {
    gap: clamp(3px, 3px + 37 * (100vw - 375px) / 105, 40px);
  }
}

.intro__left {
  padding-top: 68px;
}
@media (max-width: 850px) {
  .intro__left {
    padding-top: 0;
  }
}

.intro__logo {
  margin-bottom: 99px;
  font-family: "Gilroy", sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 126%;
  color: #ffb12d;
}
@media (max-width: 850px) {
  .intro__logo {
    display: none;
  }
}

.intro__logo.logo-mob {
  display: none;
}
@media (max-width: 850px) {
  .intro__logo.logo-mob {
    display: block;
    text-align: center;
    margin-bottom: 37px;
  }
}

@media (max-width: 850px) {
  .intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.intro__title {
  max-width: 519px;
  width: 100%;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 127%;
  color: #000;
  margin-bottom: 15px;
}
.intro__title span {
  display: block;
  color: #ffb12d;
}
@media (max-width: 850px) {
  .intro__title {
    text-align: center;
    margin-bottom: 17px;
  }
}

.intro__text {
  max-width: 390px;
  min-width: 360px;
  width: 100%;
  margin-bottom: 32px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 480px) {
  .intro__text {
    text-align: center;
    min-width: 0;
    margin-bottom: 18px;
  }
}

.intro__app-box {
  width: 180px;
  height: 52px;
}

.intro__app-image {
  display: block;
  width: 180px;
  height: 52px;
}

.intro__pictures-box {
  position: relative;
  max-width: 452px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 59.6px;
}
@media (max-width: 480px) {
  .intro__pictures-box {
    margin-top: 50px;
  }
}

.intro__picture {
  position: relative;
  display: block;
  max-width: 406px;
  max-width: clamp(240px, 240px + 166 * (100vw - 768px) / 432, 406px);
  width: 100%;
  height: auto;
  z-index: 1;
}
@media (max-width: 850px) {
  .intro__picture {
    margin-inline: auto;
  }
}

.intro__icon {
  position: absolute;
}
.intro__icon.donut.donut-mob, .intro__icon.clock.clock-mob {
  display: none;
}
.intro__icon.clock {
  left: -100px;
  bottom: 74px;
  transform: translate(120px, -50px) scale(0.8);
  transition: all 0.3s ease-out 0.7s;
}
.intro__icon.clock.animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (max-width: 1100px) {
  .intro__icon.clock {
    width: 130px;
  }
}
@media (max-width: 850px) {
  .intro__icon.clock {
    left: -30px;
    transform: translate(160px, -50px) scale(0.8);
  }
}
@media (max-width: 550px) {
  .intro__icon.clock {
    left: -30px;
  }
}
.intro__icon.donut {
  right: -29px;
  top: 47px;
  transform: translate(-200px, 200px) scale(0.8);
  transition: all 0.5s ease-out 1s;
}
.intro__icon.donut.animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (max-width: 850px) {
  .intro__icon.donut {
    top: 100px;
    right: 0px;
    transform: translate(-200px, 180px) scale(0.8);
  }
}
@media (max-width: 480px) {
  .intro__icon.donut, .intro__icon.clock {
    display: none;
  }
  .intro__icon.donut.donut-mob, .intro__icon.clock.clock-mob {
    display: block;
  }
  .intro__icon.donut.donut-mob {
    top: 115px;
    right: -10px;
  }
  .intro__icon.clock.clock-mob {
    left: -21px;
    bottom: 45px;
  }
  .intro__icon.clock.clock-mob.animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 1000px) {
  .how__wrapper.wrapper {
    padding-top: 70px;
  }
}
@media (max-width: 850px) {
  .how__wrapper.wrapper {
    padding-top: 0;
    padding-inline: 12px;
  }
}

.how__title {
  margin-top: -7px;
  margin-bottom: 33px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 131%;
  color: #000;
  text-align: center;
}
@media (max-width: 480px) {
  .how__title {
    margin-bottom: 17px;
  }
}

.how__cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 850px) {
  .how__cards {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .how__cards {
    gap: 18spx;
  }
}

.how__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  max-width: 351px;
  width: 100%;
  min-height: 422px;
  min-height: clamp(350px, 350px + 72 * (100vw - 768px) / 432, 422px);
  padding: 29px 30px 41px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 23px 0 rgba(11, 118, 54, 0.1);
  background: #fff;
  opacity: 0;
  transform: translateY(40px) scale(0.95) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* ступенчатая анимация карточек в ряду */
}
.how__card.animate {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}
.how__card:nth-child(1) {
  transition-delay: 0.1s;
}
.how__card:nth-child(2) {
  transition-delay: 0.2s;
}
.how__card:nth-child(3) {
  transition-delay: 0.3s;
}
@media (max-width: 850px) {
  .how__card {
    max-width: 450px;
  }
}
@media (max-width: 480px) {
  .how__card {
    padding: 29px 29px 24px;
  }
}

.card__pic {
  max-width: 293px;
  width: 100%;
  min-height: 245px;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .card__pic {
    min-height: auto;
  }
}
@media (max-width: 850px) {
  .card__pic {
    max-width: 100%;
  }
}

.card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 850px) {
  .card__content {
    max-width: 100%;
  }
}

.card__title {
  margin-bottom: 12px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 131%;
  text-align: center;
  color: #000;
}

.card__text {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #000;
  max-width: 283px;
}
@media (max-width: 850px) {
  .card__text {
    max-width: 100%;
  }
}

.advantage {
  position: relative;
  margin-top: 32px;
  margin-bottom: 87px;
}
@media (max-width: 480px) {
  .advantage {
    margin-top: 0;
    margin-bottom: 21px;
  }
}
@media (max-width: 400px) {
  .advantage {
    margin-top: -55px;
  }
}

.advantage__wrapper.wrapper {
  display: flex;
  gap: 71px;
  gap: clamp(0px, 0px + 71 * (100vw - 992px) / 358, 71px);
}
@media (max-width: 850px) {
  .advantage__wrapper.wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .advantage__wrapper.wrapper {
    padding-inline: 24px;
  }
}

.advantage__vegetables {
  position: absolute;
  top: -33px;
  right: -1px;
  display: block;
  width: 255px;
  height: auto;
  width: clamp(180px, 180px + 75 * (100vw - 992px) / 358, 255px);
  z-index: -1;
}
@media (max-width: 850px) {
  .advantage__vegetables {
    display: none;
  }
}

.advantage__picture {
  position: relative;
  max-width: 529px;
  width: 100%;
  height: 530px;
  height: clamp(327px, 327px + 203 * (100vw - 480px) / 370, 530px);
  background-image: url("../assets/images/yoga.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.advantage__content {
  max-width: 558px;
  width: 100%;
  padding-top: 140px;
}
@media (max-width: 850px) {
  .advantage__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }
}

.advantage__title {
  max-width: 407px;
  margin-bottom: 47px;
  margin-bottom: clamp(30px, 30px + 17 * (100vw - 992px) / 358, 47px);
  font-weight: 700;
  font-size: 36px;
  line-height: 131%;
  color: #000;
}
@media (max-width: 850px) {
  .advantage__title {
    text-align: center;
  }
}

.advantage__list {
  margin-bottom: 47px;
}
@media (max-width: 850px) {
  .advantage__list {
    margin-bottom: 30px;
    padding-left: 3px;
  }
}

.advantage__list-item {
  display: flex;
  gap: 12px;
  padding-right: 120px;
  padding-right: clamp(30px, 30px + 90 * (100vw - 992px) / 358, 120px);
  align-items: flex-start;
  margin-bottom: 19px;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #000000;
}
@media (max-width: 850px) {
  .advantage__list-item {
    padding-right: 0;
    margin-bottom: 18px;
  }
}

.advantage__list-item img {
  display: inline-block;
  margin-top: 3px;
}

.advantage__list-item:last-child {
  margin-bottom: 0;
}

.advantage__pic-box {
  position: relative;
  width: 180px;
  height: 52px;
}

.advantage__pic.app {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.intro__app-link,
.advantage__app-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.intro__app-link::before,
.advantage__app-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.intro__app-link:hover::before,
.advantage__app-link:hover::before {
  left: 100%;
}

.intro__app-image,
.advantage__pic.app {
  transition: transform 0.4s ease;
}

.advantage__pic.hand {
  position: absolute;
  right: -80px;
  bottom: -50px;
  width: 90px;
  height: auto;
  cursor: pointer;
  pointer-events: none;
}

@keyframes tapAnimation {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-20px, -15px) scale(0.9);
  }
  30% {
    transform: translate(-22px, -17px) scale(0.85);
  }
  45% {
    transform: translate(0, 0) scale(1);
  }
  46%, 100% {
    transform: translate(0, 0) scale(1);
  }
}
.footer {
  background: #fff;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}
@media (max-width: 480px) {
  .footer__wrapper {
    min-height: 48px;
    padding-inline: 22.5px;
  }
}

.footer a {
  display: inline-block;
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: right;
  color: #000;
  text-underline-offset: 2.8px;
  text-decoration-thickness: 1.5px;
}
.footer a:hover {
  text-decoration: none;
}

.footer__left {
  display: flex;
  gap: 42px;
}
@media (max-width: 480px) {
  .footer__left {
    gap: 20px;
  }
}

.footer__right {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #000;
}

.cookies {
  position: fixed;
  top: 12px;
  left: 50%;
  overflow-y: auto;
  width: 100%;
  max-width: 858px;
  max-height: 100%;
  padding: 11px 24px;
  color: #ffffff;
  border-radius: 20px;
  background-color: #49cd7e;
  box-shadow: 0px 4px 23px 0px rgba(11, 118, 54, 0.1019607843);
  opacity: 0;
  transform: translateX(-50%);
  z-index: 10;
  animation: opacityCookies 1s ease-in-out forwards;
}

.cookies__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.cookies__container_customize {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookies__container_customize .customize__item {
  display: block;
}

.cookies__container_customize .cookies__text_initial,
.cookies__container_customize .customize__button {
  display: none;
}

.cookies__container_customize .cookies__title_main {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.cookies__container_customize .cookies__title_main .cookies__back {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/arrow_back.svg");
  background-position: left center;
  background-repeat: no-repeat;
}

.cookies__title {
  width: 120px;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}

.cookies__title_main {
  width: 100%;
}

.cookies__back {
  display: none;
}

.cookies__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.cookies__link {
  text-decoration: underline;
}

.cookies__link:hover {
  text-decoration: none;
}

.cookies button {
  white-space: nowrap;
}

.cookies__button {
  font-weight: 700;
  font-size: 12px;
  text-decoration: underline;
  color: #ffffff;
}

.cookies__button:hover {
  text-decoration: none;
}

.cookies__accept {
  width: 100%;
  max-width: 123px;
  padding: 12px;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #3bbf6f;
  border-radius: 57px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.cookies__accept:hover {
  color: #ffffff;
  background-color: #3bbf6f;
}

.cookies-option__container {
  margin-top: 15px;
}

.cookies-option__text {
  margin: 2px 0 15px;
}

@media (min-width: 701px) {
  .cookies__text_initial {
    margin-right: 20px;
  }
}
@media (max-width: 700px) {
  .cookies {
    top: auto;
    bottom: 0;
    padding: 10px 20px 20px;
  }
  .cookies__container {
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
  }
  .cookies__container_customize {
    justify-content: space-between;
    text-align: left;
  }
  .cookies__title_main {
    justify-content: center;
    margin-bottom: 7px !important;
  }
  .cookies__title_main span {
    flex-grow: 1;
    text-align: center;
  }
  .cookies__text_initial {
    margin-bottom: 8px;
  }
  .cookies__accept {
    padding: 9px;
  }
}
@keyframes opacityCookies {
  to {
    opacity: 1;
  }
}
.customize__item {
  display: none;
}

@media (max-width: 700px) {
  .customize__button {
    order: 1;
  }
}
.switcher {
  display: flex;
  align-items: center;
}

.switcher__container {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.3s ease-in-out;
}

.switcher__container_active .switcher__knob,
.switcher__container_necessary .switcher__knob {
  transform: translateX(100%);
}

.switcher__container_necessary {
  opacity: 0.6;
  pointer-events: none;
}

.switcher__text {
  width: 23px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
}

.switcher__item {
  width: 46px;
  height: 26px;
  padding: 2px;
  border-radius: 100px;
  border: 2px solid #ffffff;
  cursor: pointer;
}

.switcher__knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1490196078);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 700px) {
  .switcher {
    justify-content: space-between;
  }
}
.wrapper-policy,
.wrapper-terms,
.wrapper-cookie {
  display: flex;
  align-items: center;
  min-height: 80px;
  min-height: clamp(48px, 48px + 32 * (100vw - 400px) / 900, 80px);
}

.main-policy,
.main-terms,
.main-cookie {
  padding-block: 40px;
}/*# sourceMappingURL=styles.css.map */