@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  color: var(--dark);
  font-size: 18px;
  line-height: 130%;
  font-style: normal;
}

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

:focus,
:active {
  outline: none;
}

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

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li,
ol li {
  list-style: none;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* Цвета и плавность анимации*/

:root {
  --base-color: #2b2a29;
  --dark: #000000;
  --white: #FFFFFF;
  --yellow-color: #fb9b00;
  --yellow-light: #fefeee;
  --yellow: #fbba00;
  --purple: #fdeefe;
  --green: #00c617;
  --green-light: #eefeef;
  --blue: #bcd7ec;
  --blue-light: #eef7fe;
  --red: #eb1010;
  --gray: #f0f0f0;
  --transition: 0.4s all ease 0s;
  --transition-small: 0.3s all ease 0s;
}

body {
  height: auto;
  font-family: "Gotham Pro", sans-serif;
  --header-size: 115px;
  --offset-left: 0px;
  padding-right: var(--offset-left);
  -webkit-tap-highlight-color: transparent;
}

.main {
  padding-top: var(--header-size);
}

.container {
  max-width: 1580px;
  padding: 0 30px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 1730px;
  margin: 0 auto;
}

input,
button {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  outline-offset: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

strong {
  font: inherit;
  font-weight: 600;
}

a,
button {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
  -webkit-tap-highlight-color: transparent;
}

p,
span,
i {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

i {
  font-style: italic;
}

svg {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

svg path {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

h1,
h2,
h3,
.second,
.third {
  font-weight: 900;
  line-height: 110%;
  color: var(--base-color);
}

sup {
  display: inline-block;
  -webkit-transform: translateY(-0.1em);
      -ms-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
  font-weight: inherit;
  color: inherit;
  font-size: 0.7em;
}

em {
  font-style: normal;
}

h1 {
  text-transform: uppercase;
  font-size: 60px;
}

h2,
.second {
  text-transform: uppercase;
  font-size: 44px;
}

h3,
.third {
  font-size: 30px;
}

h4,
.fourth {
  font-weight: 500;
  font-size: 24px;
}

h5,
.fifth {
  font-weight: 500;
  font-size: 20px;
}

.-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.-row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.-row-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.-row-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.-row-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.-column-start {
  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: start;
}

.-column-end {
  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: end;
  -ms-flex-align: end;
  align-items: end;
}

.-column-center {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.-column-between {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.-column-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.-row-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.-row-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.-grid {
  display: -ms-grid;
  display: grid;
}

.-grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
}

.-grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [3];
  grid-template-columns: repeat(3, 1fr);
}

.-grid-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [4];
  grid-template-columns: repeat(4, 1fr);
}

.-grid-5 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [5];
  grid-template-columns: repeat(5, 1fr);
}

.-grid-6 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [6];
  grid-template-columns: repeat(6, 1fr);
}

.-grid-7 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [7];
  grid-template-columns: repeat(7, 1fr);
}

.btn {
  position: relative;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  padding: 18px 25px;
  line-height: 100%;
  background-color: var(--base-color);
}

.btn.-yellow {
  background-color: var(--yellow);
  color: var(--dark);
}

.btn.-yellow::after {
  background-color: var(--base-color);
}

.btn.-yellow svg path {
  stroke: var(--dark);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-color: var(--yellow);
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn span path,
.btn svg path {
  stroke: var(--white);
}

.site-mask {
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.site-mask__image {
  position: absolute;
  z-index: 1;
  width: 80%;
  height: 100%;
  right: calc(((100vw - 1580px) / 2) + 495px);
}

.site-mask__image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.site-mask__decor {
  position: absolute;
  z-index: 1;
  top: 21%;
  left: calc(((100vw - 1580px) / 2) + 1070px);
  width: 570px;
}

.site-mask__decor img {
  width: 100%;
}

.site-mask::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  height: 100%;
  width: 100vw;
  left: calc(((100vw - 1580px) / 2) + 1070px);
  background-color: var(--yellow);
}

.input__box {
  position: relative;
}

.input input,
.input textarea {
  display: block;
  width: 100%;
  padding: 18px 16px;
  font-size: 14px;
  line-height: 100%;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
  border: 1px solid transparent;
  background-color: var(--white);
  color: #818181;
}

.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  font: inherit;
  color: inherit;
}

.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  font: inherit;
  color: inherit;
}

.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  font: inherit;
  color: inherit;
}

.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  font: inherit;
  color: inherit;
}

.input input::placeholder,
.input textarea::placeholder {
  font: inherit;
  color: inherit;
}

.input input:focus,
.input textarea:focus {
  color: var(--base-color);
  border-color: var(--base-color);
}

.input.--error input,
.input.--error textarea {
  border-color: var(--red);
}

.input.--error input:focus,
.input.--error textarea:focus {
  border-color: var(--red);
}

.input.--error .input__warning {
  max-height: 40px;
  padding: 5px 0;
}

.input__warning {
  overflow: hidden;
  max-height: 0;
  color: var(--red);
  font-size: 12px;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.input textarea {
  display: block;
  overflow-y: auto;
  resize: none;
  min-height: 107px;
}

.checkbox {
  position: relative;
  display: inline-block;
}

.checkbox.--error .checkbox__label::before {
  background-color: var(--white);
  border-color: var(--red);
}

.checkbox__input {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.checkbox__input:checked + .checkbox__label::before {
  border-color: var(--white);
  background-color: var(--base-color);
}

.checkbox__label {
  position: relative;
  display: block;
  font-weight: 500;
  padding-left: 30px;
  line-height: 130%;
  font-size: 14px;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.checkbox__label::before {
  content: "";
  position: absolute;
  top: 0.03em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  background-color: var(--white);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.checkbox a {
  position: relative;
  z-index: 1;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
}

.block-decor {
  position: absolute;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  bottom: -14px;
  left: -30px;
  right: -30px;
}

.block-decor.-top {
  bottom: auto;
  top: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  right: auto;
}

.-offset {
  padding: 80px 0;
}

.-offset-top {
  padding-top: 80px;
}

.-offset-bottom {
  padding-bottom: 80px;
}

.-small {
  padding: 60px 0;
}

.-small-top {
  padding-top: 60px;
}

.-small-bottom {
  padding-bottom: 60px;
}

.overflow {
  overflow: hidden;
}

.-decor .wrapper {
  position: relative;
}

.-base {
  background-color: var(--base-color);
}

.-base h1,
.-base h2 {
  color: var(--white);
}

.-gray {
  background-color: var(--gray);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: var(--offset-left);
  z-index: 10;
  padding: 30px 0;
}

.header.-include .site-mask {
  display: block;
  opacity: 1;
}

.header.--fixed {
  position: fixed;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  opacity: 0;
  padding: 20px 0;
}

.header.--fixed .site-mask {
  display: block;
  opacity: 1;
}

.header.--animate {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.header.--visible {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.header .site-mask {
  display: none;
  opacity: 0;
}

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

.header__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}

.header__logo svg {
  fill: var(--white);
}

.header__menu ul {
  gap: 40px;
  text-transform: uppercase;
}

.header__menu ul li {
  color: var(--white);
}

.header__menu ul a {
  display: block;
  padding: 16px 0;
  font-weight: 700;
  font-size: 13px;
}

.header__drop {
  position: relative;
}

.header__drop ul {
  position: absolute;
  bottom: 0;
  left: 0;
  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;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 30px;
  padding: 40px 30px;
  background-color: var(--gray);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 120%, 0);
          transform: translate3d(0, 120%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.header__drop ul li {
  max-width: 316px;
  text-transform: none;
  color: var(--dark);
}

.header__drop ul li a {
  padding: 0;
  font-weight: 500;
  font-size: 18px;
}

.header__nav {
  margin-left: auto;
}

.header__trigger {
  display: none;
}

.header__trigger svg {
  pointer-events: none;
  width: 100%;
  height: auto;
}

.header__buttons {
  gap: 60px;
}

.header__btn.btn {
  text-transform: uppercase;
  padding: 16px 20px;
  font-size: 13px;
}

.header__btn.btn::after {
  background-color: var(--white);
}

.header__btn svg,
.header__btn em {
  display: none;
}

.header__phone {
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
}

.header__overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(53, 50, 50, 0.79);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

@supports (height: 100dvh) {
  .header__overlay {
    height: 100dvh;
  }
}

.burger {
  position: relative;
  top: -2px;
  display: none;
  width: 31px;
  height: 31px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
}

.burger span {
  will-change: transform;
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.burger :nth-child(1) {
  top: calc(50% - 10px);
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.burger :nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger :nth-child(3) {
  top: calc(50% + 8px);
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.burger.--open :nth-child(1) {
  -webkit-transform: translate(-50%, 9px) rotate(45deg);
      -ms-transform: translate(-50%, 9px) rotate(45deg);
          transform: translate(-50%, 9px) rotate(45deg);
}

.burger.--open :nth-child(2) {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.burger.--open :nth-child(3) {
  -webkit-transform: translate(-50%, -9px) rotate(-45deg);
      -ms-transform: translate(-50%, -9px) rotate(-45deg);
          transform: translate(-50%, -9px) rotate(-45deg);
}

.title {
  gap: 20px;
  margin-bottom: 40px;
}

.title.-center {
  text-align: center;
}

.title__subtext {
  color: #2b2a29;
  font-weight: 500;
  line-height: 120%;
}

.product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border: 1px solid #d3d3d3;
  padding: 24px 24px 0px;
  margin-right: -1px;
  margin-bottom: -1px;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.product::after {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(16px);
  background: rgba(251, 186, 0, 0.7);
  pointer-events: none;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.product__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.product__name {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--base-color);
}

.product__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--yellow);
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.product__icon.-hover {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
          transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 0;
  background-color: var(--base-color);
}

.product__icon.-hover img {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-filter: invert(0) brightness(100%);
          filter: invert(0) brightness(100%);
}

.product__icon img {
  width: 35%;
  -webkit-filter: invert(1) brightness(100%);
          filter: invert(1) brightness(100%);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.product__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.means-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.means-card * {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.means-card__top {
  position: relative;
}

.means-card__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 68%;
}

.means-card__image img {
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.means-card__arrow {
  will-change: transform;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  background-color: var(--yellow);
}

.means-card__arrow img {
  width: 40%;
}

.means-card__name {
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
}

.table-approach {
  overflow: auto;
  --gap: 5px;
}

.table-approach__wrapper {
  min-width: 830px;
  white-space: nowrap;
}

.table-approach__body {
  gap: var(--gap);
}

.table-approach__thead,
.table-approach__tr {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.table-approach__thead {
  margin-bottom: 8px;
}

.table-approach__th {
  white-space: normal;
  grid-column: var(--column) span;
  grid-row: var(--row) span;
  padding: 20px;
  background-color: var(--base-color);
  color: var(--white);
  font-weight: 500;
  font-size: 24px;
  line-height: 119%;
  text-align: center;
}

.table-approach__th:nth-child(1) {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 34px 24px;
  text-align: left;
}

.table-approach__tr:last-child .table-approach__td {
  padding-bottom: 20px;
}

.table-approach__td {
  white-space: normal;
  grid-column: var(--column) span;
  grid-row: var(--row) span;
  padding: 20px 15px 35px;
  background-color: var(--gray);
  font-size: 14px;
  line-height: 107%;
}

.table-approach__td:nth-child(1) {
  padding: 20px 22px;
}

.table-approach__td:nth-child(2) {
  text-align: center;
}

.table-advant {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 0 70px 48px;
  --last-size: 333px;
  --gap: 15px;
}

.table-advant::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% - var(--last-size) - var(--gap));
  height: 100%;
  background-color: var(--yellow);
  pointer-events: none;
}

.table-advant__item {
  position: relative;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gap);
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(98, 98, 98, 0.2);
  font-weight: 500;
  font-size: 24px;
  line-height: 119%;
}

.table-advant__item p {
  display: block;
}

.table-advant__item p:nth-child(1) {
  width: 80%;
}

.table-advant__item p:last-child {
  padding: 0 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--last-size);
  color: var(--base-color);
}

.logo-company {
  position: relative;
  overflow-x: hidden;
  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: 124px;
  padding: 5px 10px;
  background-color: var(--white);
  border: 1px solid #d5d5d5;
}

.logo-company img {
  will-change: transform;
  display: block;
  max-width: 90%;
  margin: 0 auto;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.brand {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.brand:has(.brand__decor) {
  padding-bottom: 50px;
}

.brand__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  --gap: 0px;
  --size: 100%;
  --offset: 0px;
  padding-top: var(--offset);
}

.brand__row:has(.-abs) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.brand .logo-company {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 237px;
          flex: 0 0 237px;
}

.brand__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  gap: var(--gap);
  width: calc(var(--size) - (var(--gap) / 2));
}

.brand__column .brand__image {
  width: 100%;
}

.brand__image {
  position: relative;
  overflow: hidden;
  width: calc(var(--size) - (var(--gap) / 2));
}

.brand__image.-abs {
  position: absolute;
  z-index: var(--i);
  top: var(--top);
  left: var(--left);
}

.brand__image img {
  display: block;
  width: 100%;
}

.site-info__wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 30px;
  background-color: var(--yellow);
}

.site-info__row {
  position: relative;
  z-index: 1;
  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: 36px;
}

.site-info__title {
  text-transform: uppercase;
}

.site-info__btn {
  min-width: 250px;
}

.site-info__btn::after {
  background-color: var(--white);
}

.site-info__decor {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  -webkit-transform: translate(10%, -25%);
      -ms-transform: translate(10%, -25%);
          transform: translate(10%, -25%);
  width: 500px;
  pointer-events: none;
}

.form {
  overflow: hidden;
}

.form:has(.-row-reverse) .form__decor {
  -webkit-transform: translate(-75%, 10%);
      -ms-transform: translate(-75%, 10%);
          transform: translate(-75%, 10%);
}

.form__container {
  position: relative;
}

.form__row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--yellow);
}

.form__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-bottom: 37%;
}

.form__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form__content {
  position: relative;
  z-index: 1;
  padding: 60px 64px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form__grid {
  max-width: 830px;
  gap: 8px;
  margin-bottom: 17px;
}

.form__column {
  gap: inherit;
}

.form .input {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form .input__box {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form .input textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form__btn::after {
  background-color: var(--white);
}

.form__decor {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 500px;
  pointer-events: none;
  -webkit-transform: translate(20%, 13%);
      -ms-transform: translate(20%, 13%);
          transform: translate(20%, 13%);
}

.top-title {
  overflow: hidden;
  text-align: center;
}

.top-title__container {
  position: relative;
}

.top-title__container::before,
.top-title__container::after {
  content: "";
  position: absolute;
  width: 100vw;
}

.top-title__container::before {
  content: "";
  z-index: 1;
  top: 50%;
  right: calc(50% + 40px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: calc(100% - 12px);
  background-color: var(--yellow);
  clip-path: polygon(97% 0%, 100% 50%, 97% 100%, 0% 100%, 0% 0%);
}

.top-title__container::after {
  z-index: 0;
  top: 0;
  left: 30px;
  height: 100%;
  background-color: var(--base-color);
}

.top-title__box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 22px 0;
}

.top-title__name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}

.top-title__name h5 {
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 100%;
  color: var(--base-color);
}

.top-title__descr {
  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;
  max-width: 760px;
  font-weight: 500;
  font-size: 16px;
  line-height: 105%;
  color: var(--white);
}

.scroll-image {
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.scroll-image.--dragging .scroll-image__wrapper img {
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}

.scroll-image.--dragging-end .--next {
  opacity: 0;
  pointer-events: none;
}

.scroll-image.--dragging-scroll .--prev {
  opacity: 1;
  pointer-events: auto;
}

.scroll-image.--dragging-scroll .scroll-image__mask {
  pointer-events: none;
}

.scroll-image.--dragging-disabled .--prev,
.scroll-image.--dragging-disabled .--next {
  pointer-events: none;
  opacity: 0;
}

.scroll-image.--dragging-start .--prev {
  opacity: 0;
  pointer-events: none;
}

.scroll-image.--mobile-dragging .scroll-image__mask.--next {
  opacity: 0;
}

.scroll-image__container {
  position: relative;
}

.scroll-image__mask {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: -30px;
  width: 533px;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.scroll-image__mask.--prev {
  right: auto;
  left: -30px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  opacity: 0;
}

.scroll-image__btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 100px;
  padding: 10px;
  background-color: var(--yellow);
}

.scroll-image__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 85%;
  height: auto;
}

.scroll-image__btn svg path {
  stroke: transparent;
}

.scroll-image__btn.--hide {
  opacity: 0;
  pointer-events: none;
}

.scroll-image__btn::after {
  background-color: var(--base-color);
}

.scroll-image__btn.--prev {
  right: auto;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.scroll-image__btn.--prev svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.scroll-image__wrapper {
  overflow: auto;
  max-height: 800px;
  margin-right: -30px;
  padding-right: 30px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.scroll-image__wrapper:focus {
  outline: none !important;
}

.scroll-image__wrapper * {
  pointer-events: none;
}

.scroll-image__wrapper img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.types {
  gap: 40px;
}

.types__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.types__box {
  min-height: 295px;
  gap: 20px;
  padding: 44px 34px;
  background-color: var(--white);
}

.types__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-weight: 500;
  font-size: 20px;
  color: var(--dark);
  line-height: 100%;
}

.types__top h4 {
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--base-color);
}

.types__bottom {
  gap: 20px;
  margin-top: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.types__row {
  gap: 15px 65px;
}

.types__item {
  gap: 10px;
  font-size: 16px;
  color: var(--dark);
}

.types__item strong {
  font-weight: 900;
  font-size: 20px;
  color: var(--yellow-color);
  line-height: 100%;
}

.types__column {
  width: var(--width);
}

.types__image {
  width: var(--width);
}

.types__image img {
  width: 100%;
  height: 100%;
}

.types__info {
  gap: 50px;
  padding: 60px 64px 50px;
  background-color: var(--white);
}

.types__info .types__row {
  gap: 50px;
}

.types__text {
  gap: 50px;
  font-weight: 500;
  font-size: 30px;
  line-height: 122%;
  color: var(--dark);
}

.types__list {
  width: 35%;
  gap: 12px;
}

.types__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 40px;
  font-weight: 700;
  font-size: 39px;
  line-height: 110%;
  text-align: right;
  color: var(--white);
}

.types__shell a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.types__img {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 210px;
          flex: 0 0 210px;
  padding-bottom: 23%;
}

.types__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.geography__wrapper {
  position: relative;
  padding-top: 213px;
  padding-bottom: 120px;
}

.geography__row {
  position: relative;
  z-index: 1;
  gap: 115px;
}

.geography__title {
  max-width: 350px;
}

.geography__text {
  max-width: 756px;
  gap: 20px;
  color: var(--dark);
  font-size: 20px;
  line-height: 120%;
}

.geography__text h4 {
  font-weight: 900;
  text-transform: uppercase;
  color: inherit;
}

.geography__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 1800px;
  -webkit-transform: translate(-9%, -20%);
      -ms-transform: translate(-9%, -20%);
          transform: translate(-9%, -20%);
}

.slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.slider-arrows.-abs {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  width: auto;
  pointer-events: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider-arrows__btn {
  width: 70px;
  height: 70px;
  padding: 10px;
  pointer-events: auto;
  background-color: var(--yellow);
}

.slider-arrows__btn svg {
  width: 60%;
}

.slider-arrows__btn.-next svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider-arrows__btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slider-arrows__btn::after {
  background-color: var(--base-color);
}

.slider-arrows__btn svg {
  width: 65%;
}

.slider-arrows__btn svg path {
  stroke: transparent;
}

.map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 664px;
  background-color: var(--gray);
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*="copyrights-pane"] {
  display: none !important;
}

[class*="balloon__close-button"] {
  opacity: 1;
}

.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 36px;
}

.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.breadcrumbs ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--base-color);
}

.breadcrumbs ul li:last-child {
  pointer-events: none;
}

.breadcrumbs ul li:last-child::after {
  display: none;
}

.breadcrumbs ul li::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 1px;
  background-color: var(--base-color);
}

.faq__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  font: inherit;
}

