@charset "UTF-8";

@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

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

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

:focus,
:active {
  outline: none;
}

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

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

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

body {
  line-height: 1;
  font-family: "Poppins";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Poppins";
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  color: #000;
  font-size: 16px;
  background: #F8F8FE;
}

body._lock {
  overflow: hidden;
  padding-right: 0 !important;
}

body._menus {
  padding-right: 0 !important;
}

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

._container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0px 20px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

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

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

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

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

._suptitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6458FF;
}

._title {
  font-weight: 600;
  font-size: 52px;
  line-height: 78px;
  color: #000000;
  margin-top: 10px;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

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

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
  display: flex;
  flex-direction: row;

}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /*overflow-y: hidden;*/
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

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

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 20px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

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

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 30px 40px;
  width: 100%;
  max-width: 825px;
  max-height: 690px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__language_select {
  background-color: transparent;
  color: #6458ff;
}
.popup__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") center/auto no-repeat;
}

.catalog-popup__logo {
  width: 108px;
  margin-bottom: 10px;
}

.catalog-popup__logo img {
  max-width: 100%;
  width: 100%;
}

.catalog-popup__contnet {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: -25px;
  padding: 25px;
  padding-bottom: 0;
}

.catalog-popup__description {
  margin-top: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  color: #3C3948;
}

.catalog-popup__navigation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.catalog-popup__blocks {
  margin-top: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
  margin-right: -15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.catalog-popup__blocks::-webkit-scrollbar {
  background: #fff;
  width: 4px;
}

.catalog-popup__blocks::-webkit-scrollbar-thumb {
  background: #DCDCDC;
  border-radius: 8px;
}

.catalog-popup__block {
  height: 100%;
  overflow-y: auto;
}

.navigation-catalog-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.navigation-catalog-popup__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navigation-catalog-popup__item img {
  opacity: 0.3;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.navigation-catalog-popup__item img {
  max-width: 100%;
  width: 100%;
}

.navigation-catalog-popup__item._active img {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.navigation-catalog-popup__item._active .navigation-catalog-popup__name {
  color: #fff;
}

.navigation-catalog-popup__name {
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #6D6D6D;
  width: 100%;
  max-width: 100%;
  text-align: center;
  bottom: 5px;
  left: 0;
  right: 0;
  z-index: 1;
}

.block-catalog-popup {
  display: none;
}

.block-catalog-popup._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block-catalog-popup__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) /4);
          flex: 0 0 calc((100% - 30px * 3) /4);
}

.block-catalog-popup__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 68%;
  overflow: hidden;
  display: block;
}

.block-catalog-popup__image:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.block-catalog-popup__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.block-catalog-popup__body {
  text-align: center;
  padding: 15px;
  background: #fff;
}

.block-catalog-popup__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000000;
  width: 100%;
  text-align: center;
}

