@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Light.woff2) format("woff2"), url(../fonts/Montserrat-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2"), url(../fonts/Montserrat-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Regular.woff2) format("woff2"), url(../fonts/Montserrat-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-SemiBold.woff2) format("woff2"), url(../fonts/Montserrat-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Medium.woff2) format("woff2"), url(../fonts/Raleway-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-MediumItalic.woff2) format("woff2"), url(../fonts/Raleway-MediumItalic.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Bold.woff2) format("woff2"), url(../fonts/Raleway-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-SemiBold.woff2) format("woff2"), url(../fonts/Raleway-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Italic.woff2) format("woff2"), url(../fonts/Raleway-Italic.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Regular.woff2) format("woff2"), url(../fonts/Raleway-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: none;
}

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

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

a:hover {
  text-decoration: none;
}

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

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

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

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: 0 0;
  cursor: pointer;
}

button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  width: 100%;
  font-family: Raleway;
  font-weight: 600;
  font-style: normal;
}

:root {
  --maxWidth: 1360px;
  --greenYel: #D7F59B;
  --greenLight: #90C328;
  --greenDark: #76AE04;
  --white: #FFFFFF;
  --black: #303030;
  --silver: #D9D9D9 ;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -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;
  overflow: hidden;
}

.img-ab {
  width: 100%;
  height: 99.9%;
  margin: auto;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}

.img-con {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.__list-item {
  padding-left: 18px;
  position: relative;
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  cursor: pointer;
}

.__list-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6.78px;
  height: 6.78px;
  background-color: var(--greenLight);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.__btn {
  border-radius: 6px;
  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;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.015em;
  background-color: var(--greenLight);
  color: var(--white);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.__btn.__disabled {
  pointer-events: none;
  background-color: #d9d9d9;
}

.__btn:active {
  background-color: var(--greenDark);
}

.header {
  width: 100%;
  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;
}

.header__container {
  background: #ffffff;
  max-width: var(--maxWidth);
  padding: 46px 60px 42px 130px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background-color: var(--greenLight);
}

.header__container__left__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 156.71px;
  height: 100%;
}

.header__container__left__img .img-con {
  width: auto;
  height: 100%;
}

.header__container__logo {
  width: 209px;
}

.header__container__items {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--silver);
  position: relative;
}

.header__container__item__nav {
  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;
  z-index: 101;
}

.header__container__item__list {
  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;
}

.header__container__item__list__item {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.015em;
  color: var(--black);
  cursor: pointer;
}

.header__container__item__list__item.__active .header__container__item__list__item__link,
.header__container__item__list__item.__active .header__container__item__list__item__link a {
  color: var(--greenLight);
}

.header__container__item__list__item.__active .header__container__item__list__item__link::before {
  opacity: 1;
  visibility: visible;
}

.header__container__item__list__item.__active .header__container__item__list__item__elements.__show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header__container__item__list__item {
  margin-right: 15px;
  position: relative;
}

.header__container__item__list__item:last-child {
  margin-right: 0;
}

.header__container__item__list__item__link,
.header__container__item__list__item__link a {
  position: relative;
  color: var(--black);
  z-index: 3;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__container__item__list__item__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  height: 2px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--greenLight);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__container__item__list__item__elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 289px;
  padding-top: 32px;
  height: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  cursor: pointer;
  z-index: 2;
}

.header__container__item__list__item__element {
  width: 100%;
}

.header__container__item__list__item__element__link {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.025em;
  width: 100%;
  padding: 20px;
  text-align: left;
  color: var(--white);
  background-color: var(--greenLight);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__container__item__find {
  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;
}

.header__container__item__find__input {
  margin: 0 15px;
  width: 150px;
  height: 25px;
  padding: 0 5px;
  position: relative;
}

.header__container__item__find__button {
  width: 19px;
  cursor: pointer;
}

.header__container__item__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

.header__container__item__language__line {
  margin: 0 7px;
  height: 15px;
  width: 2px;
  background-color: var(--silver);
}

.header__container__item__language__En,
.header__container__item__language__Ru {
  width: 25px;
  height: 15px;
  cursor: pointer;
}

.header__container__item__burger {
  display: none;
  width: 28px;
  height: 26px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
}

.header__container__item__burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--greenLight);
  -webkit-transition: all 0.4s ease 0.4s;
  -o-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}

.header__container__item__burger__line.__top {
  top: 0;
}

.header__container__item__burger__line.__center {
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__container__item__burger__line.__bottom {
  bottom: 0;
}

.header__container__item__burger.__active .header__container__item__burger__line.__bottom {
  -webkit-transform: translate(-30px, 0);
  -ms-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__container__item__burger.__active .header__container__item__burger__line.__center {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease 0.4s;
  -o-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}

.header__container__item__burger.__active .header__container__item__burger__line.__center:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__container__item__burger.__active .header__container__item__burger__line.__top {
  -webkit-transform: translate(30px, 0);
  -ms-transform: translate(30px, 0);
  transform: translate(30px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.__textDesctop {
  display: inline-block;
}

.__textMobile {
  display: none;
}

.footer {
  width: 100%;
  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;
  background-color: var(--black);
  color: var(--white);
}

.footer__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 50px 30px 60px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__container__logotypeColumn {
  max-width: 336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__container__logotypeColumn__img {
  width: 220px;
}

.footer__container__logotypeColumn__def {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.02em;
  margin-left: 23px;
  width: 76px;
  text-align: left;
}

.footer__container__logotypeColumn__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.03em;
  margin-top: 52px;
  font-variant-numeric: lining-nums;
}

.footer__container__iconsColumn {
  width: 212px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 70px 0 53px;
}

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

.footer__container__iconsColumn__item {
  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: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--greenLight);
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.footer__container__iconsColumn__item.__vk .img-con {
  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: 30px;
  margin-right: 2px;
}

.footer__container__iconsColumn__item.__class .img-con {
  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: 15.3px;
}

.footer__container__iconsColumn__item.__tg .img-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.5px;
  margin-right: 3.5px;
  width: 23px;
}

.footer__container__iconsColumn__info {
  margin-top: 60px;
  font-family: Raleway;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.025em;
}

.footer__container__iconsColumn__info__text {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.footer__container__iconsColumn__info__text a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.footer__container__iconsColumn__info__text:first-child a {
  font-family: Montserrat;
  letter-spacing: 0.025em;
}

.footer__container__list {
  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;
}

.footer__container__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 30px;
}

.footer__container__list__item:last-child {
  margin: 0;
}

.footer__container__list__item__title {
  font-family: Raleway;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--greenLight);
  text-align: left;
  letter-spacing: 0.025em;
  margin-bottom: 21px;
}

.footer__container__list__item__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__container__list__item__item {
  width: 100%;
  margin-bottom: 12px;
  color: var(--white);
}

.footer__container__list__item__item.__list-item::before {
  top: 5px;
}

.footer__container__list__item__item:last-child {
  margin-bottom: 0;
}

.footer__container__list__item__item__link {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 118.4%;
  letter-spacing: -0.005em;
  color: inherit;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.mainSlider {
  width: 100%;
  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;
}

.mainSlider__slider {
  z-index: 0;
  max-width: var(--maxWidth);
  width: 100%;
  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;
}

.mainSlider__slider__content {
  width: 100%;
}

.mainSwiper {
  width: 100%;
}

.mainSwiper__slide {
  width: 100%;
  padding-bottom: 643px;
  position: relative;
}

.mainSwiper__slide__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

.mainSwiper__slide__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #303030;
  opacity: 0.8;
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(0 0, 156px 0, 926px 100%, 0 100%);
  clip-path: polygon(0 0, 156px 0, 926px 100%, 0 100%);
}

.mainSwiper__slide__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  padding: 82px 0;
  width: 455px;
  height: 100%;
  top: 0;
  left: 75px;
  z-index: 4;
  color: var(--white);
}

.mainSwiper__slide__content__arrow {
  width: 59px;
  margin-bottom: 52px;
}

.mainSwiper__slide__content__arrow__img {
  width: 100%;
  cursor: pointer;
}

.mainSwiper__slide__content__status {
  display: inline-block;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  min-height: 35px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--greenLight);
  padding-right: 115px;
}

.mainSwiper__slide__content__title {
  width: 100%;
  padding-right: 55px;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-align: left;
}

.mainSwiper__slide__content__list {
  width: 100%;
  padding-top: 15px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mainSwiper__slide__content__list__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.025em;
  margin-bottom: 8px;
  pointer-events: none;
}

.mainSwiper__slide__content__list__item:last-child {
  margin-bottom: 0;
}

.mainSwiper__slide__content__list__item.__list-item::before {
  top: 6px;
}

.cards {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.cards__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 73px;
}

.cards__container__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--silver);
  border-radius: 7px;
  padding: 50px 85px 50px 100px;
  margin-top: 20px;
}

.cards__container__item__img {
  width: 409px;
  padding-bottom: 228px;
  position: relative;
  overflow: hidden;
}

.cards__container__item__info {
  width: calc(100% - 409px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 100px;
  color: var(--black);
}

.cards__container__item__info__title {
  width: 100%;
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: 0.025em;
  text-align: left;
  padding-bottom: 20px;
  pointer-events: none;
  color: inherit;
}

.cards__container__item__info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  text-align: left;
  padding-bottom: 20px;
}

.cards__container__item__info__btn {
  width: 184px;
  height: 49px;
  margin-top: auto;
}

.cards__container__item__list {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 0 5px;
}

.cards__container__item__element {
  width: 200px;
  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;
  margin-top: 25px;
  cursor: pointer;
}

.cards__container__item__element__img {
  width: 82px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.cards__container__item__element__text {
  width: calc(100% - 97px);
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 0.025em;
  color: var(--greenLight);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.values {
  width: 100%;
  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;
  background-color: #4a4a4a;
  margin-top: 60px;
}

.values__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 60px 120px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.values.__white .values__container {
  padding: 60px 120px 0 75px;
}

.values__container__img {
  width: 49.5%;
}

.values__container__info {
  width: 51.5%;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 60px;
}

.values__container__info__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 33px;
  letter-spacing: 0.025em;
  color: var(--greenYel);
  margin-bottom: 40px;
}

.values__container__info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.values__container__info__item {
  position: relative;
  margin-bottom: 10px;
}

.values__container__info__item:last-child {
  margin-bottom: 0;
}

.values__container__info__item__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.015em;
  color: var(--white);
  background-color: var(--greenLight);
  padding: 15px 15px 15px 55px;
  width: 285px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.values__container__info__item__text:focus {
  background-color: var(--greenDark);
}

.values__container__info__item__text:focus + .values__container__info__item__message {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.values__container__info__item__message {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 110%;
  width: 220px;
  height: 110px;
  background-color: var(--greenYel);
  padding: 22px 22px 10px 40px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  z-index: 3;
}

.values__container__info__item__message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 53px;
  background-color: var(--greenDark);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  z-index: 4;
}

.values__container__info__item__message__text {
  display: inline-block;
  width: 100%;
  letter-spacing: -0.005em;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
}

.values-text__count {
  display: none;
}

.values.__white {
  margin-top: 0;
  background-color: var(--white);
}

.values.__white .values__container__info__title {
  color: var(--black);
}

.values.__white .values__container__info {
  padding-left: 0;
  padding-right: 20px;
  margin-bottom: 73px;
}

.values.__white .img-con {
  display: none;
}

.values.__white picture .img-con {
  display: block;
}

.values.__whiteOnly {
  margin-top: 0;
  padding-top: 15px;
  background-color: #f5f5f5;
}

.values.__whiteOnly .values__container__info__item__message__text {
  color: var(--black);
}

.individ {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 90px 0;
}

.individ__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 150px;
  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;
}

.individ__container__our {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.individ__container__client__title,
.individ__container__our__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--greenLight);
  margin-bottom: 25px;
}

.individ__container__our__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.individ__container__our__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  margin-bottom: 8px;
}

.individ__container__our__text p:last-child {
  margin-bottom: 0;
}

.individ__container__our__text__cursiv p {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  margin-top: 15px;
}

.individ__container__client {
  width: 50%;
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.individ__container__client__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.individ__container__client__list__item {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  pointer-events: none;
}

.individ__container__client__list__item:last-child {
  margin-bottom: 0;
}

.individ__container__client__list__item.__list-item::before {
  top: 6px;
}

.individ__container__client__btn {
  margin-top: 40px;
  width: 100%;
  max-width: 249px;
  height: 53px;
}

.individ__container__our__text.__mobile,
.individ__container__our__text__cursiv.__mobile {
  display: none;
}

.individ__container__our__text p span {
  font-weight: 700;
}

.individ__container__client__btn__text {
  color: inherit;
  font-size: inherit;
}

.users {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}

.users__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 150px;
}

.users__container__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
  text-align: left;
  color: var(--black);
}

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

.users__container__item {
  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;
  height: auto;
}

.users__container__item.__one,
.users__container__item.__two {
  width: 24.2%;
}

.users__container__item.__three {
  width: 16.4%;
}

.users__container__item.__foor {
  width: 22.2648%;
}

.messageAndJob {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
}

.message {
  width: 100%;
  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;
}

.message__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 150px;
  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;
}

.message__container__form {
  width: 100%;
  background-color: #f0f0f0;
  padding: 65px 120px 55px 120px;
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.message__container__form__title {
  text-align: left;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.message__container__form__items {
  width: 100%;
  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;
  background: var(--white);
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 5px 0;
  overflow: hidden;
  height: 42px;
}

.message__container__form__item__line {
  width: 2px;
  height: 32px;
  border-radius: 2px;
  background-color: var(--silver);
}

.message__container__form__item {
  width: calc(25% - 2px);
  height: 100%;
}

.input {
  width: 100%;
  padding: 0 10px 0 18px;
  font-weight: 400;
  height: inherit;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: var(--black);
  outline: 0;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: var(--black);
  outline: 0;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: var(--black);
  outline: 0;
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: var(--black);
  outline: 0;
}

.input::placeholder,
.textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: var(--black);
  outline: 0;
}

.message__container__form__textaria {
  width: 100%;
  background: var(--white);
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  min-height: 127px;
  height: auto;
  margin-top: 15px;
  overflow: hidden;
}

.textarea {
  width: 100%;
  min-height: inherit;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  outline: 0;
  cursor: pointer;
}

.message__container__form__footer {
  width: 100%;
  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;
  margin-top: 25px;
}

.message__container__form__footer__info {
  width: calc(100% - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.message__container__form__footer__info__img {
  width: 18px;
  margin-right: 11px;
}

.message__container__form__footer__info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.005em;
  text-align: left;
}

.message__container__form__footer__btn {
  width: 183px;
  height: 51px;
  margin-left: 17px;
}

.job {
  width: 100%;
  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;
  background-color: var(--black);
}

.job__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 150px;
}

.job__container__content {
  width: 100%;
  padding: 47px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 8px 8px;
  background-color: var(--greenLight);
}

.job__container__content__btn {
  width: 184px;
  height: 53px;
  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;
  background-color: var(--white);
  color: var(--greenLight);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.45);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.015em;
  margin-right: 85px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.job__container__content__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--white);
}

