@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish/Mulish-VariableFont_wght.ttf") format("truetype");
  font-weight: 1 1000;
  font-stretch: 75% 100%;
  font-display: swap;
}

:root {
  --main-bg-color: #050B1E;
  --second-bg-color: #FFFFFF;
  --main-text-color: #FFFFFF;
  --second-text-color: #EBC970;
  --accent-color: #FB8D44;
  --second-accent-color: #501076;
  --main-font-family: "Mulish";
  --line-1: 1;
  --line-2: 1.2;
  --line-3: 1.3;
  --line-4: 1.4;

}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

a {
  background-color: transparent;
  transition: all 0.25s;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  padding: 0;
  text-transform: none;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  padding: 0;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

body {
  margin: 0;
  font-family: var(--main-font-family), sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--main-text-color);
  background: var(--main-bg-color);
  overflow-x: hidden;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

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

a {
  text-decoration: none;
  color: var(--main-text-color);
  transition: all 0.25s;
}

a:hover,
a:focus-within {
  color: var(--second-text-color);
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

button {
  border: none;
  background: inherit;
  cursor: pointer;
  transition: all 0.25s;
}

.section {
  max-width: 134rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}



.container {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.container-top {
  padding-top: 12rem;
  padding-bottom: 0;
}

.container-bottom {
  padding-top: 0;
  padding-bottom: 12rem;
}

.box {
  display: flex;
  flex-direction: column;
}

.box-row {
  display: flex;
  flex-direction: row;
}

.main {
  gap: 12rem;
}

.header {
  padding: 1.6rem 0;
}

.header-container {
  position: relative;
}

.header-container::after {
  max-width: 128rem;
  width: 100%;
  height: 1px;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.6rem;
  transform: translateX(-50%);
  background: var(--accent-color);
}

.header-wrapper {
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.header-link__logo {
  max-width: 10.8rem;
  width: 100%;
  height: auto;
}


.header-img__logo {
  object-fit: contain;
}

.header-list {
  gap: 4rem;
}

.header-link__nav {
  width: max-content;
  display: block;
  font-weight: 600;
  font-size: 2rem;

}



.header-block {
  gap: 4rem;
  align-items: center;
}

.header-link__tel {
  min-width: max-content;
  padding-left: 3rem;
  position: relative;
  font-weight: 700;
  font-size: 2rem;
}

.header-link__tel::before {
  content: '';
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../assets/svg/phone.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.base-btn {
  width: 100%;
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--main-bg-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--accent-color);
  transition: color 0.3s ease;
}

.base-btn:hover,
.base-btn:focus-within {
  color: var(--main-bg-color);
}

.base-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(270deg, var(--second-text-color) 0%, var(--accent-color) 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.base-btn:hover::before,
.base-btn:focus-within::before {
  opacity: 0;
}

.base-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow:
    0px 4px 6px 0px #FFFFFF80 inset,
    0px 0px 10px 0px #50107699;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.base-btn:hover::after,
.base-btn:focus-within::after {
  opacity: 1;
}

.header-btn {
  max-width: 22.8rem;
  min-width: 22.8rem;
}

.hero {
  padding-bottom: 12rem;
  position: relative;
  background-image: url(/wp-content/uploads/2026/07/img.png);
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -11rem;
  right: 0;
  background-image: url(../assets/png/bg-hero-ellipse.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  z-index: -1;
}

.hero-box {
  max-width: 62%;
  width: 100%;
  gap: 4.8rem;
}

.hero-box__wrap {
  gap: 2.4rem;
}

.hero-title {
  font-weight: 600;
  font-size: 6.4rem;
}

.hero-descr {
  width: 90%;
  font-size: 3.2rem;
}

.hero-btn {
  max-width: 40.8rem;
}

.hero-block {
  width: max-content;
  padding: 1rem 8rem 1rem 2.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--main-text-color);
}

.hero-text {
  width: max-content;
  font-size: 2.4rem;
  color: var(--main-bg-color);

}

.title {
  margin-bottom: 6rem;
  text-align: center;
  font-weight: 600;
  font-size: 4.8rem;
  color: var(--second-text-color);
}

.products {
  margin-top: -12rem;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

.products-item {
  min-height: 36rem;
  padding: 2rem;
  gap: 1.6rem;
  background: var(--second-bg-color);
}

.products-img {
  max-width: 16.8rem;
}

.products-box {
  gap: 0.6rem;
}

.products-name {
  margin-bottom: 0.2rem;
  font-weight: 600;
  font-size: 2rem;
  color: var(--main-bg-color);
}

.products-info {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--main-bg-color);
}

.products-info--accent {
  font-weight: 600;
}

.products-weight {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--main-bg-color);
}

.products-list__info {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--main-bg-color);
}

.products-kcal {
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 1.6rem;
}

.products-link {
  max-width: 44.8rem;
  margin: 4rem auto 0;
}

.faq,
.price {
  position: relative;
}

.faq-img__bg,
.price-img__bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.price-list {
  margin-bottom: 4rem;
  gap: 3rem;
  justify-content: space-between;
}

.price-item {
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.price-name {
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

.price-img {
  max-width: 8rem;
  width: 100%;
  object-fit: contain;
}

.price-item__info {
  width: 25%;
  justify-content: center;
  align-items: center;
}

.price-item__info:not(:last-child) {
  border-right: 2px solid var(--second-text-color);
}

.price-box {
  width: 100%;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--second-text-color);
}

.price-text {
  font-weight: 300;
  font-size: 2rem;
  text-align: center;
}

.price-text--accent {
  font-weight: 600;
  font-size: 3.2rem;
}

.price-block {
  padding: 1.5rem;
  gap: 1.2rem;
  align-items: center;
}

.price-text__info {
  font-weight: 600;
  font-size: 6.4rem;
}

.price-number--accent {
  font-weight: 600;
  font-size: 3.2rem;
}

.price-number,
.price-text__complex {
  font-weight: 300;
  font-size: 2rem;
}

.price-number {
  padding-bottom: 0.2rem;
}

.price-text__complex {
  padding-top: 0.rem;
  border-top: 1px solid var(--second-bg-color);
}

.price-descr {
  margin: 2.4rem 0 0;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

.price-btn {
  max-width: 44.8rem;
  margin: 4.8rem auto 0;
}

.reasons {
  gap: 4.8rem;
  overflow-x: hidden;
}

.reasons-box {
  min-width: 33rem;
  max-width: 33rem;
  width: 100%;
  padding: 4.8rem 2rem 0;
  gap: 2rem;
  background: var(--main-bg-color);
  box-shadow: 0px 0px 14px 0px #FFFFFF26;
}

.reasons-text__info {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
}

.reasons-text__descr {
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

.reasons-text__descr--accent {
  font-weight: 600;
  font-size: 6.4rem;
}

.reasons-box__wrap {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--accent-color);
}

.reasons-list__info {
  padding-bottom: 2rem;
  gap: 1.6rem;
}

.reasons-item__info {
  gap: 1.2rem;
  align-items: center;
}

.reasons-img__info {
  width: 2.4rem;
}

.reasons-text {
  font-weight: 600;
  font-size: 2rem;

}

.reasons-title {
  margin: 1rem 0 4.8rem;
  text-align: left;
}

.reasons-wrapper {
  width: fit-content;
  max-width: 40%;
  overflow-x: auto;
  padding-bottom: 2.8rem;
}

.reasons-wrapper::-webkit-scrollbar {
  height: 0.6rem;
}

.reasons-wrapper::-webkit-scrollbar-track {
  border: 0.8rem solid #FFFFFF33;
  border-radius: 0.8rem;
}

.reasons-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(270deg, var(--second-text-color) 0%, var(--accent-color) 100%);
  border-radius: 0.8rem;
}



.reasons-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.8rem;
}

.reasons-item {
  width: 28rem;
}

.reasons-item {
  padding: 2rem;
  gap: 0.8rem;
  background: var(--second-bg-color);
}

.reasons-name {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 2rem;
  color: var(--main-bg-color);
}

.reasons-descr {
  font-weight: 300;
  line-height: var(--line-3);
  color: var(--main-bg-color);
}

.cooperation {
  position: relative;
}

.cooperation-img__bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.cooperation-title {
  margin-bottom: 1.2rem;
}

.cooperation-descr {
  margin-bottom: 6rem;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

.cooperation-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  justify-content: space-between;
}

.cooperation-item {
  padding: 0 1rem;
  align-items: center;
  gap: 2rem;
}

.steps-box__number,
.cooperation-box__number {
  min-width: 4.8rem;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
  color: var(--main-bg-color);
  background: linear-gradient(270deg, var(--second-text-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
}

.cooperation-img {
  max-width: 8rem;
  height: auto;
  object-fit: contain;
}

.cooperation-block {
  gap: 0.8rem;
  text-align: center;
}

.cooperation-name {
  font-weight: 600;
  font-size: 2rem;
}

.cooperation-descr__info {
  font-weight: 300;
  line-height: var(--line-3);

}

.cooperation-wrap {
  margin-top: 4rem;
  padding: 2.2rem 6.4rem;
  gap: 2rem;
  align-items: center;
  background: var(--main-bg-color);
  box-shadow: 0px 0px 14px 0px #FFFFFF26;
}

.cooperation-img__info {
  max-width: 8rem;
}

.cooperation-text {
  font-weight: 600;
  font-size: 3.2rem;
}

.clients-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.8rem;
  justify-content: center;
}

.clients-item {
  width: calc(100%/3 - 19px);
  padding: 2rem;
  gap: 1.6rem;
  color: var(--main-bg-color);
  background: var(--main-text-color);
}

.clients-item:nth-last-child(1):nth-child(3n + 1) {
  grid-column: 2;
}

.clients-item:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 1 / 3;
}

.clients-box1 {
  gap: 2rem;
  align-items: center;
}

.clients-img__logo {
  max-width: 8rem;
  object-fit: contain;
}

.clients-name {
  font-weight: 600;
  font-size: 2rem;
}

.clients-box {
  gap: 0.8rem;
}

.clients-box2 {
  gap: 1rem;
  justify-content: space-between;
flex-wrap: wrap;
}

.clients-img3,
.clients-img4 {
  max-width: 3.2rem;
  object-fit: contain;
}

.clients-box3,
.clients-box4 {
  gap: 2rem;
  align-items: center;
}


.clients-box--max {
  max-width: max-content;
  width: 100%;
}

.clients-descr {
  font-weight: 300;
  font-size: 1.6rem;
}

.clients-box4 .clients-descr {
  min-width: max-content;
}

.clients-title {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  gap: 4rem;
}

.steps-box {
  gap: 6.4rem;
  justify-content: space-between;
}

.steps-block {
  max-width: 45.6rem;
  width: 100%;
  gap: 2.4rem;
}

.steps-title {
  font-weight: 300;
  font-size: 4.8rem;
}

.steps-title--accent {
  font-weight: 600;
  color: var(--second-text-color);
}

.steps-descr {
  font-weight: 600;
  font-size: 2.4rem;
}

.steps-wrap {
  width: 100%;
  padding: 4rem;
  box-shadow: 0px 0px 14px 0px #FFFFFF26;
}

.steps-list__info {
  gap: 2rem;
}

.steps-item__info {
  gap: 2rem;
}

.steps-box__info {
  gap: 0.7rem;
}

.steps-text {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 3.2rem;
}

.steps-phrase {
  font-weight: 300;
  font-size: 2.4rem;
}

.steps-btn {
  margin-top: 4rem;
}

.steps-description {
  margin-top: 0.8rem;
  font-weight: 300;
  font-size: 1.6rem;
  justify-content: center;
}

.steps-description--point {
  padding-left: 1.6rem;
  position: relative;
  display: flex;
}

.steps-description--point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--main-text-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.steps-list {
  gap: 1rem;
  justify-content: space-between;
}

.steps-item {
  gap: 1.2rem;
  align-items: center;
}

.steps-img {
  max-width: 6.4rem;
}

.steps-text__list {
  font-weight: 600;
  font-size: 2.4rem;

}

.faq-box {
  max-width: 76rem;
  width: 100%;
  margin: 0 auto;
  gap: 1.6rem;
}

.faq-det {
  background: var(--main-bg-color);
  box-shadow: 0px 0px 10px 0px #FFFFFF26;
}

.faq-summ {
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  cursor: pointer;
}

.faq-summ__text {
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--main-text-color);
}

.faq-box__arrow {
  position: relative;
  min-width: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
}

.faq-box__arrow::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background-image: url(../assets/svg/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.faq-det[open] .faq-box__arrow::before {
  background-image: url(../assets/svg/multiply.svg);
}

.faq-det[open] .faq-summ__text {
  color: var(--main-bg-color);
}

.faq-wrap {
  margin-top: -1.2rem;
  padding: 0 2rem 2rem 6.4rem;
}

.faq-text {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--main-bg-color);
}

.faq-det[open] {
  background: var(--main-text-color);
}

.footer {
  padding: 6.4rem 0 2rem;
  border-top: 1px solid var(--accent-color);
}

.footer-top {
  padding-bottom: 1.6rem;
  gap: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(270deg, var(--second-text-color) 0%, var(--accent-color) 100%);
  border-image-slice: 1;
}

.footer-top__box {
  max-width: 40.8rem;
  width: 100%;
  gap: 2rem;
}

.footer-logo {
  font-weight: 600;
  font-size: 3.2rem;
  color: var(--second-text-color);
}

.footer-top__wrap {
  gap: 1.2rem;
}

.footer-text__bank,
.footer-text__unp {
  font-weight: 300;
  font-size: 1.6rem;
}

.footer-top__container {
  position: relative;
}

.footer-link__socials,
.footer-link__yandex {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-box {
  gap: 0.4rem;
  align-items: center;
}

.footer-img__yandex {
  width: 3.2rem;
  height: 3.2rem;
}

.footer-raiting {
  font-weight: 800;
  font-size: 2.2rem;
}

.footer-img__stars {
  width: auto;
  height: 1.4rem;
  object-fit: contain;
}

.footer-text__descr {
  padding-left: 3.6rem;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: var(--line-4);
}

.footer-list {
  gap: 2.8rem;
}

.footer-item {
  gap: 1.2rem;
}

.footer-name {
  font-weight: 600;
  font-size: 2.4rem;
}

.footer-list__info {
  gap: 1rem;
}

.footer-item__info {
  padding-left: 3rem;
}

.footer-text__location {
  position: relative;
  font-weight: 600;
  font-size: 1.6rem;
}

.footer-text__time::before,
.footer-link__mail::before,
.footer-link__tel::before,
.footer-text__location::before {
  content: '';
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: -3rem;
  background-image: url(../assets/svg/location.svg);
}

.footer-text__time,
.footer-link__mail,
.footer-text__adress {
  position: relative;
  font-weight: 300;
  font-size: 1.6rem;
}

.footer-link__tel {
  position: relative;
  font-weight: 700;
  font-size: 2rem;
}

.footer-link__tel::before {
  background-image: url(../assets/svg/contact.svg);
}

.footer-link__mail::before {
  background-image: url(../assets/svg/phishing.svg);
}

.footer-text__time::before {
  background-image: url(../assets/svg/clock.svg);
}

.footer-item__info--accent {
  margin-top: 1rem;
  padding-left: 0;
}

.footer-list__socials {
  gap: 1.2rem;
}

.footer-item__socials {
  position: relative;
  gap: 0.4rem;
  align-items: center;
}

.footer-img__socials {
  max-width: 3.2rem;
}

.footer-name__socials {
  font-weight: 300;
  font-size: 1.4rem;
  text-align: center;
}

.footer-link__socials:hover~.footer-name__socials,
.footer-link__socials:focus-within~.footer-name__socials {
  color: var(--second-text-color);
}

.footer-bott {
  padding-top: 1.6rem;
  align-items: center;
  gap: 0.2rem;
}

.footer-link__vtop,
.footer-text__rules {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: var(--line-3);
  opacity: 0.8;
}

dialog::backdrop {
  background: #00000099;
  backdrop-filter: blur(2px)
}

.dialog {
  max-width: 50rem;
  width: 100%;
  padding: 2rem 2rem 7.2rem;
  background: var(--main-bg-color);
  box-shadow: 0px 0px 100px 0px #50107680;
  border: none;
  outline: none;
}

.dialog-close {
  width: 3.2rem;
  margin-left: auto;
}

.order-form {
  max-width: 40rem;
  width: 100%;
  margin: 2rem auto 0;
  gap: 2rem
}

.order-label {
  gap: 0.8rem;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--main-text-color);
}

.order-inp {
  padding: 1.4rem 2rem;
  font-size: 1.6rem;
  color: var(--main-bg-color);
  background: var(--main-text-color);
  border: 1px solid var(--main-text-color);
}

.order-inp::placeholder {
  font-weight: 300;
  color: #050B1E80;
}

.order-form__title {
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
  color: var(--main-text-color);
}

.order-btn {
  margin-top: 2rem;
}

.tabl-sea {
  display: none;
}

@media (max-width:1280px) {
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .main {
    gap: 6rem;
  }

  .container {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }

  .container-bottom {
    padding-bottom: 6rem;
  }

  .header-link__logo {
    max-width: 9.6rem;
  }

  .header-link__tel {
    padding-left: 2.8rem;
    font-size: 1.6rem;
  }

  .header-block {
    gap: 2.4rem;
  }

  .base-btn {
    padding: 1.4rem;
    font-size: 1.6rem;
  }

  .header-btn {
    max-width: 22rem;
    min-width: 22rem;
  }

  .tabl-hidd {
    display: none;
  }

  .hero {
    background-image: url(../assets/png/bg-hero-tabl.png);
    background-position: center -2rem;
    background-size: auto;
    background-repeat: no-repeat;
  }

  .hero-box {
    max-width: 47.2rem;
    gap: 3.2rem;
  }

  .hero-box__wrap {
    gap: 1.6rem;
  }

  .hero-title {
    font-size: 5.6rem;
  }

  .hero-descr {
    width: 90%;
    font-size: 2.4rem;
  }

  .hero-block {
    padding: 1rem 2rem;
  }

  .hero-text {
    font-size: 2rem;
  }

  .products {
    margin-top: -6rem;
  }

  .title {
    margin-bottom: 3.2rem;
    font-size: 4rem;
  }

  .products-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .products-box {
    gap: 0.4rem;
  }

  .products-name {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
  }

  .price-number,
  .price-text__complex,
  .products-list__info,
  .products-weight,
  .products-info {
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .products-kcal {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .products-img {
    max-width: 14.8rem;
    object-fit: contain;
  }

  .products-link {
    max-width: 36rem;
    margin: 2.4rem auto 0;
  }

  .price-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }

  .price-item {
    gap: 1.2rem;
    justify-content: start;
  }

  .price-name {
    font-size: 2rem;
  }

  .price-img {
    max-width: 6.4rem;
    margin-top: auto;
  }

  .price-box {
    padding: 1rem 0;
  }

  .price-text {
    font-size: 1.4rem;
    line-height: var(--line-3);
    align-items: center;
  }

  .price-number--accent,
  .price-text--accent {
    font-size: 2.4rem;
  }

  .price-block {
    padding: 1.3rem 0;
  }

  .price-text__info {
    font-size: 4.8rem;
  }

  .price-descr {
    margin: 2rem 0 0;
    font-size: 2rem;
  }

  .price-btn {
    max-width: 36rem;
    margin: 2.4rem auto 0;
  }

  .reasons {
    gap: 3.2rem;
    flex-direction: column;
  }

  .reasons-box {
    max-width: 100%;
    padding: 2rem;
    gap: 1.2rem;
  }

  .reasons-text__info {
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
  }

  .reasons-text__descr {
    font-size: 2rem;
  }

  .reasons-text__descr--accent {
    font-size: 5.6rem;
  }

  .reasons-list__info {
    padding-bottom: 0;
    gap: 1rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .reasons-item__info {
    gap: 0.8rem;
  }

  .reasons-name,
  .reasons-text {
    font-size: 1.6rem;
  }

  .reasons-wrapper {
    max-width: 100%;
    padding-bottom: 1.8rem;
  }

  .reasons-list {
    gap: 2rem;
  }

  .reasons-item {
    max-width: 24.8rem;
    gap: 0.4rem;
  }

  .cooperation-title {
    margin-bottom: 1.2rem;
  }

  .cooperation-descr {
    margin-bottom: 3.2rem;
    font-size: 2rem;
  }

  .cooperation-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.2rem;
  }

  .cooperation-item {
    padding: 0;
    gap: 1.6rem;
  }

  .steps-box__number,
  .cooperation-box__number {
    min-width: 4rem;
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
  }

  .cooperation-img__info,
  .cooperation-img {
    max-width: 6rem;
  }

  .cooperation-block {
    gap: 0.4rem;
  }

  .cooperation-wrap {
    margin-top: 2.4rem;
    padding: 2.5rem 2rem;
  }

  .cooperation-text {
    font-size: 2.4rem;
  }

  .clients-list {
    gap: 2rem;
  }

  .clients-item {
    width: calc(50% - 10px);
    padding: 2.4rem 2rem;
  }

  .clients-box1 {
    gap: 1rem;
  }

  .clients-img__logo {
    max-width: 6.4rem;
  }

  .clients-name {
    font-size: 1.6rem;
  }

  .clients-box3,
  .clients-box4 {
    gap: 1rem;
  }

  .clients-img3,
  .clients-img4 {
    max-width: 2.4rem;
  }

  .faq-text,
  .clients-descr {
    font-size: 1.4rem;
  }

  .steps-box {
    gap: 2rem;
  }

  .steps-block {
    max-width: 28rem;
    gap: 1.2rem;
  }

  .steps-title {
    font-size: 4rem;
  }

  .footer-name,
  .footer-raiting,
  .faq-summ__text,
  .steps-text__list,
  .steps-phrase,
  .steps-descr {
    font-size: 2rem;
  }

  .steps-wrap {
    padding: 2rem;
  }

  .steps-item__info,
  .steps-list__info {
    gap: 1.2rem;
  }

  .steps-box__info {
    gap: 0;
  }

  .steps-text {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }

  .steps-btn {
    margin-top: 2rem;
  }

  .footer-text__location,
  .footer-text__adress,
  .steps-description {
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .steps {
    gap: 2.4rem;
  }

  .steps-list {
    padding: 2.4rem 0;
  }

  .steps-item {
    gap: 2rem;
  }

  .steps-img {
    max-width: 4.8rem;
  }

  .faq-box {
    gap: 1rem;
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-top {
    gap: 2.4rem;
    flex-direction: column;
  }

  .footer-top__box {
    max-width: 100%;
    gap: 1.2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-logo {
    width: 100%;
    font-size: 2.4rem;
  }

  .footer-top__wrap {
    gap: 0.8rem;
  }

  .footer-text__bank,
  .footer-text__unp {
    max-width: 46.6rem;
    width: 100%;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .footer-top__container {
    margin-top: auto;
  }

  .footer-img__yandex {
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer-text__descr {
    padding-left: 3.4rem;
  }

  .footer-list {
    gap: 4rem;
  }

  .footer-item {
    gap: 1rem;
  }

  .footer-link__tel {
    font-size: 1.6rem;
  }

  .footer-list__socials {
    gap: 0.4rem;
  }

  .footer-img__socials {
    max-width: 2.4rem;
  }

  .footer-link__vtop,
  .footer-text__rules {
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .tabl-sea {
    display: flex;
  }

  .reasons-title {
    margin: 0;
    justify-content: center;
    text-align: center;
  }

  .dialog {
    padding: 2rem 2rem 6.4rem;
  }

  .dialog-close {
    width: 2.4rem;
  }

  .burger {
    gap: 1rem;
    align-items: center;
  }

  .burger-box {
    width: 4.8rem;
    height: 4.8rem;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 0.4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-image: url(../assets/svg/burger.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .burger-box span {
    width: 2rem;
    height: 0.2rem;
    display: block;
    background: var(--main-text-color);
    transition: all 0.3s ease;
    border-radius: 1.1rem;
  }


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

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

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

  .burger-name {
    font-weight: 600;
    font-size: 1.6rem;
  }

  .nav-menu {
    max-width: 32rem;
    width: 100%;
    padding: 2rem;
    position: absolute;
    left: -100%;
    top: calc(100% + 16px);
    display: flex;
    flex-direction: column;
    z-index: 99999;
    background: var(--main-bg-color);
    transition: left 0.3s ease;
  }

  .nav-menu.open {
    left: 0;
  }

  .header-list {
    gap: 1.6rem;
  }

  .header-link__nav {
    font-size: 1.6rem;
  }

  .products-item {
    min-height: auto;
  }
}

@media (max-width:767px) {
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main {
    gap: 4rem;
  }

  .container {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .container-bottom {
    padding-bottom: 4rem;
  }

  .mob-hidd {
    display: none;
  }

  .header {
    padding: 1rem 0;
  }

  .header-link__logo {
    max-width: 7.8rem;
  }

  .header-container::after {
    bottom: -1rem;
  }

  .hero {
    padding-bottom: 42rem;
    background-image: url(../assets/png/bg-hero-down.png), url(../assets/png/bg-chef.png);
    background-position: center bottom;
    background-size: contain, 514px 418px;
  }

  .hero-box__wrap {
    gap: 1rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-descr {
    width: 100%;
    font-size: 1.6rem;
  }

  .base-btn {
    padding: 1.2rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .hero-btn {
    max-width: 30rem;
  }

  .hero-block {
    padding: 0.8rem 1rem;
    top: auto;
    bottom: 14.4rem;
  }

  .hero-text {
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .products {
    margin-top: -4rem;
  }

  .title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }

  .products-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }

  .products-item {
    padding: 1.2rem;
    gap: 1rem;
  }

  .products-img {
    max-width: 12rem;
    margin-bottom: auto;
    object-fit: contain;
  }

  .products-box {
    gap: 0.2rem;
  }

  .products-name {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .price-number,
  .price-text__complex,
  .products-list__info,
  .products-weight,
  .products-info {
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .products-kcal {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .products-link {
    max-width: 30rem;
    margin: 1.6rem auto 0;
  }

  .price-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .price-item {
    width: calc(100% / 3 - 8px);
    gap: 0.2rem;
  }

  .price-name {
    font-size: 1.6rem;
  }

  .price-img {
    max-width: 4.8rem;
  }

  .price-list__info {
    flex-direction: column;
  }

  .price-item__info {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .price-item__info:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--second-text-color);
  }

  .price-box {
    max-width: 50%;
    width: 100%;
    padding: 0 1rem;
    border-bottom: none;
  }

  .price-block {
    width: 100%;
    padding: 0.5rem 1.2rem;
    border-left: 1px solid var(--second-text-color);
  }


  .clients-descr,
  .cooperation-descr__info,
  .reasons-descr,
  .price-text {
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .price-number--accent,
  .price-text--accent {
    font-size: 1.6rem;
  }

  .price-text__info {
    font-size: 3.2rem;
  }

  .reasons-text__descr,
  .price-descr {
    font-size: 1.6rem;
  }

  .price-btn {
    max-width: 30rem;
    margin: 1.6rem auto 0;
  }

  .reasons {
    gap: 2.4rem;
  }

  .reasons-box {
    padding: 1.25rem 1.2rem;
    gap: 0.8rem;
  }

  .reasons-box__wrap {
    padding-bottom: 0.8rem;
  }

  .reasons-text__info {
    font-size: 2rem;
  }

  .reasons-text__descr--accent {
    font-size: 4rem;
  }

  .reasons-list__info {
    flex-direction: column;
    gap: 0.8rem;
  }


  .reasons-text {
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .reasons-list {
    gap: 1.2rem;
  }

  .reasons-item {
    width: 22rem;
    padding: 1.2rem;
    gap: 0.4rem;
  }

  .reasons-name {
    margin-top: 0.6rem;
  }

  .cooperation-title {
    margin-bottom: 0.8rem;
  }

  .cooperation-descr {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
  }

  .cooperation-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cooperation-item {
    gap: 1rem;
  }

  .steps-box__number,
  .cooperation-box__number {
    min-width: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.6rem;
  }

  .cooperation-img__info,
  .cooperation-img {
    max-width: 4.8rem;
  }

  .cooperation-block {
    gap: 0.2rem;
  }

  .cooperation-text,
  .cooperation-name {
    font-size: 1.6rem;
  }

  .cooperation-wrap {
    margin-top: 1.6rem;
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .clients-list {
    gap: 1.2rem;
  }

  .clients-item {
    width: 100%;
    padding: 1.6rem 1.2rem;
    gap: 1rem;
  }

  .clients-box {
    gap: 0.4rem;
  }

  .clients-box3,
  .clients-box4,
  .clients-box1 {
    gap: 0.8rem;
  }

  .clients-box2 {
    gap: 2rem;
  }

  .steps-box {
    flex-direction: column;
  }

  .steps-block {
    max-width: 100%;
    gap: 0.8rem;
  }

  .steps-title {
    font-size: 2.4rem;
  }

  .faq-summ__text,
  .steps-descr {
    font-size: 1.6rem;
  }

  .steps-wrap {
    padding: 1.2rem;
  }

  .steps-list__info {
    gap: 0.8rem;
  }

  .steps-text {
    margin-top: 0;
    font-size: 1.6rem;
  }

  .footer-name__socials,
  .steps-text__list,
  .steps-phrase {
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .reasons-title {
    margin-bottom: 0;
  }

  .steps-btn {
    max-width: 30rem;
    margin: 1.2rem auto 0;
  }

  .steps-description {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .steps-description--point {
    padding: 1.4rem 0 0;
    position: relative;
    display: flex;
  }

  .steps-description--point::before {
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .steps-list {
    padding: 0;
    flex-direction: column;
    gap: 0.8rem;
  }

  .steps-img {
    max-width: 2.4rem;
  }

  .faq-box {
    gap: 0.8rem;
  }

  .faq-summ {
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .faq-wrap {
    margin-top: -0.8rem;
    padding: 0 1.2rem 1.2rem 4.8rem;
  }

  .footer {
    padding: 2.4rem 0 1.2rem;
  }

  .footer-top {
    padding-bottom: 1rem;
  }

  .footer-top__box {
    gap: 0.8rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-top__wrap {
    margin-top: 0.4rem;
    gap: 0.4rem;
  }

  .footer-text__bank,
  .footer-text__unp {
    max-width: 46.6rem;
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .footer-img__yandex {
    width: 2.4rem;
    height: 2.4rem;
  }

  .footer-name,
  .footer-raiting {
    font-size: 1.6rem;
  }

  .footer-text__descr {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: var(--line-4);
  }

  .footer-list {
    gap: 1.6rem;
    flex-direction: column;
  }

  .footer-item {
    gap: 0.8rem;
  }

  .footer-list__info {
    gap: 0.4rem;
  }

  .footer-item__info {
    padding-left: 2.4rem;
  }

  .footer-text__time::before,
  .footer-link__mail::before,
  .footer-link__tel::before,
  .footer-text__location::before {
    width: 1.6rem;
    height: 1.6rem;
    left: -2.4rem;
    background-size: contain;
  }

  .footer-text__time,
  .footer-link__mail,
  .footer-text__adress,
  .footer-link__tel {
    font-size: 1.4rem;
  }

  .footer-item__info--accent {
    margin-top: 0.6rem;
    padding-left: 0;
  }

  .footer-item__info br {
    display: none;
  }

  .footer-item__socials {
    min-width: 7.2rem;
  }

  .footer-bott {
    padding-top: 1rem;
    gap: 0;
  }

  .dialog {
    max-width: 30rem;
    padding: 1.2rem 1.2rem 4.8rem;
  }

  .order-form {
    max-width: 25.2rem;
    margin: 1.2rem auto 0;
    gap: 0.8rem;
  }

  .order-form__title {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }

  .order-label {
    gap: 0.2rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .order-inp {
    padding: 1.2rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .order-btn {
    margin-top: 0.4rem;
  }

  .nav-menu {
    max-width: 32rem;
    width: 100%;
    padding: 1.2rem;
    top: calc(100% + 10px);
    gap: 2rem;
  }

  .header-list {
    gap: 0.8rem;
  }

  .header-block {
    gap: 2rem;
    align-items: flex-start;
  }

  .mob-sea {
    display: flex;
  }

  .header-link__tel {
    padding-left: 2.4rem;
    font-size: 1.4rem;
    line-height: var(--line-3);
  }

  .header-link__tel::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .header-btn {
    max-width: 30rem;
  }
}