.vacancy .popup__body,.request .popup__body {
  padding: 0px;
  max-width: 675px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.vacancy .popup__close, .request .popup__close {
  background: url("../img/icons/close-white.svg") center/auto no-repeat;
}

.vacancy__content {
  padding: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.vacancy__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.vacancy__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-top: 20px;
}

.vacancy__input {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  border-bottom: 1px solid #E2E2E2;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  background: transparent;
  padding-left: 20px;
}

.vacancy__textarea {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  min-width: 0px;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  height: 90px;
  overflow-y: auto;
  resize: none;
  background: transparent;
  padding-left: 20px;
}

.vacancy__btn {
  width: 190px;
  height: 64px;
  background: #6458FF;
  -webkit-box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
          box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
  border-radius: 4px;
  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;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.vacancy__banner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 238px;
          flex: 0 0 238px;
  min-height: 560px;
  position: relative;
}

.vacancy__image {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.vacancy__logo {
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

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

.header__navigation {
  background: #6458FF;
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 70px;
  padding: 0px 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__language .select__title {
  background: transparent;
  border: none;
  border-radius: 0px;
}

.header__language .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  background: transparent;
  padding: 0px 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  width: 40px;
}

.header__language .select__value span {
  height: auto;
}

.header__language .select__options {
  top: 100%;
  padding: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.header__language .select__option {
  padding: 4px 7px;
}

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

.menu__body {
  width: 0px;
  max-width: 0px;
  height: 0;
  overflow: hidden;
  z-index: 100;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.menu__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.actions-menu {
  display: none;
}

.actions-menu__close {
  cursor: pointer;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34px;
          flex: 0 0 34px;
  width: 34px;
  height: 12px;
  margin-right: 10px;
}

.actions-menu__close span {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.actions-menu__close span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.actions-menu__close span:last-child {
  top: auto;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.social-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.social-header__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  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;
}

.social-header__item img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.icon-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  cursor: pointer;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.icon-menu div {
  position: relative;
  width: 34px;
  height: 12px;
}

.icon-menu span {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.icon-menu span:first-child {
  top: 0px;
}

.icon-menu span:last-child {
  top: auto;
  bottom: 0px;
}

.icon-menu._active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu._active span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.icon-menu._active span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.footer {
  padding: 120px 0px 50px;
  background: #fff;
  position: relative;
}

.footer::after {
  content: "";
  width: 39%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  background: #6458FF;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  position: relative;
  z-index: 1;
}

.head-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.local-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.local-footer__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #8D8D8C;
  position: relative;
  padding-bottom: 9px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.local-footer__item a {
  color: inherit;
}

.local-footer__item::after {
  content: "";
  width: 100%;
  height: 4px;
  background: transparent;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.local-footer__item._active {
  color: #000000;
}

.local-footer__item._active::after {
  background: #6458FF;
  -webkit-box-shadow: 0px 2px 6px rgba(100, 88, 255, 0.35);
          box-shadow: 0px 2px 6px rgba(100, 88, 255, 0.35);
}
.local-footer__item {
  cursor: pointer;
}
.list-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 71px;
     -moz-column-gap: 71px;
          column-gap: 71px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.list-footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 25px;
}
.bottom_copy_block {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.bottom_copy_block_item:nth-child(1) {
  width: -moz-available;
}
.bottom_copy_block_item:nth-child(2) {
  width: 30%;
}
.list-footer__column:nth-child(1) {
  width: 22%;
}
.list-footer__column:nth-child(2) {
  width: 18%;
}
.list-footer__column:nth-child(3) {
  width: 21%;
}
.list-footer__column:nth-child(4) {
    width: 40%;
}
.list-footer__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.list-footer__subcontent {
  margin-top: 5px;
}

.list-footer__subcontent._visible .list-footer__text._footer-slide {
  -webkit-line-clamp: unset;
  -moz-line-clamp: unset;
  height: auto;
}

.list-footer__subcontent._visible .list-footer__more {
  display: none;
}

.list-footer__subcontent._visible .list-footer__unmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-footer__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.list-footer__text._footer-slide {
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 1;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  height: 24px;
}

.list-footer__more {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 5px;
  cursor: pointer;
}

.list-footer__more::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url(../img/icons/select-black.svg) center/auto no-repeat;
}

.list-footer__unmore {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: none;
  margin-top: 5px;
  cursor: pointer;
}

.list-footer__unmore::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url(../img/icons/select-black.svg) center/auto no-repeat;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contacts_blocks {
    display: flex;
    gap:50px;
   flex-direction: column;

}
.content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 125px;
     -moz-column-gap: 125px;
          column-gap: 125px;
}

.content-footer__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 430px;
          flex: 0 0 430px;
}

.content-footer__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.form-content-footer__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #000000;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-content-footer__title::before {
  content: "";
  width: 34px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34px;
          flex: 0 0 34px;
  height: 34px;
  background: url(../img/icons/mail.svg) center/auto no-repeat;
}

.form-content-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-top: 20px;
}

.form-content-footer__input {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  min-width: 0px;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
  background: transparent;
  padding-left: 20px;
}

.form-content-footer__input::-webkit-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__input::-moz-placeholder {
  color: #8D8D8C;
}

.form-content-footer__input:-ms-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__input::-ms-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__input::placeholder {
  color: #8D8D8C;
}

.form-content-footer__textarea {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  min-width: 0px;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  height: 90px;
  overflow-y: auto;
  resize: none;
  background: transparent;
  padding-left: 20px;
}

.form-content-footer__textarea::-webkit-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__textarea::-moz-placeholder {
  color: #8D8D8C;
}

.form-content-footer__textarea:-ms-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__textarea::-ms-input-placeholder {
  color: #8D8D8C;
}

.form-content-footer__textarea::placeholder {
  color: #8D8D8C;
}

.form-content-footer__btn {
  width: 190px;
  height: 64px;
  background: #6458FF;
  -webkit-box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
          box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
  border-radius: 4px;
  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;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
}

.bottom-footer__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  opacity: 0.7;
}
.bottom_copy_block_item {
  display: flex;
}

.bottom-footer__dev {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  opacity: 0.7;
}

.bottom-footer__dev::before {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  background: url(../img/icons/dev.svg) center/auto no-repeat;
}

.banner {
  position: relative;
}

.banner__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #6458FF;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__container {
  height: 100%;
  width: 100%;
}

.banner__body {
  padding: 30px 70px 30px 0px;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.banner__paggination {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  right: 0;
  bottom: 30px;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}

.banner__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.banner__paggination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #fff;
  background: #fff;
}

.banner-body__logo {
  position: absolute;
  top: 10px;
  left: 0px;
  display: inline-block;
}

.banner-body__slider {
  max-width: 100%;
  min-width: 0;
}

.banner-body__slider .swiper-wrapper {
  min-width: 0;
}

.banner-body__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.banner-body__suptitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.banner-body__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 78px;
  color: #FFFFFF;
  margin-top: 5px;
}