.faq h1,
.faq h2,
.faq h3,
.faq h4,
.faq h5,
.faq h6 {
  font-weight: 700;
  color: var(--base-color);
}

.faq h1 {
  font-weight: 900;
}

.faq h2 {
  font-weight: 900;
  padding-top: 20px;
  margin-bottom: 30px;
}

.faq h2:first-child {
  padding-top: 0;
}

.faq h3 {
  text-transform: uppercase;
  padding-top: 20px;
  margin-bottom: 30px;
  font-size: 36px;
}

.faq h3:first-child {
  padding-top: 0;
}

.faq h4 {
  text-transform: uppercase;
  padding-top: 20px;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq h4:first-child {
  padding-top: 0;
}

.faq ul,
.faq ol,
.faq p {
  margin-bottom: 30px;
}

.faq ul:last-child,
.faq ol:last-child,
.faq p:last-child {
  margin-bottom: 0;
}

.faq ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font-size: 18px;
  line-height: 110%;
  counter-reset: number;
}

.faq ol span {
  font-weight: 500;
}

.faq ol li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  counter-increment: number;
  color: inherit;
  font: inherit;
}

.faq ol li::before {
  content: counter(number);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 39px;
  height: 39px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  background-color: var(--yellow);
}

.faq .row-number {
  gap: 24px;
  counter-reset: number;
}

.faq .row-number ol {
  counter-reset: none;
}

.faq ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.faq ul span {
  font-weight: 500;
}

.faq ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  color: inherit;
  font: inherit;
}

.faq ul li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-image: url("../img/svg/check-bold.svg");
  background-size: 13px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--yellow);
}

.faq.-stroke ol {
  color: var(--white);
}

.faq.-stroke ol li::before {
  background-color: transparent;
  color: var(--yellow);
  border: 1px solid currentColor;
}

.faq.-fill ol {
  color: var(--white);
}

.faq.-fill ol li::before {
  background-color: var(--yellow);
  color: var(--base-color);
}

.faq.-circle ol {
  gap: 12px;
}

.faq.-circle ol li::before {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 21px;
  font-weight: 400;
}

.faq.-start ul li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.faq.-center ol li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq.-text-center h1,
.faq.-text-center h2,
.faq.-text-center h3,
.faq.-text-center h4,
.faq.-text-center h5 {
  text-align: center;
}

.faq.-text-center p {
  text-align: center;
}

.faq .-border {
  padding-left: 20px;
  padding-right: 20px;
  border: 4px solid rgba(251, 186, 0, 0.6);
  font: inherit;
}

.faq .row-block h1,
.faq .row-block h2,
.faq .row-block h3,
.faq .row-block h4,
.faq .row-block h5,
.faq .row-block p,
.faq .row-block ol,
.faq .row-block ul,
.faq .row-block a,
.faq .grid h1,
.faq .grid h2,
.faq .grid h3,
.faq .grid h4,
.faq .grid h5,
.faq .grid p,
.faq .grid ol,
.faq .grid ul,
.faq .grid a {
  padding: 0;
  margin: 0;
  text-align: left;
}

.row-block {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
  font: inherit;
  max-width: 100%;
  margin: 20px auto;
  line-height: 120%;
}

.row-block:last-child {
  margin-bottom: 0;
}

.row-block.-mini {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.row-block__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 550px;
  font: inherit;
}

.grid {
  gap: 36px;
  font-size: 16px;
  line-height: 120%;
  color: var(--base-color);
}

.grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font: inherit;
}

.grid img {
  width: 100%;
}

.grid.-grid-3 {
  gap: 20px;
}

.footer__wrapper {
  position: relative;
  padding: 70px 0;
}

.footer__wrapper .footer__container {
    max-width: 600px;
    margin: 0;
}

.footer__map.map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

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

.footer__box {
  max-width: 500px;
  gap: 40px;
  padding: 55px 40px 70px;
  background-color: var(--white);
}

.footer__logo {
  max-width: 286px;
}

.footer__row {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__column {
  gap: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--dark);
}

.footer__social {
  gap: 8px;
  font-size: 14px;
}

.footer__social i {
  font: inherit;
  font-style: normal;
}

.footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.footer__social a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.footer__item {
  font-weight: 500;
  font-size: 20px;
  color: var(--dark);
}

.footer__item a {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 16px;
  border-bottom: 1px solid currentColor;
  line-height: 110%;
}

.footer__item span {
  line-height: 100%;
  font-weight: 400;
  font-size: 16px;
}

.footer__bottom {
  gap: 20px;
  padding: 30px 0;
}

.footer__text {
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
  line-height: 110%;
}

.footer__nav {
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
  line-height: 110%;
}

.footer__nav a {
  border-bottom: 1px solid currentColor;
}

.modal-overlay {
  position: fixed;
  overflow: hidden;
  z-index: 99999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 48, 48, 0.66);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.modal-hide {
  overflow: hidden;
}

.modal {
  overflow: hidden;
  display: none;
  -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;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.modal__body {
  overflow: auto;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scrollbar-width: none;
  pointer-events: auto;
  cursor: default;
  width: 100%;
  max-width: calc(1580px + var(--offset-left));
  max-height: 100%;
  padding: 30px 0;
  padding-bottom: 30px;
  margin: 0 auto;
  padding-right: var(--offset-left);
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
  opacity: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
       -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal__body::-webkit-scrollbar {
  display: none;
}

.modal__exit {
  position: absolute;
  z-index: 999999;
  top: 15px;
  right: 50px;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
  cursor: pointer;
  width: 35px;
  height: 35px;
}

.modal__exit svg {
  width: 100%;
  height: auto;
}

.modal__exit svg path {
  stroke: var(--white);
}

.modal-complete__wrapper {
  overflow: hidden;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px;
  background-color: var(--yellow);
}

.modal-complete__text {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.modal-complete__title {
  margin-bottom: 0;
}

.modal-complete__decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  pointer-events: none;
  -webkit-transform: translate(10%, 30%);
      -ms-transform: translate(10%, 30%);
          transform: translate(10%, 30%);
}

.modal-complete .modal__exit {
  top: 15px;
  right: 15px;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}

.modal-close *,
.modal-btn * {
  pointer-events: none;
}

.modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal--visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.modal--visible .modal__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  border-radius: 0;
  opacity: 1;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.home {
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-size));
  padding-top: 200px;
  --backdrop: 341px;
}

.home::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80%;
  right: calc(((100vw - 1580px) / 2) + 495px);
  height: var(--backdrop);
  backdrop-filter: blur(20px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 4, 4, 0.2)), to(rgba(4, 4, 4, 0.2)));
  background: -o-linear-gradient(top, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.2) 100%);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.2) 100%);
}

.home__container {
  position: relative;
  z-index: 2;
}

.home__row {
  gap: 90px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.home__content {
  max-width: 70%;
}

.home h1 {
  color: var(--white);
}

.home__info {
  position: relative;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 35px;
}

.home__column {
  gap: 15px;
}

.home__name {
  color: var(--yellow);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
}

.home__box {
  gap: 80px;
}

.home__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 5px;
  font-size: 14px;
  color: #fff;
  line-height: 110%;
}

