@import url("https://fonts.googleapis.com/css?family=Golos+Text:regular,500,600&display=swap");

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

input,
button,
textarea,
select {
  font-family: "Golos Text", sans-serif;
  font-size: inherit;
  color: #000;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 1rem;
  background-color: #fff;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

[class*=__container] {
  max-width: 106.25rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.wrapper {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.menu {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3125rem 2.5rem;
}

.menu__link {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
}

.wrapper_gray .menu__link {
  color: #000;
}

.menu__button {
  margin-left: 3.125rem;
  max-width: 8.625rem;
  width: 100%;
  min-height: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  background-color: #d7392e;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.menu__button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.625rem;
  flex: 0 0 0.625rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu__bottom {
  display: none;
}

.menu__caption {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #d7392e;
}

.menu__caption:not(:last-child) {
  margin-bottom: 0.5rem;
}

.menu__text {
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
}

.menu__text:not(:last-child) {
  margin-bottom: 2rem;
}

.menu__mail {
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #d7392e;
}

.burger-menu {
  display: none;
}

.menu-open .burger-menu::before {
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -ms-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  top: 1.3125rem;
}

.menu-open .burger-menu::after {
  -webkit-transform: translate(-50%, 0%) rotate(-45deg);
  -ms-transform: translate(-50%, 0%) rotate(-45deg);
  transform: translate(-50%, 0%) rotate(-45deg);
  bottom: 1.3125rem;
}

.menu-open .burger-menu span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  padding: 1.875rem 0;
}

.wrapper_gray .header {
  background: #f3f3f3;
  position: relative;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3.4375rem;
  flex: 0 0 3.4375rem;
  width: 3.4375rem;
}

.header__logo img {
  max-width: 100%;
}

.sending body::before {
  content: "";
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5) url("../img/loading.gif") center/3.125rem no-repeat;
}

.title {
  font-size: 1.5rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #7a7a7a;
}

.title_white {
  color: #fff;
}

.sub-title {
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.03em;
}

.sub-title span {
  font-weight: 600;
  color: #d7392e;
}

.hero {
  background: url("../img/hero-bg.webp") right/cover no-repeat;
  position: relative;
}

.hero__body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 17.375rem;
  padding-bottom: 5rem;
}

.hero__title {
  text-align: center;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 79.375rem;
  margin: 0 auto 2rem;
}

@supports (font-size: clamp( 3.75rem , 2.8804347826rem  +  4.347826087vw , 7.5rem )) {
  .hero__title {
    font-size: clamp( 3.75rem , 2.8804347826rem  +  4.347826087vw , 7.5rem );
  }
}

@supports not (font-size: clamp( 3.75rem , 2.8804347826rem  +  4.347826087vw , 7.5rem )) {
  .hero__title {
    font-size: calc(3.75rem + 3.75 * (100vw - 20rem) / 86.25);
  }
}

.hero__title span {
  font-weight: 600;
  color: #d7392e;
}

.hero__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
}

.hero__text {
  max-width: 20rem;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero__text span {
  font-weight: 600;
  color: #d7392e;
}

.hero__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: updown 1s infinite linear;
  animation: updown 1s infinite linear;
}

.about {
  padding-top: 5rem;
  padding-bottom: 10.625rem;
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8.125rem;
  max-width: 99.5625rem;
}

.about__tilte {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10.625rem;
  flex: 0 0 10.625rem;
}

.about__sub-title {
  max-width: 32.3125rem;
}

.about__block {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.5172630257%;
  flex: 0 0 32.5172630257%;
  margin-left: auto;
}

.about__image {
  position: relative;
  aspect-ratio: 303/192;
  margin-bottom: 1.5rem;
  max-width: 18.9375rem;
  overflow: hidden;
}