.banner-body__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #FFFFFF;
  margin-top: 10px;
}

.banner-body__btn {
  width: auto;
  min-width: auto;
  max-width: 320px;
  padding: 0px 24px;
  height: 64px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 29px 22px -18px rgba(90, 87, 125, 0.6);
          box-shadow: 0px 29px 22px -18px rgba(90, 87, 125, 0.6);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #6458FF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.images-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.images-banner__slider {
  min-width: 0;
}

.images-banner__slider .swiper-wrapper {
  min-width: 0;
}

.images-banner__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  padding-bottom: 73%;
}

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

.brands {
  padding: 120px 0px;
  background: #FFFFFF;
}

.brands__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.brands__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 3) / 4);
          flex: 0 0 calc((100% - 40px * 3) / 4);
  background: #fff;
  -webkit-box-shadow: 0px 4px 16px rgba(18, 20, 63, 0.08);
          box-shadow: 0px 4px 16px rgba(18, 20, 63, 0.08);
  padding: 27px 40px;
}

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

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

.catalog {
  padding: 120px 0px;
}

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

.catalog__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.catalog__content {
  margin-top: 40px;
  position: relative;
}

.catalog__slider {
  margin: -60px;
  padding: 60px;
}

.catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
  -webkit-box-shadow: 0px 45px 45px -29px rgba(18, 20, 63, 0.12);
          box-shadow: 0px 45px 45px -29px rgba(18, 20, 63, 0.12);
}

.catalog__item:not(:last-child) {
  margin-right: 30px;
}

.catalog__arrow {
  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;
  position: absolute;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  mix-blend-mode: normal;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.catalog__arrow.arrow-catalog-prev {
  right: calc(100% + 20px);
}

.catalog__arrow.arrow-catalog-next {
  left: calc(100% + 20px);
}

.catalog__arrow picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__paggination {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  margin-top: 30px;
}

.catalog__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(100, 88, 255, 0.5);
}

.catalog__paggination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #6458FF;
  background: #6458FF;
}

.catalog-popup-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}

.catalog-popup-link__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  height: 48px;
  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;
  background: #6458FF;
  -webkit-box-shadow: 0px 12px 22px rgba(100, 88, 255, 0.4);
          box-shadow: 0px 12px 22px rgba(100, 88, 255, 0.4);
  border-radius: 50%;
}

.catalog-popup-link__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #6458FF;
}

.item-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-catalog__image {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.item-catalog__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-catalog__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 85px;
  padding: 10px 25px 20px 20px;
}

.item-catalog__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.about {
  padding: 120px 0px;
  background: #fff;
  position: relative;
}

.about::after {
  content: "";
  width: 50%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

.about__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 - 90px);
          flex: 0 0 calc(100% / 2 - 90px);
  padding-right: 40px;
}

.about__suptitle {
  color: #6458FF;
}

.about__title {
  color: #6458FF;
}

.about__content {
  margin-top: 30px;
}

.about__content._visible .about__more {
  display: none;
}

.about__content._visible .about__unmore {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.about__content._visible .about__description {
  -webkit-line-clamp: unset;
  -moz-line-clamp: unset;
}

.about__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #FFFFFF;
}

