@font-face {
  font-family: "Myriad Pro";
  src: url("/fonts/MyriadPro-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/fonts/MyriadPro-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/fonts/MyriadPro-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/fonts/MyriadPro-SemiboldIt.otf") format("opentype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/fonts/MyriadPro-Cond.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/fonts/MyriadPro-BoldCond.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-green: #3cac4a;
  --color-green-dark: #477215;
  --color-green-light: #d9e999;
  --color-orange: #da943c;
  --color-burgundy: #7a0039;
  --color-text: #252525;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--color-text);
  font-family: "Myriad Pro", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.page {
  overflow: hidden;
  background: #ffffff;
}

.container {
  width: calc(100% - 80px);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  border-radius: 24px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 2px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #c57e28;
  transform: translateY(-2px);
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.header__inner {
  position: relative;
  display: flex;
  height: 124px;
  align-items: start;
}

.brand-logo {
  position: relative;
  display: block;
  width: 250px;
  height: 177px;
  overflow: hidden;
}

.header__logo {
  position: absolute;
  top: -70px;
  left: 0;
}

.brand-logo__base {
  position: absolute;
  inset: 0;
  width: 250px;
  height: 177px;
}

.brand-logo__shadow,
.brand-logo__name,
.brand-logo__slogan {
  position: absolute;
  left: 26px;
  width: 198px;
}

.brand-logo__shadow {
  top: 111px;
  height: 43px;
  opacity: 0.45;
}

.brand-logo__name {
  top: 111px;
  height: 24px;
}

.brand-logo__slogan {
  top: 143px;
  height: 11px;
}

.header__navigation {
  margin-left: 284px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 76px;
  margin-top: 25px;
}

.navigation__link {
  display: inline-flex;
  align-items: center;
  color: var(--color-green-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.navigation__link:hover,
.navigation__link:focus-visible {
  color: var(--color-green);
}

.navigation__menu-icon {
  display: inline-flex;
  width: 25px;
  margin-right: 10px;
  flex-direction: column;
  gap: 4px;
}

.navigation__menu-icon i {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-green-dark);
}

.header__menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
}

.hero__pattern {
  position: absolute;
  z-index: 0;
  top: 120px;
  left: calc(50% - 650px);
  width: 1760px;
  height: 710px;
  background: url("../images/figma/imgGroup.svg") center / 1760px 710px no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  min-height: 850px;
}

.header__inner-bg-img {
  position: absolute;
  z-index: -1;
  left: -260px;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 474px;
  padding-top: 235px;
}

.hero__title {
  margin: 0 0 30px;
  color: var(--color-green);
  font-size: 58px;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
}

.hero__button {
  width: 306px;
  margin-bottom: 33px;
}

.hero__description {
  margin: 0 0 14px;
  font-family: "Myriad Pro Condensed", Arial, sans-serif;
  font-size: 28px;
  line-height: 32px;
}

.hero__accent {
  margin: 0;
  color: #d1790b;
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
  line-height: 28px;
}

.hero__leaves {
  position: absolute;
  top: 132px;
  right: 18px;
  width: 108px;
  height: 90px;
  transform: rotate(-12deg);
}

.hero__visual {
  pointer-events: none;
  position: absolute;
  z-index: 12;
  top: -20px;
  right: -42px;
  width: 842px;
  height: 806px;
}

.hero__shape {
  position: absolute;
  pointer-events: none;
}

.hero__shape--one {
  top: 184px;
  right: -7px;
  width: 800px;
  height: 574px;
}

.hero__shape--two {
  top: 96px;
  right: -35px;
  width: 357px;
  height: 533px;
}

.hero__shape--three {
  top: 314px;
  left: 37px;
  width: 418px;
  height: 481px;
}

.hero__dish {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 16px;
  width: 744px;
  height: 744px;
  object-fit: contain;
}

.hero__seal {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 30px;
  width: 194px;
  height: 194px;
  transform: rotate(-16deg);
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: -40px;
  left: calc(50% - 12px);
  display: block;
  width: 26px;
  height: 72px;
}

.catalog {
  position: relative;
  padding: 60px 0 0;
}

.catalog__inner {
  position: relative;
  z-index: 1;
}

.catalog__lead {
  max-width: 980px;
  margin: 0 auto 30px;
  font-size: 28px;
  font-style: italic;
  line-height: 32px;
  text-align: center;
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.catalog__categories {
  margin-bottom: 50px;
}

.categories__item {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}

.categories__picture {
  position: relative;
  display: flex;
  width: 252px;
  height: 156px;
  align-items: center;
  justify-content: center;
}

.categories__name {
  margin-top: 9px;
  color: var(--color-green);
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 2px solid rgba(60, 172, 74, 0.7);
  box-shadow: 0 4px 7px rgba(61, 170, 74, 0.32);
}

.product-card__image {
  display: block;
  width: 100%;
  height: 295px;
  object-fit: cover;
}

.product-card__content {
  position: relative;
  min-height: 116px;
  padding: 30px 23px 14px;
}

.product-card__dots {
  position: absolute;
  top: 10px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  width: auto;
  transform: translateX(-50%);
}

.product-card__dots.swiper-pagination-horizontal.swiper-pagination-bullets {
  top: 10px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.product-card__dots.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0;
  background: #d9d9d9;
  opacity: 1;
}

.product-card__dots.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 9px;
  height: 9px;
  background: var(--color-green);
}

.product-card__title {
  min-height: 42px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
}

.nutrition {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
}

.nutrition__item {
  min-width: 0;
  color: var(--color-green);
  text-align: center;
}

.nutrition__item--orange {
  color: var(--color-orange);
}

.nutrition__name,
.nutrition__value {
  margin: 0;
  font-family: "Myriad Pro Condensed", Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}

.nutrition__value {
  font-size: 13px;
  text-transform: none;
}

.promo {
  position: relative;
  padding: 116px 0 0;
}

.promo__inner {
  position: relative;
  z-index: 1;
}

.promo__card {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: visible;
  background: var(--color-green-light);
  border-radius: 52% 48% 40% 60% / 44% 48% 52% 56%;
}

.promo__image-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-48%);
  left: 0;
  width: 600px;
  height: 582px;
}

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

.promo__content {
  position: absolute;
  z-index: 3;
  top: 185px;
  left: 620px;
  width: 458px;
}

.promo__text {
  margin: 0 0 25px;
  font-family: "Myriad Pro Condensed", Arial, sans-serif;
  font-size: 36px;
  line-height: 34px;
}

.promo__text em {
  font-size: 32px;
  font-weight: 400;
}

.promo__text strong {
  display: block;
  color: var(--color-green);
  font-weight: 700;
  text-transform: uppercase;
}

.promo__button {
  width: 307px;
}

.promo__seal {
  position: absolute;
  z-index: 4;
  right: 60px;
  bottom: 75px;
  width: 230px;
  height: 230px;
  transform: rotate(-1deg);
}

.benefits {
  position: relative;
  padding: 130px 0 135px;
  background-image: url("../images/figma/imgGroup.svg");
  background-repeat: no-repeat;
  background-position: right bottom -350px;
}

.benefits__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.benefit_value {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  margin-top: 23px;
}

.benefit {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 36px 0 30px;
  background: #2fb038;
  color: #ffffff;
  overflow: hidden;
}

.footer__inner {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 70px;
}

.footer__contacts {
  position: relative;
  padding-left: 180px;
}

.contacts {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-style: normal;
}

.contacts__link {
  margin-top: 7px;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  text-decoration: none;
  white-space: nowrap;
}

.contacts__link:first-child {
  margin-top: 0;
}

.contacts__caption {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
}

.footer__leaves {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 127px;
  height: 111px;
}

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

.footer__shop-link {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.footer__feedback {
  display: flex;
  width: 405px;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #ffffff;
  color: #9d9d9d;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__feedback:hover,
.footer__feedback:focus-visible {
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

.footer__legal {
  margin: 19px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
}

.promo__line-bg {
  position: absolute;
}

.promo__line-bg--1 {
  left: -90px;
  bottom: 40px;
}

.promo__line-bg--2 {
  right: -40px;
  z-index: -1;
  top: -50px;
}

.hero__line {
  position: absolute;
  top: calc(100% - 50px);
  left: 100px;
  z-index: -1;
}

@media (max-width: 1320px) {
  .container {
    width: calc(100% - 64px);
  }

  .hero__visual {
    top: 40px;
    right: -120px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .hero__content {
    width: 420px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 50px;
  }

  .hero__description {
    font-size: 25px;
    line-height: 29px;
  }

  .categories {
    gap: 20px;
  }

  .products {
    gap: 20px;
  }

  .product-card__image {
    height: 260px;
  }

  .product-card__content {
    padding-right: 17px;
    padding-left: 17px;
  }

  .promo__content {
    left: 548px;
    width: 400px;
  }

  .promo__text {
    font-size: 32px;
    line-height: 31px;
  }

  .promo__text em {
    font-size: 28px;
  }

  .promo__image-wrap {
    width: 535px;
  }

  .promo__seal {
    width: 190px;
    height: 190px;
    bottom: 20px;
  }

  .benefits__inner {
    gap: 30px;
  }
}

@media (max-width: 1050px) {
  .navigation {
    gap: 34px;
  }

  .hero__visual {
    right: -250px;
    opacity: 0.78;
  }

  .hero__content {
    width: 390px;
  }

  .categories__picture {
    width: 205px;
  }

  .products {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card__image {
    height: auto;
  }

  .promo__card {
    min-height: 550px;
  }

  .promo__image-wrap {
    top: 83px;
    width: 400px;
    height: 520px;
    transform: unset;
  }

  .promo__content {
    top: 150px;
    left: 355px;
    width: 350px;
  }

  .promo__text {
    font-size: 29px;
    line-height: 28px;
  }

  .promo__seal {
    right: -20px;
    width: 170px;
    height: 170px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contacts {
    padding-left: 100px;
  }

  .footer__leaves {
    left: 0;
  }

  .contacts__link {
    font-size: 23px;
    line-height: 26px;
  }

  .footer__feedback {
    width: 340px;
  }

  .promo__leaf {
    display: none !important;
  }
}

@media (max-width: 780px) {
  .container {
    width: calc(100% - 36px);
  }

  .header__navigation {
    margin-left: 270px;
  }

  .navigation {
    gap: 18px;
  }

  .navigation__link {
    font-size: 14px;
  }

  .hero__visual {
    right: -370px;
  }

  .categories {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .catalog__categories {
    margin-bottom: 65px;
  }

  .promo__card {
    min-height: 510px;
  }

  .promo__image-wrap {
    left: -30px;
    width: 390px;
    height: 480px;
  }

  .promo__content {
    top: 130px;
    left: 330px;
    width: 280px;
  }

  .promo__text {
    font-size: 24px;
    line-height: 24px;
  }

  .promo__text em {
    font-size: 22px;
  }

  .promo__seal {
    width: 130px;
    height: 130px;
  }

  .benefits__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 70px;
  }

  .footer__inner {
    gap: 30px;
  }

  .footer__contacts {
    padding-left: 0;
  }

  .promo__line-bg,
  .footer__leaves {
    display: none;
  }

  .contacts__link {
    font-size: 22px;
  }

  .footer__feedback {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 30px);
    max-width: 470px;
  }

  .header__inner {
    height: 108px;
  }

  .header__inner-bg-img {
    display: none;
  }

  .header__logo {
    top: -70px;
    left: calc(50% - 125px);
  }

  .header__menu-button {
    position: absolute;
    z-index: 4;
    top: 11px;
    left: -5px;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 7px 5px;
    border: 0;
    background: transparent;
    flex-direction: column;
    gap: 4px;
  }

  .header__menu-line {
    flex-shrink: 0;
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-green-dark);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .header__menu-button[aria-expanded="true"] .header__menu-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .header__menu-button[aria-expanded="true"] .header__menu-line:nth-child(2) {
    opacity: 0;
  }

  .header__menu-button[aria-expanded="true"] .header__menu-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__navigation {
    position: absolute;
    z-index: 3;
    top: 0;
    right: -15px;
    left: -15px;
    display: none;
    min-height: 205px;
    margin: 0;
    padding: 116px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 22px rgba(45, 84, 28, 0.13);
  }

  .header__navigation--open {
    display: flex;
  }

  .navigation {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .navigation__link {
    font-size: 16px;
    line-height: 22px;
  }

  .navigation__menu-icon {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 510px;
  }

  .hero__pattern,
  .hero__visual,
  .hero__scroll {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding: 130px 0 0;
  }

  .hero__title {
    width: 245px;
    margin: 0 auto 19px;
    padding-left: 13px;
    font-size: 32px;
    line-height: 32px;
  }

  .hero__button {
    display: flex;
    width: 304px;
    min-height: 41px;
    margin: 0 auto 24px;
    padding: 8px 15px;
    font-size: 15px;
    line-height: 18px;
  }

  .hero__description {
    width: 252px;
    margin: 0 auto 18px;
    font-size: 15px;
    line-height: 16px;
  }

  .hero__accent {
    width: 260px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
  }

  .catalog {
    padding-top: 0;
  }

  .catalog__lead {
    display: none;
  }

  .categories {
    width: 330px;
    max-width: 100%;
    gap: 18px 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog__categories {
    margin-bottom: 54px;
  }

  .categories__name {
    margin-top: 2px;
    font-size: 17px;
    line-height: 24px;
  }

  .products {
    max-width: 100%;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .product-card__content {
    min-height: 145px;
    padding: 34px 22px 17px;
  }

  .product-card__title {
    min-height: 46px;
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 18px;
  }

  .nutrition__name,
  .nutrition__value {
    font-size: 11px;
    line-height: 13px;
  }

  .nutrition__value {
    font-size: 12px;
  }

  .promo {
    margin-top: 80px;
    padding: 0;
    background-image: url("../images/bg-eat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .promo__inner {
    width: 100%;
    max-width: none;
  }

  .promo__card {
    min-height: 620px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
  }

  .promo__image-wrap {
    display: none;
  }

  .promo__content {
    position: relative;
    top: auto;
    left: auto;
    width: 285px;
    margin: 0 auto;
    padding-top: 72px;
    text-align: center;
  }

  .promo__text {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 20px;
  }

  .promo__text em {
    font-size: 18px;
  }

  .promo__text strong {
    margin-top: 2px;
  }

  .promo__button {
    width: 285px;
    min-height: 36px;
    padding: 6px 16px;
    font-size: 13px;
    line-height: 16px;
  }

  .promo__seal {
    right: calc(50% - 85px);
    bottom: 40px;
    width: 170px;
    height: 170px;
  }

  .benefits {
    padding: 60px 0 72px;
  }

  .benefits__inner {
    max-width: calc(100% - 20px);
    gap: 38px 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    min-height: 520px;
    padding: 42px 0 35px;
  }

  .footer__inner {
    display: flex;
    width: 100%;
    max-width: 360px;
    align-items: center;
    flex-direction: column;
    gap: 0;
  }

  .footer__contacts {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0;
    flex-direction: column;
  }

  .contacts {
    align-items: center;
    text-align: center;
  }

  .contacts__link {
    margin-top: 18px;
    font-size: 21px;
    line-height: 23px;
  }

  .contacts__link:first-child {
    margin-top: 0;
  }

  .contacts__caption {
    font-size: 13px;
    line-height: 15px;
  }

  .footer__leaves {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 104px;
    height: 91px;
    margin: 35px auto 18px;
  }

  .footer__contact-list {
    order: -1;
  }

  .footer__actions {
    width: 100%;
    align-items: center;
  }

  .footer__shop-link {
    display: none;
  }

  .footer__feedback {
    width: 280px;
    min-height: 60px;
    border-radius: 14px;
    font-size: 17px;
  }

  .footer__legal {
    margin-top: 30px;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
  }

  .benefit_value {
    font-size: 18px;
  }

  .benefits {
    background: none;
  }
}

@media (max-width: 374px) {
  .hero__button,
  .promo__button {
    width: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.hero__leaves {
  top: 132px;
  right: 0;
  width: 127px;
  height: 110px;
  transform: none;
}

.hero__leaves img,
.hero__scroll img,
.promo__background img,
.promo__seal img,
.promo__leaf img,
.footer__leaves img {
  width: 100%;
  height: 100%;
}

.hero__mobile-seal {
  display: none;
}

.hero__scroll {
  width: 37px;
  height: 76px;
}

.catalog__decoration {
  position: absolute;
  z-index: 0;
  top: 0;
  left: -125px;
  width: 417px;
  height: 623px;
  pointer-events: none;
}

.categories__picture {
  display: block;
  width: 273px;
  height: 207px;
}

.categories__composition {
  position: absolute;
  top: 0;
  left: 50%;
  width: 273px;
  height: 268px;
  max-width: none;
  transform: translateX(-50%);
}

.categories__picture--main .categories__composition {
  top: 0;
  width: 249px;
  height: 252px;
}

.categories__main-dish {
  position: absolute;
  z-index: 1;
  top: 43px;
  left: 50%;
  width: 192px;
  height: 150px;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.categories__name {
  position: relative;
  z-index: 2;
  margin-top: 0;
  font-size: 32px;
  line-height: 32px;
}

.product-card__dots {
  gap: 5px;
}

.promo {
  overflow: hidden;
}

.promo__card {
  min-height: 660px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.promo__background {
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 50%;
  display: block;
  width: 1252px;
  height: 660px;
  transform: translateX(-50%);
}

.promo__overlay {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 47px;
  width: 763px;
  height: 588px;
  max-width: none;
  transform: scaleX(-1);
}

.promo__image-wrap {
  z-index: 2;
}

.promo__content {
  z-index: 3;
}

.promo__seal {
  display: block;
}

.promo__leaf {
  position: absolute;
  z-index: 3;
  top: 143px;
  right: 5px;
  display: block;
  width: 127px;
  height: 110px;
  border: 0;
  border-radius: 0;
  transform: none;
}

.benefits__inner {
  align-items: start;
}

.benefit__composition-wrapper {
  height: 250px;
}

.benefit:nth-child(1) .benefit__composition {
  width: 223px;
}

.benefit:nth-child(2) .benefit__composition {
  width: 251px;
}

.benefit:nth-child(3) .benefit__composition {
  width: 230px;
}

.benefit:nth-child(4) .benefit__composition {
  width: 237px;
}

.footer__decoration {
  position: absolute;
  z-index: 0;
  top: 0px;
  right: 50px;
  width: 417px;
  height: 623px;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__leaves {
  display: block;
}

@media (max-width: 1320px) {
  .categories__picture {
    width: 248px;
  }

  .categories__composition {
    width: 248px;
    height: auto;
  }

  .categories__picture--main .categories__composition {
    width: 226px;
    height: auto;
  }

  .categories__main-dish {
    top: 39px;
    width: 175px;
    height: 137px;
  }
}

@media (max-width: 1050px) {
  .categories__picture {
    width: 205px;
    height: 170px;
  }

  .categories__composition {
    width: 224px;
  }

  .categories__picture--main .categories__composition {
    width: 204px;
  }

  .categories__main-dish {
    top: 35px;
    width: 157px;
    height: 123px;
  }

  .categories__name {
    font-size: 27px;
    line-height: 30px;
  }

  .benefit:nth-child(1) .benefit__composition,
  .benefit:nth-child(3) .benefit__composition {
    width: 190px;
  }

  .benefit:nth-child(2) .benefit__composition,
  .benefit:nth-child(4) .benefit__composition {
    width: 200px;
  }

  .footer__contacts {
    padding-left: 145px;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .hero__content {
    width: 360px;
  }

  .hero__visual {
    right: -340px;
  }

  .hero__title {
    font-size: 48px;
    line-height: 47px;
  }

  .hero__description {
    font-size: 22px;
    line-height: 26px;
  }
}

@media (min-width: 701px) and (max-width: 780px) {
  .hero__visual {
    right: -480px;
  }

  .footer__contacts {
    padding-left: 0;
  }

  .footer__leaves {
    display: none;
  }
}

@media (max-width: 700px) {
  .footer__contacts {
    padding-left: 0;
  }

  .hero__leaves {
    top: 126px;
    right: calc(50% - 132px);
    width: 44px;
    height: 38px;
    transform: none;
  }

  .hero__mobile-seal {
    position: absolute;
    z-index: 4;
    top: 163px;
    right: calc(50% - 133px);
    display: block;
    width: 51px;
    height: 51px;
  }

  .catalog__decoration {
    display: none;
  }

  .categories__picture {
    width: 161px;
    height: 125px;
  }

  .categories__composition {
    width: 161px;
    height: auto;
  }

  .categories__picture--main .categories__composition {
    width: 150px;
    height: auto;
  }

  .categories__main-dish {
    top: 26px;
    width: 114px;
    height: 89px;
  }

  .categories__name {
    margin-top: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .promo__card {
    min-height: 500px;
  }

  .promo__background {
    display: none;
  }

  .promo__overlay {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
  }

  .promo__image-wrap {
    display: none;
  }

  .promo__content {
    padding-top: 72px;
  }

  .promo__seal {
    right: calc(50% - 89px);
    bottom: 70px;
    width: 179px;
    height: 179px;
  }

  .promo__leaf {
    display: none;
  }

  .benefits {
    padding: 60px 0 72px;
  }

  .benefits__inner {
    align-items: start;
    gap: 34px 6px;
  }

  .benefit:nth-child(1) .benefit__composition {
    width: 151px;
  }

  .benefit:nth-child(2) .benefit__composition {
    width: 160px;
  }

  .benefit:nth-child(3) .benefit__composition {
    width: 151px;
  }

  .benefit:nth-child(4) .benefit__composition {
    width: 156px;
  }

  .footer__decoration {
    display: none;
  }

  .footer__leaves {
    width: 127px;
    height: 111px;
    transform: none;
    margin-bottom: 40px;
  }

  .benefit__composition-wrapper {
    height: 160px;
  }
}