.home__item span {
  max-width: 174px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.home__item strong {
  color: inherit;
  font-weight: 500;
  line-height: 100%;
  font-size: 40px;
  text-transform: uppercase;
}

.home__shell {
  position: relative;
  gap: 55px;
  margin-left: auto;
  padding-top: 50px;
}

.home__text {
  position: relative;
  z-index: 1;
  font-size: 72px;
  line-height: 56%;
  letter-spacing: -0.05em;
  color: var(--white);
}

.home__text p {
  display: block;
}

.home__text span {
  font-size: 107px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(79.81%, #fff));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 79.81%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 79.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home__btn {
  font-size: 17px;
  padding: 35px;
}

.home__btn::after {
  background-color: var(--white);
}

.main-product {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

.main-product .product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 200%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  display: none;
  height: 1px;
  background-color: #d3d3d3;
}

.main-product .product:nth-child(4n+1) {
  border-top: none;
}

.main-product .product:nth-child(4n+1)::before {
  display: block;
}

.main-product__wrapper {
  position: relative;
}

.main-product__line {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.main-product__line span {
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(var(--i) * 25%);
  bottom: 0;
  width: 1px;
  background-color: #d3d3d3;
}

.main-product .breadcrumbs {
  position: relative;
  z-index: 1;
  width: 75%;
  background-color: var(--white);
}

.main-product__title.title {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 0;
  padding-bottom: 40px;
  background-color: var(--white);
}

.main-product__title.title:has(h1) {
  width: 75%;
}

.main-product__grid {
  padding-bottom: 1px;
}

.systems {
  position: relative;
  overflow: hidden;
}

.systems__wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 130px;
}

.systems__container {
  position: relative;
}

.systems__row {
  position: relative;
  z-index: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}

.systems h2 {
  max-width: 467px;
}

.systems .faq {
  max-width: 620px;
}

.systems .faq ol {
  gap: 40px;
}

.systems .faq ol span {
  font-weight: 700;
}

.systems .faq ol li {
  gap: 30px;
}

.systems .faq ol li::before {
  width: 49px;
  height: 49px;
}

.systems .faq ol li::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.systems .faq ol li:first-child::after {
  top: 0;
  height: 100vw;
  border-left: 1px solid var(--yellow);
}

.systems .faq ol li:nth-child(3)::after {
  top: 0;
  width: 100vw;
  border-bottom: 1px solid var(--yellow);
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.systems .faq ol li:last-child::after {
  bottom: 0;
  width: calc(100% + 415px);
  width: 100vw;
  border-bottom: 1px solid var(--yellow);
}

.systems__decor {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  max-width: 620px;
  pointer-events: none;
  -webkit-transform: translate(37%, 0);
      -ms-transform: translate(37%, 0);
          transform: translate(37%, 0);
}

.equipment {
  overflow: hidden;
  --distance: 105px;
}

.equipment__container {
  margin: 0 auto;
}

.equipment__bg {
  overflow: hidden;
  width: 100%;
}

.equipment__bg img {
  width: 100%;
}

.equipment__box {
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 80px 70px 160px calc((100vw - 1530px) / 2);
}

.equipment__top {
  gap: 10px;
  margin-bottom: 70px;
}

.equipment__top h5 {
  text-transform: uppercase;
}

.equipment .faq ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equipment .faq ol li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.equipment__decor {
  position: absolute;
  bottom: -10px;
  left: calc((100vw - 1525px) / 2);
}

.equipment__image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.5%;
          flex: 0 0 33.5%;
}

.equipment__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.means__grid {
  gap: 34px;
  margin-bottom: 70px;
}

.approach__bg {
  width: 100%;
  margin: 0 auto;
}

.approach__bg img {
  display: block;
  width: 100%;
}

.approach__row {
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.approach__title {
  max-width: 650px;
  gap: 15px;
}

.approach__title p {
  display: block;
}

.approach__title p:not(:last-child) {
  margin-bottom: 5px;
}

.advantages__shell {
  overflow: hidden;
}

.advantages__container {
  position: relative;
}

.advantages__wrapper {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 50px;
}

.advantages__top {
  position: relative;
  gap: 22px;
  margin-bottom: 15px;
}

.advantages__label {
  clip-path: polygon(0% 0%, 100% 0%, 100% 45%, 100% 38%, 100% 100%, 94% 80%, 0 80%);
  padding: 35px 15px 55px;
  text-align: center;
  background-color: #403f3e;
  color: var(--white);
}

.advantages__label:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 45%, 100% 38%, 100% 80%, 6% 80%, 0 100%);
}

.advantages__plus {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--base-color);
  pointer-events: none;
}

.advantages__plus img {
  width: 40%;
}

.advantages__title {
  margin-bottom: 60px;
  text-align: center;
}

.advantages__grid {
  gap: 20px;
}

.advantages__column {
  gap: 20px;
  padding: 45px 65px;
  background-color: var(--yellow);
  text-align: center;
  line-height: 120%;
}

.advantages__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--white);
}

.advantages__icon img {
  width: 40%;
}

.advantages__decor {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 870px;
  pointer-events: none;
  -webkit-transform: translate(-41%, 31%);
      -ms-transform: translate(-41%, 31%);
          transform: translate(-41%, 31%);
}

.advantages__box {
  padding-top: 34px;
}

.company__grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}

.company__grid h2 {
  grid-column: 3 span;
}

.main-brands__box {
  padding: 15px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fff));
  background: -o-linear-gradient(top, #f4f4f4 0%, #fff 100%);
  background: linear-gradient(180deg, #f4f4f4 0%, #fff 100%);
}

.main-brands__box:last-child {
  padding-bottom: 0;
}

.main-brands .site-info {
  margin-top: 15px;
  margin-bottom: 30px;
}

.brand-cards__wrapper {
  position: relative;
}

.brand-cards__grid {
  gap: 30px;
}

.brand-cards__item.-clean .brand-cards__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0;
  border: none;
}

.brand-cards__item.-clean .brand-cards__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.brand-cards__item.-clean .brand-cards__info:first-child {
  border-top: 1px solid #e3e3e3;
}

.brand-cards__item.-clean .logo-company {
  top: 15px;
  left: 15px;
}

.brand-cards__item.-clean .brand-cards__image {
  padding-bottom: 50%;
}

.brand-cards__item.-clean .brand-cards__image.-big {
  padding-bottom: 75%;
}

.brand-cards__column {
  position: relative;
  gap: 20px;
  padding: 15px;
  border: 1px solid #e3e3e3;
  border-bottom: 0;
}

.brand-cards__column.-column-between .brand-cards__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.brand-cards__column .logo-company {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 30px;
  width: 240px;
}

.brand-cards__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 46%;
}

.brand-cards__image.-big {
  padding-bottom: 75%;
}

.brand-cards__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brand-cards__content {
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.brand-cards__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 15px;
  border: 1px solid #e3e3e3;
  border-top: 0;
}

.brand-cards__info:not(:first-child) {
  border-top: 1px solid #e3e3e3;
}

.brand-cards__thead,
.brand-cards__row {
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
}

.brand-cards__thead :nth-child(1),
.brand-cards__row :nth-child(1) {
  width: 42%;
}

.brand-cards__thead :nth-child(2),
.brand-cards__row :nth-child(2) {
  width: 15%;
  text-align: center;
}

.brand-cards__thead :nth-child(3),
.brand-cards__row :nth-child(3) {
  width: 30%;
}

.brand-cards__thead {
  margin-bottom: 3px;
  color: var(--yellow-color);
}

.brand-cards__row {
  padding: 10px 0;
  color: var(--base-color);
  border-bottom: 0.88px dotted var(--yellow-color);
}

.brand-cards__row:first-child {
  padding-top: 0;
}

.brand-cards__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.brand-cards .site-info {
  margin: 30px 0;
}

.brand-cards__decor {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 55%;
}

.brand-cards__decor img {
  width: 100%;
}

.automation__title {
  max-width: 925px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.automation__grid {
  gap: 2px;
}

.automation__item {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.automation__top {
  position: relative;
  z-index: 1;
  min-height: 120px;
  padding: 20px 25px;
  text-transform: uppercase;
  background-color: var(--yellow);
}

.automation__top h4 {
  font-weight: 900;
  color: var(--base-color);
  line-height: 110%;
}

.automation__content {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  --size: 50px;
  padding: 35px 25px 45px var(--size);
  background-color: var(--base-color);
  font-weight: 500;
  font-size: 16px;
}

.automation__content span {
  padding-left: calc(var(--size) / 2 + 15px);
}

.automation__content * {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.automation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  margin-bottom: 17px;
}

.automation ul li {
  position: relative;
  padding-left: calc(var(--size) / 2 + 15px);
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

.automation ul li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: var(--size);
  height: 7px;
  background-image: url("../img/svg/line-arrow.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  pointer-events: none;
}

.automation ul li:last-child::after {
  content: "";
  position: absolute;
  top: 0.6em;
  left: calc(-1 * (var(--size) / 2));
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 50vh;
  border-right: 1px solid var(--yellow);
  pointer-events: none;
}

.automation__decor {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 615px;
  pointer-events: none;
  -webkit-transform: translate(-16%, 47%);
      -ms-transform: translate(-16%, 47%);
          transform: translate(-16%, 47%);
}

.check-list {
  overflow: hidden;
}

.check-list__wrapper {
  position: relative;
}

.check-list__grid {
  gap: 15px;
  --size: 48px;
  --offset: 30px;
  --icon: 41px;
  --gap: 15px;
  --font: 18px;
}

.check-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.check-list__item:last-child .check-list__top::after {
  display: block;
}

.check-list__item:nth-child(1) .check-list__icon {
  display: none;
}

.check-list__item:nth-child(1) .check-list__content {
  padding-left: 0;
}

.check-list__item:nth-child(1) .check-list__top::before {
  width: 100vw;
  left: -15px;
}

.check-list__item:nth-child(3) .check-list__top::before {
  width: 55%;
}

.check-list__top {
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: var(--offset);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.check-list__top::before,
.check-list__top::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 70%;
  background-color: var(--base-color);
}

.check-list__top::before {
  left: 0;
  -webkit-transform: translate(-100%, 50%);
      -ms-transform: translate(-100%, 50%);
          transform: translate(-100%, 50%);
}

.check-list__top::after {
  display: none;
  width: 100vw;
  right: -15px;
  -webkit-transform: translate(100%, 50%);
      -ms-transform: translate(100%, 50%);
          transform: translate(100%, 50%);
}

.check-list__top h3 {
  line-height: 80%;
}

.check-list__content {
  padding-left: calc(var(--size) + var(--offset) + 2px);
}

.check-list__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.check-list__content ul li {
  position: relative;
  font-size: var(--font);
  line-height: 130%;
}

.check-list__content ul li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
}

.check-list__content ul li p::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--icon);
  height: var(--icon);
  background-color: var(--yellow);
  background-image: url("../img/svg/check-bold.svg");
  background-position: center;
  background-size: 45% auto;
  background-repeat: no-repeat;
}

.check-list__content ul li ul {
  gap: 10px;
  padding-top: 16px;
  padding-left: calc(var(--icon) + var(--gap));
}

.check-list__content ul li ul li {
  font-size: calc(var(--font) - 1px);
  line-height: 120%;
}

.check-list__content ul li ul p::before {
  width: 20px;
  height: 20px;
  background: var(--yellow);
}

.check-list__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--size);
  height: var(--size);
  background-color: var(--base-color);
}

.check-list__icon svg {
  width: 50%;
}

.work {
  overflow: hidden;
}

.work__labels {
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

.work__labels h5 {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 100%;
  color: var(--base-color);
}

.work__wrapper {
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 255px;
}

.work__wrapper .work__grid {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.work__wrapper .work__row {
  gap: 5px;
}

.work__wrapper .work__label {
  min-width: 110px;
  padding: 10px;
  font-size: 13px;
}

.work__wrapper .work__label:last-child {
  min-width: 125px;
}

.work__wrapper .work__bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 11px;
  color: var(--yellow-color);
}

.work__wrapper .work__bottom span {
  color: var(--yellow-color);
}

.work__wrapper .work__item h5 {
  margin-bottom: 20px;
}

.work__wrapper .work__column {
  width: 100%;
}

.work__wrapper .work__box {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 0;
}

.work__map {
  position: absolute;
  top: 20px;
  left: 0;
  width: 1800px;
}

.work__map img {
  width: 100%;
}

.work__grid {
  gap: 15px;
  margin-top: 20px;
}

.work__item {
  gap: 20px;
  background-color: var(--white);
  --distance: 25px;
  text-align: center;
}

.work__item.-first {
  border: 1px solid rgba(251, 186, 0, 0.3);
}

.work__item.-last {
  border: 1px solid rgba(137, 137, 137, 0.3);
}

.work__item h5 {
  display: block;
  margin-bottom: 35px;
  font-weight: 900;
  text-transform: uppercase;
}

.work__box {
  padding: 25px 25px 0;
}

.work__column {
  gap: var(--distance);
}

.work__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.work__row.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.work__row.-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.work__row.-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.work__row.-column-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.work__row::before,
.work__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
}

.work__row.-line::after {
  width: 7px;
  height: var(--distance);
  background-image: url("../img/other/work-line.svg");
  background-size: cover;
}

.work__row.-line-width::before {
  width: 350px;
  height: 12px;
  background-image: url("../img/other/work-line-width.svg");
  background-size: contain;
}

.work__row.-arrow::after {
  top: calc(55% + (var(--distance) / 2));
  width: 15px;
  height: 15px;
  background-image: url("../img/other/work-arrow.svg");
  background-size: cover;
}

.work__row.-dotted-width::before {
  width: 350px;
  height: 12px;
  background-image: url("../img/other/work-dotted-width.svg");
  background-size: contain;
}

.work__row.-arrow-width::before {
  width: 215px;
  height: 19px;
  background-image: url("../img/other/work-arrow-width.svg");
  background-size: cover;
}

.work__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.work__shell .work__holder {
  font-size: 13px;
}

.work__holder {
  font-weight: 500;
  font-size: 11px;
}

.work__holder.-red {
  color: var(--red);
}

.work__holder.-yellow {
  color: var(--yellow-color);
}

.work__label {
  position: relative;
  padding: 10px 22px;
  font-weight: 500;
  font-size: 17px;
  line-height: 80%;
  border: 1px solid transparent;
  color: var(--dark);
}

.work__label::before,
.work__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
}

.work__label.-arrow::after {
  width: 8px;
  height: 11px;
  background-image: url("../img/other/work-arrow-small.svg");
  background-size: cover;
}

.work__label.-arrow-left::before {
  bottom: calc(50% - 5px);
  left: 0;
  -webkit-transform: translate(-100%, 100%);
      -ms-transform: translate(-100%, 100%);
          transform: translate(-100%, 100%);
  width: 100px;
  height: 7px;
  background-image: url("../img/other/work-arrow-left.svg");
  background-size: cover;
}

.work__label.-arrow-right::before {
  bottom: calc(50% - 5px);
  left: auto;
  right: 0;
  -webkit-transform: translate(100%, 100%);
      -ms-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
  width: 100px;
  height: 7px;
  background-image: url("../img/other/work-arrow-right.svg");
  background-size: cover;
}

.work__label.-bend-left::before {
  bottom: -10px;
  -webkit-transform: translate(0%, 100%);
      -ms-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  width: 140px;
  height: 23px;
  background-image: url("../img/other/work-bend-left.svg");
  background-size: cover;
}

.work__label.-bend-right::before {
  -webkit-transform: translate(0%, 100%);
      -ms-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  width: 96px;
  height: 25px;
  background-image: url("../img/other/work-bend-right.svg");
  background-size: cover;
}