.message__container__form__footer__info.__mobile {
  display: none;
}

.messageNotJob {
  width: 100%;
  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;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.messageNotJob::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-color: var(--black);
}

.messageNotJob__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  position: relative;
  z-index: 3;
}

.messageNotJob__container .message__container__form {
  border-radius: 8px;
}

body.lock {
  overflow: hidden;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8 ease 0s;
  -o-transition: all 0.8 ease 0s;
  transition: all 0.8 ease 0s;
  z-index: 109;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  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;
  padding: 30px 10px;
}

.popup__content {
  position: relative;
  opacity: 0;
}


.names input[type=text]:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
}

.popupdoc .popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--white);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  overflow: hidden;
}

.popupShema .popup__content {
  width: 100%;
  max-width: 1043px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--white);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  overflow: hidden;
}

.popup__content__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--greenYel);
  padding: 50px 230px 20px 230px;
}

.popup__content__top__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.popup__content__top__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
}

.popup__content__center {
  position: relative;
  width: 100%;
  padding: 45px 30px 65px 30px;
}

.popup__content__center__img {
  width: 100%;
}

.popup__content__center__img.__mobile {
  display: none;
}

.popup__content__remove {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 28px;
  right: 28px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.popup__content__remove__line {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 3px;
  width: 100%;
  background-color: var(--black);
}

.popup__content__remove__line:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__content__remove__line:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popupPrice .popup__content {
  padding: 70px 75px 80px 65px;
  background-color: var(--silver);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 5px 13px -4px rgba(0, 0, 0, 0.14);
  box-shadow: 0 5px 13px -4px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  width: 100%;
  max-width: 834px;
}

.popupPrice__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.popupPrice__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.04em;
  text-align: left;
}

.popupPrice__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
}

.popupPrice__form__input {
  width: 100%;
  height: 42px;
  background: #fff;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  margin-top: 12px;
}

.popupPrice__form__messsage__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 22px;
}

.popupPrice__form__messsage {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #ff2020;
  letter-spacing: 0.025em;
  padding-right: 10px;
}

.popupPrice__form__button {
  margin-top: 20px;
  width: 205px;
  height: 52px;
  font-size: 18px;
  line-height: 21px;
  margin-left: auto;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.popupPrice .popup__content__remove {
  top: 73px;
  right: 74px;
  opacity: 0.4;
}

.about {
  width: 100%;
  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;
  position: relative;
  margin-bottom: 35px;
}

.about__back {
  position: absolute;
  height: 80%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  z-index: 3;
}

.about__back .img-ab {
  -o-object-position: left top;
  object-position: left top;
}

.about__container {
  position: relative;
  width: 100%;
  max-width: var(--maxWidth);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 175px 0 75px;
}

.about__container__main {
  width: 100%;
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.about__container__main__img {
  min-width: 59px;
}

.about__container__main__title {
  min-width: 170px;
  text-align: left;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 36px 13px 0 42px;
}

.about__container__main__text {
  width: auto;
  margin-top: 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  padding-right: 20px;
}

.about__container__mission {
  width: 100%;
  padding-left: 100px;
  margin-top: 85px;
  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;
  position: relative;
  z-index: 5;
}

.about__container__mission__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 60px 110px;
  border-radius: 8px;
  color: var(--white);
  background-color: var(--greenLight);
}

.about__container__mission__content__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about__container__mission__content__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-align: center;
}

.about__back picture:last-child {
  display: none;
}

.control {
  width: 100%;
  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;
}

.control__container {
  width: 100%;
  max-width: var(--maxWidth);
  position: relative;
}

.control__content {
  width: 100%;
  position: relative;
  padding-bottom: 50.5%;
}

.control .mainSwiper__slide__content__arrow__img {
  pointer-events: none;
}

.control.__jobs .mainSwiper__slide__content__title {
  margin-top: auto;
}

.control.__jobs .mainSwiper__slide__content__list {
  margin-top: 0;
  padding-right: 15px;
  margin-bottom: auto;
}

.mainSwiper__slide__content__list__item span {
  color: white;
  font-family: Montserrat;
  font-weight: 700;
}

.control__flag {
  width: 360px;
  padding: 30px 30px 40px 65px;
  background-color: var(--greenLight);
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.36);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.36);
  -webkit-clip-path: polygon(65px 0, 100% 0, 100% 100%, 65px 100%, 0 50%);
  clip-path: polygon(65px 0, 100% 0, 100% 100%, 65px 100%, 0 50%);
  position: absolute;
  z-index: 4;
  bottom: 90px;
  right: 0;
}

.control__flag__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-align: right;
  letter-spacing: 0.015em;
  color: var(--white);
}

.text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 55px;
}

.text__item {
  width: 100%;
  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;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.025em;
  text-align: left;
}

.text__item.__silver:nth-child(1) {
  background-color: #f4f4f4;
  padding: 70px 0 45px 0;
  margin-bottom: 75px;
}

.text__item__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
}

.text__item__container__content.__paragraph {
  margin-bottom: 20px;
}

.director {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 70px 0 90px 0;
}

.director__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.director__container__text {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: left;
  letter-spacing: 0.025em;
}

.director__container__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 60px;
}

.director__container__info__img {
  width: 204px;
  height: 218px;
  position: relative;
  overflow: hidden;
  background-color: var(--silver);
}

.director__container__info__text {
  width: calc(100% - 204px);
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.025em;
}

.director__container__info__text__paragraph {
  margin-bottom: 25px;
}

.director__container__info__text__name,
.director__container__info__text__role {
  text-align: left;
}

.prioritet {
  width: 100%;
  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;
}

.prioritet__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.prioritet__container__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 3;
}

.prioritet__container__back-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.prioritet__container__img {
  position: relative;
  width: 57.78%;
  padding-bottom: 47.75%;
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.prioritet__container__img .img-ab {
  -o-object-position: top left;
  object-position: top left;
}

.prioritet__container__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  z-index: 5;
  padding: 85px 0 85px 75px;
}

.prioritet__container__content__left {
  width: 59px;
  margin-right: 40px;
}

.prioritet__container__content__left__img {
  width: 100%;
}

.prioritet__container__content__right {
  padding-top: 20px;
  max-width: calc(44.1% - 99px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--white);
}

.prioritet__container__content__right__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
}

.prioritet__container__content__right__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.prioritet__container__content__right__list__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.025em;
  margin-bottom: 5px;
  pointer-events: none;
}

.prioritet__container__content__right__list__item.__list-item::before {
  top: 6px;
}

.prioritet__container__content__right__text {
  display: inline;
  margin-top: auto;
  max-width: 265px;
  letter-spacing: 0.025em;
  font-size: 18px;
  line-height: 130%;
  font-weight: 400;
  text-align: left;
}

.prioritet__container__content__right__text span {
  font-weight: 700;
}

.prioritetMobile {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  display: none;
}

.textLine {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: var(--greenDark);
  height: 14vw;
  max-height: 190px;
  overflow: hidden;
  color: var(--white);
}

.textLine__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.textLine.__small .textLine__container__left {
  width: 50%;
}

.textLine.__small .textLine__container__right {
  width: 50%;
}

.textLine__container__left {
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 175px;
  padding-right: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.textLine__container__left__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-align: left;
}

.textLine__container__right {
  height: 100%;
  width: 61%;
  background-color: var(--greenLight);
  padding: 20px 75px 20px 95px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-clip-path: polygon(6.75% 0, 100vw 0, 100vw 100%, 6.75% 100%, 0 50%);
  clip-path: polygon(6.75% 0, 100vw 0, 100vw 100%, 6.75% 100%, 0 50%);
}

.textLine__container__right::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--greenLight);
  top: 0;
  right: -100vw;
}

.textLine__container__right__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.025em;
  text-align: center;
}

.textLine__container.__en .textLine__container__left {
  width: 38%;
}

.textLine__container.__en .textLine__container__right {
  width: 62%;
}

.cardspoints {
  width: 100%;
  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;
}

.cardspoints__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cardspoints__container__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 80px;
}

.cardspoints__container__item__left {
  width: 407px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cardspoints__container__item__left__pictire {
  width: 100%;
  position: relative;
}

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

.cardspoints__container__item__left__pictire__number {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 3;
}

.img-conHeight {
  height: 100%;
  width: auto;
}

.cardspoints__container__item__left__info {
  width: 100%;
  height: 100%;
  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;
  margin-top: 55px;
}

.cardspoints__container__item__left__info__text {
  width: calc(100% - 167px);
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0.005em;
  padding-right: 20px;
  color: var(--greenLight);
}

.cardspoints__container__item__left__info__btn {
  width: 167px;
  height: 49px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.015em;
}

.cardspoints__container__item__info {
  width: calc(100% - 407px);
  padding-left: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cardspoints__container__item__info__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 0.025em;
  text-align: left;
  padding-bottom: 20px;
}

.cardspoints__container__item__info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  margin-top: auto;
}

.cardspoints__container__item__info__link {
  text-align: left;
  color: var(--greenLight);
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
}

.ProectMessage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 85px;
}

.ProectMessage__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ProectMessage__container__top {
  width: 100%;
  padding: 45px 75px;
  border-radius: 8px 8px 8px 0;
  background-color: var(--greenLight);
  color: var(--white);
}

.ProectMessage__container__top__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: center;
}

.ProectMessage__container__bottom {
  width: 100%;
  padding: 40px 0 0 100px;
  position: relative;
}

.ProectMessage__container__bottom::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 78px;
  height: calc(100% + 5px);
  background-color: var(--greenLight);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.ProectMessage__container__bottom__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
}

.axis {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.axis__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.axis__container__left {
  width: 50.396%;
}

.axis__table {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.axis__table__row:first-child .axis__table__row__item {
  min-height: 74px;
  background-color: #838383;
  color: var(--white);
  font-family: Raleway;
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
}

.axis__table__row:first-child .axis__table__row__item:first-child,
.axis__table__row:first-child .axis__table__row__item:last-child,
.axis__table__row:last-child .axis__table__row__item:first-child {
  background-color: var(--greenDark);
}

.axis__table__row__item {
  font-family: Montserrat;
  width: 11.985%;
  min-height: 35px;
  padding: 5px 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;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.025em;
  text-align: center;
  background-color: var(--white);
  color: var(--black);
  border: 0.5px solid var(--silver);
}

.axis__table__row__item:first-child {
  width: 19.84%;
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.025em;
  color: var(--white);
  background-color: #838383;
  font-family: Raleway;
}

.axis__table__row__item:last-child {
  width: 19.84%;
  background-color: var(--greenYel);
}

.axis__table__row__item__text {
  font-weight: inherit;
  font-size: inherit;
}

.axis__container__right {
  width: 49.6%;
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.axis__container__right__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  text-align: left;
  margin-bottom: 20px;
}

.axis__improvement {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.axis__improvement__title {
  width: 100%;
  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;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: 0.025em;
  border-radius: 8px 8px 0 0;
  background-color: var(--greenDark);
  color: var(--white);
}

.axis__improvement__img {
  background-color: #fbfbfb;
  border-radius: 0 0 8px 8px;
  padding: 25px 35px;
}

.axis__improvement__arrow {
  position: absolute;
  top: 8px;
  left: -83px;
  bottom: 0;
  margin: auto 0;
  width: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.axis__container__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}

.axis__container__info__text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  text-align: left;
}

.axis__container__info__text span {
  font-weight: 700;
}

.textCursiv {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  margin-bottom: 120px;
}

.textCursiv__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.textCursiv__container__text {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
}

.textCursiv__container__text-cursiv {
  width: 100%;
  max-width: 500px;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  letter-spacing: 0.025em;
  color: var(--greenLight);
  margin-top: 45px;
}

.textCursiv__container__text-cursiv span {
  font-weight: 700;
}

.tabs {
  width: 100%;
  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;
  background-color: #f4f4f4;
}

.tabs__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 15px 125px;
  position: relative;
}

.tabsSlider {
  width: 100%;
}

.tabsSlider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabsSlider__slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  cursor: pointer;
}

.tabsSlider__slide.__active .tabsSlider__slide__text {
  color: var(--greenLight);
}

.tabsSlider__slide__text {
  font-weight: 500;
  font-size: 19px;
  line-height: 22px;
  letter-spacing: 0.025em;
  color: inherit;
  text-align: center;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: var(--black);
}

.tabsSlider__slide__line {
  opacity: 0.2;
  height: 37px;
  width: 2px;
  background-color: var(--black);
}

.tabsSlider__btn {
  position: absolute;
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  top: 0;
  background-color: #b5b5b5;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  cursor: pointer;
  z-index: 5;
}

.tabsSlider__btn.swiper-button-disabled {
  pointer-events: none;
  background-color: #dfdfdf;
}

.tabsSlider__btn.swiper-button-lock {
  display: none;
}

.tabsSlider__btn.__btn-next {
  right: 0;
}