.about__image img {
  position: absolute;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__caption {
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  margin-bottom: 0.9375rem;
}

.about__caption span {
  font-weight: 600;
  color: #d7392e;
}

.about__list {
  margin-bottom: 0.625rem;
  padding-left: 0.9375rem;
}

.about__item {
  line-height: 130%;
  letter-spacing: -0.03em;
}

.about__text {
  line-height: 130%;
  letter-spacing: -0.03em;
}

.offer {
  background: #f3f3f3;
  padding-top: 0.0625rem;
  padding-bottom: 7.5rem;
}

.offer__top {
  display: -ms-grid;
  display: grid;
  gap: 8.125rem;
  -ms-grid-columns: 10.625rem 1fr;
  grid-template-columns: 10.625rem 1fr;
  margin-top: -11.40625rem;
  margin-bottom: 6.25rem;
}

.offer__image {
  -ms-grid-column: 2;
  grid-column: 2;
  max-width: 18.875rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 302/385;
}

.offer__image img {
  position: absolute;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8.125rem;
  margin-bottom: 6.25rem;
}

.offer__title {
  padding-top: 2.625rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10.625rem;
  flex: 0 0 10.625rem;
}

.offer__sub-title {
  padding-top: 2.625rem;
  max-width: 32.3125rem;
}

.offer__item {
  max-width: 25.625rem;
}

.offer__item_1 {
  margin-left: auto;
}

.offer__item_2 {
  margin: 0 auto;
}

.offer__img {
  margin-bottom: 1.5rem;
  position: relative;
  aspect-ratio: 410/268;
  overflow: hidden;
}

.offer__img img {
  position: absolute;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.offer__img_big {
  aspect-ratio: 410/396;
}

.offer__caption {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 120%;
  letter-spacing: -0.03em;
}

.offer__caption span {
  font-weight: 600;
  color: #d7392e;
}

.offer__text {
  line-height: 130%;
  letter-spacing: -0.03em;
}

.block-image {
  position: relative;
  aspect-ratio: 1920/820;
  background: url("../img/block-image.webp") center/cover no-repeat;
}

.services {
  background: url("../img/services-background.webp") center/cover no-repeat;
  padding-top: 0.0625rem;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 2;
}

.services__block {
  background-color: #d7392e;
  padding: 4.5rem 3.75rem;
  width: 39.2941176471%;
  margin-top: -11.8125rem;
}

.services__title {
  margin-bottom: 2rem;
}

.services__sub-title {
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #fff;
}

@supports (font-size: clamp( 1.625rem , 1.1902173913rem  +  2.1739130435vw , 3.5rem )) {
  .services__sub-title {
    font-size: clamp( 1.625rem , 1.1902173913rem  +  2.1739130435vw , 3.5rem );
  }
}

@supports not (font-size: clamp( 1.625rem , 1.1902173913rem  +  2.1739130435vw , 3.5rem )) {
  .services__sub-title {
    font-size: calc(1.625rem + 1.875 * (100vw - 20rem) / 86.25);
  }
}

.services__body {
  width: 80.9411764706%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: auto;
}

@supports (margin-top: clamp( -21.5rem , 0.7509057971rem  +  -20.9420289855vw , -3.4375rem )) {
  .services__body {
    margin-top: clamp( -21.5rem , 0.7509057971rem  +  -20.9420289855vw , -3.4375rem );
  }
}

@supports not (margin-top: clamp( -21.5rem , 0.7509057971rem  +  -20.9420289855vw , -3.4375rem )) {
  .services__body {
    margin-top: calc(-3.4375rem + -18.0625 * (100vw - 20rem) / 86.25);
  }
}

.services__item {
  background-color: #1d1d1e;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@supports (min-height: clamp( 3.4375rem , -0.7509057971rem  +  20.9420289855vw , 21.5rem )) {
  .services__item {
    min-height: clamp( 3.4375rem , -0.7509057971rem  +  20.9420289855vw , 21.5rem );
  }
}

@supports not (min-height: clamp( 3.4375rem , -0.7509057971rem  +  20.9420289855vw , 21.5rem )) {
  .services__item {
    min-height: calc(3.4375rem + 18.0625 * (100vw - 20rem) / 86.25);
  }
}

.services__item_1 {
  -ms-grid-column: 3;
  grid-column: 3;
}

.services__item_2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.services__item_2 .services__text {
  max-width: 13.75rem;
}

.services__item_3 {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 2;
  grid-row: 2;
}

.services__item_4 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}

.services__item_4 .services__text {
  max-width: 13.75rem;
}

.services__item_5 {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 3;
  grid-row: 3;
}

.services__item_6 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
  background-color: #d7392e;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@supports (font-size: clamp( 1.375rem , 1.2300724638rem  +  0.7246376812vw , 2rem )) {
  .services__item_6 .services__text {
    font-size: clamp( 1.375rem , 1.2300724638rem  +  0.7246376812vw , 2rem );
  }
}