.work__label.-self {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.work__label.-mini {
  min-width: 146px;
  font-size: 14px;
}

.work__label.-stroke {
  border-color: var(--yellow);
}

.work__label.-yellow {
  background-color: var(--yellow-light);
}

.work__label.-blue {
  background-color: var(--blue-light);
}

.work__label.-green {
  background-color: var(--green-light);
}

.work__label.-purple {
  background-color: var(--purple);
}

.work__bottom {
  gap: 45px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  line-height: 100%;
  padding: 18px;
  border-radius: 0 0 16px 16px;
  font-weight: 500;
}

.work__bottom.-green {
  background-color: rgba(238, 254, 239, 0.3);
  color: var(--green);
}

.work__bottom.-yellow {
  background-color: rgba(255, 246, 219, 0.3);
}

.work__bottom.-blue {
  background-color: rgba(238, 247, 254, 0.3);
}

.work__client {
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
}

.work__client span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.work__client span::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 19px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.work__client span.-green::before {
  border-color: #b6efba;
  background-color: var(--green-light);
}

.work__client span.-yellow::before {
  border-color: #e9e98d;
  background-color: var(--yellow-light);
}

.work__client span.-blue::before {
  border-color: var(--blue);
  background-color: var(--blue-light);
}

.work .faq ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  --font: 22px;
}

.work .faq ol li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-size: var(--font);
  line-height: 90%;
  padding: 16px 30px 40px;
  background-color: var(--base-color);
}

.work .faq ol li::before {
  width: 47px;
  height: 47px;
  font-size: calc(var(--font) - 1px);
}

.analysis__grid {
  gap: 80px;
  padding-top: 40px;
}

.analysis__column {
  gap: 30px;
}

.analysis__image img {
  width: 100%;
}

.analysis__row {
  gap: 130px;
}

.analysis__box {
  max-width: 580px;
  background-color: #FBBA00;
  clip-path: polygon(100% 0%, 100% 87%, 50% 97%, 50% 97%, 0 87%, 0 0);
}

.analysis__content {
  position: relative;
  padding: 25px 20px 65px;
  text-align: center;
}

.analysis__content h4 {
  position: relative;
  z-index: 1;
  max-width: 80%;
  margin: 0 auto;
  line-height: 100%;
  color: var(--white);
}

.analysis__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  margin-bottom: 40px;
}

.analysis__content ul::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFC92D;
  clip-path: polygon(100% 0%, 100% 77%, 50% 87%, 50% 87%, 0 77%, 0 0);
}

.analysis__content ul li {
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: var(--white);
  font-weight: 500;
  line-height: 80%;
}

.analysis__bg {
  max-width: 690px;
}

.solution {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fff));
  background: -o-linear-gradient(top, #f4f4f4 0%, #fff 100%);
  background: linear-gradient(180deg, #f4f4f4 0%, #fff 100%);
}

.solution__row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.solution__content {
  max-width: 620px;
  gap: 200px;
  height: auto;
}

.solution__content h2 {
  max-width: 460px;
}

.solution__box {
  margin-top: auto;
}

.solution__image {
  margin-bottom: 10px;
}

.solution__image img {
  width: 100%;
}

.solution__column {
  gap: 5px;
  font-size: 12px;
}

.solution__column p {
  position: relative;
  padding-left: 22px;
}

.solution__column p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 11px;
  height: 11px;
  background-color: var(--bg);
}

.solution .scroll-image {
  max-width: 990px;
  z-index: 2;
  margin-top: -60px;
  margin-left: -20px;
}

.solution .scroll-image__mask {
  width: 100vw;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.import__top {
  margin-bottom: 55px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--dark);
}

.import__logo {
  width: 420px;
}

.import__logo img {
  width: 100%;
}

.import__advants {
  margin-bottom: 55px;
  gap: 1px;
}

.import__item {
  gap: 10px;
  padding: 40px 45px 60px;
  background-color: var(--base-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
}

.import__item * {
  color: var(--white);
}

.import__item h4 {
  text-transform: uppercase;
}

.import__item .faq {
  padding-top: 20px;
}

.import__item .faq ul {
  font-size: 16px;
}

.import__item .faq ul li::before {
  background-image: url("../img/svg/check-bold-white.svg");
}

.import__grid {
  position: relative;
  z-index: 1;
  gap: 135px;
  max-width: 1395px;
}

.import__shell {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 106%;
}

.import__shell p {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.import__box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 115px;
  height: 115px;
  font-weight: 900;
  font-size: 55px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--yellow);
}

.import__box * {
  color: inherit;
}

.import__box strong {
  line-height: inherit;
}

.import__box span {
  font-weight: 500;
  font-size: 11px;
  line-height: 80%;
}

.clients__slider {
  position: relative;
  margin: 0 auto;
  margin-bottom: 40px;
}

.clients__slider .swiper-slide {
  max-width: 280px;
}

.clients__slider .swiper-slide .logo-company {
  max-width: 100%;
}

.letters__wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding: 35px 0;
  padding-right: 10px;
  background-color: var(--yellow);
}

.letters__button {
  display: none;
}

.letters__button span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.letters__button svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.letters__menu {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 598px;
  scroll-behavior: smooth;
}

.letters__menu::-webkit-scrollbar {
  width: 6px;
}

.letters__menu::-webkit-scrollbar-track {
  background: transparent;
}

.letters__menu::-webkit-scrollbar-thumb {
  background: var(--base-color);
}

.letters__name {
  position: relative;
  padding: 10px 90px;
  font-weight: 500;
  font-size: 20px;
  color: var(--dark);
  cursor: pointer;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

.letters__name::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  height: 0;
  width: 4px;
  background: var(--yellow-light);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.letters__name.--active {
  pointer-events: none;
  color: var(--yellow-light);
}

.letters__name.--active::after {
  height: 100%;
}

.letters__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 60%;
  padding: 20px;
  background-color: var(--white);
}

.letters__slider .swiper {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.letters__slider .slider-arrows {
  left: 100px;
  right: 100px;
}

.letters__slider .swiper-slide {
  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;
  height: auto;
}

.letters__slider .swiper-slide.swiper-slide-active > a {
  opacity: 1;
  pointer-events: auto;
}

.letters__slider .swiper-slide > a {
  pointer-events: none;
  opacity: 0;
}

.letters__slider .swiper-slide > a img {
  will-change: transform;
  -webkit-transition: var(--transition-small);
  -o-transition: var(--transition-small);
  transition: var(--transition-small);
}

@media (max-width: 1730px) {
  .equipment__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 580px;
            flex: 0 0 580px;
  }
}

@media (max-width: 1580px) {
  .site-mask__image {
    width: 68%;
    right: auto;
  }

  .site-mask__decor {
    left: 68%;
    width: 500px;
  }

  .site-mask::after {
    width: 32%;
    left: 68%;
  }

  .header__row {
    gap: 30px;
  }

  .header__logo {
    max-width: 170px;
  }

  .header__menu ul {
    gap: 30px;
  }

  .header__menu ul a {
    font-weight: 500;
  }

  .header__drop ul {
    gap: 15px;
    padding: 25px 20px;
  }

  .header__drop ul li {
    max-width: 250px;
  }

  .header__drop ul li a {
    font-size: 16px;
    line-height: 120%;
  }

  .header__buttons {
    gap: 50px;
  }

  .header__btn.btn {
    padding: 15px;
  }

  .header__phone {
    font-size: 19px;
  }

  .product {
    padding: 20px 15px 0;
  }

  .product__top {
    gap: 10px;
  }

  .table-approach {
    margin-right: -30px;
  }

  .faq {
    font-size: 17px;
  }

  .faq ol {
    font-size: 17px;
  }

  .faq ul {
    font-size: 17px;
  }

  .row-block {
    font-size: 17px;
  }

  .home {
    padding-top: 170px;
    --backdrop: 323px;
  }

  .home::after {
    width: 68%;
    right: auto;
  }

  .home__info {
    gap: 35px;
  }

  .home__name {
    font-size: 20px;
  }

  .home__box {
    gap: 50px;
  }

  .home__item strong {
    font-size: 35px;
  }

  .home__text {
    font-size: 65px;
  }

  .home__text span {
    font-size: 90px;
  }

  .home__btn {
    padding: 32px;
    font-size: 16px;
  }

  .systems .faq {
    max-width: 530px;
  }

  .systems__decor {
    max-width: 450px;
    -webkit-transform: translate(25%, 0);
        -ms-transform: translate(25%, 0);
            transform: translate(25%, 0);
  }

  .equipment {
    --distance: 30px;
  }

  .equipment__box {
    padding: 60px 30px 120px;
  }

  .equipment .faq ol {
    gap: 20px;
  }

  .equipment__decor {
    left: calc(var(--distance) + 5px);
  }

  .approach__row {
    gap: 30px;
  }

  .approach__title {
    max-width: 600px;
    font-size: 17px;
  }

  .automation__top {
    min-height: 106px;
  }

  .automation__top h4 {
    font-size: 20px;
  }

  .automation__content {
    padding: 30px 25px 40px var(--size);
  }

  .automation ul li {
    font-size: 20px;
  }

  .automation__decor {
    width: 130%;
  }

  .check-list__grid {
    --offset: 20px;
    --size: 45px;
    --icon: 38px;
  }

  .check-list__item:nth-child(3) .check-list__top::before {
    width: 40%;
  }

  .check-list__top::before,
  .check-list__top::after {
    width: 50%;
  }

  .import__grid {
    gap: 100px;
  }
}