.tabsSlider__btn.__btn-next:before {
  content: "";
  width: 20px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, #f5f5f5), color-stop(60%, rgba(245, 245, 245, 0)));
  background: -o-linear-gradient(right, #f5f5f5 40%, rgba(245, 245, 245, 0) 60%);
  background: linear-gradient(270deg, #f5f5f5 40%, rgba(245, 245, 245, 0) 60%);
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: -20px;
  pointer-events: none;
}

.tabsSlider__btn.__btn-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.productTable {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 70px 0 90px 0;
}

.productTable__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 75px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.productTable__container__left {
  width: 50.396%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.productTable__container__left__row:first-child .productTable__container__left__row__item {
  color: var(--white);
  background-color: var(--greenLight);
  font-weight: 700;
  font-family: Raleway;
}

.productTable__container__left__row__item {
  font-family: Montserrat;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 116%;
  letter-spacing: 0.025em;
  background-color: #f4f4f4;
  text-align: center;
  border: 0.5px solid #f7f7f7;
}

.productTable__container__left__row__item__text {
  font-size: inherit;
  color: inherit;
}

.productTable__container__left__row.__dark .productTable__container__left__row__item {
  background-color: #ececec;
}

.productTable__container__right {
  width: 49.604%;
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.productTable__container__right__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.015em;
}

.productTable__container__right__list {
  padding-top: 20px;
  width: 100%;
  max-width: 300px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.productTable__container__right__list__item {
  pointer-events: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.025em;
  margin-top: 5px;
}

.productTable__container__right__list__item.__list-item::before {
  top: 8px;
}

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

.docs__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.docs__container__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.333% - 13.333px);
  background-color: #f7f7f7;
  padding: 50px 40px;
  border-radius: 4px;
}

.docs__container__item__img {
  width: 100%;
  border: 1px solid #f7f7f7;
}

.docs__container__item__btn {
  margin-top: 45px;
  width: 184px;
  height: 51px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.015em;
  text-align: center;
  font-weight: 600;
}

.control__product__text {
  position: absolute;
  top: 65px;
  right: 75px;
  z-index: 4;
  width: 29%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.025em;
  text-align: right;
}

.adaptiv {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 80px 0 100px 0;
}

.adaptiv__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.adaptiv__container__text {
  width: 100%;
  padding: 80px 150px 0 150px;
  font-weight: 600;
  font-size: 16px;
  line-height: 145.9%;
  letter-spacing: 0.02em;
  text-align: center;
}

.adaptiv__container__text:first-child {
  display: none;
}

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

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

.adaptiv__container__content__left {
  width: 46.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.adaptiv__container__content__left__img {
  width: 100%;
}

.adaptiv__container__content__right {
  width: 53.7%;
  padding-left: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.adaptiv__container__content__right__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.adaptiv__container__content__right__list {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.adaptiv__container__content__right__list__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  margin-top: 5px;
  pointer-events: none;
}

.adaptiv__container__content__right__list__item.__list-item::before {
  top: 6px;
}

.adaptiv__container__content__left__img.__double picture:last-child,
.mainSwiper__slide__img.__double picture:last-child {
  display: none;
}

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

.paint__container {
  width: 100%;
  max-width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.paint__container__title {
  width: 100%;
  height: 100%;
  background-color: var(--greenLight);
  color: var(--white);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
}

.paint__container__title__back {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 134%;
  -webkit-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
  width: auto;
  z-index: 2;
}

.img-bck {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.paint__container__title__text {
  padding: 30px 0;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.paint__container__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.paint__container__item {
  width: calc(50% - 10px);
  margin-top: 20px;
  background-color: #f4f4f4;
  padding: 42px 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.paint__container__item__left {
  width: 183px;
}

.paint__container__item__left__img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.paint__container__item__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - 183px);
  padding-left: 20px;
}

.paint__container__item__right__title,
.paint__container__item__title {
  width: 100%;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.025em;
  font-weight: 700;
  text-align: left;
  padding-bottom: 12px;
}

.paint__container__item__title {
  display: none;
  padding-bottom: 20px;
  margin-bottom: auto;
}

.paint__container__item__right__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.025em;
  text-align: left;
  padding-bottom: 12px;
}

.paint__container__item__right__button {
  max-width: 181px;
  width: 100%;
  height: 49px;
  line-height: 19px;
  font-size: 16px;
  letter-spacing: 0.015em;
  text-align: center;
  margin-top: auto;
  font-weight: 600;
}

.paint {
  margin-bottom: 100px;
}

.jobOpen {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 70px 0 90px 0;
}

.jobOpen__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.jobOpen__container__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jobOpen__container__item {
  width: calc(50% - 10px);
  border-radius: 7px;
  padding: 40px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #f4f4f4;
}

.jobOpen__container__item__left {
  width: 45.6%;
}

.jobOpen__container__item__left__img {
  width: 100%;
  padding-bottom: 74.26%;
  overflow: hidden;
  position: relative;
}

.jobOpen__container__item__right {
  width: 54.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}

.jobOpen__container__item__right__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.01em;
  padding-bottom: 15px;
}

.jobOpen__container__item__right__btn {
  max-width: 139px;
  width: 100%;
  height: 42px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.015em;
  text-align: center;
  margin-top: auto;
}

.jobOpen__container__item__right__text {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.025em;
}

.jobOpen__container__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 100px;
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 70px;
  padding-bottom: 15px;
}

.jobOpen__container__message {
  width: 100%;
  padding: 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.jobOpen__container__message__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 145.9%;
  letter-spacing: 0.025em;
  text-align: left;
  margin-top: 10px;
}

.jobOpen__container__message__text span {
  font-weight: 700;
}

.contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: contents;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 100px 0;
}

.contact__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 18px 75px;
}

.contact__container__text__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
  text-align: left;
  text-transform: uppercase;
}

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

.contact__container__content__left {
  width: calc(100% - 315px);
  padding-bottom: 34%;
  position: relative;
  overflow: hidden;
}

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

.contact__container__content__right {
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 315px;
}

.contact__container__content__right__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 25px;
}

.contact__container__content__right__item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.025em;
  margin-bottom: 5px;
}

.contact__container__content__right__item__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.025em;
}

.contact__container__content__right__btn {
  font-weight: 600;
  font-size: 18px;
  height: 51px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.005em;
  width: 100%;
  margin-top: auto;
}

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

.map__btn {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  font-weight: 600;
  font-size: 11.5px;
  line-height: 152.5%;
  width: 185.84px;
  height: 38.61px;
}

.map__btn::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -2px;
  width: 15px;
  height: 10px;
  background-color: var(--greenLight);
  -webkit-clip-path: polygon(0 100%, 0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 0 100%, 100% 100%, 100% 0);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 120px 0 150px 0;
  position: relative;
  z-index: 2;
}

.product:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 210px);
  background-color: #d9d9d9;
  opacity: 0.4;
}

.product.__big:before,
.product.__middle:before {
  height: calc(100% - 270px);
}