@supports not (font-size: clamp( 1.375rem , 1.2300724638rem  +  0.7246376812vw , 2rem )) {
  .services__item_6 .services__text {
    font-size: calc(1.375rem + 0.625 * (100vw - 20rem) / 86.25);
  }
}

.services__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@supports (max-width: clamp( 0.9375rem , 0.1548913043rem  +  3.9130434783vw , 4.3125rem )) {
  .services__icon {
    max-width: clamp( 0.9375rem , 0.1548913043rem  +  3.9130434783vw , 4.3125rem );
  }
}

@supports not (max-width: clamp( 0.9375rem , 0.1548913043rem  +  3.9130434783vw , 4.3125rem )) {
  .services__icon {
    max-width: calc(0.9375rem + 3.375 * (100vw - 20rem) / 86.25);
  }
}

.services__icon svg {
  height: auto;
}

.services__text {
  font-weight: 600;
  max-width: 15rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}

@supports (font-size: clamp( 0.8125rem , 0.6530797101rem  +  0.7971014493vw , 1.5rem )) {
  .services__text {
    font-size: clamp( 0.8125rem , 0.6530797101rem  +  0.7971014493vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 0.8125rem , 0.6530797101rem  +  0.7971014493vw , 1.5rem )) {
  .services__text {
    font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 86.25);
  }
}

.suppliers {
  padding-top: 7.5rem;
  padding-bottom: 16.5rem;
}

.suppliers__title {
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 1.25rem;
}

.suppliers__title span {
  font-weight: 600;
  color: #d7392e;
}

.suppliers__sub-title {
  font-size: 1.5rem;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 3.75rem;
}

.suppliers__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.suppliers__item {
  min-height: 18.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.0625rem solid #c6c6c6;
  padding: 1.875rem 2.5rem;
  position: relative;
}

.suppliers__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 80%;
}