@media (max-width: 1430px) {
  body {
    --header-size: 93px;
  }

  h1 {
    font-size: 50px;
  }

  h2,
  .second {
    font-size: 40px;
  }

  .site-mask__image {
    width: calc(70% - 10px);
  }

  .site-mask__decor {
    top: 12%;
    left: calc(69% - 10px);
    width: 430px;
  }

  .site-mask::after {
    width: calc(31% + 10px);
    left: calc(69% - 10px);
  }

  .-offset {
    padding: 70px 0;
  }

  .-offset-top {
    padding-top: 70px;
  }

  .-offset-bottom {
    padding-bottom: 70px;
  }

  .header {
    padding: 25px 0;
  }

  .header__row {
    gap: 20px;
  }

  .header__logo {
    max-width: 150px;
  }

  .header__menu ul {
    gap: 20px;
  }

  .header__menu ul a {
    padding: 10px 0;
    font-size: 12px;
  }

  .header__drop ul {
    gap: 13px;
    padding: 20px 15px;
  }

  .header__drop ul li {
    max-width: 230px;
  }

  .header__drop ul li a {
    font-size: 15px;
  }

  .header__buttons {
    gap: 25px;
  }

  .header__btn.btn {
    padding: 13px;
    font-weight: 500;
  }

  .header__phone {
    font-size: 17px;
  }

  .title {
    margin-bottom: 35px;
  }

  .product__icon {
    width: 40px;
    height: 40px;
  }

  .means-card__arrow {
    width: 60px;
    height: 60px;
  }

  .means-card__name {
    font-size: 16px;
  }

  .table-approach__th {
    padding: 20px 15px;
    font-size: 22px;
  }

  .table-approach__th:nth-child(1) {
    padding: 30px 20px;
  }

  .site-info__wrapper {
    padding: 40px 30px;
  }

  .form__content {
    padding: 50px 55px;
  }

  .types__box {
    min-height: 230px;
    padding: 35px 30px;
  }

  .types__top {
    gap: 10px;
  }

  .types__row {
    gap: 15px 30px;
  }

  .types__info {
    gap: 40px;
    padding: 40px;
  }

  .types__info .types__row {
    gap: 40px;
  }

  .types__text {
    gap: 40px;
    font-size: 28px;
  }

  .types__shell {
    gap: 30px;
    font-size: 32px;
  }

  .geography__row {
    gap: 80px;
  }

  .faq {
    font-size: 16px;
  }

  .faq ol {
    gap: 25px;
    font-size: 16px;
  }

  .faq ol li::before {
    width: 35px;
    height: 35px;
  }

  .faq ul {
    font-size: 16px;
  }

  .row-block {
    font-size: 16px;
  }

  .home {
    padding-top: 110px;
    --backdrop: 280px;
  }

  .home::after {
    width: calc(69% - 10px);
  }

  .home__info {
    gap: 30px;
    padding: 30px 0;
  }

  .home__column {
    gap: 10px;
  }

  .home__name {
    font-size: 18px;
  }

  .home__item {
    font-size: 12px;
  }

  .home__item strong {
    font-size: 30px;
  }

  .home__shell {
    gap: 40px;
  }

  .home__text {
    font-size: 58px;
  }

  .home__btn {
    padding: 30px;
    font-size: 14px;
  }

  .systems__wrapper {
    padding-bottom: 100px;
  }

  .systems h2 {
    max-width: 400px;
  }

  .systems .faq {
    max-width: 500px;
  }

  .systems .faq ol {
    gap: 35px;
  }

  .systems .faq ol li {
    gap: 24px;
  }

  .systems .faq ol li::before {
    width: 45px;
    height: 45px;
  }

  .systems__decor {
    z-index: 0;
    max-width: 400px;
    -webkit-transform: translate(25%, 9%);
        -ms-transform: translate(25%, 9%);
            transform: translate(25%, 9%);
  }

  .equipment__box {
    padding: 40px 30px 80px;
  }

  .equipment__top {
    margin-bottom: 50px;
  }

  .equipment__decor {
    max-width: 90%;
  }

  .means__grid {
    gap: 20px;
    margin-bottom: 50px;
  }

  .approach__row {
    gap: 20px;
  }

  .brand-cards__grid {
    gap: 20px;
  }

  .brand-cards__thead,
  .brand-cards__row {
    font-size: 15px;
  }

  .automation__top {
    min-height: 100px;
    padding: 20px 15px;
  }

  .automation__top h4 {
    font-size: 18px;
  }

  .automation__content {
    --size: 40px;
    padding: 25px 15px 30px var(--size);
    font-size: 15px;
  }

  .automation ul {
    gap: 15px;
    margin-bottom: 15px;
  }

  .automation ul li {
    font-size: 18px;
  }

  .automation ul li::before {
    height: 6px;
  }

  .check-list__grid {
    --font: 16px;
    gap: 10px;
  }

  .work__wrapper {
    padding-bottom: 100px;
  }

  .work__map {
    width: 1500px;
  }

  .work__box {
    padding: 20px 20px 0;
  }

  .work__row {
    gap: 15px;
  }

  .work__bottom {
    gap: 30px;
    font-size: 17px;
  }

  .analysis__grid {
    gap: 60px;
  }

  .analysis__row {
    gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .analysis__box {
    max-width: 530px;
  }

  .analysis__bg {
    max-width: 50%;
  }

  .solution__content {
    gap: 100px;
  }

  .solution .scroll-image {
    max-width: 60%;
  }

  .import__grid {
    gap: 50px;
  }

  .import__box {
    width: 100px;
    height: 100px;
    font-size: 47px;
  }

  .clients__slider {
    margin-bottom: 35px;
  }

  .letters__wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .letters__menu {
    max-height: 550px;
  }

  .letters__name {
    padding: 10px 50px;
  }

  .letters__slider {
    max-width: 50%;
  }

  .letters__slider .slider-arrows {
    left: 50px;
    right: 50px;
  }
}

@media (max-width: 1430px) and (max-width: 1250px) {
  .site-mask__image {
    width: 100%;
  }

  .home::after {
    width: 100%;
  }
}

@media (max-width: 1366px) {
  .product__name {
    font-size: 15px;
  }
}

@media (max-width: 1250px) {
  body {
    --header-size: 76px;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 45px;
  }

  h2,
  .second {
    font-size: 37px;
  }

  h3,
  .third {
    font-size: 27px;
  }

  h4,
  .fourth {
    font-size: 22px;
  }

  h5,
  .fifth {
    font-size: 18px;
  }

  .btn {
    gap: 10px;
  }

  .site-mask__decor {
    display: none;
  }

  .site-mask::after {
    display: none;
  }

  .block-decor {
    left: -15px;
    right: -15px;
  }

  .-offset {
    padding: 60px 0;
  }

  .-offset-top {
    padding-top: 60px;
  }

  .-offset-bottom {
    padding-bottom: 60px;
  }

  .-small {
    padding: 50px 0;
  }

  .-small-top {
    padding-top: 50px;
  }

  .-small-bottom {
    padding-bottom: 50px;
  }

  .header {
    padding: 20px 0;
  }

  .header.--active {
    background-color: var(--white);
  }

  .header.--active .site-mask {
    opacity: 0;
  }

  .header.--active .burger span {
    background-color: var(--dark);
  }

  .header.--active .header__logo svg path {
    fill: var(--base-color);
  }

  .header.--active .header__logo svg path:nth-child(2) {
    fill: var(--yellow);
  }

  .header.--active .header__trigger svg path {
    stroke: var(--dark);
  }

  .header__logo {
    max-width: 160px;
  }

  .header__menu {
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    overflow: auto;
    position: fixed;
    z-index: 9;
    top: var(--header-scroll);
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 15px;
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    height: calc(100vh - var(--header-scroll));
    -webkit-transition: var(--transition-small);
    -o-transition: var(--transition-small);
    transition: var(--transition-small);
  }

@supports (height: 100dvh) {
    .header__menu {
      height: calc(100dvh - var(--header-scroll));
    }
}

  .header__menu.--active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 100%;
  }

  .header__menu ul li {
    max-width: 100%;
    color: var(--dark);
  }

  .header__menu ul a {
    padding: 0;
    font-size: 15px;
  }

  .header__drop ul {
    position: static;
    overflow: hidden;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    max-height: 0px;
    pointer-events: none;
    opacity: 1;
    padding: 0;
    background-color: transparent;
  }

  .header__drop ul li {
    max-width: 100%;
    color: var(--base-color);
  }

  .header__drop ul li a {
    font-size: 14px;
  }

  .header__drop > a {
    position: relative;
    pointer-events: none;
  }

  .header__drop > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 16px;
    height: 9px;
    background-image: url("../img/svg/menu-arrow.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }

  .header__drop.--active > a {
    padding-bottom: 15px;
  }

  .header__drop.--active > a::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .header__drop.--active ul {
    max-height: var(--drop-size);
    pointer-events: auto;
  }

  .header__drop.--unlock > a {
    pointer-events: auto;
  }

  .header__nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }

  .header__nav.--visible .header__overlay {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .header__nav.--visible .header__buttons {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }

  .header__trigger {
    display: block;
    width: 30px;
  }

  .header__buttons {
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    position: absolute;
    z-index: 10;
    top: -5px;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    -webkit-transition: var(--transition-small);
    -o-transition: var(--transition-small);
    transition: var(--transition-small);
  }

  .header__btn span {
    display: none;
  }

  .header__btn svg,
  .header__btn em {
    display: inline-block;
    font-weight: 500;
    font-size: 9px;
    line-height: 110%;
  }

  .header__btn svg {
    width: 24px;
    height: auto;
  }

  .header__btn svg path {
    stroke: var(--dark);
  }

  .header__btn {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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;
    gap: 3px;
    width: 60px;
    height: 60px;
    font-weight: 500;
    font-size: 7px;
    background-color: var(--white);
    text-transform: none;
  }

  .header__btn * {
    pointer-events: none;
  }

  .header__phone {
    background-color: var(--yellow);
  }

  .burger {
    display: block;
  }

  .title {
    gap: 15px;
  }

  .title__subtext {
    font-size: 17px;
  }

  .product {
    padding: 15px 10px 0;
  }

  .product__name {
    font-size: 14px;
  }

  .product__icon {
    width: 35px;
    height: 35px;
  }

  .means-card {
    gap: 45px;
  }

  .table-approach {
    margin-right: -15px;
  }

  .table-approach__th {
    padding: 15px;
    font-size: 20px;
  }

  .table-approach__th:nth-child(1) {
    padding: 25px 15px;
  }

  .table-approach__td {
    padding: 15px 15px 30px;
  }

  .table-approach__td:nth-child(1) {
    padding: 20px 15px;
  }

  .table-advant {
    margin: 0 -15px;
    padding: 20px 0 60px 30px;
  }

  .table-advant__item {
    font-size: 22px;
  }

  .table-advant__item p:last-child {
    padding: 0 35px;
    color: #686766;
  }

  .logo-company {
    min-height: 122px;
  }

  .brand {
    gap: 15px;
  }

  .brand .logo-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .site-info__wrapper {
    margin: 0 -15px;
    padding: 35px 20px;
  }

  .site-info__decor {
    width: 400px;
    -webkit-transform: translate(10%, -30%);
        -ms-transform: translate(10%, -30%);
            transform: translate(10%, -30%);
  }

  .form__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }

  .form__content {
    padding: 40px 20px;
  }

  .form__decor {
    width: 430px;
    -webkit-transform: translate(10%, 5%);
        -ms-transform: translate(10%, 5%);
            transform: translate(10%, 5%);
  }

  .top-title__container::before {
    right: 50%;
  }

  .top-title__container::after {
    left: 15px;
  }

  .top-title__box {
    padding: 20px 0;
    gap: 20px;
  }

  .top-title__descr {
    font-size: 15px;
  }

  .scroll-image {
    margin: 0 -15px;
  }

  .scroll-image__mask.--prev {
    left: -15px;
  }

  .scroll-image__mask {
    right: -15px;
    width: 400px;
  }

  .scroll-image__btn {
    right: 15px;
    width: 80px;
    height: 80px;
  }

  .scroll-image__btn svg {
    max-width: 60%;
  }

  .scroll-image__btn.--prev {
    left: 15px;
  }

  .scroll-image__wrapper {
    margin: 0;
    padding: 0 15px;
    max-height: 700px;
  }

  .types {
    gap: 30px;
  }

  .types__box {
    min-height: 200px;
    padding: 25px 15px;
  }

  .types__top {
    font-size: 17px;
  }

  .types__top br {
    display: none;
  }

  .types__top h4 {
    font-size: 23px;
  }

  .types__bottom {
    gap: 15px;
  }

  .types__row {
    gap: 10px 15px;
  }

  .types__item {
    gap: 8px;
    font-size: 15px;
  }

  .types__item strong {
    font-size: 18px;
  }

  .types__btn {
    padding: 15px 20px;
  }

  .types__info {
    gap: 30px;
    padding: 30px;
  }

  .types__info .types__row {
    gap: 30px;
  }

  .types__text {
    gap: 30px;
    font-size: 25px;
  }

  .types__shell {
    font-size: 26px;
  }

  .types__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }

  .geography__wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .geography__row {
    gap: 30px;
  }

  .geography__title {
    max-width: 300px;
  }

  .geography__text {
    max-width: 650px;
    font-size: 18px;
  }

  .geography__image {
    width: 1500px;
  }

  .slider-arrows {
    gap: 30px;
  }

  .slider-arrows__btn {
    width: 60px;
    height: 60px;
  }

  .map {
    height: 500px;
  }

  .faq {
    font-size: 15px;
  }

  .faq h3 {
    font-size: 32px;
  }

  .faq h4 {
    font-size: 26px;
  }

  .faq ol {
    gap: 20px;
    font-size: 15px;
  }

  .faq ol li {
    gap: 15px;
  }

  .faq ol li::before {
    font-size: 14px;
  }

  .faq ul {
    font-size: 15px;
  }

  .faq ul li {
    gap: 15px;
  }

  .faq.-circle ol li::before {
    width: 43px;
    height: 43px;
    font-size: 19px;
  }

  .faq .-border {
    border-width: 3px;
  }

  .row-block {
    font-size: 15px;
  }

  .grid {
    gap: 20px;
    font-size: 15px;
  }

  .grid__item {
    gap: 20px;
  }

  .footer__wrapper {
    padding: 50px 0;
  }

  .footer__box {
    max-width: 450px;
    gap: 30px;
    padding: 40px 30px 50px;
  }

  .footer__logo {
    max-width: 260px;
  }

  .footer__column {
    gap: 15px;
    font-size: 18px;
  }

  .footer__item {
    font-size: 18px;
  }

  .footer__bottom {
    padding: 25px 0;
  }

  .modal__exit {
    top: 20px;
    right: 35px;
    width: 30px;
    height: 30px;
  }

  .modal-complete__wrapper {
    padding: 40px;
    max-width: 800px;
  }

  .modal-complete__decor {
    width: 400px;
  }

  .home {
    padding-top: 90px;
    --backdrop: 272px;
  }

  .home::after {
    display: none;
  }

  .home .site-mask {
    height: calc(100% - var(--backdrop));
  }

  .home__row {
    display: block;
  }

  .home__content {
    max-width: 100%;
  }

  .home__info {
    margin: 0 -15px;
    padding: 30px 15px;
    backdrop-filter: blur(20px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 4, 4, 0.2)), to(rgba(4, 4, 4, 0.2)));
    background: -o-linear-gradient(top, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.2) 100%);
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.2) 100%);
  }

  .home__name {
    font-size: 17px;
  }

  .home__shell::before {
    content: "";
    position: absolute;
    bottom: -37px;
    right: 0;
    width: 350px;
    height: 300px;
    background-image: url("../img/other/home-decormob.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .home__shell {
    gap: 30px;
    margin: 0 -15px;
    padding: 50px 15px;
    padding-bottom: 40px;
    background-color: var(--yellow);
  }

  .home__text {
    font-size: 55px;
  }

  .home__text span {
    font-size: 100px;
  }

  .home__btn {
    max-width: 50%;
  }

  .systems__wrapper {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .systems h2 {
    max-width: 380px;
  }

  .systems .faq {
    max-width: 430px;
  }

  .systems .faq ol {
    gap: 30px;
  }

  .systems .faq ol li {
    gap: 20px;
  }

  .systems .faq ol li::before {
    width: 40px;
    height: 40px;
  }

  .systems__decor {
    max-width: 350px;
    -webkit-transform: translate(35%, 9%);
        -ms-transform: translate(35%, 9%);
            transform: translate(35%, 9%);
  }

  .equipment {
    --distance: 15px;
  }

  .equipment__box {
    padding: 50px 15px 60px;
  }

  .equipment__top {
    margin-bottom: 40px;
  }

  .equipment__decor {
    max-width: 80%;
  }

  .equipment__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
  }

  .means__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .approach__title {
    max-width: 500px;
    font-size: 15px;
  }

  .advantages__label {
    padding: 25px 15px 45px;
  }

  .advantages__plus {
    width: 55px;
    height: 55px;
    top: 15px;
  }

  .advantages__title {
    margin-bottom: 50px;
  }

  .advantages__column {
    padding: 35px 45px;
    font-size: 17px;
  }

  .advantages__decor {
    width: 800px;
    -webkit-transform: translate(-41%, 32%);
        -ms-transform: translate(-41%, 32%);
            transform: translate(-41%, 32%);
  }

  .advantages__box {
    padding-top: 0;
  }

  .brand-cards__column .logo-company {
    width: 200px;
    min-height: 100px;
  }

  .brand-cards__decor {
    max-width: 60%;
  }

  .automation__top {
    min-height: 83px;
    padding: 15px;
  }

  .automation__top h4 {
    font-size: 16px;
  }

  .automation__content {
    --size: 35px;
    padding: 20px 15px 30px var(--size);
  }

  .automation ul li {
    font-size: 16px;
  }

  .automation ul li::before {
    height: 5px;
  }

  .check-list__grid {
    --icon: 35px;
  }

  .check-list__item {
    gap: 20px;
  }

  .check-list__item:last-child .check-list__top::after {
    display: none;
  }

  .check-list__item:nth-child(1) .check-list__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .check-list__top {
    width: auto;
  }

  .check-list__top::before,
  .check-list__top::after {
    display: none;
  }

  .check-list__top h3 {
    line-height: 110%;
  }

  .check-list__top h3 br {
    display: none;
  }

  .check-list__content {
    padding-left: 0;
  }

  .check-list__content ul li ul p {
    gap: 10px;
  }

  .check-list__content ul li ul p::before {
    width: 18px;
    height: 18px;
  }

  .work__labels {
    margin-bottom: 20px;
  }

  .work__wrapper {
    padding-bottom: 80px;
  }

  .work__map {
    width: 1300px;
  }

  .work__item h5 {
    margin-bottom: 25px;
  }

  .work__label {
    padding: 10px 15px;
    font-size: 16px;
  }

  .work .faq ol {
    --font: 19px;
  }

  .work .faq ol li {
    padding: 15px 20px 35px;
  }

  .work .faq ol li::before {
    width: 45px;
    height: 45px;
  }

  .analysis__grid {
    gap: 30px;
  }

  .analysis__row {
    gap: 20px;
  }

  .analysis__box {
    max-width: 470px;
  }

  .analysis__content {
    padding: 20px 15px 55px;
  }

  .analysis__content h4 {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  .analysis__content ul li {
    padding: 20px 15px;
    font-size: 17px;
  }

  .solution__content {
    max-width: 500px;
  }

  .solution .scroll-image {
    margin-top: -40px;
    max-width: 55%;
  }

  .import__top {
    margin-bottom: 40px;
    font-size: 22px;
  }

  .import__logo {
    width: 350px;
  }

  .import__advants {
    margin-bottom: 40px;
  }

  .import__item {
    padding: 35px 30px 40px;
  }

  .import__item .faq ul {
    font-size: 15px;
  }

  .import__grid {
    gap: 30px;
  }

  .import__box {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .clients__slider .swiper-slide {
    max-width: 250px;
  }

  .letters__wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    padding: 30px 0;
    padding-right: 10px;
  }

  .letters__name {
    padding: 8px 25px;
    font-size: 18px;
  }

  .letters__name::after {
    left: 0px;
    width: 3px;
  }

  .letters__slider {
    max-width: 58%;
    padding: 35px;
  }

  .letters__slider .slider-arrows {
    left: 15px;
    right: 15px;
  }
}

@media (max-width: 1050px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .second {
    font-size: 32px;
  }

  h3,
  .third {
    font-size: 25px;
  }

  h4,
  .fourth {
    font-size: 20px;
  }

  h5,
  .fifth {
    font-size: 17px;
  }

  .block-decor {
    bottom: -0.3em;
  }

  .-offset {
    padding: 50px 0;
  }

  .-offset-top {
    padding-top: 50px;
  }

  .-offset-bottom {
    padding-bottom: 50px;
  }

  .-small {
    padding: 40px 0;
  }

  .-small-top {
    padding-top: 40px;
  }

  .-small-bottom {
    padding-bottom: 40px;
  }

  .title__subtext {
    font-size: 16px;
  }

  .means-card__arrow {
    width: 55px;
    height: 55px;
  }

  .table-approach {
    margin-right: 0;
  }

  .table-advant {
    --last-size: 250px;
    padding: 20px 15px 50px;
  }

  .table-advant__item {
    font-size: 20px;
  }

  .table-advant__item p:last-child {
    padding: 0 15px;
  }

  .brand .logo-company {
    min-height: 100px;
  }

  .site-info__wrapper {
    padding: 30px 15px;
  }

  .site-info__row {
    gap: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .site-info__btn {
    min-width: 230px;
  }

  .form__content {
    padding: 30px 15px;
  }

  .top-title__box {
    padding: 15px 0;
  }

  .top-title__descr {
    font-size: 14px;
  }

  .scroll-image__mask {
    width: 350px;
  }

  .scroll-image__btn {
    width: 70px;
    height: 70px;
  }

  .scroll-image__wrapper {
    max-height: 600px;
  }

  .types__box {
    min-height: 180px;
    padding: 20px 15px;
  }

  .types__top {
    font-size: 16px;
  }

  .types__top h4 {
    font-size: 21px;
  }

  .types__item {
    gap: 5px;
    font-size: 14px;
  }

  .types__item strong {
    font-size: 17px;
  }

  .types__info {
    padding: 25px 20px;
  }

  .types__info .types__row {
    gap: 20px;
  }

  .types__text {
    gap: 20px;
    font-size: 22px;
  }

  .types__shell {
    gap: 20px;
    font-size: 22px;
  }

  .types__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }

  .geography__wrapper {
    padding: 80px 0;
  }

  .geography__title {
    max-width: 250px;
  }

  .geography__text {
    max-width: 550px;
    gap: 15px;
    font-size: 16px;
  }

  .geography__image {
    width: 1000px;
    -webkit-transform: translate(-8%, -12%);
        -ms-transform: translate(-8%, -12%);
            transform: translate(-8%, -12%);
  }

  .map {
    height: 450px;
  }

  .breadcrumbs {
    padding-bottom: 30px;
  }

  .faq h2 {
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .faq h3 {
    padding-top: 15px;
    margin-bottom: 20px;
    font-size: 28px;
  }

  .faq h4 {
    padding-top: 15px;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .faq ul,
  .faq ol,
  .faq p {
    margin-bottom: 20px;
  }

  .faq ul li::before {
    width: 25px;
    height: 25px;
    background-size: 11px auto;
  }

  .row-block {
    gap: 20px;
    margin: 15px 0;
  }

  .row-block__image {
    max-width: calc(50% - 10px);
  }

  .row-block__text {
    gap: 15px;
    max-width: calc(50% - 10px);
  }

  .grid {
    font-size: 14px;
  }

  .footer__wrapper {
    padding: 40px 0;
  }

  .footer__box {
    max-width: 400px;
    gap: 20px;
    padding: 30px 20px 40px;
  }

  .footer__logo {
    max-width: 240px;
    margin-bottom: 5px;
  }

  .footer__column {
    gap: 10px;
    font-size: 16px;
  }

  .footer__social {
    gap: 5px;
    font-size: 14px;
  }

  .footer__item {
    font-size: 16px;
  }

  .footer__item a {
    font-size: 15px;
  }

  .footer__item span {
    font-size: 14px;
  }

  .footer__bottom {
    padding: 20px 0;
  }

  .modal-complete__wrapper {
    max-width: 700px;
    padding: 30px;
  }

  .modal-complete__decor {
    width: 300px;
  }

  .home {
    --backdrop: 270px;
  }

  .main-product .product::before {
    left: 150%;
  }

  .main-product .product:nth-child(3n+1) {
    border-top: none;
  }

  .main-product .product:nth-child(3n+1)::before {
    display: block;
  }

  .main-product__line span {
    left: calc(var(--i) * 33.333%);
  }

  .main-product__line span:nth-child(3) {
    display: none;
  }

  .main-product .breadcrumbs {
    width: 100%;
  }

  .main-product__title.title:has(h1) {
    width: 100%;
  }

  .main-product__title.title {
    width: 66.666%;
  }

  .main-product__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .systems__wrapper {
    padding: 50px 0;
  }

  .systems__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .systems h2 {
    max-width: 50%;
  }

  .systems .faq {
    max-width: 100%;
  }

  .systems .faq ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .systems .faq ol li::after {
    display: none;
  }

  .systems__decor {
    max-width: 400px;
    -webkit-transform: translate(-10%, 5%);
        -ms-transform: translate(-10%, 5%);
            transform: translate(-10%, 5%);
    opacity: 0.8;
  }

  .equipment__box {
    padding: 40px 15px 60px;
  }

  .equipment__top {
    margin-bottom: 30px;
  }

  .equipment .faq ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment .faq ol li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .equipment__decor {
    max-width: 90%;
    bottom: -15px;
  }

  .equipment__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }

  .approach__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .approach__title {
    max-width: 100%;
    gap: 10px;
  }

  .advantages__wrapper {
    padding-bottom: 40px;
  }

  .advantages__title {
    margin-bottom: 40px;
  }

  .advantages__column {
    gap: 15px;
    padding: 30px 35px;
    font-size: 16px;
  }

  .advantages__icon {
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
  }

  .advantages__decor {
    width: 700px;
    -webkit-transform: translate(-43%, 27%);
        -ms-transform: translate(-43%, 27%);
            transform: translate(-43%, 27%);
  }

  .company__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .brand-cards__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .automation__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation__item.-long-mob {
    grid-column: 2 span;
  }

  .automation__item.-long-mob .automation__top {
    min-height: unset;
  }

  .automation__top {
    min-height: 90px;
  }

  .automation__top h4 {
    font-size: 18px;
  }

  .automation__content {
    --size: 40px;
  }

  .automation ul li {
    font-size: 17px;
  }

  .automation ul li::before {
    height: 6px;
  }

  .automation__decor {
    width: 110%;
    -webkit-transform: translate(-12%, 47%);
        -ms-transform: translate(-12%, 47%);
            transform: translate(-12%, 47%);
    opacity: 0.5;
  }

  .check-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work__wrapper {
    padding-bottom: 0;
    padding-top: 350px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .work__wrapper .work__grid {
    display: grid;
  }

  .work__wrapper .work__item h5 {
    margin-bottom: 15px;
  }

  .work__wrapper .work__box {
    padding: 15px 15px 0;
  }

  .work__map {
    width: 1000px;
  }

  .work__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .work__item {
    --distance: 20px;
  }

  .work__row.-line::after {
    width: 4px;
    height: 20px;
  }

  .work__row.-arrow::after {
    width: 13px;
    height: 13px;
  }

  .work__label {
    font-size: 15px;
  }

  .work__bottom {
    font-size: 16px;
  }

  .work__client {
    font-size: 15px;
  }

  .work .faq ol {
    --font: 17px;
  }

  .work .faq ol li {
    padding: 15px;
    padding-bottom: 25px;
  }

  .work .faq ol li::before {
    width: 40px;
    height: 40px;
  }

  .analysis__column {
    gap: 20px;
  }

  .analysis__row {
    gap: 15px;
  }

  .analysis__box {
    max-width: 430px;
  }

  .analysis__content {
    padding-bottom: 40px;
  }

  .analysis__content h4 {
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
  }

  .analysis__content ul li {
    padding: 15px;
    font-size: 16px;
  }

  .solution__content {
    max-width: 450px;
  }

  .solution .scroll-image__mask {
    width: 300px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .import__top {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .import__logo {
    width: 300px;
  }

  .import__advants {
    margin-bottom: 30px;
  }

  .import__item {
    padding: 25px 20px 35px;
    font-size: 15px;
  }

  .import__item .faq {
    padding-top: 15px;
  }

  .import__item .faq ul {
    font-size: 14px;
  }

  .import__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }

  .import__shell {
    gap: 15px;
    font-size: 15px;
  }

  .import__box {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }

  .import__box span {
    font-size: 10px;
  }

  .clients__slider .swiper-slide {
    max-width: 200px;
  }

  .clients__slider .swiper-slide .logo-company {
    min-height: 120px;
  }

  .letters__wrapper {
    padding: 20px 0;
    padding-right: 10px;
  }

  .letters__menu {
    max-height: 555px;
  }

  .letters__name {
    font-size: 16px;
  }

  .letters__slider {
    padding: 25px 40px;
  }
}

@media (max-width: 950px) {
  h1 {
    font-size: 35px;
  }

  h2,
  .second {
    font-size: 30px;
  }

  h3,
  .third {
    font-size: 22px;
  }

  h4,
  .fourth {
    font-size: 18px;
  }

  h5,
  .fifth {
    font-size: 16px;
  }

  .input input,
  .input textarea {
    padding: 15px;
  }

  .checkbox__label {
    font-size: 13px;
  }

  .-offset {
    padding: 40px 0;
  }

  .-offset-top {
    padding-top: 40px;
  }

  .-offset-bottom {
    padding-bottom: 40px;
  }

  .title {
    margin-bottom: 30px;
    gap: 13px;
  }

  .title__subtext {
    font-size: 15px;
  }

  .product__name {
    font-size: 13px;
  }

  .product__icon {
    width: 30px;
    height: 30px;
  }

  .means-card__name {
    font-size: 15px;
  }

  .table-advant {
    --last-size: 200px;
    padding-bottom: 40px;
  }

  .table-advant__item {
    padding: 10px 0;
    font-size: 17px;
  }

  .brand__row {
    gap: 5px;
  }

  .brand .logo-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    min-height: 80px;
  }

  .brand__column {
    gap: 5px;
    width: calc(var(--size) - (5px / 2));
  }

  .brand__image {
    width: calc(var(--size) - (5px / 2));
  }

  .site-info__row {
    gap: 20px;
  }

  .site-info__btn {
    min-width: 220px;
  }

  .site-info__decor {
    width: 300px;
  }

  .form:has(.-row-reverse) .form__decor {
    -webkit-transform: translate(10%, 5%);
        -ms-transform: translate(10%, 5%);
            transform: translate(10%, 5%);
  }

  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .form__image {
    z-index: unset;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding-bottom: 110%;
  }

  .form__title,
  .form__grid,
  .form .checkbox {
    position: relative;
    z-index: 1;
  }

  .form__content {
    z-index: unset;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-top: -25%;
    background-color: var(--yellow);
  }

  .form__grid {
    max-width: 100%;
  }

  .form__decor {
    width: 370px;
    -webkit-transform: translate(10%, 5%);
        -ms-transform: translate(10%, 5%);
            transform: translate(10%, 5%);
  }

  .top-title__name {
    padding: 20px 0;
  }

  .top-title__descr {
    font-size: 13px;
  }

  .scroll-image__mask {
    width: 300px;
  }

  .scroll-image__btn {
    width: 60px;
    height: 60px;
  }

  .types {
    gap: 20px;
  }

  .types__box {
    min-height: 200px;
  }

  .types__column {
    width: 100%;
  }

  .types__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
  }

  .types__info {
    gap: 25px;
    padding: 30px 20px;
  }

  .types__info .types__row {
    gap: 16px;
  }

  .types__info .types__row strong {
    font-size: 18px;
  }

  .types__text {
    gap: 15px;
    font-size: 20px;
  }

  .types__list {
    width: 100%;
    gap: 10px;
    padding: 10px 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .types__shell {
    gap: 15px;
    font-size: 20px;
  }

  .types__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    padding-bottom: 15%;
  }

  .geography__wrapper {
    padding: 60px 0;
  }

  .geography__row {
    gap: 20px;
  }

  .geography__title {
    max-width: 200px;
  }

  .geography__text {
    font-size: 15px;
  }

  .geography__image {
    width: 800px;
  }

  .slider-arrows {
    gap: 24px;
  }

  .slider-arrows__btn {
    width: 50px;
    height: 50px;
  }

  .map {
    height: 400px;
  }

  .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .faq {
    font-size: 14px;
  }

  .faq h3 {
    padding-top: 10px;
    margin-bottom: 15px;
    font-size: 24px;
  }

  .faq h4 {
    padding-top: 10px;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .faq ol {
    gap: 15px;
    font-size: 14px;
  }

  .faq ol li::before {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .faq .row-number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .faq ul {
    font-size: 14px;
  }

  .faq.-circle ol li::before {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .row-block {
    font-size: 14px;
  }

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

  .grid__item {
    gap: 15px;
  }

  .grid.-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__logo {
    max-width: 230px;
  }

  .footer__bottom {
    gap: 25px;
    padding: 30px 0;
  }

  .footer__text {
    gap: 0px;
  }

  .footer__nav {
    gap: 8px;
  }

  .modal-complete__wrapper {
    max-width: 650px;
  }

  .modal-complete__decor {
    width: 260px;
  }

  .home__name {
    font-size: 16px;
  }

  .home__box {
    gap: 35px;
  }

  .home__shell {
    padding: 60px 15px;
    padding-bottom: 50px;
  }

  .home__text {
    font-size: 45px;
  }

  .home__text span {
    font-size: 90px;
  }

  .home__btn {
    padding: 25px;
  }

  .main-product__title.title {
    padding-bottom: 30px;
  }

  .systems__wrapper {
    padding: 40px 0;
  }

  .systems .faq ol {
    gap: 20px;
  }

  .systems .faq ol li {
    gap: 15px;
  }

  .systems .faq ol li::before {
    width: 35px;
    height: 35px;
  }

  .systems__decor {
    width: 350px;
  }

  .equipment__row {
    display: block;
  }

  .equipment__box {
    padding-bottom: 80px;
  }

  .equipment__decor {
    max-width: 100%;
    bottom: -10px;
  }

  .equipment__image {
    width: 100%;
    padding-bottom: 75%;
  }

  .means__grid {
    gap: 25px;
  }

  .approach__title {
    gap: 20px;
    font-size: 14px;
  }

  .approach__title p:not(:last-child) {
    margin-bottom: 0;
  }

  .advantages__label {
    padding: 20px 15px 40px;
  }

  .advantages__plus {
    width: 45px;
    height: 45px;
  }

  .advantages__title {
    margin-bottom: 30px;
  }

  .advantages__column {
    gap: 10px;
    padding: 25px 20px;
    font-size: 15px;
  }

  .advantages__icon {
    width: 45px;
    height: 45px;
  }

  .advantages__decor {
    width: 600px;
    -webkit-transform: translate(-35%, 23%);
        -ms-transform: translate(-35%, 23%);
            transform: translate(-35%, 23%);
  }

  .brand-cards__column .logo-company {
    width: 180px;
    min-height: 90px;
  }

  .brand-cards__decor {
    bottom: -5px;
    max-width: 90%;
    width: 100%;
  }

  .automation__top {
    min-height: 83px;
  }

  .automation__top h4 {
    font-size: 16px;
  }

  .automation__content {
    font-size: 13px;
  }

  .automation ul li {
    font-size: 15px;
  }

  .check-list__grid {
    --font: 15px;
  }

  .work__bottom {
    font-size: 15px;
  }

  .work .faq ol {
    grid-template-columns: repeat(3, 1fr);
    --font: 16px;
  }

  .analysis__grid {
    padding-top: 30px;
  }

  .analysis__row {
    gap: 10px;
  }

  .analysis__box {
    max-width: 55%;
  }

  .analysis__content {
    padding: 15px 15px 40px;
  }

  .analysis__content h4 {
    max-width: 50%;
  }

  .analysis__content ul li {
    font-size: 15px;
  }

  .analysis__bg {
    max-width: calc(45% - 10px);
  }

  .solution__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .solution__content {
    max-width: 100%;
    gap: 20px;
  }

  .solution__content h2 {
    max-width: 100%;
  }

  .solution__box {
    gap: 10px;
  }

  .solution .scroll-image {
    max-width: unset;
    margin-top: 0;
    margin-left: -15px;
  }

  .solution .scroll-image__wrapper img {
    max-width: 900px;
  }

  .import__top {
    font-size: 17px;
  }

  .import__logo {
    width: 250px;
  }

  .import__advants {
    grid-template-columns: repeat(2, 1fr);
  }

  .import__item {
    gap: 7px;
    font-size: 14px;
  }

  .import__grid {
    gap: 15px;
  }

  .import__shell {
    gap: 10px;
    font-size: 14px;
  }

  .import__box {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .clients__slider {
    margin-bottom: 30px;
  }

  .letters {
    padding-bottom: 20px;
  }

  .letters__title {
    display: none;
  }

  .letters__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .letters__wrapper {
    overflow: hidden;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 0;
    max-height: 58px;
    -webkit-transition: var(--transition-small);
    -o-transition: var(--transition-small);
    transition: var(--transition-small);
  }

  .letters__wrapper.--visible {
    max-height: var(--offset);
  }

  .letters__wrapper.--visible .letters__menu {
    opacity: 1;
  }

  .letters__wrapper.--visible .letters__button svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .letters__button svg {
    width: 22px;
    height: auto;
  }

  .letters__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 17px 30px;
    font-weight: 500;
    font-size: 18px;
    -webkit-transition: var(--transition-small);
    -o-transition: var(--transition-small);
    transition: var(--transition-small);
  }

  .letters__menu {
    max-height: 235px;
    padding-bottom: 15px;
    opacity: 0;
    -webkit-transition: var(--transition-small);
    -o-transition: var(--transition-small);
    transition: var(--transition-small);
  }

  .letters__name {
    padding: 10px 30px;
  }

  .letters__name:first-child {
    padding-top: 0;
  }

  .letters__slider {
    max-width: 100%;
    display: block;
    padding: 20px 30px;
  }
}

@media (max-width: 860px) {
  .table-approach {
    margin: 0 -15px;
    padding: 0 15px;
  }
}

@media (max-width: 800px) {
  .work__wrapper .work__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .work__map {
    width: 1000px;
  }
}

@media (max-width: 750px) {
  body {
    --header-size: 75px;
  }

  h1 {
    font-size: 30px;
  }

  h2,
  .second {
    font-size: 25px;
  }

  h3,
  .third {
    font-size: 19px;
  }

  h5,
  .fifth {
    font-size: 15px;
  }

  .-small {
    padding: 30px 0;
  }

  .-small-top {
    padding-top: 30px;
  }

  .-small-bottom {
    padding-bottom: 30px;
  }

  .header.--fixed {
    padding: 15px 0;
  }

  .header__logo {
    max-width: 150px;
  }

  .header__menu ul a {
    font-size: 14px;
  }

  .header__drop ul li a {
    font-size: 13px;
  }

  .header__drop > a::after {
    width: 15px;
    height: 7px;
  }

  .header__trigger {
    width: 24px;
  }

  .header__btn.btn {
    padding: 3px;
  }

  .header__btn svg {
    width: 22px;
  }

  .header__btn {
    width: 55px;
    height: 55px;
  }

  .burger {
    top: -3px;
    width: 26px;
    height: 26px;
  }

  .burger :nth-child(1) {
    top: calc(50% - 9px);
  }

  .burger :nth-child(3) {
    top: calc(50% + 7px);
  }

  .burger.--open :nth-child(1) {
    -webkit-transform: translate(-50%, 8px) rotate(45deg);
        -ms-transform: translate(-50%, 8px) rotate(45deg);
            transform: translate(-50%, 8px) rotate(45deg);
  }

  .burger.--open :nth-child(3) {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
        -ms-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
  }

  .title {
    margin-bottom: 25px;
  }

  .title__subtext {
    font-size: 14px;
  }

  .product__icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
  }

  .means-card {
    gap: 20px;
  }

  .means-card__arrow {
    width: 49px;
    height: 49px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .means-card__name {
    font-size: 14px;
  }

  .table-approach__th {
    padding: 10px 15px;
    font-size: 17px;
  }

  .table-approach__th:nth-child(1) {
    padding: 24px;
  }

  .table-approach__td {
    padding: 20px 24px 30px;
  }

  .table-approach__td:nth-child(1) {
    padding: 18px 24px;
  }

  .table-advant {
    --gap: 10px;
    --last-size: 35%;
    padding: 10px 15px;
    padding-bottom: 0;
  }

  .table-advant__item {
    font-size: 15px;
  }

  .table-advant__item:last-child {
    border-bottom: none;
  }

  .table-advant__item p:last-child {
    text-align: right;
    padding: 0;
  }

  .brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .brand .logo-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 200px;
    min-height: 80px;
  }

  .site-info__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }

  .site-info__title {
    max-width: 70%;
  }

  .site-info__btn {
    min-width: 240px;
  }

  .site-info__decor {
    width: 250px;
    -webkit-transform: translate(16%, 4%);
        -ms-transform: translate(16%, 4%);
            transform: translate(16%, 4%);
  }

  .top-title__container::before {
    display: none;
  }

  .top-title__container::after {
    left: 0;
  }

  .top-title__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
  }

  .top-title__name {
    padding: 15px 0;
  }

  .top-title__name::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--yellow);
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 0% 0%);
  }

  .scroll-image__mask {
    width: 250px;
  }

  .scroll-image__btn {
    width: 50px;
    height: 50px;
  }

  .scroll-image__btn svg {
    max-width: 70%;
  }

  .scroll-image__wrapper {
    max-height: 490px;
  }

  .types__top {
    font-size: 15px;
  }

  .types__top h4 {
    font-size: 18px;
  }

  .types__item strong {
    font-size: 16px;
  }

  .types__btn {
    min-width: 200px;
  }

  .types__info {
    padding: 30px 15px;
  }

  .types__text {
    font-size: 18px;
  }

  .types__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }

  .geography__wrapper {
    padding: 50px 0;
  }

  .geography__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .geography__title {
    max-width: 100%;
  }

  .geography__text {
    max-width: 100%;
    gap: 10px;
    font-weight: 14px;
  }

  .slider-arrows__btn {
    width: 45px;
    height: 45px;
  }

  .map {
    height: 360px;
  }

  .faq h3 {
    font-size: 20px;
  }

  .faq h4 {
    font-size: 18px;
  }

  .faq ol li::before {
    width: 30px;
    height: 30px;
    margin-top: -2px;
    font-size: 12px;
  }

  .row-block {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
    margin: 10px 0;
  }

  .row-block.-mini {
    margin-left: 0;
  }

  .row-block__image {
    max-width: 100%;
  }

  .row-block__text {
    gap: 10px;
    max-width: 100%;
  }

  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }

  .grid.-grid-3 {
    gap: 15px;
  }

  .footer__wrapper {
    padding-top: 170px;
    padding-bottom: 0;
  }

  .footer__map.map {
    height: 400px;
  }

  .footer__box {
    gap: 17px;
    padding: 25px;
  }

  .footer__logo {
    max-width: 180px;
    margin-bottom: 10px;
  }

  .footer__row {
    -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: 15px;
  }

  .footer__column {
    gap: 13px;
    font-size: 15px;
  }

  .footer__social i {
    display: none;
  }

  .footer__social {
    gap: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 12px;
  }

  .footer__social a {
    gap: 6px;
  }

  .footer__social a img {
    width: 17px;
    height: 17px;
  }

  .footer__item {
    font-size: 14px;
  }

  .footer__item a {
    font-size: 14px;
  }

  .footer__bottom {
    padding-top: 50px;
  }

  .modal-complete__wrapper {
    max-width: 520px;
  }

  .modal-complete__decor {
    opacity: 0.7;
    width: 220px;
  }

  .home {
    --backdrop: 262px;
    padding-top: 80px;
  }

  .home__name {
    font-size: 15px;
  }

  .home__box {
    gap: 30px;
  }

  .home__item strong {
    font-size: 25px;
  }

  .home__shell::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .home__text {
    font-size: 40px;
  }

  .home__text span {
    font-size: 80px;
  }

  .main-product .product::before {
    left: 100%;
  }

  .main-product .product:nth-child(2n+1) {
    border-top: none;
  }

  .main-product .product:nth-child(2n+1)::before {
    display: block;
  }

  .main-product__line span {
    left: calc(var(--i) * 50%);
  }

  .main-product__line span:nth-child(2) {
    display: none;
  }

  .main-product__title.title {
    width: 100%;
    padding-bottom: 20px;
  }

  .main-product__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .systems__row {
    gap: 25px;
  }

  .systems h2 {
    max-width: 100%;
  }

  .systems .faq ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .systems .faq ol li {
    gap: 20px;
  }

  .systems .faq ol li::before {
    margin-top: -2px;
    width: 39px;
    height: 39px;
  }

  .systems__decor {
    top: auto;
    bottom: 10px;
    width: 270px;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  .equipment__top {
    margin-bottom: 25px;
  }

  .equipment .faq ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .equipment__decor {
    bottom: -7px;
    max-width: calc(100% - 40px);
  }

  .means__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 35px;
  }

  .advantages__wrapper {
    padding-bottom: 30px;
  }

  .advantages__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-bottom: 35px;
  }

  .advantages__label {
    padding: 20px;
    padding-bottom: 40px;
    clip-path: none;
  }

  .advantages__label:nth-child(2) {
    clip-path: none;
    padding: 20px;
    padding-top: 40px;
  }

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

  .advantages__title {
    margin-bottom: 25px;
  }

  .advantages__column {
    padding: 16px;
    font-size: 14px;
  }

  .advantages__icon {
    width: 40px;
    height: 40px;
  }

  .advantages__decor {
    width: 400px;
    -webkit-transform: translate(-40%, -2%);
        -ms-transform: translate(-40%, -2%);
            transform: translate(-40%, -2%);
  }

  .company__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company__grid h2 {
    padding-bottom: 10px;
  }

  .main-brands {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .brand-cards__thead,
  .brand-cards__row {
    font-size: 14px;
  }

  .brand-cards .site-info {
    margin: 20px 0;
  }

  .automation__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .automation__top {
    min-height: unset;
  }

  .automation__top h4 {
    font-size: 15px;
  }

  .automation__content {
    font-size: 12px;
  }

  .automation ul li {
    font-size: 14px;
  }

  .check-list__grid {
    --offset: 15px;
    --font: 14px;
    --size: 42px;
    --icon: 33px;
    --gal: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }

  .check-list__item:nth-child(1) .check-list__icon {
    display: none;
  }

  .check-list__content ul {
    gap: 10px;
  }

  .check-list__content ul li ul {
    padding-top: 10px;
  }

  .check-list__content ul li ul li {
    font-size: var(--font);
  }

  .check-list__content ul li ul p::before {
    width: 16px;
    height: 16px;
  }

  .check-list__icon {
    display: none;
  }

  .work__box {
    padding: 15px 10px;
    padding-bottom: 0;
  }

  .work .faq ol {
    grid-template-columns: repeat(2, 1fr);
    --font: 15px;
  }

  .analysis__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding-top: 25px;
  }

  .analysis__column {
    gap: 15px;
  }

  .analysis__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 15px;
  }

  .analysis__box {
    max-width: 100%;
  }

  .analysis__bg {
    max-width: 100%;
  }

  .solution .scroll-image__wrapper img {
    max-width: 700px;
  }

  .import__top {
    margin-bottom: 17px;
    font-size: 15px;
  }

  .import__logo {
    width: 200px;
  }

  .import__item {
    padding: 20px 15px 30px;
  }

  .import__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .clients__slider {
    margin-bottom: 25px;
  }

  .clients__slider .swiper-slide {
    max-width: 130px;
  }

  .clients__slider .swiper-slide .logo-company {
    padding: 0;
    border: none;
    min-height: 100px;
  }

  .letters__button {
    padding: 17px 20px;
    font-size: 17px;
  }

  .letters__name {
    padding: 10px 20px;
  }

  .letters__slider {
    padding: 20px;
  }
}