.product__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.product__container__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.product__container__top__arrow {
  width: 59px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.product__container__top__title {
  width: 50%;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  padding-left: 100px;
}

.product__container__top__series {
  width: 50%;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__container__top__series__text {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 29px;
  border-bottom: 1px solid #d9d9d9;
}

.product__container__top__series__text.__silver {
  opacity: 0.4;
  padding-left: 12px;
}

.product__container__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 60px;
}

.product__container__center__left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__container__center__left__img {
  width: 100%;
  padding-bottom: 74%;
  overflow: hidden;
  position: relative;
}

.product__container__center__right {
  width: 50%;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product__container__center__right__text {
  font-variant-numeric: lining-nums;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-align: left;
  padding-bottom: 15px;
}

.product__container__center__right__buttons {
  width: 100%;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.product__container__center__right__button {
  width: 184px;
  height: 51px;
  margin-top: 25px;
  margin-right: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.015em;
}

.product__container__center__right__button.__btn-black {
  width: 219px;
  height: 51px;
  background-color: #303030;
  -webkit-transform: all 0.4s ease 0s;
  -ms-transform: all 0.4s ease 0s;
  transform: all 0.4s ease 0s;
}

.product__container__center__right__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}

.product__container__center__right__remove__img {
  width: 32px;
  margin-right: 20px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.product__container__center__right__remove__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.015em;
  color: #d9d9d9;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.product__container__center__right__text.__list-count {
  padding-left: 35px;
  position: relative;
}

.product__container__center__right__text.__list-count::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: Montserrat;
}

.product__container__center__right__text.__list-count:nth-child(2)::before {
  content: "1";
}

.product__container__center__right__text.__list-count:nth-child(3)::before {
  content: "2";
}

.product__container__center__right__text.__list-count:nth-child(4)::before {
  content: "3";
}

.product__container__center__right__text.__list-count:nth-child(5)::before {
  content: "4";
}

.product__container__center__right__text.__list-count:nth-child(6)::before {
  content: "5";
}

.product__container__bottom {
  margin-top: 15px;
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product__container__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.product__container__footer .product__container__center__right__buttons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.product__container__footer .product__container__center__right__remove {
  margin-top: 0;
  margin-right: 40px;
}

.product__container__center__right__text span {
  font-weight: 700;
}

.product__container__center__right.__border .product__container__center__right__text:last-child {
  border-bottom: 2px dashed #d9d9d9;
}

.product__container__bottom__item {
  width: calc(50% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.no-webp .printMain {
  background-image: url(../images/print.jpg);
}

.printMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-size: contain;
  background-position: left top;
  background-repeat: repeat;
}

.printMain__container {
  width: 100%;
  max-width: var(--maxWidth);
  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;
}

.printMain .about__container__main__title {
  min-width: 235px;
  margin-right: 70px;
}

.printMain .about__container__main {
  margin: 0;
  padding: 85px 175px 125px 75px;
}

.printMain .paint__container {
  padding-left: 175px;
  padding-right: 175px;
}

.printMain .paint__container__title__text {
  width: 100%;
  text-align: left;
}

.printMain .paint__container__title__back {
  left: auto;
  right: 0;
  -webkit-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.printList {
  width: 100%;
  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;
}

.printList__container {
  width: 100%;
  max-width: var(--maxWidth);
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.printList__container__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.printList__container__item {
  width: 100%;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.printList__container__item__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
}

.printList__container__item__header__arrow {
  width: 12px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.printList__container__item.__active .printList__container__item__header__arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.printList__container__item.__active .printList__container__item__header__text {
  color: var(--black);
}

.printList__container__item__header__text {
  max-width: calc(100% - 52px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 40px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  color: var(--greenLight);
}

.printList__container__item__header__text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--greenLight);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.printList__container__item__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.printList__container__item__body__left,
.printList__container__item__body__midle,
.printList__container__item__body__right {
  margin: 40px 0;
}

.printList__container__item__body__left {
  width: 30%;
}

.printList__container__item__body__left__img {
  width: 100%;
}

.printList__container__item__body__midle {
  width: 37%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px 0 40px;
}

.printList__container__item__body__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
}

.printList__container__item__body__item:last-child,
.printList__container__item__body__item__text {
  margin-bottom: 0;
}

.printList__container__item__body__item__title {
  font-weight: 700;
  text-align: left;
}

.printList__container__item__body__item__text {
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
}

.printList__container__item__body__right {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.printList__container__item__body__right__title {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.04em;
  text-align: left;
  color: var(--greenLight);
  margin-bottom: 10px;
}

.printList__container__item__body__right__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  font-weight: 500;
  border-radius: 7px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  background-color: var(--greenYel);
}

.printList__container__item__body__right__content__text {
  margin-bottom: 10px;
}

.printList__container__item__body__right__content__text span {
  font-weight: 700;
}

.printList__container__item__body__right .printList__container__item__body__item {
  margin-top: 20px;
}

.printList__container__item.__big .printList__container__item__body__midle {
  padding-right: 20px;
  width: 26%;
}

.printList__container__item.__big .printList__container__item__body__right {
  width: 44%;
}

@media screen and (min-width: 476px) {
  .control.__product .control__content {
    padding-bottom: 42.35%;
  }

  .control.__product .mainSwiper__slide__back {
    background: var(--white);
    opacity: 1;
    mix-blend-mode: initial;
    -webkit-clip-path: polygon(0 0, 156px 0, 615px 72%, 435px 100%, 0 100%);
    clip-path: polygon(0 0, 156px 0, 615px 72%, 435px 100%, 0 100%);
  }

  .control.__product .mainSwiper__slide__content__list {
    color: var(--black);
    padding-right: 10%;
    margin-top: 0;
    margin-bottom: auto;
  }

  .control.__product .mainSwiper__slide__content__title {
    color: var(--black);
    margin-top: auto;
  }

  .cards__container__item._anim-items {
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    transition: all 0.9s ease 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  .cards__container__item._anim-items._active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  .values__container {
    overflow: hidden;
  }

  .values__container._anim-items._active .values__container__img {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .values__container._anim-items .values__container__img {
    -webkit-transition: all 0.8s ease-in-out 0.5s;
    -o-transition: all 0.8s ease-in-out 0.5s;
    transition: all 0.8s ease-in-out 0.5s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  .cardspoints__container__item__left__pictire__number._anim-items {
    -webkit-transition: all 0.5s ease-in-out 0.6s;
    -o-transition: all 0.5s ease-in-out 0.6s;
    transition: all 0.5s ease-in-out 0.6s;
    opacity: 0;
  }

  .cardspoints__container__item__left__pictire__number._anim-items._active {
    opacity: 1;
  }

  .docs._anim-items .docs__container__item {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out 0s;
    -o-transition: all 0.8s ease-in-out 0s;
    transition: all 0.8s ease-in-out 0s;
  }

  .docs._anim-items .docs__container__item:nth-child(2) {
    -webkit-transition: all 0.8s ease-in-out 0.5s;
    -o-transition: all 0.8s ease-in-out 0.5s;
    transition: all 0.8s ease-in-out 0.5s;
  }

  .docs._anim-items .docs__container__item:nth-child(3) {
    -webkit-transition: all 0.8s ease-in-out 1s;
    -o-transition: all 0.8s ease-in-out 1s;
    transition: all 0.8s ease-in-out 1s;
  }

  .docs._anim-items._active .docs__container__item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .control__product__text._anim-items {
    -webkit-transition: all 0.8s ease-in-out 0.5s;
    -o-transition: all 0.8s ease-in-out 0.5s;
    transition: all 0.8s ease-in-out 0.5s;
    opacity: 0;
  }

  .control__product__text._anim-items._active {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .textLine__container__right._anim-items {
    -webkit-transition: all 0.6s ease-in 0.5s;
    -o-transition: all 0.6s ease-in 0.5s;
    transition: all 0.6s ease-in 0.5s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  .textLine__container__right._anim-items._active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header__container {
    padding: 35px 30px 30px 100px;
  }

  .header__container__logo {
    width: 190px;
  }

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

  .footer__container__list {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 40px;
  }

  .footer__container__iconsColumn {
    margin-right: 0;
  }

  .mainSwiper__slide {
    padding-bottom: 48vw;
  }

  .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 125px 0, 71vw 100%, 0 100%);
    clip-path: polygon(0 0, 125px 0, 71vw 100%, 0 100%);
  }

  .mainSwiper__slide__content {
    padding: 35px 0;
    width: 430px;
    left: 30px;
  }

  .mainSwiper__slide__content__arrow {
    width: 45px;
    margin-bottom: 50px;
  }

  .mainSwiper__slide__content__status {
    font-size: 25px;
    line-height: 30px;
    min-height: 30px;
  }

  .mainSwiper__slide__content__title {
    font-size: 25px;
    line-height: 30px;
  }

  .mainSwiper__slide__content__list__item {
    font-size: 16px;
    line-height: 20px;
  }

  .cards__container {
    padding: 0 30px;
  }

  .cards__container__item {
    padding: 20px 25px 20px 25px;
  }

  .cards__container__item__info {
    padding-left: 20px;
  }

  .cards__container__item__img {
    width: 100%;
    padding-bottom: 40%;
    margin-bottom: 20px;
  }

  .cards__container__item__info {
    width: 100%;
  }

  .values__container {
    padding: 60px 250px 0 0;
  }

  .values__container__img {
    width: calc(100% - 320px);
  }

  .values__container__info {
    width: 320px;
  }

  .values.__white .values__container {
    padding: 35px 0 0 250px;
  }

  .values.__white .values__container__info__item__message {
    left: auto;
    right: 105%;
  }

  .values.__white .values__container__info {
    margin-bottom: 6.7vw;
  }

  .individ__container {
    padding: 0 30px;
  }

  .individ__container__client {
    padding-left: 40px;
  }

  .users__container {
    padding: 0 30px;
  }

  .job__container,
.message__container {
    padding: 0 30px;
  }

  .job__container__content,
.messageNotJob__container,
.message__container__form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about__container__main__img {
    min-width: 45px;
    width: 45px;
  }

  .about__container {
    padding: 0 30px;
  }

  .about__container__main {
    margin-top: 70px;
  }

  .about__container__main__title {
    margin: 27px 40px 0 30px;
  }

  .about__container__main__text {
    margin-top: 27px;
    padding-right: 0;
  }

  .about__container__mission {
    padding-left: 0;
  }

  .text__item__container {
    padding: 0 30px;
  }

  .director__container {
    padding: 0 30px;
  }

  .prioritet__container__content {
    padding: 45px 0 45px 30px;
  }

  .prioritet__container__content__left {
    width: 45px;
    margin-right: 30px;
  }

  .prioritet__container__content__right {
    max-width: calc(44.1% - 75px);
  }

  .prioritet__container__content__right__title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .prioritet__container__content__right__list__item,
.prioritet__container__content__right__text {
    font-size: 16px;
  }

  .prioritet__container__content__right__text {
    max-width: 240px;
  }

  .textLine__container__left {
    padding-left: 30px;
  }

  .textLine__container__right {
    padding-right: 30px;
    padding-left: 50px;
  }

  .textLine {
    max-height: 300px;
    height: auto;
  }

  .textLine__container__left__title {
    font-size: 25px;
    line-height: 30px;
  }

  .cardspoints__container {
    padding: 0 30px;
  }

  .cardspoints__container__item__info {
    padding-left: 25px;
  }

  .ProectMessage__container {
    padding: 0 30px;
  }

  .axis__container {
    padding: 0 30px;
  }

  .textCursiv__container {
    padding: 0 75px;
  }

  .tabs__container {
    padding: 15px 30px;
  }

  .productTable__container {
    padding: 0 30px;
  }

  .docs__container {
    padding: 0 30px;
  }

  .control__product__text {
    top: 20px;
    right: 30px;
    width: 32%;
    font-size: 14px;
  }

  .adaptiv__container {
    padding: 0 30px;
  }

  .adaptiv__container__text {
    padding: 80px 45px 0 45px;
  }

  .jobOpen__container {
    padding: 0 30px;
  }

  .jobOpen__container__message,
.jobOpen__container__title {
    padding-left: 0;
    padding-right: 0;
  }

  .jobOpen__container__item {
    padding: 30px 20px;
  }

  .contact__container {
    padding: 18px 30px;
  }

  .product__container {
    padding: 0 30px;
  }

  .product:before {
    height: 90%;
  }

  .product.__big:before,
.product.__middle:before {
    height: 100%;
  }

  .printMain .about__container__main {
    padding: 85px 75px 100px 30px;
  }

  .printList__container {
    padding: 80px 30px;
  }

  .printList__container__item__body__midle {
    padding-left: 20px;
  }

  .printMain .about__container__main__title {
    margin-right: 40px;
  }

  .printMain .paint__container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1060px) {
  .paint__container__item__title {
    display: inline;
  }

  .paint__container__item__right__title {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header__container__item__find {
    display: none;
  }

  .header__container__item__list__item__elements {
    padding-top: 29px;
  }

  .header__container__item__list__item__link::before {
    bottom: -12px;
  }

  .values__container {
    padding: 60px 30px 0 30px;
  }

  .values-text__desck {
    display: none;
  }

  .values__container__info__item__text {
    padding: 0;
    width: 32px;
    height: 32px;
    -webkit-box-shadow: 0.909091px 0.909091px 0.909091px #373737;
    box-shadow: 0.909091px 0.909091px 0.909091px #373737;
    border-radius: 2.72727px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .values-text__count {
    display: inline;
    font-weight: 700;
    line-height: 110%;
    font-size: 14.5455px;
    letter-spacing: 0.025em;
    text-align: center;
  }

  .values__container__info__item__message {
    left: 130%;
    padding: 10px 10px 10px 20px;
    width: 210px;
    height: 70px;
  }

  .values__container__info__item__message::before {
    width: 25px;
    height: 25px;
  }

  .values.__white .values__container {
    padding: 35px 30px 0 30px;
  }

  .values.__white .values__container__info__item__message {
    left: 130%;
    right: auto;
  }

  .values.__white .values__container__info {
    margin-bottom: 70px;
  }

  .popup__content__top {
    padding: 50px 130px 20px 130px;
  }

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

  .cardspoints__container__item__left {
    width: 100%;
  }

  .cardspoints__container__item__info {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .cardspoints__container {
    padding: 0 75px;
  }

  .cardspoints__container__item.__infoBtn {
    position: relative;
    padding-bottom: 100px;
  }

  .cardspoints__container__item__left__info {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 500px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .cardspoints__container__item__left__info__text {
    text-align: right;
  }

  .axis__container {
    -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;
    padding: 0 75px;
  }

  .axis__container__right {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 0;
    padding-top: 50px;
  }

  .axis__improvement__arrow {
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    top: -40px;
    width: 43px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 3;
  }

  .axis__container__left {
    width: 100%;
    position: relative;
    z-index: 5;
  }

  .axis__improvement__img {
    background-color: #f3f3f3;
  }

  .axis__container__right__text {
    margin-bottom: 0;
    margin-top: 25px;
    text-align: left;
    margin-right: auto;
  }

  .axis__container__info {
    margin-top: 0;
  }

  .axis__container__info__text {
    margin-top: 25px;
  }

  .productTable__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .productTable__container__left {
    width: 100%;
    margin-top: 40px;
  }

  .productTable__container__right {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 0;
  }

  .productTable__container__right__list {
    padding-bottom: 20px;
    padding-top: 0;
  }

  .productTable__container__right__list__item {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .docs__container__item__btn {
    width: 100%;
    margin-top: 30px;
  }

  .docs__container__item {
    padding: 30px 20px;
  }

  .control__product__text {
    display: none;
  }

  .adaptiv__container__text:first-child {
    display: inline;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .adaptiv__container__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 45px;
  }

  .adaptiv__container__content__right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }

  .adaptiv__container__content__left {
    width: 100%;
  }

  .adaptiv__container__text {
    padding-top: 40px;
  }

  .paint__container__item {
    padding: 25px 20px;
  }

  .paint__container__item__left {
    width: 140px;
  }

  .paint__container__item__right {
    width: calc(100% - 140px);
  }

  .paint__container__item__title {
    font-size: 18px;
  }

  .paint__container__item__right__text {
    font-size: 14px;
  }

  .jobOpen__container__item {
    width: 100%;
    margin-top: 25px;
  }

  .jobOpen__container__items {
    padding: 0 45px;
  }

  .jobOpen {
    margin: 50px 0 60px 0;
  }

  .product__container__top__arrow {
    width: 42px;
  }

  .product__container__top__title {
    padding-left: 80px;
  }

  .product__container__center__right,
.product__container__top__series {
    padding-left: 20px;
  }

  .product__container__center {
    margin-top: 40px;
  }

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

  .product__container__footer .product__container__center__right__buttons {
    margin-left: 0;
    margin-right: 0;
  }

  .printList__container__item__body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .printList__container__item__body__left {
    width: 50%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }

  .printList__container__item.__big .printList__container__item__body__midle,
.printList__container__item__body__right {
    width: 50%;
    padding-left: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }

  .printList__container__item.__big .printList__container__item__body__midle,
.printList__container__item__body__midle {
    margin-top: 20px;
    padding: 0;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 920px) {
  .mainSwiper__slide__content {
    padding: 30px 0;
    width: 430px;
  }

  .mainSwiper__slide__content__arrow {
    width: 40px;
    margin-bottom: 50px;
  }

  .mainSwiper__slide__content__status {
    font-size: 20px;
    line-height: 25px;
    min-height: 25px;
    padding-right: 170px;
  }

  .mainSwiper__slide__content__title {
    font-size: 20px;
    line-height: 25px;
    padding-right: 170px;
  }

  .mainSwiper__slide__content__list__item {
    font-size: 14px;
    line-height: 16px;
  }

  .mainSwiper__slide__content__list {
    padding-right: 15px;
  }

  .mainSwiper__slide__content__list__item.__list-item::before {
    top: 4px;
  }

  .about__container__main__img {
    min-width: 40px;
    width: 40px;
  }

  .about__container__mission__content {
    padding: 40px 60px;
  }

  .about__container__main__title {
    margin: 21px 40px 0 30px;
  }

  .about__container__main__text {
    margin-top: 21px;
  }

  .prioritet__container__content {
    padding: 25px 0 25px 30px;
  }

  .prioritet__container__content__left {
    width: 40px;
  }

  .prioritet__container__content__right {
    max-width: calc(44.1% - 70px);
  }

  .prioritet__container__content__right__title {
    font-size: 20px;
    line-height: 25px;
  }

  .prioritet__container__content__right__list__item,
.prioritet__container__content__right__text {
    font-size: 14px;
  }

  .prioritet__container__content__right__text {
    max-width: 200px;
  }

  .textLine__container__left__title {
    font-size: 20px;
    line-height: 25px;
  }

  .header__container__left__img {
    width: 125.53px;
  }
}
@media screen and (max-width: 830px) {
  .header__container__item__list__item__link::before {
    display: none;
  }

  .header__container__item__list__item span a {
    color: var(--white);
    text-decoration: none;
  }

  .header__container__item__list__item.__active .header__container__item__list__item__link,
.header__container__item__list__item.__active .header__container__item__list__item__link a {
    color: #ffffff;
  }

  .header__container__item__list__item.__active .header__container__item__list__item__link,
.header__container__item__list__item.__active .header__container__item__list__item__link a:link {
    color: var(--white);
  }

  .header__container__item__list__item.__active .header__container__item__list__item__link,
.header__container__item__list__item.__active .header__container__item__list__item__link a:visited {
    color: var(--white);
  }

  .header__container__item__list__item.__active .header__container__item__list__item__link {
    color: var(--white);
    background-color: var(--greenDark);
  }

  .header__container__items {
    padding: 0;
    border: none;
  }

  .header__container__item__nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 53px;
    right: 0;
    width: 220px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }

  .header__container__item__nav.__show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header__container__item__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__container__item__list__item {
    width: 100%;
  }

  .header__container__item__list__item__link {
    display: inline-block;
    text-align: left;
    width: 100%;
    background-color: var(--greenLight);
    padding: 15px 20px;
    color: var(--white);
  }

  .header__container__item__list__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header__container__item__list__item:nth-child(2) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header__container__item__list__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header__container__item__list__item:nth-child(4) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header__container__item__list__item__elements {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 100%;
    width: 100%;
    padding-top: 0;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -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-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    cursor: pointer;
    z-index: 2;
  }

  .header__container__item__list__item__elements.__show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header__container__item__list__item__element {
    width: 100%;
  }

  .header__container__item__list__item__element__link {
    font-weight: 500;
    padding: 20px 15px 20px 38px;
    background-color: #555;
    position: relative;
  }

  .header__container__item__list__item__element__link::before {
    position: absolute;
    content: "";
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 8px;
    height: 8px;
    background-image: url(../images/liststyle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }

  .__firstWord {
    display: none;
  }

  .header__container__item__burger {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .__textDesctop {
    display: none;
  }

  .header__container {
    padding: 25px 30px 20px 73px;
  }

  .header__container__logo {
    width: 170px;
  }

  .header__container__left__img {
    width: 97.44px;
  }

  .__textMobile {
    display: inline-block;
  }

  .footer__container__iconsColumn__info {
    display: inline;
    text-align: end;
  }

  .footer__container__list {
    display: none;
  }

  .footer__container {
    padding: 21px 30px;
  }

  .footer__container__logotypeColumn {
    max-width: 156px;
  }

  .footer__container__logotypeColumn__img {
    width: 103px;
  }

  .footer__container__logotypeColumn__def {
    font-weight: 300;
    font-size: 6px;
    line-height: 8px;
    letter-spacing: 0.02em;
    margin-left: auto;
    width: 34px;
  }

  .footer__container__logotypeColumn__text {
    font-weight: 400;
    font-size: 8px;
    line-height: 140%;
    opacity: 0.4;
    margin-top: 15px;
  }

  .footer__container__iconsColumn {
    width: 117px;
    margin: 0 0 0 10px;
  }

  .footer__container__iconsColumn__item {
    width: 29.5px;
    height: 29.5px;
  }

  .footer__container__iconsColumn__item.__vk .img-con {
    width: 19.14px;
    margin-right: 1px;
  }

  .footer__container__iconsColumn__item.__class .img-con {
    width: 9.78px;
  }

  .footer__container__iconsColumn__item.__tg .img-con {
    margin-top: 2.5px;
    margin-right: 2.5px;
    width: 14.67px;
  }

  .footer__container__iconsColumn__info {
    margin-top: 12px;
    font-weight: 400;
    font-size: 9.24444px;
    line-height: 140%;
    letter-spacing: 0.015em;
    opacity: 0.4;
  }

  .footer__container__iconsColumn__info__text {
    text-align: right;
  }

  .mainSwiper__slide {
    padding-bottom: 54vw;
  }

  .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 97.45px 0, 77% 100%, 0 100%);
    clip-path: polygon(0 0, 97.45px 0, 77% 100%, 0 100%);
  }

  .mainSwiper__slide__content {
    padding: 29px 0 26px 0;
    width: 308px;
  }

  .mainSwiper__slide__content__arrow {
    width: 34px;
    margin-bottom: 35px;
  }

  .mainSwiper__slide__content__status {
    font-size: 16px;
    line-height: 125%;
    min-height: 20px;
    padding-right: 100px;
  }

  .mainSwiper__slide__content__title {
    font-size: 16px;
    line-height: 125%;
    padding-right: 100px;
  }

  .mainSwiper__slide__content__list {
    padding-top: 5px;
  }

  .mainSwiper__slide__content__list__item {
    font-size: 11px;
    line-height: 120%;
    margin-bottom: 5px;
  }

  .mainSwiper__slide__content__list__item.__list-item::before {
    top: 2px;
  }

  .values__container {
    padding: 30px 0 0 0;
    position: relative;
  }

  .values.__white .values__container {
    padding: 30px 0 0 0;
  }

  .values.__white .values__container__info,
.values__container__info {
    width: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    padding: 0 30px;
  }

  .values__container__img {
    width: 80%;
  }

  .values__container__info__item {
    position: static;
    margin-left: auto;
  }

  .values__container__info__item__message {
    left: 0;
    top: 35px;
    width: 135px;
    height: 80px;
    padding: 0;
    background-color: transparent;
  }

  .values.__white .values__container__info__item__message {
    left: 0;
  }

  .values__container__info__item__message__text {
    font-size: 13.5px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--white);
  }

  .values__container__info__item__message::before {
    display: none;
  }

  .values__container__info__items {
    width: 100%;
    position: relative;
  }

  .values__container__info__title {
    position: absolute;
    top: 0;
    left: 30px;
    color: var(--greenLight);
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
  }

  .values.__white {
    margin-top: 35px;
    background-color: #555;
  }

  .values.__white .values__container__info__title {
    color: var(--greenLight);
  }

  .values.__white .img-con {
    display: block;
  }

  .values.__white picture {
    display: none;
  }

  .individ {
    margin: 60px 0;
  }

  .individ__container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -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;
  }

  .individ__container__client {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }

  .individ__container__our {
    width: 100%;
  }

  .individ__container__client__title,
.individ__container__our__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
    margin-bottom: 20px;
  }

  .individ__container__client__list__item,
.individ__container__our__text p,
.individ__container__our__text__cursiv p {
    font-size: 14px;
  }

  .users {
    margin-bottom: 40px;
  }

  .users__container__title {
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
  }

  .users__container__items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .users__container__item.__one {
    width: 43.09%;
    margin-left: 8.22%;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .users__container__item.__two {
    width: 47.69%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .users__container__item.__three {
    width: 31.57%;
    margin-left: 8.22%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .users__container__item.__foor {
    width: 47.69%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .message__container__form {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .message__container__form__title {
    font-size: 17px;
    line-height: 110%;
    color: #555;
    margin-bottom: 10px;
  }

  .message__container__form__items {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .message__container__form__item {
    width: calc(50% - 5px);
    height: 35px;
    border-radius: 4px;
    background: var(--white);
    margin-top: 10px;
  }

  .message__container__form__item__line {
    display: none;
  }

  .input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.5);
  }

  .input::-moz-placeholder,
.textarea::-moz-placeholder {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.5);
  }

  .input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.5);
  }

  .input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.5);
  }

  .input::placeholder,
.textarea::placeholder {
    font-style: italic;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
    color: rgba(0, 0, 0, 0.5);
  }

  .message__container__form__textaria {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
    height: 80px;
    min-height: 0;
  }

  .input,
.textarea {
    padding: 12px;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.03em;
  }

  .message__container__form__footer__info {
    width: calc(100% - 161px);
    display: none;
  }

  .message__container__form__footer__info.__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .job__container__content__btn {
    width: 144px;
    height: 40px;
    margin-right: 20px;
  }

  .message__container__form__footer__btn {
    width: 144px;
    height: 40px;
  }

  .message__container__form__footer__info__text {
    font-size: 13.5px;
    line-height: 110%;
    color: #555;
    opacity: 0.5;
  }

  .job__container__content__text {
    width: calc(100% - 166px);
    font-size: 13.5px;
    line-height: 120%;
  }

  .popupShema .popup__content {
    max-width: 303px;
    border-radius: 7px;
  }

  .popup__content__top {
    padding: 35px 25px 15px 25px;
  }

  .popup__content__top__title {
    font-size: 14px;
    line-height: 125%;
    margin-bottom: 10px;
  }

  .popup__content__top__text {
    font-weight: 500;
    font-size: 10px;
    line-height: 152.5%;
    text-align: center;
    letter-spacing: 0.015em;
  }

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

  .popup__content__center__img.__desk {
    display: none;
  }

  .popup__content__center__img.__mobile {
    display: block;
  }

  .popup__content__remove {
    width: 15px;
    height: 15px;
    top: 15px;
    right: 15px;
  }

  .popup__content__remove__line {
    height: 2px;
    opacity: 0.4;
  }

  .popupPrice .popup__content {
    padding: 35px 35px 40px 35px;
  }

  .popupPrice .popup__content__remove {
    top: 35px;
    right: 35px;
  }

  .about__container__main__img {
    min-width: 34px;
    width: 34px;
  }

  .about__container__main {
    margin-top: 32px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about__container__main__title {
    font-size: 17px;
    line-height: 125%;
    margin-top: 22px;
  }

  .about__container__mission__content {
    padding: 40px 20px;
  }

  .about__back {
    padding: 0;
    height: 80%;
  }

  .about__back picture {
    display: none;
  }

  .about__back picture:last-child {
    display: block;
    -o-object-position: center;
    object-position: center;
  }

  .control__content {
    padding-bottom: 65%;
  }

  .control__flag {
    width: 217px;
    padding: 18px 15px 18px 48px;
    background-color: rgba(144, 195, 40, 0.8);
    -webkit-clip-path: polygon(40px 0, 100% 0, 100% 100%, 40px 100%, 0 50%);
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 40px 100%, 0 50%);
    top: 20px;
    right: 0;
  }

  .control__flag__text {
    font-weight: 600;
    font-size: 11.5px;
    line-height: 133.5%;
    text-align: right;
    letter-spacing: 0.03em;
  }

  .text__item.__silver:nth-child(1) {
    background-color: #f4f4f4;
    padding: 40px 0 35px 0;
    margin-bottom: 40px;
  }

  .director {
    margin: 50px 0 60px 0;
  }

  .director__container__info__img {
    width: 170px;
    height: 183px;
  }

  .director__container__info__text {
    width: calc(100% - 170px);
  }

  .prioritet__container__content {
    padding: 20px 0 20px 30px;
  }

  .prioritet__container__content__left {
    width: 34px;
    margin-right: 20px;
  }

  .prioritet__container__content__right {
    padding-top: 0;
    max-width: 44.1%;
  }

  .prioritet__container__content__right__title {
    font-size: 16px;
    line-height: 125%;
  }

  .prioritet__container__content__right__list__item,
.prioritet__container__content__right__text {
    font-size: 11px;
  }

  .prioritet__container__content__right__text {
    max-width: 160px;
  }

  .textLine__container__left__title {
    font-size: 17px;
    line-height: 125%;
    text-align: center;
  }

  .textLine {
    background-color: transparent;
    padding: 0 30px;
    margin: 40px 0;
  }

  .textLine__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--greenLight);
    padding: 30px 40px 40px 40px;
  }

  .textLine__container__right {
    margin-top: 20px;
    padding: 0;
    width: 100%;
    clip-path: polygon(0% 0, 100vw 0, 100vw 100%, 0% 100%, 0 50%);
  }

  .textLine__container__left {
    width: 100%;
    padding: 0;
  }

  .textLine.__small .textLine__container__left,
.textLine.__small .textLine__container__right {
    width: 100%;
  }

  .textLine__container__right::before {
    display: none;
  }

  .textLine__container.__en .textLine__container__left,
.textLine__container.__en .textLine__container__right {
    width: 100%;
  }

  .cardspoints__container__item {
    margin-top: 30px;
  }

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

  .cardspoints__container {
    padding: 0 30px;
  }

  .ProectMessage {
    margin-top: 60px;
  }

  .ProectMessage__container {
    padding: 0;
  }

  .ProectMessage__container__top {
    padding: 45px;
    border-radius: 0;
  }

  .ProectMessage__container__bottom {
    padding: 20px 30px 0 120px;
  }

  .ProectMessage__container__bottom::before {
    left: 30px;
    height: calc(50% + 5px);
  }

  .axis__container {
    padding: 0 30px;
  }

  .axis__table__row__item {
    font-size: 12px;
  }

  .axis__table__row:first-child .axis__table__row__item,
.axis__table__row__item:first-child {
    font-size: 10px;
  }

  .axis {
    margin: 25px 0;
  }

  .textCursiv__container {
    padding: 0 30px;
  }

  .textCursiv {
    margin-top: 0;
    margin-bottom: 90px;
  }

  .tabsSlider__slide__text {
    font-size: 16px;
    line-height: 19px;
  }

  .tabsSlider__slide {
    padding: 5px 15px;
  }

  .tabsSlider__btn.__btn-next:before {
    width: 15px;
    left: -15px;
  }

  .tabsSlider__slide__line {
    opacity: 0.2;
    height: 22px;
  }

  .productTable {
    margin: 50px 0 70px 0;
  }

  .docs__container__item {
    padding: 0;
    background-color: transparent;
  }

  .docs__container__item__btn {
    height: 40px;
    font-size: 14px;
    line-height: 16px;
  }

  .docs {
    margin-bottom: 70px;
  }

  .adaptiv__container__content,
.adaptiv__container__text {
    padding-left: 0;
    padding-right: 0;
  }

  .adaptiv {
    margin: 45px 0 65px 0;
  }

  .paint__container__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 75px;
  }

  .paint__container__item {
    width: 100%;
    border-radius: 7px;
  }

  .paint__container__item__left {
    width: 34.44%;
  }

  .paint__container__item__right {
    width: 65.56%;
  }

  .paint__container__title__back {
    display: none;
  }

  .paint__container__title__text {
    width: 100%;
    text-align: left;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
  }

  .paint {
    margin-bottom: 70px;
  }

  .jobOpen {
    margin: 30px 0 40px 0;
  }

  .jobOpen__container__items {
    padding: 0;
  }

  .jobOpen__container__item__right__title {
    font-size: 15px;
    line-height: 127.4%;
  }

  .jobOpen__container__item__right__text {
    font-size: 11.5px;
    line-height: 150%;
  }

  .jobOpen__container__title {
    font-size: 14px;
    margin-top: 40px;
  }

  .jobOpen__container__message__text {
    font-size: 14px;
  }

  .contact {
    margin: 40px 0 30px 0;
  }

  .contact__container__text__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
    margin-bottom: 25px;
  }

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

  .contact__container__content__left {
    width: 100%;
  }

  .contact__container__content__right {
    padding-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
  }

  .contact__container__content__right__item {
    width: calc(50% - 20px);
  }

  .product {
    padding: 70px 0 80px 0;
  }

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

  .product__container__top__title {
    width: 100%;
    padding-left: 50px;
  }

  .product__container__top__arrow {
    width: 34px;
  }

  .product__container__top__series__text,
.product__container__top__title {
    font-size: 17.5px;
    line-height: 120%;
  }

  .product__container__center__right__text {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .product__container__center__right__buttons {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .product__container__center__right,
.product__container__top__series {
    padding-left: 0;
    width: 100%;
    margin-top: 25px;
  }

  .product__container__top__series {
    margin-top: 30px;
  }

  .product__container__center__left {
    width: 100%;
  }

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

  .product.__big:before,
.product.__middle:before,
.product:before {
    height: 80vw;
  }

  .product__container__center__right__remove {
    margin-left: auto;
  }

  .product__container__bottom {
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product__container__center__right.__border .product__container__center__right__text:last-child {
    border-bottom: none;
  }

  .product__container__bottom__item {
    width: 100%;
  }

  .printMain .about__container__main {
    padding: 60px 30px;
  }

  .printMain .paint__container {
    padding: 0;
  }

  .printList__container__item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-left: 54px;
  }

  .printList__container__item__body__left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }

  .printList__container__item.__big .printList__container__item__body__right,
.printList__container__item__body__right {
    width: 100%;
    padding-left: 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .printList__container__item.__big .printList__container__item__body__midle,
.printList__container__item__body__midle {
    margin-top: 10px;
    padding: 0;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 768px) {
  .header__container__item__list__item:hover .header__container__item__list__item__link {
    color: var(--white);
    background-color: var(--greenDark);
  }

  .header__container__item__list__item__element__link:hover {
    font-weight: 500;
    color: #828282;
    background-color: #232323;
  }

  .header__container__item__list__item__element__link:hover::before {
    opacity: 0.5;
  }
}
@media screen and (max-width: 620px) {
  .paint__container__items {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .prioritetMobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .prioritet {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .mainSwiper__slide {
    padding-bottom: 74vw;
  }

  .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 97.45px 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 97.45px 0, 100% 100%, 0 100%);
  }

  .mainSwiper__slide__img::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background-color: var(--greenLight);
    z-index: inherit;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);
  }
}
@media screen and (max-width: 560px) {
  .cards__container__item__list {
    display: none;
  }

  .cards__container__item__img {
    padding-bottom: 56.29%;
  }
}
@media screen and (max-width: 475px) {
  .__btn {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.015em;
    border-radius: 3px;
  }

  .header__container {
    padding: 19px 30px 19px 56px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .header__container__left__img {
    max-width: 76px;
  }

  .header__container__left__img {
    width: 76px;
  }

  .header__container__left__img .img-con {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
  }

  .header__container__logo {
    width: 160px;
  }

  .header__container__items {
    margin-left: auto;
  }

  .header__container__item__language {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 5px;
  }

  .header__container__item__language__En,
.header__container__item__language__Ru {
    width: 19px;
    height: auto;
  }

  .header__container__item__language__line {
    display: none;
  }

  .header__container__item__nav {
    top: 58px;
    width: 185px;
  }

  .header__container__item__list__item__link {
    padding: 10px 25px;
    font-size: 12px;
    line-height: 15px;
  }

  .header__container__item__list__item__element__link {
    padding: 10px 16px 10px 38px;
    font-size: 11.5px;
    line-height: 17px;
  }

  .header__container__item__list__item__element__link::before {
    left: 25px;
    width: 7px;
    height: 7px;
  }

  .mainSwiper__slide__content {
    width: 258px;
  }

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

  .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 76px 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 76px 0, 100% 100%, 0 100%);
  }

  .mainSwiper__slide__content__arrow {
    width: 28px;
    margin-bottom: auto;
  }

  .mainSwiper__slide__content__status {
    font-size: 13.5px;
    line-height: 125%;
    min-height: 16px;
    padding-right: 108px;
  }

  .mainSwiper__slide__content__title {
    font-size: 13.5px;
    line-height: 125%;
    padding-right: 108px;
  }

  .mainSwiper__slide__content__list {
    padding-top: 5px;
    padding-right: 40px;
  }

  .mainSwiper__slide__content__list__item {
    font-size: 11px;
    line-height: 120%;
    margin-bottom: 5px;
  }

  .cards__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cards__container__item {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 0;
    width: calc(50% - 5px);
    position: relative;
    margin-top: 12px;
  }

  .cards__container__item__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    background-color: var(--greenLight);
    padding: 0;
  }

  .cards__container__item__info__title {
    font-weight: 600;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0.025em;
    text-align: center;
    pointer-events: all;
    padding: 8px 0;
  }

  .cards__container__item__img {
    padding-bottom: 84.29%;
    margin-bottom: 0;
  }

  .cards__container__item__info__btn,
.cards__container__item__info__text {
    display: none;
  }

  .values__container__img {
    width: 100%;
  }

  .values__container__info__title {
    margin: 0;
    width: 123px;
    text-align: left;
  }

  .values__container__info__item__message {
    height: auto;
    width: 91px;
    top: 55px;
  }

  .values__container__info__item__message__text {
    font-size: 9.5px;
  }

  .individ {
    margin: 30px 0 40px 0;
  }

  .individ__container__client {
    width: 100%;
    padding-left: 44px;
    margin-top: 30px;
    position: relative;
  }

  .individ__container__client__title,
.individ__container__our__title {
    margin-bottom: 10px;
  }

  .individ__container__client__list__item,
.individ__container__our__text p,
.individ__container__our__text__cursiv p {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
  }

  .individ__container__our__text,
.individ__container__our__text__cursiv {
    display: none;
  }

  .individ__container__our__text.__mobile,
.individ__container__our__text__cursiv.__mobile {
    display: inline-block;
  }

  .individ__container__client__btn.__btn {
    position: absolute;
    top: 0;
    left: -30px;
    width: 53px;
    height: 100%;
    margin: 0;
    background: -webkit-gradient(linear, left top, right top, from(#7cb900), color-stop(79.48%, #92cc1d));
    background: -o-linear-gradient(left, #7cb900 0, #92cc1d 79.48%);
    background: linear-gradient(90deg, #7cb900 0, #92cc1d 79.48%);
    -webkit-box-shadow: 1px 1px 1px rgba(105, 156, 0, 0.8);
    box-shadow: 1px 1px 1px rgba(105, 156, 0, 0.8);
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.015em;
    padding: 0;
    border-radius: 0 7px 7px 0;
  }

  .individ__container__client__btn__text {
    display: inline-block;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    min-width: 180px;
    white-space: nowrap;
  }

  .messageNotJob__container .message__container__form {
    border-radius: 0;
  }

  .messageNotJob::before {
    display: none;
  }

  .messageAndJob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .job__container,
.messageNotJob__container,
.message__container {
    padding: 0;
  }

  .job__container__content {
    border-radius: 0;
    padding: 30px 30px 25px 30px;
  }

  .job__container__content__btn,
.message__container__form__footer__btn {
    width: 102px;
    height: 34px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.015em;
    -webkit-box-shadow: 0 0.850422px 1.27563px rgba(0, 0, 0, 0.45);
    box-shadow: 0 0.850422px 1.27563px rgba(0, 0, 0, 0.45);
    border-radius: 3px;
  }

  .job__container__content__text {
    width: calc(100% - 122px);
    font-size: 12px;
  }

  .message__container__form {
    border-radius: 0;
    padding: 35px 30px;
  }

  .message__container__form__item,
.message__container__form__textaria {
    border-radius: 0;
  }

  .message__container__form__footer {
    margin-top: 10px;
  }

  .message__container__form__footer__info {
    width: calc(100% - 124px);
  }

  .message__container__form__footer__info__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
    width: 10px;
  }

  .message__container__form__footer__info__text {
    font-size: 9px;
    line-height: 120%;
  }

  .popupPrice .popup__content {
    padding: 25px 25px 30px 25px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 7px;
    max-width: 302px;
  }

  .popupPrice__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 125%;
    letter-spacing: 0.025em;
    margin-bottom: 15px;
  }

  .popupPrice__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
  }

  .popupPrice__form {
    margin-top: 10px;
  }

  .popupPrice__form__input {
    height: 33px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 4px;
    margin-top: 10px;
  }

  .popupPrice__form__messsage__footer {
    margin-top: 15px;
  }

  .popupPrice__form__messsage {
    max-width: 117px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: right;
    font-size: 10px;
    line-height: 135%;
    margin-bottom: 10px;
  }

  .popupPrice__form__button {
    margin-top: 0;
    width: 132px;
    height: 35px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.015em;
  }

  .popupPrice .popup__content__remove {
    top: 28px;
    right: 24px;
  }

  .about__container__main__img {
    min-width: 28px;
    width: 28px;
  }

  .about__back .img-ab:last-child {
    display: block;
    -o-object-position: center bottom;
    object-position: center bottom;
  }

  .about__container__main__title {
    margin-left: 24px;
    margin-top: 16px;
    margin-right: 0;
  }

  .about__container__main__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    margin-top: 0;
    padding-left: 53px;
  }

  .about__container__mission {
    margin-top: 30px;
  }

  .about__container__mission__content {
    padding: 32px 26px 23px 26px;
    border-radius: 7px;
  }

  .about__container__mission__content__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
    margin-bottom: 15px;
  }

  .about__container__mission__content__text {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .about {
    margin-bottom: 18px;
  }

  .control.__jobs .mainSwiper__slide__content__list {
    padding-right: 0;
  }

  .control.__product .control__content,
.control__content {
    padding-bottom: 75%;
  }

  .control__flag {
    top: 0;
    bottom: auto;
  }

  .text__item {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.025em;
  }

  .text__item.__silver:nth-child(1) {
    padding: 0;
    background-color: transparent;
    margin-bottom: 20px;
  }

  .text__item.__silver:nth-child(3) {
    background-color: #f4f4f4;
    padding: 30px 0 10px 0;
    margin-bottom: 20px;
  }

  .text {
    margin: 30px 0 10px 0;
  }

  .director {
    margin: 10px 0 50px 0;
  }

  .director__container__info__img {
    width: 131px;
    height: 142px;
  }

  .director__container__text {
    margin-top: 20px;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .director__container__info {
    margin-top: 30px;
  }

  .director__container__info__text {
    width: calc(100% - 131px);
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    padding-left: 25px;
  }

  .director__container__info__text__paragraph {
    margin-bottom: 18px;
  }

  .textLine {
    background-color: transparent;
    padding: 0;
    margin: 40px 0;
    margin-top: 0;
  }

  .textLine.__small {
    margin-bottom: 25px;
  }

  .textLine__container__right__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .cardspoints__container__item__left__pictire__img {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }

  .cardspoints__container__item__left__pictire__number {
    right: auto;
    left: 0;
  }

  .cardspoints__container__item__info {
    margin-top: 25px;
  }

  .cardspoints__container__item__info__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0.025em;
    padding-bottom: 15px;
  }

  .cardspoints__container__item__info__link,
.cardspoints__container__item__info__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.01em;
  }

  .cardspoints__container__item__left__info__btn {
    width: 104px;
    height: 34px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.015em;
  }

  .cardspoints__container__item__left__info__text {
    width: calc(100% - 104px);
    font-size: 10px;
    line-height: 120%;
    letter-spacing: 0.005em;
    text-align: right;
    padding-right: 13px;
  }

  .cardspoints__container__item.__infoBtn {
    padding-bottom: 70px;
  }

  .ProectMessage {
    margin-top: 35px;
  }

  .ProectMessage__container__top {
    padding: 25px 30px;
  }

  .ProectMessage__container__bottom {
    padding: 20px 30px 0 70px;
  }

  .ProectMessage__container__bottom::before {
    width: 50px;
    left: 30px;
    height: calc(50% + 5px);
  }

  .ProectMessage__container__top__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.005em;
    text-align: left;
  }

  .ProectMessage__container__bottom__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
    text-align: right;
  }

  .axis__table__row__item {
    font-size: 12px;
  }

  .axis__table__row:first-child .axis__table__row__item,
.axis__table__row__item:first-child {
    font-weight: 600;
    font-size: 7px;
  }

  .axis__table__row__item {
    font-size: 8px;
  }

  .axis__table__row__item {
    min-height: 20px;
  }

  .axis__table__row:first-child .axis__table__row__item {
    min-height: 45px;
  }

  .axis__improvement__title {
    font-weight: 700;
    font-size: 18.4889px;
    line-height: 22px;
    letter-spacing: 0.025em;
  }

  .axis__improvement__img {
    padding: 20px 25px;
  }

  .axis__container__info__text,
.axis__container__right__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
  }

  .axis__container__info__text {
    margin-top: 10px;
  }

  .textCursiv__container__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
  }

  .textCursiv__container__text-cursiv {
    max-width: 300px;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
    margin-top: 30px;
  }

  .textCursiv {
    margin-bottom: 60px;
  }

  .tabsSlider__slide__text {
    font-size: 14px;
    line-height: 16px;
  }

  .tabsSlider__slide {
    padding: 5px 12px;
  }

  .tabsSlider__btn.__btn-next:before {
    width: 12px;
    left: -12px;
  }

  .tabs__container {
    padding: 6px 30px;
  }

  .productTable {
    margin: 25px 0 30px 0;
  }

  .productTable__container__right__list {
    max-width: 290px;
  }

  .productTable__container__right__list__item,