.suppliers__item img:last-child {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.thanks {
  background: url("../img/block-image.webp") center/cover no-repeat;
}

.thanks::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.thanks__container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thanks__content {
  max-width: 79.375rem;
  margin: 0 auto;
  padding-top: 9.375rem;
  padding-bottom: 3.125rem;
}

.thanks__title {
  font-weight: 500;
  font-size: 7.5rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.thanks__sub-title {
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}

.thanks__link {
  width: 100%;
  max-width: 10rem;
  min-height: 3.1875rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  background-color: #d7392e;
  gap: 0.625rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.thanks__link svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.625rem;
  flex: 0 0 0.625rem;
  transition: transform 0.3s;
}

.mistake {
  background: url("../img/block-image.webp") center/cover no-repeat;
}

.mistake::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.mistake__container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mistake__content {
  max-width: 79.375rem;
  margin: 0 auto;
  padding-top: 9.375rem;
  padding-bottom: 3.125rem;
}

.mistake__title {
  font-weight: 500;
  font-size: 7.5rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}

.mistake__link {
  width: 100%;
  max-width: 10rem;
  min-height: 3.1875rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  background-color: #d7392e;
  gap: 0.625rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.mistake__link svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.625rem;
  flex: 0 0 0.625rem;
  transition: transform 0.3s;
}

.block-info {
  padding-top: 3.75rem;
  padding-bottom: 12.75rem;
}

.block-info__title {
  font-weight: 500;
  font-size: 6.25rem;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.block-info__text {
  line-height: 130%;
}

.block-info__list {
  padding-left: 1.25rem;
}

.block-info__item {
  line-height: 130%;
  list-style-type: disc !important;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.footer {
  background: #f3f3f3;
  padding-top: 0.0625rem;
  padding-bottom: 4.9375rem;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__content {
  max-width: 52.5rem;
  width: 100%;
}

.footer__body {
  margin-bottom: 3.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__column {
  max-width: 25.625rem;
}

.footer__caption {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #d7392e;
  margin-bottom: 1rem;
}

.footer__text {
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: -0.01em;
}

.footer__block {
  text-align: right;
}

.footer__mail {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #d7392e;
  display: inline-block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
  margin-bottom: 2.5rem;
}

.footer__mail_mobile {
  display: none;
}

.footer__links {
  border-top: 0.0625rem solid #c6c6c6;
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__link {
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-decoration: underline !important;
  color: #767171;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form {
  margin-top: -5.25rem;
  background: #111112;
  max-width: 41.75rem;
  width: 100%;
  padding: 4.9375rem 3.75rem;
}

.form__title {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2rem;
}

.form__text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2rem;
}

.form__item {
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form__input {
  width: 100%;
  font-size: 0.875rem;
  line-height: 100%;
  border: 0.0625rem solid #b8b8b8;
  border-radius: 0.25rem;
  padding: 0 1rem;
  height: 3.125rem;
  background-color: transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  color: #fff;
}

.form__input::-webkit-input-placeholder {
  color: #b8b8b8;
}

.form__input::-moz-placeholder {
  color: #b8b8b8;
}

.form__input:-ms-input-placeholder {
  color: #b8b8b8;
}

.form__input::-ms-input-placeholder {
  color: #b8b8b8;
}

.form__input::placeholder {
  color: #b8b8b8;
}

.form__input:focus {
  border: 0.0625rem solid #fff;
}

.form__textarea {
  width: 100%;
  width: 100%;
  font-size: 0.875rem;
  line-height: 100%;
  color: #b8b8b8;
  border: 0.0625rem solid #b8b8b8;
  border-radius: 0.25rem;
  height: 6.8125rem;
  resize: none;
  padding: 1.125rem 1rem;
  background-color: transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  color: #fff;
}

.form__textarea::-webkit-input-placeholder {
  color: #b8b8b8;
}

.form__textarea::-moz-placeholder {
  color: #b8b8b8;
}

.form__textarea:-ms-input-placeholder {
  color: #b8b8b8;
}

.form__textarea::-ms-input-placeholder {
  color: #b8b8b8;
}

.form__textarea::placeholder {
  color: #b8b8b8;
}

.form__textarea:focus {
  border: 0.0625rem solid #fff;
}

.form__submit {
  margin-top: 2rem;
  max-width: 8.625rem;
  width: 100%;
  margin-left: auto;
  min-height: 3.1875rem;
  background-color: #d7392e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  padding: 0.3125rem 0.625rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.form__submit svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.625rem;
  flex: 0 0 0.625rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu-footer {
  margin-bottom: 5.0625rem;
}

.menu-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.3125rem 0.625rem;
}

.menu-footer__link {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem 0.625rem;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.popup__content {
  min-height: 37.75rem;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 65.9375rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  width: 2.75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.75rem;
  flex: 0 0 2.75rem;
  height: 2.75rem;
  background-color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 8;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.popup__close::before,
.popup__close::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.125rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 1.625rem;
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 1.25rem;
}

.popup__close::before {
  top: 1.3125rem;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -ms-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
}

.popup__close::after {
  -webkit-transform: translate(-50%, 0%) rotate(-45deg);
  -ms-transform: translate(-50%, 0%) rotate(-45deg);
  transform: translate(-50%, 0%) rotate(-45deg);
  bottom: 1.3125rem;
}

.popup__column {
  background: #111112;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;
}

.popup__box {
  max-width: 22.8125rem;
  width: 100%;
}

.popup__title {
  font-weight: 600;
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2.5rem;
}

.popup__text {
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}

.form-popup {
  background: #d7392e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 1.5rem;
  padding-top: 5rem;
}

.form-popup__inner {
  max-width: 29.125rem;
  width: 100%;
}

.form-popup__caption {
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-popup__item {
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-popup__input {
  width: 100%;
  font-size: 0.875rem;
  line-height: 100%;
  border: 0.0625rem solid #fff;
  border-radius: 0.25rem;
  padding: 0 1rem;
  height: 3.125rem;
  background-color: transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  color: #fff;
}

.form-popup__input:focus {
  border: 0.0625rem solid #b8b8b8;
}

.form-popup__textarea {
  width: 100%;
  width: 100%;
  font-size: 0.875rem;
  line-height: 100%;
  color: #b8b8b8;
  border: 0.0625rem solid #fff;
  border-radius: 0.25rem;
  height: 6.8125rem;
  resize: none;
  padding: 1.125rem 1rem;
  background-color: transparent;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  color: #fff;
}

.form-popup__textarea:focus {
  border: 0.0625rem solid #b8b8b8;
}

.form-popup__submit {
  margin-top: 2rem;
  max-width: 8.625rem;
  width: 100%;
  margin-left: auto;
  min-height: 3.1875rem;
  background-color: #111112;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  padding: 0.3125rem 0.625rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-bottom: 6.0625rem;
}

.form-popup__submit svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.625rem;
  flex: 0 0 0.625rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.form-popup__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.form-popup__bottom_mobile {
  display: none;
}

.form-popup__text {
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}

.form-popup__link {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (max-width: 106.25em) {
  .title {
    font-size: 1.375rem;
  }

  .sub-title {
    font-size: 2.625rem;
  }

  .hero__body {
    padding-top: 12.5rem;
    padding-bottom: 2.5rem;
  }

  .about__body {
    gap: 2.5rem;
  }

  .about__sub-title {
    max-width: 28.75rem;
  }

  .about__caption {
    font-size: 1.1875rem;
  }

  .about__item {
    font-size: 0.9375rem;
  }

  .about__text {
    font-size: 0.9375rem;
  }

  .offer__top {
    gap: 2.5rem;
  }

  .offer__body {
    gap: 2.5rem;
  }

  .offer__sub-title {
    max-width: 28.75rem;
  }

  .offer__caption {
    font-size: 2.25rem;
  }

  .offer__text {
    font-size: 0.9375rem;
  }

  .services__block {
    padding: 2.5rem 2.125rem;
  }

  .services__title {
    margin-bottom: 1.5rem;
  }

  .suppliers__title {
    font-size: 3.625rem;
  }

  .suppliers__sub-title {
    font-size: 1.375rem;
  }

  .suppliers__item {
    min-height: 15rem;
  }

  .thanks__title {
    font-size: 6.25rem;
  }

  .mistake__title {
    font-size: 6.25rem;
  }

  .block-info__title {
    font-size: 5rem;
  }

  .footer__content {
    max-width: 47.5rem;
  }

  .footer__column {
    max-width: 23.75rem;
  }

  .footer__caption {
    font-size: 1.25rem;
  }

  .footer__text {
    font-size: 1.125rem;
  }

  .footer__mail {
    font-size: 1.25rem;
  }

  .footer__link {
    font-size: 1.125rem;
  }

  .form {
    max-width: 33.75rem;
    padding: 2.5rem 2.125rem;
  }

  .form__title {
    font-size: 3.125rem;
    margin-bottom: 1.5rem;
  }

  .form__text {
    font-size: 1.25rem;
  }

  .menu-footer__link {
    font-size: 1.25rem;
  }
}

@media (max-width: 61.99875em) {
  .menu {
    overflow: auto;
    background-color: #0c0b0c;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 8rem 0.9375rem 3.75rem 0.9375rem;
    text-align: center;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

  .menu__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 3.75rem;
  }

  .menu__item:last-child .menu__link {
    background: #d7392e;
  }

  .wrapper_gray .menu__link {
    color: #fff;
  }

  .menu__link {
    font-size: 1.5rem;
    background: #1d1d1e;
    width: 100%;
    padding: 0.3125rem;
    gap: 0.4375rem;
    min-height: 10.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu__button {
    display: none;
  }

  .menu__bottom {
    width: 100%;
    display: block;
    border-top: 0.0625rem solid #c6c6c6;
    padding-top: 2.5rem;
    text-align: left;
  }

  .burger-menu {
    display: block;
    width: 2.75rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.75rem;
    flex: 0 0 2.75rem;
    height: 2.75rem;
    background-color: #7c7c7c;
    position: relative;
    z-index: 8;
  }

  .burger-menu::before,
  .burger-menu::after,
  .burger-menu span {
    display: block;
    position: absolute;
    height: 0.125rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 1.625rem;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 1.25rem;
  }

  .burger-menu::before {
    content: "";
    top: 0.8125rem;
  }

  .burger-menu::after {
    content: "";
    bottom: 0.8125rem;
  }

  .burger-menu span {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .header {
    padding: 1.25rem 0;
  }

  .header::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    -webkit-transition: right 0.5s ease 0s;
    transition: right 0.5s ease 0s;
    background-color: #0c0b0c;
    z-index: 7;
  }

  .menu-open .header::before {
    right: 0;
  }

  .title {
    font-size: 1.25rem;
  }

  .sub-title {
    font-size: 1.75rem;
  }

  .hero__text {
    font-size: 1.125rem;
  }

  .about__body {
    gap: 1.25rem;
  }

  .about__tilte {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.375rem;
    flex: 0 0 9.375rem;
  }

  .about__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.6647834275%;
    flex: 0 0 37.6647834275%;
  }

  .about__caption {
    font-size: 1.125rem;
  }

  .about__item {
    font-size: 0.875rem;
  }

  .about__text {
    font-size: 0.875rem;
  }

  .offer__top {
    margin-bottom: 5rem;
    margin-top: -9.84375rem;
    gap: 1.25rem;
    -ms-grid-columns: 9.375rem 1fr;
    grid-template-columns: 9.375rem 1fr;
  }

  .offer__image {
    max-width: 15rem;
  }

  .offer__body {
    gap: 1.25rem;
    margin-bottom: 5rem;
  }

  .offer__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.375rem;
    flex: 0 0 9.375rem;
    padding-top: 0;
  }

  .offer__sub-title {
    padding-top: 0;
  }

  .offer__item {
    max-width: 22.5rem;
  }

  .offer__caption {
    font-size: 2.125rem;
  }

  .offer__text {
    font-size: 0.875rem;
  }

  .services__block {
    width: 100%;
    margin-bottom: 2rem;
    margin-top: -3.75rem;
    padding: 1.875rem 1.5rem;
  }

  .services__body {
    margin-top: 0;
    width: 100%;
  }

  .services__item {
    aspect-ratio: 344/344;
    padding: 1rem;
    min-height: auto;
  }

  .suppliers {
    padding-bottom: 7.5rem;
  }

  .suppliers__title {
    font-size: 3rem;
  }

  .suppliers__sub-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .suppliers__item {
    min-height: 12.5rem;
  }

  .thanks__title {
    font-size: 5rem;
  }

  .thanks__sub-title {
    font-size: 1.125rem;
  }

  .mistake__title {
    font-size: 5rem;
  }

  .block-info {
    padding-top: 3.125rem;
    padding-bottom: 9.375rem;
  }

  .block-info__title {
    font-size: 3.4375rem;
  }

  .block-info__text {
    font-size: 0.9375rem;
  }

  .block-info__item {
    font-size: 0.9375rem;
  }

  .footer {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 3.125rem;
  }

  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.1875rem;
  }

  .footer__content {
    max-width: 100%;
  }

  .footer__column {
    max-width: 21.875rem;
  }

  .footer__caption {
    font-size: 1.125rem;
  }

  .footer__text {
    font-size: 1.0625rem;
  }

  .footer__mail {
    font-size: 1.125rem;
  }

  .footer__link {
    font-size: 1rem;
  }

  .form {
    max-width: 100%;
    margin-top: 0;
  }

  .form__title {
    font-size: 2.5rem;
  }

  .form__text {
    font-size: 1.125rem;
  }

  .menu-footer {
    margin-bottom: 3.75rem;
  }

  .menu-footer__link {
    font-size: 1.125rem;
  }

  .popup__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .popup__close {
    width: 2.125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.125rem;
    flex: 0 0 2.125rem;
    height: 2.125rem;
  }

  .popup__close::before,
  .popup__close::after {
    width: 1.375rem;
  }

  .popup__close::before {
    top: 1rem;
  }

  .popup__close::after {
    bottom: 1rem;
  }

  .popup__column {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .popup__box {
    max-width: 100%;
  }

  .popup__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .popup__text {
    font-size: 0.9375rem;
  }

  .form-popup {
    background-color: #111112;
    padding: 0 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.6875rem;
  }

  .form-popup__inner {
    background-color: #d7392e;
    padding: 2rem 0.625rem;
    max-width: 100%;
  }

  .form-popup__caption {
    margin-bottom: 1rem;
  }

  .form-popup__submit {
    margin-bottom: 0;
  }

  .form-popup__bottom {
    padding-bottom: 2.5rem;
  }

  .form-popup__bottom_pc {
    display: none;
  }

  .form-popup__bottom_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-popup__text {
    font-size: 0.9375rem;
  }

  .form-popup__link {
    font-size: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  .title {
    font-size: 1.125rem;
  }

  .sub-title {
    font-size: 2rem;
  }

  .hero__body {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }

  .hero__title {
    text-align: left;
  }

  .hero__row {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .hero__text {
    font-size: 1rem;
    max-width: 23.75rem;
  }

  .hero__button {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }

  .hero__button svg {
    width: 1.875rem;
    height: 4.0625rem;
  }

  .about {
    padding-top: 4rem;
    padding-bottom: 11.25rem;
  }

  .about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .about__tilte {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-bottom: 1rem;
  }

  .about__sub-title {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .about__block {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-left: 0;
  }

  .about__image {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .about__list {
    margin-bottom: 1rem;
  }

  .offer {
    padding-bottom: 6.25rem;
  }

  .offer__top {
    margin-top: -8rem;
    margin-bottom: 3.5rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .offer__image {
    max-width: 12.5rem;
    aspect-ratio: 200/272;
    -ms-grid-column: 1;
    grid-column: 1;
  }

  .offer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3.5rem;
  }

  .offer__title {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-bottom: 1rem;
  }

  .offer__sub-title {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .offer__item {
    max-width: 100%;
  }

  .offer__img {
    margin-bottom: 2rem;
  }

  .offer__caption {
    font-size: 2rem;
  }

  .block-image {
    aspect-ratio: 430/236;
  }

  .services {
    padding-bottom: 3.75rem;
  }

  .services__title {
    margin-bottom: 1rem;
  }

  .services__sub-title {
    font-size: 2rem;
  }

  .services__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .services__item {
    aspect-ratio: 344/220;
  }

  .services__item_1 {
    -ms-grid-column: 1;
    grid-column: 1;
  }

  .services__item_3 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .services__item_4 {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
  }

  .services__item_5 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 5;
  }

  .services__item_6 .services__text {
    font-size: 1.4375rem;
  }

  .services__item_6 {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 6;
    grid-row: 6;
  }

  .services__icon {
    max-width: 2.5rem;
  }

  .services__text {
    font-size: 0.875rem;
  }

  .suppliers {
    padding: 6.25rem 0;
  }

  .suppliers__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .suppliers__sub-title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .suppliers__item {
    min-height: 6.375rem;
    padding: 1.25rem 1.875rem;
  }

  .thanks__title {
    font-size: 4rem;
    margin-bottom: 0.625rem;
  }

  .thanks__sub-title {
    font-size: 1rem;
  }

  .thanks__link {
    max-width: 100%;
  }

  .mistake__title {
    font-size: 4rem;
  }

  .mistake__link {
    max-width: 100%;
  }

  .block-info {
    padding-top: 2.5rem;
    padding-bottom: 6.25rem;
  }

  .block-info__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .block-info__text {
    font-size: 0.875rem;
  }

  .block-info__item {
    font-size: 0.875rem;
  }

  .footer {
    padding-bottom: 2rem;
  }

  .footer__body {
    margin-bottom: 2.5rem;
  }

  .footer__column {
    max-width: 15rem;
  }

  .footer__caption {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer__mail_mobile {
    display: block;
  }

  .footer__mail_pc {
    display: none;
  }

  .footer__mail {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .footer__links {
    padding-top: 1.5rem;
  }

  .footer__link {
    font-size: 0.875rem;
  }

  .form {
    padding: 2.125rem 1.5rem;
  }

  .form__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .form__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .form__input {
    height: 2.5rem;
    font-size: 0.75rem;
  }

  .form__textarea {
    height: 5.625rem;
    font-size: 0.75rem;
  }

  .form__submit {
    margin-top: 1.875rem;
    max-width: 100%;
  }

  .menu-footer {
    margin-bottom: 2.5rem;
  }

  .menu-footer__link {
    font-size: 1rem;
  }

  .popup__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .popup__text {
    font-size: 0.875rem;
  }

  .form-popup__input {
    height: 2.5rem;
    font-size: 0.75rem;
  }

  .form-popup__textarea {
    height: 5.625rem;
    font-size: 0.75rem;
  }

  .form-popup__submit {
    margin-top: 1.875rem;
    max-width: 100%;
  }

  .form-popup__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }

  .form-popup__text {
    font-size: 0.875rem;
  }

  .form-popup__link {
    font-size: 1rem;
  }
}

@media (max-width: 29.99875em) {
  .services__item {
    aspect-ratio: 1/1;
  }

  .suppliers__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .suppliers__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: 50%;
    margin: 0 auto;
  }
}

@media (any-hover: hover) {
  .menu__link:hover {
    opacity: 0.7;
  }

  .menu__button:hover {
    background-color: #f14438;
  }

  .menu__button:hover svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .services__item_6:hover {
    background-color: #f14438;
  }

  .services__item_6:hover .services__icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .suppliers__item:hover img:last-child {
    opacity: 1;
    visibility: visible;
  }

  .thanks__link:hover {
    background-color: #ee3629;
  }
  
   .thanks__link:hover svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .mistake__link:hover {
    background-color: #ee3629;
  }
  
   .mistake__link:hover svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .footer__mail:hover {
    color: #f14438;
  }

  .footer__link:hover {
    opacity: 0.7;
  }

  .form__submit:hover {
    background-color: #f14438;
  }

  .form__submit:hover svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu-footer__link:hover {
    opacity: 0.7;
  }

  .popup__close:hover {
    opacity: 1;
  }

  .form-popup__submit:hover {
    background-color: #f14438;
  }

  .form-popup__submit:hover svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .form-popup__link:hover {
    opacity: 0.7;
  }
}