.about__more {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: none;
  cursor: pointer;
}

.about__more::after {
  content: "";
  width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  background: url(../img/icons/select.svg) center/auto no-repeat;
}

.about__unmore {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: none;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__unmore::after {
  content: "";
  width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url(../img/icons/select.svg) center/auto no-repeat;
}

.about__btn {
  background: #6458FF;
  -webkit-box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
          box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
  border-radius: 4px;
  width: 170px;
  height: 64px;
  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;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-top: 30px;
}

.about__image {
  position: relative;
  padding-bottom: 49.5%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 + 90px);
          flex: 0 0 calc(100% / 2 + 90px);
  -webkit-box-shadow: 0px 65px 45px -39px rgba(18, 20, 63, 0.16);
          box-shadow: 0px 65px 45px -39px rgba(18, 20, 63, 0.16);
}

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

.accesories {
  padding: 120px 0px;
}

.accesories__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.accesories__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 45px 45px -29px rgba(18, 20, 63, 0.12);
          box-shadow: 0px 45px 45px -29px rgba(18, 20, 63, 0.12);
  padding: 40px 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accesories__item._active {
  background: #6458FF;
  -webkit-box-shadow: 0px 45px 45px -29px rgba(100, 88, 255, 0.35);
          box-shadow: 0px 45px 45px -29px rgba(100, 88, 255, 0.35);
}

.accesories__item._active .accesories__icon svg path {
  fill: #fff;
}

.accesories__item._active .accesories__name {
  color: #fff;
}

.accesories__icon {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 45px;
  height: 45px;
  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;
}

.accesories__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.accesories__name {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.vacancy-page {
  padding: 120px 0px;
}

.vacancy-page__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.vacancy-page__item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 16px rgba(18, 20, 63, 0.12);
          box-shadow: 0px 6px 16px rgba(18, 20, 63, 0.12);
  width: 100%;
  padding: 0px 30px;
}

.vacancy-page__head {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 10px 0px;
  cursor: pointer;
}

.vacancy-page__head._active {
  border-bottom: 1px solid #E1E1E1;
}

.vacancy-page__head._active .head-vacancy-page__arrow img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.head-vacancy-page__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-vacancy-page__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
  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;
  border-radius: 50%;
  background: #6458FF;
  -webkit-box-shadow: 0px 6px 16px rgba(100, 88, 255, 0.4);
          box-shadow: 0px 6px 16px rgba(100, 88, 255, 0.4);
}

.head-vacancy-page__arrow img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.head-vacancy-page__arrow picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.body-vacancy-page {
  margin-bottom: 30px;
  margin-top: 20px;
  display: none;
}

.body-vacancy-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  margin-bottom: 30px;
}

.body-vacancy-page__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) / 2);
          flex: 0 0 calc((100% - 80px) / 2);
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  color: #3C3948;
}

.body-vacancy-page__column > *:not(:last-child) {
  margin-bottom: 15px;
}

.body-vacancy-page__column ul {
  padding-left: 25px;
}

.body-vacancy-page__column ul li {
  position: relative;
}

.body-vacancy-page__column ul li::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #3C3948;
  display: inline-block;
  position: absolute;
  top: calc(25px / 2);
  left: -14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.body-vacancy-page__column span {
  font-weight: 400;
}