.productTable__container__right__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 152.5%;
    letter-spacing: 0.02em;
  }

  .productTable__container__right__list__item.__list-item::before {
    top: 4px;
  }

  .productTable__container__left {
    margin-top: 25px;
  }

  .productTable__container__left__row__item {
    font-weight: 500;
    font-size: 9.83607px;
    line-height: 116%;
    letter-spacing: 0.025em;
  }

  .docs__container__item {
    width: calc(33% - 6px);
  }

  .docs__container__item__btn {
    height: 35px;
    font-weight: 600;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.015em;
    margin-top: 10px;
  }

  .docs {
    margin-bottom: 40px;
  }

  .adaptiv {
    margin: 25px 0 35px 0;
  }

  .adaptiv__container__text:first-child {
    padding-bottom: 25px;
  }

  .adaptiv__container__content__right {
    margin-top: 30px;
  }

  .adaptiv__container__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: left;
    padding-top: 30px;
  }

  .adaptiv__container__content__right__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
    padding-bottom: 20px;
  }

  .adaptiv__container__content__right__list__item {
    font-weight: 500;
    font-size: 12px;
    line-height: 144.1%;
    letter-spacing: 0.015em;
  }

  .adaptiv__container__content__right__list__item.__list-item::before {
    top: 4px;
  }

  .adaptiv__container__content__left__img.__double picture,