@media (max-width: 550px) {
  h1 {
    font-size: 22px;
  }

  h2,
  .second {
    font-size: 19px;
  }

  h3,
  .third {
    font-size: 17px;
  }

  h4,
  .fourth {
    font-size: 16px;
  }

  h5,
  .fifth {
    font-size: 14px;
  }

  .checkbox__label {
    font-size: 12px;
  }

  .block-decor img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .block-decor {
    padding-bottom: 6%;
    bottom: 0;
  }

  .-offset {
    padding: 30px 0;
  }

  .-offset-top {
    padding-top: 30px;
  }

  .-offset-bottom {
    padding-bottom: 30px;
  }

  .header__logo {
    max-width: 140px;
  }

  .header__drop ul {
    width: 100%;
  }

  .title {
    margin-bottom: 20px;
    gap: 10px;
  }

  .title br {
    display: none;
  }

  .title__subtext {
    font-size: 13px;
  }

  .product {
    gap: 2px;
    padding: 10px;
  }

  .product__name {
    font-size: 12px;
  }

  .product__image {
    width: 90%;
  }

  .means-card {
    gap: 15px;
  }

  .means-card__name {
    font-size: 13px;
  }

  .means-card__name br {
    display: none;
  }

  .table-advant__item {
    font-size: 14px;
  }

  .logo-company {
    min-height: 80px;
  }

  .logo-company img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 80%;
  }

  .brand {
    gap: 10px;
  }

  .brand .logo-company {
    width: 120px;
    min-height: 50px;
  }

  .site-info__wrapper {
    padding: 15px;
    padding-top: 23px;
  }

  .site-info__row {
    gap: 12px;
  }

  .site-info__title {
    max-width: 62%;
  }

  .site-info__decor {
    width: 290px;
    -webkit-transform: translate(35%, -8%);
        -ms-transform: translate(35%, -8%);
            transform: translate(35%, -8%);
  }

  .form:has(.-row-reverse) .form__decor {
    -webkit-transform: translate(10%, -67%);
        -ms-transform: translate(10%, -67%);
            transform: translate(10%, -67%);
  }

  .form__content {
    padding: 30px 20px;
  }

  .form__grid {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 58px;
  }

  .form .input__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .form .input textarea {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .form__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .form__decor {
    width: 250px;
    -webkit-transform: translate(10%, -67%);
        -ms-transform: translate(10%, -67%);
            transform: translate(10%, -67%);
  }

  .top-title__box {
    padding-bottom: 15px;
  }

  .top-title__name {
    padding: 10px 0;
  }

  .top-title__descr {
    font-size: 12px;
    line-height: 120%;
  }

  .scroll-image__mask {
    width: 135px;
  }

  .types {
    gap: 0;
  }

  .types__box {
    gap: 14px;
  }

  .types__top {
    gap: 17px;
    font-size: 13px;
  }

  .types__top h4 {
    font-size: 16px;
  }

  .types__row {
    gap: 12px;
  }

  .types__item {
    gap: 3px;
    font-size: 13px;
  }

  .types__btn {
    min-width: auto;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .types__column {
    --mobile: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: var(--mobile);
  }

  .types__image {
    width: var(--mobile);
  }

  .types__text {
    font-size: 16px;
  }

  .types__list {
    gap: 5px;
  }

  .types__shell {
    font-size: 16px;
  }

  .types__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
    padding-bottom: 20%;
  }

  .geography__wrapper {
    padding: 40px 0;
  }

  .geography__text {
    font-size: 13px;
  }

  .geography__image {
    width: 500px;
    -webkit-transform: translate(-6%, 14%);
        -ms-transform: translate(-6%, 14%);
            transform: translate(-6%, 14%);
  }

  .faq {
    font-size: 13px;
  }

  .faq h1 br,
  .faq h2 br,
  .faq h3 br,
  .faq h4 br,
  .faq h5 br,
  .faq h6 br {
    display: none;
  }

  .faq h2 {
    padding-top: 10px;
    margin-bottom: 15px;
  }

  .faq h3 {
    padding-top: 5px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .faq h4 {
    padding-top: 5px;
    margin-bottom: 10px;
    font-size: 17px;
  }

  .faq ul,
  .faq ol,
  .faq p {
    margin-bottom: 15px;
  }

  .faq ol {
    font-size: 13px;
  }

  .faq ul {
    font-size: 13px;
  }

  .faq ul li {
    gap: 12px;
  }

  .faq ul li::before {
    width: 22px;
    height: 22px;
    background-size: 9px auto;
  }

  .faq.-circle ol {
    gap: 8px;
  }

  .faq.-circle ol li::before {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  .row-block {
    font-size: 13px;
  }

  .modal-overlay {
    overflow: hidden;
  }

  .modal-complete__wrapper {
    max-width: calc(100% - 30px);
    padding: 30px 15px;
  }

  .modal-complete__decor {
    width: 180px;
  }

  .home {
    --backdrop: 250px;
  }

  .home__info {
    gap: 24px;
    padding: 25px 15px;
  }

  .home__column {
    gap: 8px;
  }

  .home__name {
    font-size: 14px;
  }

  .home__box {
    gap: 8px;
  }

  .home__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .home__item br {
    display: none;
  }

  .home__item span {
    width: auto;
  }

  .home__item strong {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
  }

  .home__shell::before {
    bottom: 10px;
    width: 270px;
    height: 235px;
  }

  .home__shell {
    gap: 20px;
    padding-top: 40px;
  }

  .home__text {
    font-size: 47px;
  }

  .home__text span {
    font-size: 71px;
  }

  .home__btn {
    max-width: 100%;
    padding: 20px;
    font-size: 14px;
  }

  .main-product .product:nth-child(4n+1) {
    border-top: 1px solid #d3d3d3;
  }

  .main-product .product:nth-child(4n+1)::before {
    display: none;
  }

  .main-product .product:nth-child(3n+1) {
    border-top: 1px solid #d3d3d3;
  }

  .main-product .product:nth-child(3n+1)::before {
    display: none;
  }

  .main-product .product:nth-child(2n+1) {
    border-top: 1px solid #d3d3d3;
  }

  .main-product .product:nth-child(2n+1)::before {
    display: none;
  }

  .main-product__line {
    display: none;
  }

  .systems__wrapper {
    padding: 30px 0;
  }

  .systems .faq ol {
    font-size: 13px;
  }

  .systems__decor {
    width: 200px;
  }

  .equipment__box {
    padding: 30px 15px 50px;
  }

  .means__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .approach__title {
    font-size: 13px;
  }

  .advantages__top {
    gap: 2px;
  }

  .advantages__title {
    margin-bottom: 15px;
  }

  .advantages__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .advantages__column {
    font-size: 13px;
  }

  .advantages__icon {
    width: 35px;
    height: 35px;
  }

  .advantages__decor {
    width: 330px;
    -webkit-transform: translate(-40%, -70%);
        -ms-transform: translate(-40%, -70%);
            transform: translate(-40%, -70%);
  }

  .company__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company__grid h2 {
    grid-column: 2 span;
  }

  .brand-cards__item.-clean .brand-cards__info:first-child {
    padding-top: 5px;
  }

  .brand-cards__item.-clean .logo-company {
    left: 10px;
    top: 10px;
  }

  .brand-cards__column {
    gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .brand-cards__column .logo-company {
    top: 25px;
    left: 25px;
    width: 120px;
    min-height: 50px;
  }

  .brand-cards__content {
    gap: 5px;
  }

  .brand-cards__info {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-cards__info:first-child {
    padding-top: 0;
  }

  .brand-cards__thead,
  .brand-cards__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 13px;
  }

  .brand-cards__thead :nth-child(1),
  .brand-cards__row :nth-child(1) {
    width: auto;
    color: rgba(0, 0, 0, 0.5);
  }

  .brand-cards__thead :nth-child(2),
  .brand-cards__row :nth-child(2) {
    position: absolute;
    bottom: 7px;
    right: 0;
    width: auto;
  }

  .brand-cards__thead :nth-child(3),
  .brand-cards__row :nth-child(3) {
    width: auto;
  }

  .brand-cards__thead {
    display: none;
  }

  .brand-cards__row {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
    padding: 7px 0;
    padding-right: 35px;
    border-bottom: none;
  }

  .brand-cards__row:first-child {
    padding-top: 7px;
  }

  .automation__top h4 {
    font-size: 14px;
  }

  .automation ul {
    gap: 10px;
    margin-bottom: 10px;
  }

  .automation ul li {
    font-size: 13px;
  }

  .check-list__grid {
    gap: 25px;
    --font: 13px;
    --icon: 30px;
  }

  .check-list__item {
    gap: 15px;
  }

  .check-list__content ul li ul p::before {
    display: none;
  }

  .work__labels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .work__labels h5 {
    font-size: 14px;
  }

  .work__wrapper {
    padding-top: 250px;
  }

  .work__wrapper .work__label {
    min-width: 83px;
    font-size: 11px;
  }

  .work__wrapper .work__label:last-child {
    min-width: 95px;
  }

  .work__map {
    top: 10px;
    left: -15px;
    width: 700px;
  }

  .work__item {
    --distance: 15px;
  }

  .work__item h5 {
    margin-bottom: 15px;
  }

  .work__row {
    gap: 10px;
  }

  .work__row.-line::after {
    height: 14px;
  }

  .work__row.-line-width::before {
    width: 220px;
    height: 10px;
  }

  .work__row.-arrow::after {
    width: 10px;
    height: 10px;
  }

  .work__row.-dotted-width::before {
    width: 220px;
    height: 10px;
  }

  .work__row.-arrow-width::before {
    width: 180px;
    height: 16px;
  }

  .work__shell .work__holder {
    font-size: 11px;
  }

  .work__label {
    padding: 8px 10px;
    font-size: 10px;
  }

  .work__label.-arrow::after {
    width: 6px;
    height: 10px;
  }

  .work__label.-arrow-left::before {
    width: 128px;
    height: 10px;
  }

  .work__label.-arrow-right::before {
    width: 130px;
    height: 10px;
  }

  .work__label.-mini {
    min-width: unset;
    padding: 2px;
    font-size: 10px;
  }

  .work__bottom {
    padding: 10px;
    font-size: 12px;
    text-align: center;
  }

  .work__client {
    font-size: 10px;
  }

  .work__client span::before {
    width: 12px;
    height: 12px;
  }

  .work .faq ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    --font: 14px;
  }

  .work .faq ol li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 10px;
    line-height: 120%;
  }

  .work .faq ol li::before {
    width: 35px;
    height: 35px;
  }

  .analysis__grid {
    padding-top: 16px;
  }

  .analysis__content {
    padding: 10px;
    padding-bottom: 20px;
  }

  .analysis__content h4 {
    max-width: 90%;
    -webkit-transform: translateY(-23px);
        -ms-transform: translateY(-23px);
            transform: translateY(-23px);
  }

  .analysis__content ul li {
    padding: 10px 15px;
    font-size: 14px;
  }

  .import__top {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .import__advants {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }

  .import__item {
    padding: 15px;
    padding-bottom: 25px;
    font-size: 13px;
  }

  .import__item .faq {
    padding-top: 10px;
  }

  .import__item .faq ul {
    font-size: 13px;
  }

  .import__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .import__shell {
    gap: 24px;
    font-size: 16px;
  }

  .import__box span {
    font-size: 6px;
  }

  .clients .title {
    margin-bottom: 25px;
  }

  .clients__slider .swiper-slide {
    max-width: 150px;
  }

  .clients__slider .swiper-slide .logo-company {
    min-height: 50px;
  }

  .letters__wrapper {
    max-height: 61px;
  }

  .letters__button svg {
    width: 20px;
  }

  .letters__button {
    padding: 20px 15px;
    font-size: 16px;
  }

  .letters__menu {
    max-height: 165px;
  }

  .letters__menu::-webkit-scrollbar {
    width: 4px;
  }

  .letters__name {
    padding: 7px 15px;
    font-size: 14px;
  }

  .letters__slider {
    padding: 0;
    background-color: transparent;
  }

  .letters__slider .swiper {
    background-color: var(--white);
    margin-bottom: 15px;
  }

  .letters__slider .slider-arrows {
    position: static;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 350px) {
  .product__name {
    font-size: 14px;
  }

  .product__icon {
    width: 35px;
    height: 35px;
  }

  .product__image {
    width: 100%;
  }

  .top-title__name::before {
    right: -10px;
  }

  .main-product__grid {
    display: block;
  }
}

@media (any-hover: hover) {
  a:hover,
  button:hover {
    color: var(--yellow);
  }

  .btn.-yellow:hover svg path {
    stroke: var(--white);
  }

  .btn::after {
    will-change: transform;
  }

  .btn:hover {
    color: var(--white);
  }

  .btn:hover::after {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .input input:hover,
  .input textarea:hover {
    color: var(--base-color);
    border-color: var(--base-color);
  }

  .checkbox__input:hover + .checkbox__label::before {
    background-color: var(--base-color);
  }

  .checkbox a:hover {
    color: var(--yellow-light);
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }

  .header__drop ul {
    will-change: transform;
  }

  .header__drop:hover ul {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  .header__btn.btn:hover {
    color: var(--base-color);
  }

  .header__phone:hover {
    color: var(--white);
  }

  .burger:hover span {
    background-color: var(--hover-color);
  }

  .product:hover::after {
/*    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);*/
  }

  .product:hover .product__icon.-hover {
/*    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(2);
            transform: translate3d(-50%, -50%, 0) scale(2);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;*/
  }

  .means-card:hover .means-card__image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .means-card:hover .means-card__arrow {
    -webkit-transform: translateY(50%) rotate(-90deg);
        -ms-transform: translateY(50%) rotate(-90deg);
            transform: translateY(50%) rotate(-90deg);
  }

  .means-card:hover .means-card__name {
    color: var(--yellow);
  }

  .logo-company:hover {
    border-color: var(--yellow);
  }

  .logo-company:hover img {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  .site-info__btn:hover {
    color: var(--base-color);
  }

  .form__btn:hover {
    color: var(--base-color);
  }

  .scroll-image__btn:hover svg path {
    fill: var(--white);
  }

  .slider-arrows__btn:hover svg path {
    fill: var(--white);
  }

  .footer__social a:hover img {
    opacity: 0.7;
  }

  .footer__item a:hover {
    border-color: transparent;
  }

  .footer__nav a:hover {
    border-color: transparent;
  }

  .modal__exit:hover svg path {
    stroke: var(--yellow);
  }

  .modal-complete .modal__exit:hover svg path {
    stroke: var(--base-color);
  }

  .home__btn:hover {
    color: var(--base-color);
  }

  .letters__slider .swiper-slide > a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.types__btn.btn.-yellow {
  display: none;
}