.body-vacancy-page__btn {
  background: #6458FF;
  -webkit-box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
          box-shadow: 0px 29px 22px -18px rgba(100, 88, 255, 0.6);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  width: 170px;
  height: 64px;
  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;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (min-width: 767.98px) {
  .banner__body {
    width: 45%;
  }

  .banner__images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.47) + 20px));
            flex: 0 0 calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.47) + 20px));
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
  }

  .banner__paggination {
    width: calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.47) + 20px));
  }

  .banner-body__item:not(:last-child) {
    margin-right: 20px;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .list-footer__column._white .list-footer__name {
    color: #fff;
  }

  .list-footer__column._white .list-footer__text {
    color: #fff;
  }

  .list-footer__column._white .list-footer__more,
  .list-footer__column._white .list-footer__unmore {
    color: #FFFFFF;
  }

  .list-footer__more::after {
    background: url(../img/icons/select.svg) center/auto no-repeat;
  }

  .list-footer__unmore::after {
    background: url(../img/icons/select.svg) center/auto no-repeat;
  }

  .banner__body {
    width: 40.8%;
  }

  .banner__images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.408) + 20px));
            flex: 0 0 calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.408) + 20px));
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
  }

  .banner__paggination {
    width: calc(100vw - (((100vw - 1260px) / 2) + ((1260px - 40px) * 0.408) + 20px));
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1272px) {
  .banner__body {
    width: 490px;
  }

  .catalog__item.swiper-slide-active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .catalog__item.swiper-slide-active + .catalog__item {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .catalog__item.swiper-slide-active + .catalog__item + .catalog__item {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .catalog__item.swiper-slide-active + .catalog__item + .catalog__item + .catalog__item {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  ._no-webp .about::after{
    background: url(../img/map-about.png) calc(100% - 100px) calc(100% - 33px)/auto no-repeat, #000; }
}

@media (min-width: 1500px) {
  .menu__body._active {
    max-width: 100%;
    width: auto;
    height: auto;
    -webkit-transition: width 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s;
    transition: width 0.3s ease 0s;
    margin-right: 60px;
  }
}

@media (min-width: 1660px) {
  .footer::after {
    width: 42%;
  }
}

@media (max-width: 1500px) {
  body._menus {
    overflow: hidden;
  }

  body._menus::after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    z-index: 5;
  }

  .header__navigation._hide > .header__language,
  .header__navigation._hide > .header__social {
    display: none;
  }

  .menu__body {
    width: 100vw;
    max-width: 250px;
    height: auto;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    overflow-y: auto;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #6458FF;
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding-left: 30px;
  }

  .menu__body._active {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    padding-top: 20px;
  }

  .actions-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 30px 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 1400px) {
  .catalog__arrow.arrow-catalog-prev {
    right: auto;
    left: -10px;
  }

  .catalog__arrow.arrow-catalog-next {
    right: -10px;
    left: auto;
  }
}

@media (max-width: 1272px) {
  ._title {
    font-size: 42px;
    line-height: 63px;
    margin-top: 5px;
  }

  .footer::after {
    width: 39%;
  }

  .footer {
    padding: 80px 0px 50px;
  }

  .head-footer {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
  }

  .list-footer {
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
  }

  .content-footer {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }

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

  .banner__paggination {
    bottom: 20px;
  }

  .banner-body__title {
    font-size: 42px;
    line-height: 63px;
  }

  .banner-body__description {
    font-size: 16px;
    line-height: 29px;
  }

  .images-banner__item {
    padding-bottom: 80%;
  }

  .brands {
    padding: 80px 0px;
  }

  .brands__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .brands__item {
    padding: 23px 34px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .catalog {
    padding: 80px 0px;
  }

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

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .catalog__item:not(:last-child) {
    margin-right: 20px;
  }

  .item-catalog {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .item-catalog__body {
    padding: 10px 20px 20px;
  }

  .about {
    padding: 80px 0px;
  }

  .about__body {
    padding-right: 35px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2 - 70px);
            flex: 0 0 calc(100% / 2 - 70px);
  }

  .about__content {
    margin-top: 20px;
  }

  .about__description {
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 8;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .about__more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    margin-top: 20px;
  }

  .about__unmore {
    display: none;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    margin-top: 20px;
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2 + 70px);
            flex: 0 0 calc(100% / 2 + 70px);
  }

  .accesories {
    padding: 80px 0px;
  }

  .accesories__item {
    padding: 30px 20px;
  }

  .vacancy-page {
    padding: 80px 0px;
  }

  .body-vacancy-page__content {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }

  .body-vacancy-page__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 2);
            flex: 0 0 calc((100% - 60px) / 2);
  }
}

@media (max-width: 1060px) {
  .footer::after {
    width: 280px;
  }
  .list-footer {
    -webkit-column-gap: 112px;
    -moz-column-gap: 112px;
    column-gap: 112px;
  }
}

@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }

  .select__options {
    font-size: 18px;
  }
  .list-footer__column:nth-child(1) {
    width: 41%;
  }
  .bottom_copy_block_item:nth-child(1) {
    width: -moz-available;
  }
  ._suptitle {
    font-size: 14px;
    line-height: 21px;
  }

  ._title {
    font-size: 36px;
    line-height: 54px;
  }

  .popup__body {
    padding: 30px 30px;
  }

  .header._other {
    display: none;
  }

  .header__navigation {
    width: 70px;
    padding: 0px;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header__navigation > .header__language,
  .header__navigation > .header__social {
    display: none;
  }

  .icon-menu {
    margin-right: 0;
  }

  .icon-menu p {
    display: none;
  }

  .footer::after {
    width: 245px;
  }

  .footer {
    padding: 60px 0px 40px;
  }

  .footer__container {
    row-gap: 40px;
  }

  .local-footer__list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .local-footer__item {
    padding-bottom: 6px;
    font-size: 14px;
    line-height: 21px;
  }

  .list-footer {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    row-gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 260px;
  }

  .list-footer__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 2);
            flex: 0 0 calc((100% - 60px) / 2);
  }

  .content-footer {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .content-footer__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }

  .content-footer__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }

  .banner__body {
    padding: 30px 40px 60px 0px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .banner-body__suptitle {
    font-size: 14px;
    line-height: 21px;
  }

  .banner-body__title {
    font-size: 36px;
    line-height: 54px;
  }

  .images-banner__item {
    padding-bottom: 107%;
  }

  .brands {
    padding: 60px 0px;
  }

  .brands__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }

  .brands__item {
    padding: 17px 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 3) / 4);
            flex: 0 0 calc((100% - 15px * 3) / 4);
  }

  .catalog {
    padding: 60px 0px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .catalog__arrow {
    display: none;
  }

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

  .about::after {
    width: 512px;
  }

  .about {
    padding: 60px 0px;
  }

  .about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 425px;
            flex: 0 0 425px;
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 560px;
            flex: 0 0 560px;
  }

  .accesories {
    padding: 60px 0px;
  }

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

  .accesories__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .vacancy-page {
    padding: 60px 0px;
  }

  .body-vacancy-page__content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .body-vacancy-page__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }
}