.mainSwiper__slide__img.__double picture {
    display: none;
  }

  .adaptiv__container__content__left__img.__double picture:last-child,
.mainSwiper__slide__img.__double picture:last-child {
    display: block;
  }

  .paint__container__items {
    padding: 0 10px;
  }

  .paint__container__item {
    margin-top: 10px;
  }

  .paint__container__item__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 127.4%;
    letter-spacing: 0.015em;
  }

  .paint__container__item__right__text {
    font-weight: 500;
    font-size: 11.5px;
    line-height: 152.5%;
    letter-spacing: 0.015em;
  }

  .paint__container__item__right__button {
    max-width: 104px;
    height: 34px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.015em;
  }

  .paint {
    margin-bottom: 25px;
  }

  .jobOpen {
    margin: 0 0 40px 0;
  }

  .jobOpen__container {
    padding: 0 10px;
  }

  .jobOpen__container__item {
    margin-top: 10px;
    padding: 25px 20px;
  }

  .jobOpen__container__item__left {
    width: 41.6%;
  }

  .jobOpen__container__item__right {
    width: 58.4%;
  }

  .jobOpen__container__item__left__img {
    padding-bottom: 107%;
  }

  .jobOpen__container__item__right__title {
    font-size: 14px;
    line-height: 127.4%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }

  .jobOpen__container__item__right__btn {
    max-width: 104px;
    height: 34px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.015em;
    text-align: center;
    font-weight: 600;
  }

  .jobOpen__container__item__right__text {
    font-weight: 500;
    font-size: 8.95804px;
    line-height: 150%;
    letter-spacing: 0.025em;
  }

  .jobOpen__container__title {
    margin-top: 30px;
    padding: 0 20px;
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    letter-spacing: 0.025em;
    text-align: left;
  }

  .jobOpen__container__message__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    padding: 0 20px;
  }

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

  .contact__container__content__right__item {
    width: calc(50% - 5px);
  }

  .contact__container__content__left {
    padding-bottom: 65%;
  }

  .contact__container__content__right__item__title {
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .contact__container__content__right__item__text {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
  }

  .contact__container__content__right__btn {
    display: none;
  }

  .product.__big:before,
.product.__middle:before,
.product:before {
    height: 90vw;
  }

  .product {
    padding: 45px 0;
  }

  .product__container__top__arrow {
    width: 29px;
  }

  .product__container__top__series__text,
.product__container__top__title {
    padding-left: 49px;
  }

  .product__container__top__series__text {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .product__container__top__series {
    margin: 15px 0 25px 0;
  }

  .product__container__center {
    margin-top: 0;
  }

  .product__container__center__right__text {
    font-size: 12px;
    line-height: 150%;
  }

  .product__container__center__right__buttons {
    margin-bottom: 30px;
  }

  .product__container__center__right__button {
    margin-top: 20px;
    width: 124.7px;
    height: 34.05px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.015em;
  }

  .product__container__center__right__button.__btn-black {
    width: 156px;
    height: 35px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.015em;
    margin-right: 0;
  }

  .product__container__center__right__remove__text {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.015em;
  }

  .product__container__center__right__remove__img {
    width: 28px;
    margin-right: 17px;
  }

  .printMain .about__container__main {
    padding: 30px;
  }

  .printMain .about__container__main__text {
    margin-top: 20px;
  }

  .printMain .about__container__main__title {
    min-width: 0;
  }

  .printList__container {
    padding: 30px 30px 40px 30px;
  }

  .printList__container__item__header__text {
    width: calc(100% - 42px);
    margin-left: 30px;
    font-size: 12.3149px;
    line-height: 130%;
    letter-spacing: 0.02em;
    font-weight: 600;
  }

  .printList__container__item__body__left {
    margin-top: 25px;
  }

  .printList__container__item__body__item {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.005em;
  }

  .printList__container__item__body__item {
    margin-bottom: 0;
  }

  .printList__container__item.__big .printList__container__item__body__right,
.printList__container__item__body__right {
    margin-top: 10px;
  }

  .printList__container__item__body__right__title {
    font-size: 13.4613px;
    line-height: 130%;
    letter-spacing: 0.04em;
  }

  .printList__container__item__body__right__content {
    padding: 15px;
  }

  .printList__container__item__body__right__content__text {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
  }

  .printList__container__item__body__right .printList__container__item__body__item {
    margin-top: 15px;
  }
}
@media screen and (max-width: 340px) {
  .footer__container {
    -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;
  }

  .footer__container__iconsColumn {
    margin-left: 0;
    margin-top: 25px;
  }

  .footer__container__iconsColumn__info {
    text-align: center;
  }

  .mainSwiper__slide {
    padding: 0;
  }

  .mainSwiper__slide__content {
    position: relative;
    width: 100%;
    left: 0;
    padding-left: 30px;
  }

  .mainSwiper__slide__back {
    -webkit-clip-path: none;
    clip-path: none;
  }

  .mainSwiper__slide__content__arrow {
    padding-bottom: 15px;
  }

  .mainSwiper__slide__content__list {
    margin-top: 15px;
  }

  .cards__container__item {
    width: 100%;
  }

  .values.__white .values__container,
.values__container {
    padding: 80px 0 0 0;
  }

  .control.__product .control__content,
.control__content {
    padding-bottom: 0;
  }

  .control.__jobs .mainSwiper__slide__content__list {
    padding-right: 40px;
  }

  .director__container__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .director__container__info__text {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
  }

  .docs__container__item {
    width: 100%;
    margin-bottom: 20px;
  }

  .docs__container__item:last-child {
    margin-bottom: 0;
  }

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

  .paint__container__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px 25px;
  }

  .paint__container__item__left,
.paint__container__item__right {
    width: 100%;
    padding-left: 0;
  }

  .paint__container__item__right {
    margin-top: 15px;
  }

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

  .jobOpen__container__item__left__img {
    padding-bottom: 70%;
  }

  .jobOpen__container__item__left {
    width: 100%;
  }

  .jobOpen__container__item__right {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }

  .printList__container__item__body {
    padding-left: 0;
  }
}
@media screen and (max-width: 320px) {
  .job__container__content,
.message__container__form__footer,
.message__container__form__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .message__container__form__item {
    width: 100%;
  }

  .message__container__form__footer__info {
    width: 100%;
  }

  .job__container__content__text {
    width: 100%;
    margin-top: 20px;
  }

  .message__container__form__footer__btn {
    margin-left: 0;
    margin-top: 20px;
  }

  .axis__container {
    padding: 0;
  }

  .axis__improvement__img,
.axis__improvement__title {
    border-radius: 0;
  }

  .axis__container__info__text,
.axis__container__right__text {
    padding: 0 30px;
  }

  .productTable__container {
    padding: 0;
  }

  .productTable__container__right {
    padding: 0 30px;
  }
}
@media screen and (min-width: 476px) and (max-width: 1200px) {
  .control.__product .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 125px 0, 50vw 72%, 435px 100%, 0 100%);
    clip-path: polygon(0 0, 125px 0, 50vw 72%, 435px 100%, 0 100%);
  }

  .control__flag {
    bottom: auto;
    top: 50%;
  }
}
@media screen and (min-width: 476px) and (max-width: 960px) {
  .control.__product .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 125px 0, 71vw 100%, 0 100%);
    clip-path: polygon(0 0, 125px 0, 71vw 100%, 0 100%);
  }

  .control.__product .mainSwiper__slide__content__list {
    padding-right: 17%;
  }
}
@media screen and (min-width: 476px) and (max-width: 768px) {
  .control.__product .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 97.45px 0, 71vw 100%, 0 100%);
    clip-path: polygon(0 0, 97.45px 0, 71vw 100%, 0 100%);
  }

  .control.__product .control__content {
    padding-bottom: 55%;
  }

  .control.__product .mainSwiper__slide__back {
    -webkit-clip-path: polygon(0 0, 97.45px 0, 81% 100%, 0 100%);
    clip-path: polygon(0 0, 97.45px 0, 81% 100%, 0 100%);
  }

  .control.__product .mainSwiper__slide__back {
    background: #303030;
    opacity: 0.8;
    mix-blend-mode: multiply;
  }

  .control.__product .mainSwiper__slide__content__list,
.control.__product .mainSwiper__slide__content__title {
    color: var(--white);
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__container__item__list__item:hover .header__container__item__list__item__link {
    color: var(--greenLight);
  }

  .header__container__item__list__item:hover .header__container__item__list__item__link::before {
    opacity: 1;
    visibility: visible;
  }

  .header__container__item__list__item:hover .header__container__item__list__item__elements {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header__container__item__list__item__element__link:hover {
    font-weight: 600;
    background-color: var(--greenDark);
  }

  .footer__container__iconsColumn__item:hover {
    background-color: var(--greenDark);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .__list-item:hover {
    color: var(--greenLight);
  }

  .__list-item:hover::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .__btn:hover {
    background-color: var(--greenDark);
  }

  .cards__container__item__element:hover .cards__container__item__element__img {
    -webkit-filter: grayscale(0);
    filter: none;
  }

  .cards__container__item__element:hover .cards__container__item__element__text {
    color: var(--greenDark);
  }

  .values__container__info__item__text:focus:hover,
.values__container__info__item__text:hover {
    background-color: var(--greenDark);
  }

  .values__container__info__item__text:focus:hover + .values__container__info__item__message,
.values__container__info__item__text:hover + .values__container__info__item__message {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
  }

  .values__container__info__item__text:focus {
    background-color: var(--greenLight);
  }

  .values__container__info__item__text:focus + .values__container__info__item__message {
    pointer-events: none;
    opacity: 0;
    visibility: none;
  }

  .job__container__content__btn:hover {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }

  .cardspoints__container__item__info__link:hover {
    color: var(--greenDark);
  }

  .tabsSlider__slide__text:hover {
    color: var(--greenDark);
  }

  .product__container__center__right__button.__btn-black:hover {
    background-color: var(--greenDark);
  }

  .product__container__center__right__remove:hover .product__container__center__right__remove__img {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  .product__container__center__right__remove:hover .product__container__center__right__remove__text {
    color: var(--greenLight);
  }

  .printList__container__item__header:hover .printList__container__item__header__text::before {
    width: 100%;
  }

  .printList__container__item.__active .printList__container__item__header:hover .printList__container__item__header__text::before {
    width: 0;
  }
}
.webp .printMain {
  background-image: url(../images/print.webp);
}

.fixed {
  position: fixed;
  top: 0px;
  z-index: 6;
}

.values__container__info__item__text.__focus:hover,
.values__container__info__item__text:hover {
  background-color: var(--greenDark);
}

.values__container__info__item__text.__focus:hover + .values__container__info__item__message,
.values__container__info__item__text:hover + .values__container__info__item__message {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.values__container__info__item__text.__focus {
  background-color: var(--greenLight);
}

.values__container__info__item__text.__focus + .values__container__info__item__message {
  pointer-events: none;
  opacity: 0;
  visibility: none;
}

.header__container:after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
}

/* .textLine__container__right {
    clip-path: polygon(0% 0,100vw 0,100vw 100%,0% 100%,0 50%);
} */
@media screen and (max-width: 1060px) {
  .header__container__item__find__input {
    width: 75px;
  }
}
.about__container__main__info {
  width: calc(100% - 59px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 42px;
  margin-bottom: 70px;
}
.about__container__main__info .about__container__main__title {
  margin-left: 0;
  margin-right: 0;
}
.about__container__main__info .about__container__main__text {
  padding-right: 0;
  padding-left: 0;
}

.about--new {
  min-height: 383px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__back {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .about__container__main__info {
    width: calc(100% - 45px);
  }
}
@media screen and (max-width: 920px) {
  .about__container__main__info {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .about__container__main__info {
    width: calc(100% - 34px);
    padding-left: 24px;
    margin-bottom: 20px;
  }

  .about--new {
    min-height: 304px;
  }
}
@media screen and (max-width: 475px) {
  .about__container__main__info {
    width: calc(100% - 28px);
  }
  .about__container__main__info .about__container__main__text {
    margin-top: 15px;
  }
}
.container {
  position: relative;
  width: 100%;
  max-width: var(--maxWidth);
}

.newProducts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.newProducts__container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 80px;
  margin-bottom: 65px;
}

.newProducts__item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 32px;
}

.newProducts__info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.newProducts__date {
  text-align: left;
  opacity: 0.5;
  font-family: Montserrat;
  color: #303030;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.newProducts__new {
  color: #76AE04;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 15px;
}

.newProducts__article {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  grid-auto-flow: row;
  background-color: #F4F4F4;
  border-radius: 7px;
  padding: 32px;
}

.newProducts__left {
  width: 100%;
  max-width: 490px;
  padding-right: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  grid-row: span 2;
  order: 1;
  margin-left: auto;
}

.newProducts__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.61/1;
  margin-bottom: 12px;
}

.newProducts__description {
  width: 100%;
  text-align: left;
  color: rgba(48, 48, 48, 0.5);
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.225px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.newProducts__description span {
  white-space: nowrap;
}
.newProducts__description a {
  display: block;
  width: fit-content;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  color: inherit;
  transition: all 0.2s ease 0s;
}
.newProducts__description a:hover {
  text-decoration: underline;
}

.newProducts__right {
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 20px;
  order: 3;
}

.newProducts__title {
  width: 100%;
  height: fit-content;
  max-width: 520px;
  padding-left: 20px;
  text-align: left;
  color: #303030;
  font-family: Raleway;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.625px;
  margin-bottom: 19px;
  order: 2;
}

.newProducts__text {
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
  color: #303030;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}

.newProducts__text:last-child {
  margin-bottom: 0;
}

.newProducts__acardion {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 0;
  transition: all 0.4s ease 0s;
  min-height: 220px;
  margin-bottom: 10px;
}

.newProducts__hide {
  width: auto;
  border: none;
  outline: none;
  background-color: transparent;
  color: rgba(48, 48, 48, 0.5);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.24px;
  margin-top: auto;
}

@media screen and (max-width: 1200px) {
  .newProducts__container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 920px) {
  .newProducts__right {
    display: contents;
  }

  .newProducts__article {
    display: block;
  }

  .newProducts__title {
    order: 1;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }

  .newProducts__left {
    order: 2;
    float: left;
  }

  .newProducts__left {
    width: 60%;
  }

  .newProducts__acardion {
    min-height: 195px;
    transition: all 0s ease 0s;
  }

  .newProducts__hide {
    margin-top: 12px;
  }

  .newProducts__text {
    width: auto;
    order: 3;
  }

  .newProducts__article {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .newProducts__acardion {
    min-height: 140px;
  }
}
@media screen and (max-width: 475px) {
  .newProducts__item {
    margin-top: 20px;
  }

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

  .newProducts__date {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.4%;
    letter-spacing: 0.28px;
    opacity: 1;
  }

  .newProducts__new {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.4%;
    letter-spacing: 0.28px;
  }

  .newProducts__article {
    padding: 19px;
  }

  .newProducts__title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 127.4%;
    letter-spacing: 0.28px;
  }

  .newProducts__left {
    width: 104px;
    padding: 0;
    margin: 0 20px 20px 0;
  }

  .newProducts__img {
    aspect-ratio: 1/1;
    margin-bottom: 12px;
  }

  .newProducts__description {
    font-size: 8px;
  }

  .newProducts__hide,
.newProducts__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 152.5%;
    letter-spacing: 0.173px;
  }

  .newProducts__hide {
    margin-top: 4px;
  }

  .newProducts__acardion {
    min-height: 108px;
  }

  .newProducts__container {
    padding: 0 10px;
  }
}
.control--product .mainSwiper__slide__content__title {
  margin-top: auto;
}

.control--product .mainSwiper__slide__content__list {
  margin-bottom: auto;
  margin-top: 0;
  padding-top: 25px;
}

@media screen and (min-width: 1201px) {
  .control--product .mainSwiper__slide__content {
    width: 500px;
  }
}
.productDescription {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 20px 0 80px 0;
}

.productDescription__container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 80px;
}

.productDescription__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.productDescription__item {
  width: calc(50% - 10px);
  height: auto;
  margin: 45px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: #F4F4F4;
  border-radius: 7px;
  padding: 21px;
}

.productDescription__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.4547/1;
  margin-bottom: 24px;
}

.productDescription__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.productDescription__title {
  width: calc(100% - 200px);
  text-align: left;
  color: #303030;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 111%;
  letter-spacing: 0.1px;
}

.productDescription__btn {
  width: 184px;
  height: 49px;
  font-size: 18px;
}

.productDescription__text {
  width: 100%;
  text-align: left;
  color: #303030;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
}

.productDescription__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .productDescription__container {
    padding: 0 20px;
  }

  .productDescription__title {
    font-size: 16px;
    width: calc(100% - 170px);
  }

  .productDescription__btn {
    width: 160px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 920px) {
  .productDescription__title {
    font-size: 14px;
    width: calc(100% - 110px);
  }

  .productDescription__btn {
    width: 104px;
    height: 34px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .productDescription__item {
    width: 100%;
    margin: 0;
    margin-top: 14px;
    padding: 20px;
  }

  .productDescription__img {
    margin-bottom: 14px;
  }

  .productDescription__items {
    margin-bottom: 24px;
  }

  .productDescription {
    margin: 0 0 24px 0;
  }
}
@media screen and (max-width: 475px) {
  .productDescription__container {
    padding: 0 10px;
  }

  .productDescription__text {
    color: #303030;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.12px;
    margin-bottom: 16px;
    padding: 0 20px;
  }
}
.productDetails {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productDetails__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  grid-auto-rows: auto;
  padding: 54px 80px 20px 80px;
  gap: 0 20px;
}

.productDetails__hero {
  width: 100%;
  padding-left: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  order: 2;
}
.productDetails__hero::before {
  content: "";
  position: absolute;
  top: -54px;
  left: -10px;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 54px);
  background-color: #D9D9D9;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.productDetails__top {
  width: 100%;
  position: relative;
  margin-top: 16px;
}
.productDetails__top .product__container__top__arrow {
  transform: none;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
}

.productDetails__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 50px;
}

.productDetails__item {
  width: 100%;
  position: relative;
  color: #303030;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.36px;
}
.productDetails__item::before {
  bottom: 0;
  margin: auto 0;
}

.productDetails__title {
  width: 100%;
  text-align: left;
  color: #303030;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding-left: 79px;
}

.productDetails__preview {
  order: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  border-radius: 10px;
}

.productDetails__block:nth-child(3) {
  order: 3;
  padding-left: 30px;
}

.productDetails__left {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  order: 4;
}

.productDetails__right {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 30px;
  order: 5;
}

.productDetails__block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 40px;
}

.productDetails__text {
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
  color: #303030;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.36px;
}

.productDetails__img {
  width: 100%;
  position: relative;
}

.productDetail {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
}
.productDetail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #D9D9D9;
  opacity: 0.6;
  mix-blend-mode: multiply;
  width: 100%;
  height: calc(100% - 100px);
  z-index: -1;
  pointer-events: none;
}

.productDetail__container {
  padding: 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productDetail__img {
  width: 225px;
  position: relative;
}

.productDetail__info {
  width: calc(100% - 250px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 604px;
  color: #303030;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.36px;
  padding-left: 25px;
}

.productDetail__title {
  width: 100%;
  text-align: left;
  color: inherit;
  font-family: inherit;
  margin-bottom: 8px;
}

.productDetail__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 25px;
}

.productDetail__item {
  width: 100%;
  text-align: left;
}
.productDetail__item::marker {
  font-family: Montserrat;
}

@media screen and (max-width: 1200px) {
  .productDetail__container,
.productDetails__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 920px) {
  .productDetails__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .productDetails__hero {
    order: 1;
    padding-left: 0;
  }

  .productDetails__preview {
    width: 100%;
    aspect-ratio: 1.285/1;
    order: 2;
  }

  .productDetails__block:nth-child(3) {
    order: 3;
    padding-left: 0;
  }

  .productDetails__left {
    order: 5;
    flex-direction: column-reverse;
  }

  .productDetails__hero::before {
    left: 50%;
    height: calc(100% + 204px);
  }

  .productDetails__right {
    order: 4;
    padding-left: 0;
  }

  .productDetail__img {
    width: 180px;
    transform: scale(-1, 1);
  }

  .productDetail__info {
    width: calc(100% - 180px);
  }

  .productDetail__info {
    padding-left: 20px;
    font-size: 14px;
  }

  .productDetail::before {
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .productDetails__title {
    font-size: 17.5px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 475px) {
  .productDetail__container,
.productDetails__container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .productDetails__container {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .productDetails__title {
    max-width: 280px;
  }

  .productDetails__top {
    margin-top: 0;
  }

  .productDetails__top .product__container__top__arrow {
    transform: translateY(-50%);
  }

  .productDetails__list {
    margin: 18px 0 17px 0;
    padding-left: 20px;
  }

  .productDetails__item {
    font-size: 12px;
  }

  .productDetails__block {
    margin-top: 22px;
  }

  .productDetails__text {
    font-size: 12px;
  }

  .productDetail__img {
    width: 100px;
  }

  .productDetail__info {
    width: calc(100% - 100px);
    padding-left: 20px;
  }

  .productDetail__info {
    font-size: 12px;
  }

  .productDetail__container {
    position: static;
  }

  .productDetail {
    padding: 60px 0 20px 0;
    margin-bottom: 30px;
  }

  .productDetail::before {
    top: auto;
    bottom: 0;
    height: calc(100% - 40px);
  }

  .productDetail__title {
    position: absolute;
    left: 0;
    padding: 0 10px;
    top: 0;
    color: #303030;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 127.4%;
    letter-spacing: 0.14px;
    margin-bottom: 0;
  }

  .productDetail__item {
    position: relative;
    list-style: none;
    padding-left: 18px;
  }

  .productDetail__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6.78px;
    height: 6.78px;
    background-color: var(--greenLight);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
  }

  .productDetail__list {
    padding-left: 0;
  }
}
.catalog {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 85px 0;
}

.catalog__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 80px;
}

.catalog__title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  color: #303030;
  text-align: center;
  font-family: Raleway;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.25px;
}

.catalog__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
  gap: 42px 20px;
}