@media (max-width: 767.98px) {
  .navigation-catalog-popup {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }
  .footer_outer_links_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .bottom_copy_block_item:nth-child(2), .bottom_copy_block_item {
    width: 100%;
    justify-content: center;
  }
  .bottom_copy_block_item:nth-child(1){
    width: 100%;
    text-align: center;
  }
  .navigation-catalog-popup__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
            flex: 0 0 calc((100% - 10px * 2) / 3);
  }
  .grecaptcha-badge {
      display: none!important;
  }
  .navigation-catalog-popup__name {
    font-size: 16px;
    line-height: 24px;
  }

  .block-catalog-popup._active {
    row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .block-catalog-popup__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) /3);
            flex: 0 0 calc((100% - 20px * 2) /3);
  }

  .block-catalog-popup__body {
    padding: 10px;
  }

  .block-catalog-popup__name {
    font-size: 14px;
    line-height: 21px;
  }

  .footer::after {
    width: 100%;
    height: 390px;
    left: 0;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .head-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
  }

  .list-footer {
    row-gap: 20px;
    padding-right: 0px;
  }

  .list-footer__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .content-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }

  .content-footer__form {
    margin-bottom: 40px;
  }

  .content-footer__map {
    padding-bottom: 100%;
  }

  .content-footer__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .bottom-footer__copy {
    color: #FFFFFF;
  }

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

  .banner__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .banner__body {
    padding: 10px 0px 40px 0px;
    max-width: calc(100vw - 40px);
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .banner-body__logo {
    position: static;
    margin-bottom: 30px;
  }

  .banner-body__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .banner-body__title {
    max-width: 100%;
    margin-top: 0px;
  }

  .banner-body__description {
    max-width: 100%;
  }

  .banner-body__btn {
    margin-top: 30px;
  }

  .images-banner__item {
    padding-bottom: 72.25%;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .catalog-popup-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
  }

  .catalog-popup-link__text {
    display: none;
  }

  .about::after {
    width: 100%;
    height: calc(100% - 55vw);
  }

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

  .about__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .about__description {
    -webkit-line-clamp: 10;
    -moz-line-clamp: 10;
  }

  .about__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    padding-bottom: 77%;
  }

  .accesories__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
    min-height: 203px;
  }

  .accesories__item._active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .body-vacancy-page__content {
    display: block;
    margin-bottom: 20px;
  }

  .body-vacancy-page__column:not(:last-child) {
    margin-bottom: 10px;
  }

  .body-vacancy-page__column > *:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .vacancy__banner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
  }
}