.catalog__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.catalog__img {
  width: 100%;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.1/1;
}

.catalog__name {
  width: 100%;
  text-align: center;
  margin: 15px 0;
  color: #303030;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 111%;
  letter-spacing: 0.2px;
}

.catalog__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.catalog__article {
  width: 81px;
  min-height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 6px;
  border: 1.5px solid #D9D9D9;
  color: #303030;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.2px;
}

.catalog__btn {
  width: calc(100% - 100px);
  height: 49px;
}

.catalog__gide {
  width: 100%;
  max-width: 388px;
  min-height: 49px;
  margin-top: 75px;
  font-size: 18px;
  background-color: #303030;
}

@media screen and (max-width: 1200px) {
  .catalog__container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1060px) {
  .catalog__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .catalog__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .catalog__title {
    font-size: 17.5px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 475px) {
  .catalog {
    margin: 30px 0 20px 0;
  }

  .catalog__container {
    padding: 0 10px;
  }

  .catalog__items {
    gap: 24px 10px;
  }

  .catalog__item {
    position: relative;
  }

  .catalog__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
  }

  .catalog__name {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.14px;
  }

  .catalog__img {
    border-radius: 3.79px;
  }

  .catalog__article {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3.79px 0px;
    background: rgba(85, 85, 85, 0.4);
    padding: 2px 6px;
    max-width: 100%;
    width: auto;
    min-height: 24px;
    border: none;
    flex-direction: row;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
  }

  .catalog__btn {
    width: 100%;
    max-width: 104px;
    height: 34px;
    font-size: 12px;
  }

  .catalog__article span::after {
    content: "/";
    margin: 0 4px;
  }
  .catalog__article span:last-child::after {
    display: none;
  }

  .catalog__gide {
    margin-top: 42px;
    margin-bottom: 20px;
    width: 260px;
    height: 34px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    min-height: 0;
    border-radius: 2.551px;
    background: #555;
    box-shadow: 0px 0.85px 1.276px 0px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.18px;
    position: relative;
  }
  .catalog__gide::before {
    content: "";
    position: absolute;
    height: calc(100% + 40px);
    width: 300px;
    top: -20px;
    left: -20px;
    background-color: #F5F5F5;
    pointer-events: none;
    z-index: -1;
  }
}
@media screen and (max-width: 330px) {
  .catalog__items {
    grid-template-columns: 1fr;
  }
}
.pumps {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pumps__filter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #90C328;
  padding: 42px 0;
}

.pumps__types {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px 8px;
  padding: 0 80px;
}

.pumps__type {
  position: relative;
  width: auto;
}
.pumps__type input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  top: 0;
  left: 0;
}
.pumps__type span {
  min-width: 285px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14px 12px;
  border-radius: 6px;
  background: #FFF;
  color: #303030;
  text-align: center;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.17px;
  transition: all 0.2s ease 0s;
}
.pumps__type input:checked + span {
  color: #FFFFFF;
  background-color: #303030;
}
.checked  span {
  color: #FFFFFF;
  background-color: #303030;
}
.pumps__content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px 0 82px 0;
}

.pumps__products {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
}

.pumps__slider {
  width: 100%;
  position: relative;
}

.pumps__slider > .swiper {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .pumps__type span:hover {
    background-color: #ececec;
  }
}
.pumps__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pumps__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8909/1;
}

.pumps__name {
  width: 100%;
  text-align: center;
  margin: 16px 0 24px 0;
  color: #303030;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
}

.pumps__btn {
  width: 100%;
  max-width: 184px;
  height: 49px;
  font-size: 18px;
  margin-top: auto;
}

.pumps__arrow {
  width: 30px;
  height: 30px;
  padding: 0 5px;
  position: absolute;
  top: 35%;
  z-index: 20;
  transition: all 0.2s ease 0s;
}

.pumps__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.pumps__arrow.__next {
  right: -50px;
}

.pumps__arrow.__prev {
  left: -50px;
  transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  .pumps__products,
.pumps__types {
    padding: 0 20px;
  }

  .pumps__arrow.__next {
    right: -10px;
  }

  .pumps__arrow.__prev {
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .pumps__types {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .pumps__filter {
    padding: 24px 0;
  }

  .pumps__type {
    width: 100%;
    max-width: 420px;
  }

  .pumps__content {
    margin: 24px 0 40px 0;
  }

  .pumps__type span {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .pumps__slider .swiper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 10px;
  }

  .pumps__arrow {
    display: none;
  }

  .pumps__slide {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 475px) {
  .pumps__products,
.pumps__types {
    padding: 0 10px;
  }

  .pumps__name {
    font-size: 14px;
    margin: 16px 0;
  }

  .pumps__btn {
    max-width: 104px;
    height: 34px;
    font-size: 12px;
  }

  .pumps__type span {
    min-width: 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.18px;
    box-shadow: 0px 0.85px 1.276px 0px rgba(0, 0, 0, 0.45);
  }

  .pumps__type input:checked + span {
    border-radius: 2.551px;
    background: #555;
  }
}
.product__container__center__left__img {
  border-radius: 10px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.13);
}

.product__container__center.__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 1201px) {
  .product-knife .product__container__center__right__buttons {
    margin-top: 50px;
  }

  .product-schema.product:before {
    height: calc(100% - 160px);
  }

  .product-knife.product:before {
    height: calc(100% - 280px);
  }
}
@media screen and (min-width: 769px) {
  .product__container__center.__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    align-items: start;
    grid-auto-flow: row;
    grid-auto-rows: 1fr;
  }

  .product__container__bottom.__left {
    display: flex;
    justify-content: flex-end;
    margin-right: auto;
  }
  .product__container__bottom.__left .product__container__center__right__button {
    margin-right: 0;
    margin-left: 15px;
  }
  .product__container__bottom.__left .product__container__center__right__buttons {
    margin-top: 0;
    justify-content: flex-end;
  }

  .product__container__center.__grid .product__container__center__left {
    width: 100%;
  }

  .product__container__center.__grid .product__container__center__right {
    grid-row: span 2;
    width: 100%;
  }

  .product-full::before {
    height: calc(100% - 100px);
  }
}
.__middle-knife .product__container__top__arrow {
  transform: none;
  bottom: 0;
  margin: auto 0;
}

.product-schema {
  padding-bottom: 0;
}
.product-schema .product__container__center__left__img {
  width: 100%;
  padding-bottom: 98%;
  border-radius: 0;
  box-shadow: none;
}
.product-schema .product__container__center__right__buttons {
  margin-top: auto;
}
.product-schema .product__container__center__right__remove {
  margin-top: 25px;
}

.productSchema__title {
  display: none;
  color: #232323;
  text-align: left;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.425px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .productSchema__title {
    display: inline;
  }

  .product-schema .product__container__top__series__text {
    display: none;
  }
}
@media screen and (max-width: 475px) {
  .product-schema .product__container__center__right__buttons {
    margin-bottom: 0;
  }
}
.productSchema {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productSchema__content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 80px;
}

.productSchema__left {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.productSchema__name {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #90C328;
  padding: 32px 24px;
  color: #FFF;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.productSchema__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
}

.productSchema__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1.5px solid #D9D9D9;
}

.productSchema__item:last-child {
  border-bottom: none;
}

.productSchema__text {
  color: #000;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.45px;
}
.productSchema__text span {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}

.productSchema__text:first-child {
  text-align: left;
  max-width: calc(100% - 205px);
}

.productSchema__text:last-child {
  text-align: right;
  max-width: 200px;
}

.productSchema__right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 60px;
}

.productSchema__size {
  width: 100%;
  text-align: left;
  color: #303030;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.productSchema__img {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .productSchema__content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
  }

  .productSchema__left {
    width: 100%;
  }

  .productSchema__right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .productSchema__name {
    font-size: 17.5px;
    padding: 24px 20px;
  }

  .productSchema__text {
    font-size: 13px;
  }

  .productSchema__text span {
    font-size: 11px;
  }

  .productSchema__text:first-child {
    max-width: calc(100% - 155px);
  }

  .productSchema__text:last-child {
    width: 150px;
  }
}
@media screen and (max-width: 475px) {
  .productSchema__content {
    margin-top: 16px;
  }

  .productSchema__name {
    padding: 12px 0;
  }

  .productSchema__text {
    font-size: 9.142px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.229px;
  }

  .productSchema__text span {
    font-size: 8.126px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.203px;
  }

  .productSchema__text:first-child {
    max-width: calc(100% - 115px);
  }

  .productSchema__text:last-child {
    width: 110px;
  }

  .productSchema__right {
    margin-top: 20px;
  }

  .productSchema__size {
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.425px;
    margin-bottom: 8px;
  }

  .productSchema__content {
    margin-bottom: 16px;
  }
}
body.lock {
  overflow: hidden;
}

.popup {
  transition: all 0.8 ease 0s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.popup__content {
  position: relative;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.popupTable .popup__content {
  width: 100%;
  max-width: 900px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  border-radius: 14px;
  background: #FFF;
  padding: 12px 0;
}
.popupTable .popup__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  overflow-x: auto;
  padding: 12px 24px;
}
.popupTable .popup__container img{
    position: inherit;
    border-radius: 5px;
}
.popupTable .close__popup {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  right: -54px;
  cursor: pointer;
}
.popupTable .close__popup::before, .popupTable .close__popup::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -6.2px;
  margin: auto;
  width: 42.4px;
  height: 3.5px;
  background-color: #303030;
  transition: all 0.2s ease 0s;
}
.popupTable .close__popup::before {
  transform: rotate(45deg);
}
.popupTable .close__popup::after {
  transform: rotate(-45deg);
}
.popupTable .close__popup:hover::after, .popupTable .close__popup:hover::before {
  opacity: 0.75;
}

.statistic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  pointer-events: none;
  margin-right: auto;
}
.statistic input {
  display: none;
}
.statistic label {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #76AE04;
  background-color: transparent;
  cursor: pointer;
  margin: 0 2px;
}
.statistic input:checked + label,
.statistic input:checked + label ~ label {
  background-color: #76AE04;
}

.popup__tableMain {
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
.popup__tableMain thead {
  width: 100%;
}
.popup__tableMain thead tr {
  background-color: #76AE04;
  color: #FFF;
  font-family: Raleway;
  font-size: 14.259px;
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  letter-spacing: 0.356px;
}
.popup__tableMain tbody {
  width: 100%;
  color: #303030;
  font-family: Raleway;
  font-size: 14.259px;
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  letter-spacing: 0.356px;
}
.popup__tableMain tbody tr {
  background-color: rgba(217, 217, 217, 0.3);
}
.popup__tableMain tbody tr:nth-child(2n) {
  background-color: rgba(217, 217, 217, 0.65);
}
.popup__tableMain tbody td > span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 10px;
}
.popup__tableMain tbody td {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  grid-auto-rows: 1fr;
  padding: 0;
}
.popup__tableMain tbody td > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px;
  border-bottom: 1px solid #FFFFFF;
}
.popup__tableMain tbody td > div:last-child {
  border-bottom: 0;
}
.popup__tableMain tbody td:first-child > span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.popup__tableMain tr {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(165px, 1fr) minmax(100px, 1fr) minmax(85px, 1fr) minmax(160px, 1fr) minmax(130px, 1fr) minmax(105px, 1fr) minmax(105px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: minmax(85px, 1fr);
}
.popup__tableMain td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 49px;
  padding: 10px;
  border-right: 1px solid #FFFFFF;
}
.popup__tableMain td:last-child {
  border-right: none;
}

.popup__tableDescription {
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}
.popup__tableDescription thead {
  width: 100%;
}
.popup__tableDescription thead tr {
  background-color: #76AE04;
  color: #FFF;
  font-family: Raleway;
  font-size: 14.259px;
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  letter-spacing: 0.356px;
}
.popup__tableDescription thead td:not(:first-child) {
  padding: 0;
  justify-content: center;
  font-family: Montserrat;
}
.popup__tableDescription tbody {
  width: 100%;
  color: #303030;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  letter-spacing: 0.356px;
}
.popup__tableDescription tbody tr:first-child {
  background-color: #90C328;
  color: #FFFFFF;
}
.popup__tableDescription tbody tr:first-child td > div > span {
  margin: auto 0;
}
.popup__tableDescription tbody tr {
  background-color: rgba(217, 217, 217, 0.3);
}
.popup__tableDescription tbody tr:nth-child(2n) {
  background-color: rgba(217, 217, 217, 0.65);
}
.popup__tableDescription tbody td > span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 10px;
}
.popup__tableDescription tbody td {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 0;
}
.popup__tableDescription tbody td > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 8px 0;
  border-right: 1px solid #FFFFFF;
}
.popup__tableDescription tbody td > div > span {
  font-family: Montserrat;
  margin-bottom: 12px;
}
.popup__tableDescription tbody td > div:last-child {
  border-right: 0;
}
.popup__tableDescription tbody td:first-child > span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.popup__tableDescription tr {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(105px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(55px, 1fr) minmax(70px, 1fr) minmax(115px, 1fr) minmax(85px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: minmax(85px, 1fr);
}
.popup__tableDescription td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 49px;
  padding: 10px;
  border-right: 1px solid #FFFFFF;
}
.popup__tableDescription td:last-child {
  border-right: none;
}

@media screen and (max-width: 1200px) {
  .popup__body {
    padding-top: 60px;
  }

  .popupTable .close__popup {
    right: 0;
    top: -40px;
  }
}
@media (min-width: 341px) and (max-width: 475px){
.cards__container ._big {
    width: 100%;
}
.cards__container ._big .cards__container__item__img {
    padding-bottom: 42%;
}
}
@media screen and (max-width: 475px) {
  .popup__tableMain thead tr {
    font-size: 12px;
  }
  .popup__tableMain tbody {
    font-size: 12px;
  }
  .popup__tableMain tbody td > span {
    padding: 8px;
  }
  .popup__tableMain tbody td > div {
    padding: 10px;
  }
  .popup__tableMain tr {
    grid-template-columns: minmax(140px, 1fr) minmax(85px, 1fr) minmax(85px, 1fr) minmax(120px, 1fr) minmax(110px, 1fr) minmax(85px, 1fr) minmax(85px, 1fr);
  }
  .popup__tableMain td {
    min-height: 40px;
    padding: 8px;
  }

  .popup__tableDescription {
    margin-top: 20px;
  }
  .popup__tableDescription thead tr {
    font-size: 12px;
  }
  .popup__tableDescription tbody {
    font-size: 12px;
  }
  .popup__tableDescription tbody td > span {
    padding: 8px;
  }
  .popup__tableDescription tr {
    grid-template-columns: minmax(105px, 1fr) minmax(100px, 1fr) minmax(90px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(55px, 1fr) minmax(70px, 1fr) minmax(115px, 1fr) minmax(85px, 1fr);
  }
  .popup__tableDescription td {
    min-height: 40px;
    padding: 8px;
  }

  .statistic label {
    width: 9px;
    height: 9px;
  }
}