@media (max-width: 690px) {
  .vacancy__content {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .block-catalog-popup__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) /2);
            flex: 0 0 calc((100% - 20px * 1) /2);
  }

  .brands__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
    margin-top: 30px;
  }

  .brands__item {
    padding: 14px 22px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }
}

@media (max-width: 479.98px) {
  ._suptitle {
    font-size: 12px;
    line-height: 18px;
  }

  ._title {
    font-size: 32px;
    line-height: 48px;
    margin-top: 0px;
  }

  .popup__body {
    padding: 20px;
    max-height: 100%;
  }

  .catalog-popup__blocks {
    padding-bottom: 20px;
  }

  .block-catalog-popup._active {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .block-catalog-popup__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) /2);
            flex: 0 0 calc((100% - 10px * 1) /2);
  }

  .vacancy__banner {
    display: none;
  }

  .footer {
    padding: 40px 0px;
  }

  .footer__container {
    row-gap: 30px;
  }

  .banner__paggination {
    bottom: 10px;
  }

  .banner-body__suptitle {
    font-size: 12px;
    line-height: 18px;
  }

  .banner-body__title {
    font-size: 32px;
    line-height: 48px;
  }

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

  .brands {
    padding: 40px 0px;
  }

  .catalog {
    padding: 40px 0px;
  }

  .about {
    padding: 40px 0px;
  }

  .accesories {
    padding: 40px 0px;
  }

  .accesories__content {
    margin-top: 30px;
  }

  .accesories__name {
    margin-top: 20px;
  }

  .vacancy-page {
    padding: 40px 0px;
  }

  .vacancy-page__content {
    margin-top: 30px;
  }

  .vacancy-page__item {
    padding: 0px 20px;
  }

  .vacancy-page__head {
    min-height: 64px;
  }

  .head-vacancy-page__name {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (any-hover: hover) {
  .block-catalog-popup__item:hover .block-catalog-popup__name {
    text-decoration: underline;
  }

  .menu__link:hover {
    text-decoration: underline;
  }

  .social-header__item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .local-footer__item:hover {
    color: #000000;
  }

  .banner-body__btn:hover {
    -webkit-box-shadow: inset 0px 0px 10px 4px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0px 0px 10px 4px rgba(0, 0, 0, 0.15);
  }

  .catalog-popup-link:hover {
    text-decoration: underline;
  }

  .item-catalog__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .item-catalog__name:hover {
    text-decoration: underline;
  }

  .accesories__item:hover {
    background: #6458FF;
    -webkit-box-shadow: 0px 45px 45px -29px rgba(100, 88, 255, 0.35);
            box-shadow: 0px 45px 45px -29px rgba(100, 88, 255, 0.35);
  }

  .accesories__item:hover .accesories__icon svg path {
    fill: #fff;
  }

  .accesories__item:hover .accesories__name {
    color: #fff;
  }
}

@media (min-width: 1272px){

  ._webp .about::after{ background: url(../img/map-about.webp) calc(100% - 100px) calc(100% - 33px)/auto no-repeat, #000; }
}

.cookies_wr{
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0 0 10px 0 #00000036;
  box-shadow: 0 0 10px 0 #00000036;
  width: 100%;
  background: #fff;
  z-index: 99;
  left: 0;
}
.in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  color: #000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  border-radius: 5px;
}
.cookies_item{
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #000;
}
.btn{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  background: #6458ff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #6458ff;
  border-radius: 5px;
  font-family: inherit;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  display: inline-flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #FFFFFF;
}
.v3{
  min-width: 220px;
  min-height: 52px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
}
.page_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #000;
}
@media (max-width: 767.98px) {
  .cookies_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cookies_wr .in {
    gap:15px;
  }
}

.brands__item._popup-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image_description {
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 200;
}
.fancybox-skin .fancybox-title-float-wrap .child {
  width: 100%;
  background-color: #fff;
  color: #100;
  font-size: 16px;
  margin-right: auto;
  bottom: 46px;
  position: relative;
  text-shadow: none;
  text-align: left;
}
.fancybox-skin .fancybox-title-float-wrap {
  width: 90% !important;
  margin-bottom: 0;
  right: 5%;
  bottom: -35px;

}
.map-content-footer {
  width: 100%;
  height: 400px;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.footer_outer_links_wrap {
  display:flex;
  margin-top: 20px;
}