@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Golos+Text:regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Inter+Tight:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Onest:100,200,300,regular,500,600,700,800,900);
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 16px;
}

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

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

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

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

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

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;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0px 80px;
}
._container._v2 {
  padding: 0px 40px;
  max-width: 1920px;
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 50px;
  }
  ._container._v2 {
    padding: 0px 20px;
  }
}
@media (max-width: 500px) {
  ._container {
    padding: 0px 10px;
  }
  ._container._v2 {
    padding: 0px 0px;
  }
}

._lines {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0px 80px;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  z-index: -1;
  gap: 10px;
  top: 0;
}
@media (max-width: 1200px) {
  ._lines {
    display: none;
  }
}
._lines div {
  width: 1px;
  height: 100%;
  background: #000;
  opacity: 0.1;
}
._lines._v2 div {
  background: #fff;
  opacity: 0.2;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  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[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: 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: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  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;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  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 {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  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: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.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;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  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;
  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;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

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

.swiper {
  overflow: hidden;
}
.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

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

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

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

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

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

.nicescroll-rails {
  z-index: 1000 !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 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background: #00000073;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
@media (max-width: 998px) {
  .popup_popup {
    padding: 0;
  }
  .popup_popup .popup__body {
    margin-top: auto;
    border-radius: 0;
  }
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 60px;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 22px 48px 0 rgba(0, 0, 0, 0.03), 0 87px 87px 0 rgba(0, 0, 0, 0.03), 0 195px 117px 0 rgba(0, 0, 0, 0.02), 0 347px 139px 0 rgba(0, 0, 0, 0), 0 542px 152px 0 rgba(0, 0, 0, 0);
}
@media (max-width: 998px) {
  .popup__body {
    padding: 45px 20px;
  }
}
.popup__close {
  width: 24px;
  height: 24px;
  position: absolute;
  transform: translate(100%, -100%);
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url(../img/clost.svg) 0 0 no-repeat;
}
@media (max-width: 998px) {
  .popup__close {
    transform: translate(0%, -100%);
    right: 10px;
    top: -10px;
  }
}
.popup__title {
  font-size: 36px !important;
  margin-bottom: 40px;
}
@media (max-width: 998px) {
  .popup__title {
    font-size: 30px !important;
    margin-bottom: 25px;
  }
}
.popup .form-send {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.popup .form-send .form-send__btn {
  padding: 29px 40px;
}
@media (max-width: 998px) {
  .popup .form-send .form-send__btn {
    padding: 20px;
  }
}
.popup .form-send .form-send__btn img {
  transform: rotate(-90deg);
}
@media (max-width: 998px) {
  .popup .form-send .form-send__check {
    margin-top: 25px;
    margin-bottom: -5px;
  }
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
}
.header._scroll {
  background: #000000b9;
}
.header__container {
  display: flex;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
  padding-left: 0;
  padding-right: 100px;
  max-width: 1920px;
  color: #fff;
  align-items: center;
  gap: 60px;
  font-size: 18px;
  max-width: 100vw;
}
@media (max-width: 1800px) {
  .header__container {
    font-size: 16px;
    gap: 30px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 998px) {
  .header__container {
    padding: 0;
  }
}
.header__container a {
  color: inherit;
}
.header__mob {
  display: none;
}
@media (max-width: 998px) {
  .header__mob {
    display: block;
    width: 100%;
  }
}
.header__top {
  color: #000;
  padding: 12px 10px;
  background: #fff;
  width: 100%;
  display: flex;
  font-weight: 500;
  justify-content: space-between;
}
.header__top a:first-child {
  text-decoration: underline;
  text-decoration-color: #8888886e;
  text-underline-offset: 4px;
}
.header__body {
  padding: 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__mob-logo {
  width: 160px;
}
.header__mob-logo img {
  width: 100%;
}
.header__media {
  display: flex;
  gap: 8px;
}
.header__media a {
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}
.header__media a:hover {
  background: #ffe2a9;
}
.header__media a img {
  width: 20px;
}
.header__logo {
  height: 100%;
  background: #fec95f;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  position: relative;
  z-index: 1;
}
.header__logo::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  height: 111px;
  width: 100%;
  background: #fec95f;
  z-index: -1;
}
@media (max-width: 1600px) {
  .header__logo::before {
    height: 82px;
  }
}
@media (max-width: 1300px) {
  .header__logo::before {
    height: 68px;
  }
}
@media (max-width: 1600px) {
  .header__logo {
    width: 200px;
  }
  .header__logo img {
    width: 140px;
  }
}
@media (max-width: 1600px) {
  .header__logo {
    width: 170px;
  }
  .header__logo img {
    width: 125px;
  }
}
@media (max-width: 998px) {
  .header__logo {
    display: none;
  }
}
.header__links {
  display: flex;
  gap: 40px;
}
.header__links a:hover {
  text-decoration: underline;
}
@media (max-width: 998px) {
  .header__links {
    display: none;
  }
}
.header__links > li {
  position: relative;
  padding: 5px 0;
  align-items: center;
  display: flex;
  gap: 5px;
}
.header__links > li img {
  transition: 0.3s;
}
.header__links > li:hover img {
  transform: rotate(180deg);
}
.header__links > li:hover ul {
  opacity: 1;
  pointer-events: all;
  transform: translate(0px, 100%);
}
.header__links ul {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  bottom: 0;
  transform: translate(0px, 110%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 20px;
  width: max-content;
  background: #000000ad;
  border-radius: 15px;
  display: none;
}
.header__contacts {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 40px;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .header__contacts {
    gap: 20px;
  }
}
@media (max-width: 998px) {
  .header__contacts {
    display: none;
  }
}
.header__contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid transparent;
}
.header__contacts a:hover {
  border-bottom: 1px solid #fff;
}
.header__resp {
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: #888;
  text-underline-offset: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.header__resp:hover {
  text-decoration: none;
  color: #ffffffb8;
}
@media (max-width: 1300px) {
  .header__resp {
    display: none;
  }
}
.header__resp img {
  width: 130px;
}

/*
//Burger
.icon-menu {
	display: none;
	@media (max-width: $md3+px) {
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span {
			transition: all 0.3s ease 0s;
			top: calc(50% - 1px);
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:first-child {
				top: 0px;
			}
			&:last-child {
				top: auto;
				bottom: 0px;
			}
		}
		&._active {
			span {
				transform: scale(0);
				&:first-child {
					transform: rotate(-45deg);
					top: calc(50% - 1px);
				}
				&:last-child {
					transform: rotate(45deg);
					bottom: calc(50% - 1px);
				}
			}
		}
	}
}
*/
.page {
  flex: 1 1 auto;
}
.page > div, .page > section {
  position: relative;
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

._btn {
  color: #000;
  border-radius: 8px;
  padding: 25px 40px;
  background: #fec95f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
._btn:hover {
  background: #ffe2a9;
}
._btn._w {
  background: #fff;
}
._btn._w:hover {
  background: #ffe2a9;
}
._btn._w::before {
  background: linear-gradient(90deg, transparent, #fec95f67, transparent);
}
._btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(25deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  70% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

._title {
  font-weight: 700;
  font-size: clamp(40px, 3.5vw, 64px);
  line-height: 120%;
  font-family: "Inter Tight";
}
._title span {
  font-weight: 300;
  color: #888;
}

._head {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #888;
}
@media (max-width: 1400px) {
  ._head {
    font-size: 16px;
  }
}
._head span {
  color: #fec95f;
}

._arr {
  display: flex;
  gap: 8px;
}
._arr ._arr-itm {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(45px, 3.5vw, 60px);
  flex: 0 0 clamp(45px, 3.5vw, 60px);
  border-radius: 8px;
  background: #222;
  transition: 0.3s;
  cursor: pointer;
}
._arr ._arr-itm:hover {
  background: #222222b9;
}
._arr ._arr-itm img {
  width: 8px;
}
._arr ._arr-itm-r img {
  transform: rotate(180deg);
}

.home {
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}
.home ._lines {
  bottom: 0;
  top: auto;
  height: calc(100% - 110px);
}
.home ._lines div {
  background: #fff;
}
.home__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home__bg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.home__bg img:nth-child(2) {
  display: none;
}
@media (max-width: 600px) {
  .home__bg img:nth-child(1) {
    display: none;
  }
  .home__bg img:nth-child(2) {
    display: block;
  }
}
.home__container {
  padding-top: 230px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 120px;
}
@media (max-width: 1500px) {
  .home__container {
    padding-top: 190px;
  }
}
@media (max-width: 1300px) {
  .home__container {
    padding-top: 160px;
  }
}
@media (max-width: 998px) {
  .home__container {
    padding-top: 210px;
    padding-bottom: 64px;
  }
}
.home__title {
  max-width: 577px;
  font-weight: 700;
  font-size: clamp(40px, 3.5vw, 64px);
  line-height: 120%;
  font-family: "Inter Tight";
}
@media (max-width: 1300px) {
  .home__title {
    max-width: 400px;
  }
}
.home__title span {
  font-weight: 300;
  color: #bdbdbd;
}
.home__subtitle {
  max-width: 600px;
  margin-top: 60px;
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 1300px) {
  .home__subtitle {
    font-size: 18px;
    max-width: 480px;
    margin-top: 50px;
  }
}
@media (max-width: 500px) {
  .home__subtitle {
    margin-top: 25px;
  }
}
.home__btns {
  display: flex;
  gap: 16px;
  margin-top: 200px;
}
@media (max-width: 1300px) {
  .home__btns {
    margin-top: 150px;
  }
  .home__btns a {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .home__btns {
    margin-top: 70px;
    flex-direction: column;
  }
  .home__btns a {
    font-size: 18px;
  }
}
.home__slider {
  height: 470px;
  pointer-events: none;
  position: relative;
}
@media (max-width: 998px) {
  .home__slider {
    display: none;
  }
}
.home__slider::before {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(-100%, -50%);
  content: "";
  width: 18px;
  height: 34px;
  background: url(../img/ary.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .home__slider::before {
    left: -20px;
  }
}
.home__slide {
  height: 104px;
  font-size: 20px;
  line-height: 140%;
  color: #fffbf4;
  max-width: 350px;
  transition: 0.6s;
  opacity: 0;
}
@media (max-width: 1300px) {
  .home__slide {
    max-width: 300px;
  }
}
.home__slide._prev-1, .home__slide._next-1 {
  opacity: 0.4;
}
.home__slide._active {
  opacity: 1;
}
.home__slide._prev-2, .home__slide._next-2 {
  opacity: 0.2;
}

.for-what ._lines {
  bottom: 0;
  top: auto;
  height: calc(100% - 20px);
}
.for-what__container {
  padding-top: 120px;
  padding-bottom: 120px;
  transform: translate(0px, 60px);
  transition: 0.5s;
  opacity: 0;
}
.for-what__container._active {
  transform: translate(0);
  opacity: 1;
}
@media (max-width: 1500px) {
  .for-what__container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 998px) {
  .for-what__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.for-what__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .for-what__top {
    grid-template-columns: 1fr;
  }
}
.for-what__right {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}
.for-what__title {
  max-width: 700px;
}
@media (max-width: 600px) {
  .for-what__arr {
    display: none;
  }
}
.for-what__block {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .for-what__block {
    margin-top: 30px;
    overflow: visible;
  }
}
.for-what__item {
  background: #f0f0f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  min-height: 600px;
  transition: 0.3s;
}
@media (max-width: 1500px) {
  .for-what__item {
    min-height: 500px;
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .for-what__item {
    min-height: 440px;
  }
}
.for-what__item * {
  transition: 0.3s;
}
.for-what__item:hover {
  background: #222;
  color: #fff;
}
.for-what__item:hover .for-what__bottom {
  color: #fff;
}
.for-what__item:hover .for-what__bottom div {
  background: #fec95f;
}
.for-what__img {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}
.for-what__img img {
  width: 100%;
}
.for-what__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #2b2b2b;
  gap: 5px;
}
@media (max-width: 1500px) {
  .for-what__bottom {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .for-what__bottom {
    font-size: 20px;
  }
}
.for-what__bottom span {
  position: relative;
}
.for-what__bottom span::before {
  position: absolute;
  bottom: -1px;
  right: 0;
  content: "";
  height: 1.5px;
  background: #2b2b2b3e;
  width: calc(100% - 20px);
}
.for-what__bottom div {
  aspect-ratio: 1/1;
  width: 44px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.for-what__bottom div img {
  width: 11px;
}
.for-what__pug {
  margin-top: 60px;
  display: flex;
  gap: 22px;
  justify-content: center;
}
@media (max-width: 998px) {
  .for-what__pug {
    margin-top: 32px;
  }
}
.for-what__pug span {
  border-radius: 100%;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  width: 6px;
  transition: 0.3s;
}
.for-what__pug span.swiper-pagination-bullet-active {
  background: #000;
}

.wide {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.wide__icon {
  position: absolute;
  top: 0;
  transform: translate(0px, -30%);
  left: 0;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .wide__icon {
    display: none;
  }
}
.wide__icon img {
  width: 100%;
  max-width: 1840px;
}
.wide__container {
  padding-top: 120px;
  padding-bottom: 120px;
  transform: translate(0px, 60px);
  transition: 0.5s;
  opacity: 0;
}
.wide__container._active {
  transform: translate(0);
  opacity: 1;
}
@media (max-width: 998px) {
  .wide__container {
    padding-top: 64px;
    padding-bottom: 10px;
  }
}
.wide__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .wide__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wide__cont {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wide__title {
  display: flex;
  flex-direction: column;
}
.wide__subtitle {
  font-size: 20px;
  line-height: 150%;
  color: #888;
  max-width: 750px;
}
.wide__title {
  max-width: 760px;
}
.wide__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .wide__block {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .wide__block {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }
}
@media (max-width: 700px) {
  .wide__block {
    gap: 15px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.wide__item {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  color: inherit;
}
.wide__item:hover {
  transform: translate(0px, -15px);
}
.wide__item:hover .wide__arr::before {
  opacity: 1;
}
@media (max-width: 1300px) {
  .wide__item {
    padding: 30px;
    border-radius: 16px;
  }
}
@media (max-width: 998px) {
  .wide__item {
    padding: 40px;
  }
}
.wide__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.wide__wp span {
  font-size: 14px;
  color: #9599a0;
}
.wide__wp h2 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 11px;
  font-family: "Inter Tight";
}
@media (max-width: 1300px) {
  .wide__wp h2 {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .wide__wp h2 {
    margin-top: 10px;
  }
}
.wide__arr {
  width: 44px;
  flex: 0 0 44px;
  position: relative;
  background: #f0f0f0;
  border-radius: 8px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wide__arr img {
  width: 12px;
}
.wide__img {
  margin-top: 25px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.wide__img img {
  width: 100%;
}
.wide__razmer {
  margin-top: 30px;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 998px) {
  .wide__razmer {
    font-size: 16px;
  }
}
.wide__max {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 1500px) {
  .wide__max {
    font-size: 16px;
  }
}
.wide__max span {
  font-weight: 500;
}
.wide__color {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.wide__color span {
  width: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: contain;
}
.wide__text {
  margin-top: 20px;
  color: #888;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 30px;
  display: none;
}
@media (max-width: 1500px) {
  .wide__text {
    font-size: 16px;
  }
}
.wide__btn {
  max-width: 100%;
  width: 100%;
  padding: 23px;
}

.get {
  position: relative;
  z-index: 1;
}
.get::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 60%;
  background: #f0f0f0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 998px) {
  .get::before {
    height: 100%;
  }
}
@media (max-width: 998px) {
  .get__container {
    padding-bottom: 70px !important;
  }
}
@media (max-width: 600px) {
  .get__container {
    padding: 0px 10px !important;
    padding-bottom: 64px !important;
  }
}
.get__block {
  overflow: hidden;
  background: #222;
  border-radius: 24px;
  padding: clamp(60px, 6vw, 120px);
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  position: relative;
  z-index: 1;
  background-image: url(../img/ttt.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  transform: translate(0px, 60px);
  transition: 0.5s;
  opacity: 0;
}
.get__block._active {
  transform: translate(0);
  opacity: 1;
}
@media (max-width: 1500px) {
  .get__block {
    grid-template-columns: 0.65fr 0.85fr 1fr;
  }
}
@media (max-width: 1200px) {
  .get__block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 998px) {
  .get__block {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 12px;
  }
}
.get__left {
  color: #fff;
}
@media (max-width: 998px) {
  .get__left {
    padding: 10px;
    padding-top: 30px;
  }
}
.get__head span {
  color: #fec95f;
}
.get__title {
  margin-top: clamp(30px, 3vw, 60px);
}
@media (max-width: 998px) {
  .get__title {
    margin-top: 28px;
  }
}
.get__subtitle {
  margin-top: clamp(50px, 6vw, 120px);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 150%;
}
@media (max-width: 1500px) {
  .get__subtitle {
    margin-top: clamp(30px, 5vw, 100px);
  }
}
@media (max-width: 998px) {
  .get__subtitle {
    margin-top: 28px;
  }
}
.get__img {
  margin-top: auto;
  position: relative;
  height: 100%;
}
@media (max-width: 1200px) {
  .get__img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    z-index: -1;
  }
}
@media (max-width: 998px) {
  .get__img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.get__img img {
  width: 100%;
  max-height: 130%;
  object-fit: contain;
  position: absolute;
  bottom: clamp(-120px, -6vw, -60px);
}
@media (max-width: 998px) {
  .get__img img {
    position: relative;
    bottom: 0;
    height: auto;
    max-height: auto;
    margin-bottom: -60%;
  }
}
.get__form .form-send {
  padding: clamp(30px, 3vw, 60px);
}
@media (max-width: 1500px) {
  .get__form .form-send {
    padding: 30px;
  }
}
@media (max-width: 1500px) {
  .get__form .form-send__top {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .get__form .form-send__btn {
    padding: 20px;
  }
}

.form-send {
  box-shadow: 0 22px 48px 0 rgba(0, 0, 0, 0.03), 0 87px 87px 0 rgba(0, 0, 0, 0.03), 0 195px 117px 0 rgba(0, 0, 0, 0.02), 0 347px 139px 0 rgba(0, 0, 0, 0), 0 542px 152px 0 rgba(0, 0, 0, 0);
  background: #fff;
  border-radius: 16px;
  padding: 60px;
}
.form-send__wp {
  margin-bottom: clamp(30px, 2.5vw, 50px);
}
.form-send__wp._error .form-send__top span {
  color: red;
}
.form-send__wp._error input[type=text] {
  border-bottom: 1px solid red;
}
.form-send__wp input {
  margin-top: clamp(15px, 1.1vw, 20px);
  padding-bottom: 14px;
  font-weight: 500;
  font-size: clamp(20px, 1.3vw, 24px);
}
.form-send__wp input[type=text] {
  border-bottom: 1px solid #cbcbcb;
  width: 100%;
}
@media (max-width: 998px) {
  .form-send__wp input {
    margin-top: 20px;
  }
}
.form-send__wp input::placeholder {
  font-weight: 500;
  font-size: clamp(20px, 1.3vw, 24px);
  color: #888;
}
.form-send__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.form-send__top span {
  color: #888;
}
.form-send__top span:nth-child(3) {
  display: none;
}
@media (max-width: 998px) {
  .form-send__top span:nth-child(2) {
    display: none;
  }
  .form-send__top span:nth-child(3) {
    display: block;
  }
}
.form-send__top p {
  font-weight: 500;
}
.form-send__radio {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  row-gap: 14px;
}
@media (max-width: 998px) {
  .form-send__radio {
    display: none;
  }
}
.form-send__radio input {
  display: none;
}
.form-send__radio input:checked + label::before {
  background-image: url(../img/checkboxoutlined.svg);
  background-size: contain;
  border: none;
}
.form-send__radio label {
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.form-send__radio label::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  border: 1.5px solid #919191;
  border-radius: 50%;
  width: 20px;
  aspect-ratio: 1/1;
}
.form-send .custom-select {
  display: none;
}
@media (max-width: 998px) {
  .form-send .custom-select {
    display: block;
    position: relative;
    margin-top: 20px;
    z-index: 3;
  }
  .form-send .custom-select._open .custom-select__list {
    display: flex;
  }
  .form-send .custom-select .custom-select__current {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 14px;
  }
  .form-send .custom-select .custom-select__current::after {
    position: relative;
    top: 0;
    left: 0;
    content: "";
    background: url(../img/Polygon.svg);
    width: 12px;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .form-send .custom-select button {
    color: #888;
    font-weight: 500;
    font-size: 20px;
  }
  .form-send .custom-select .custom-select__list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    bottom: 0;
    transform: translate(0px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 22px 48px 0 rgba(0, 0, 0, 0.03), 0 87px 87px 0 rgba(0, 0, 0, 0.03), 0 195px 117px 0 rgba(0, 0, 0, 0.02), 0 347px 139px 0 rgba(0, 0, 0, 0), 0 542px 152px 0 rgba(0, 0, 0, 0);
  }
}
.form-send__btn {
  padding: 33px 40px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 600px) {
  .form-send__btn {
    justify-content: center;
    font-size: 16px;
  }
  .form-send__btn img {
    display: none;
  }
}
.form-send__check {
  margin-top: 30px;
  line-height: 1.5;
  color: #888;
  position: relative;
}
.form-send__check._error label::before {
  border-color: red;
}
.form-send__check input {
  display: none;
}
.form-send__check input:checked + label::before {
  background-image: url(../img/checkbox2outlined.svg);
  background-size: contain;
  border: none;
}
.form-send__check label {
  padding-left: 36px;
  position: relative;
  display: block;
}
@media (max-width: 1500px) {
  .form-send__check label {
    font-size: 14px;
    padding-left: 26px;
  }
}
@media (max-width: 600px) {
  .form-send__check label {
    font-size: 12px;
    padding-left: 36px;
  }
}
.form-send__check label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  border-radius: 4px;
}
.form-send__check a {
  color: inherit;
  text-decoration: underline;
}

.advantages ._lines {
  z-index: 5;
}
.advantages__container {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 998px) {
  .advantages__container {
    padding-top: 60px;
    padding-bottom: 64px;
  }
}
.advantages__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .advantages__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.advantages__title {
  display: flex;
  flex-direction: column;
}
.advantages__wp {
  display: flex;
  margin-top: 70px;
  position: relative;
}
@media (max-width: 998px) {
  .advantages__wp {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
.advantages__left {
  width: calc(33.33% - 10px);
  flex: 0 0 calc(33.33% - 10px);
  background: linear-gradient(to right, #fff 0px, #fff 340px, rgba(255, 255, 255, 0) 100%);
  background: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (max-width: 998px) {
  .advantages__left {
    width: 100%;
    flex: 0 0 100%;
    display: none;
  }
}
.advantages__left::after {
  position: absolute;
  top: 0;
  right: 0px;
  content: "";
  transform: translate(100%);
  width: 10px;
  height: 100%;
  background: #fff;
}
@media (max-width: 998px) {
  .advantages__left::after {
    display: none;
  }
}
.advantages__left::before {
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  transform: translate(-100%);
  width: 50vw;
  height: 100%;
  background: #fff;
}
@media (max-width: 998px) {
  .advantages__left::before {
    display: none;
  }
}
.advantages__types {
  margin-top: 50px;
  font-size: 20px;
  line-height: 130%;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 1500px) {
  .advantages__types {
    font-size: 18px;
    margin-top: 30px;
    gap: 10px;
  }
}
.advantages__types div {
  transition: 0.3s;
}
.advantages__wp._1 .advantages__types div:nth-child(1) {
  opacity: 1;
}
.advantages__wp._1 .advantages__types div:nth-child(2) {
  opacity: 0.6;
}
.advantages__wp._1 .advantages__types div:nth-child(3) {
  opacity: 0.4;
}
.advantages__wp._1 .advantages__types div:nth-child(4) {
  opacity: 0.2;
}
.advantages__wp._2 .advantages__types div:nth-child(1) {
  opacity: 0.6;
}
.advantages__wp._2 .advantages__types div:nth-child(2) {
  opacity: 1;
}
.advantages__wp._2 .advantages__types div:nth-child(3) {
  opacity: 0.6;
}
.advantages__wp._2 .advantages__types div:nth-child(4) {
  opacity: 0.4;
}
.advantages__wp._3 .advantages__types div:nth-child(1) {
  opacity: 0.4;
}
.advantages__wp._3 .advantages__types div:nth-child(2) {
  opacity: 0.6;
}
.advantages__wp._3 .advantages__types div:nth-child(3) {
  opacity: 1;
}
.advantages__wp._3 .advantages__types div:nth-child(4) {
  opacity: 0.6;
}
.advantages__wp._4 .advantages__types div:nth-child(1) {
  opacity: 0.2;
}
.advantages__wp._4 .advantages__types div:nth-child(2) {
  opacity: 0.4;
}
.advantages__wp._4 .advantages__types div:nth-child(3) {
  opacity: 0.6;
}
.advantages__wp._4 .advantages__types div:nth-child(4) {
  opacity: 1;
}
.advantages__more {
  position: relative;
  margin-top: auto;
  padding-top: 40px;
  margin-bottom: 40px;
  max-width: 340px;
}
@media (max-width: 1500px) {
  .advantages__more {
    margin-bottom: 25px;
  }
}
.advantages__more .advantages__content {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  bottom: 0px;
  left: 0;
  transition: 0.3s;
}
.advantages__wp._1 .advantages__more .advantages__content:nth-child(1) {
  position: relative;
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.advantages__wp._2 .advantages__more .advantages__content:nth-child(2) {
  position: relative;
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.advantages__wp._3 .advantages__more .advantages__content:nth-child(3) {
  position: relative;
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.advantages__wp._4 .advantages__more .advantages__content:nth-child(4) {
  position: relative;
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.advantages__slider {
  width: calc(66.66% - 10px);
  flex: 0 0 calc(66.66% - 10px);
  overflow: visible;
  position: static !important;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 20px;
}
@media (max-width: 998px) {
  .advantages__slider {
    width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }
}
.advantages__slider .swiper-wrapper {
  position: static !important;
}
.advantages__slider .swiper-slide {
  background: #222;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: static !important;
}
@media (max-width: 998px) {
  .advantages__slider .swiper-slide {
    background: transparent;
  }
  .advantages__slider .swiper-slide:nth-child(1) .advantages__img img {
    width: 120%;
    object-fit: cover;
    object-position: left;
  }
}
.advantages__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  top: 50px;
  left: 50px;
  border-radius: 16px;
}
@media (max-width: 998px) {
  .advantages__name {
    display: none;
  }
}
.advantages__img {
  width: 100%;
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 998px) {
  .advantages__img {
    background: #222;
    margin-top: 0;
    aspect-ratio: 320/278;
    position: relative;
    margin-bottom: 24px;
  }
  .advantages__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
  }
}
.advantages__img img {
  width: 100%;
}
.advantages__content {
  display: flex;
  flex-direction: column;
}
.advantages__slider .advantages__content {
  display: none;
}
@media (max-width: 998px) {
  .advantages__slider .advantages__content {
    display: flex;
    padding-right: 10px;
  }
}
.advantages__content div {
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  max-width: max-content;
}
.advantages__content h3 {
  margin-top: 37px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 30px;
  font-family: "Inter Tight";
}
@media (max-width: 1500px) {
  .advantages__content h3 {
    margin: 22px 0;
  }
}
.advantages__content p {
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 1500px) {
  .advantages__content p {
    font-size: 18px;
  }
}
.advantages__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 998px) {
  .advantages__bottom {
    justify-content: center;
  }
}
@media (max-width: 998px) {
  .advantages__num {
    display: none;
  }
}
.advantages__dots {
  display: flex;
  gap: 22px;
  justify-content: center;
}
@media (max-width: 998px) {
  .advantages__dots {
    margin-top: 32px;
  }
}
.advantages__dots span {
  border-radius: 100%;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  width: 6px;
  transition: 0.3s;
}
.advantages__dots span.swiper-pagination-bullet-active {
  background: #000;
}
@media (max-width: 998px) {
  .advantages__arr {
    display: none;
  }
}

.expert ._lines {
  height: 633px;
}
.expert ._lines div {
  background: linear-gradient(#fff 0%, #ffffff00 100%);
}
.expert__container {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
  transform: translate(0px, 60px);
  transition: 0.5s;
  opacity: 0;
}
@media (max-width: 998px) {
  .expert__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.expert__container._active {
  transform: translate(0);
  opacity: 1;
}
.expert__fon {
  z-index: -2;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  height: 100%;
  width: calc(100vw - 80px);
  max-width: 1920px;
  border-radius: 24px;
  object-fit: cover;
}
@media (max-width: 998px) {
  .expert__fon {
    width: 100vw;
    border-radius: 0;
  }
}
.expert__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .expert__top {
    grid-template-columns: 1fr;
  }
}
.expert__title {
  max-width: 830px;
}
.expert__title span {
  color: #bdbdbd;
}
.expert__center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
  margin-top: 170px;
}
@media (max-width: 1500px) {
  .expert__center {
    gap: 70px;
  }
}
@media (max-width: 1300px) {
  .expert__center {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 998px) {
  .expert__center {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 60px;
  }
}
.expert__element {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 1300px) {
  .expert__element {
    gap: 25px;
  }
}
@media (max-width: 998px) {
  .expert__element:last-child img {
    display: none;
  }
}
.expert__element img {
  transform: translate(0px, -100%);
  max-width: 100%;
  position: absolute;
  top: -25px;
}
@media (max-width: 998px) {
  .expert__element img {
    margin-bottom: 0;
    position: relative;
    transform: translate(0);
    top: 0;
  }
}
.expert__element h3 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 30px;
  font-family: "Inter Tight";
}
.expert__element p {
  font-size: 20px;
  line-height: 150%;
}
.expert__element p span {
  color: #888;
}
@media (max-width: 1500px) {
  .expert__element p {
    font-size: 18px;
  }
}
.expert__wp {
  margin-top: 50px;
  font-family: "Inter Tight";
}
@media (max-width: 998px) {
  .expert__wp {
    margin-top: 30px;
  }
}
.expert__itm {
  padding: 45px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 20px;
  align-items: center;
}
@media (max-width: 998px) {
  .expert__itm {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.expert__itm span {
  font-weight: 700;
  font-size: 32px;
}
.expert__itm:not(:last-child) {
  border-bottom: 1px solid #ffffff4e;
}
.expert__itm:last-child {
  padding-bottom: 0px;
}

.geography__container {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 998px) {
  .geography__container {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.geography__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 998px) {
  .geography__top {
    grid-template-columns: 1fr;
  }
}
.geography__head {
  margin-bottom: 55px;
}
@media (max-width: 998px) {
  .geography__head {
    margin-bottom: 25px;
  }
}
.geography__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  font-size: 20px;
  line-height: 150%;
  color: #888;
}
@media (max-width: 1500px) {
  .geography__right {
    font-size: 18px;
  }
}
.geography__right img {
  max-width: 100%;
  width: 288px;
}
@media (max-width: 1300px) {
  .geography__right img {
    width: 200px;
  }
}
@media (max-width: 998px) {
  .geography__right img {
    display: none;
  }
}
.geography .expert__wp {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 80px;
  gap: 25px;
}
@media (max-width: 998px) {
  .geography .expert__wp {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.geography .expert__wp .expert__itm {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: start;
  padding: 0;
  gap: 15px;
}
@media (max-width: 1300px) {
  .geography .expert__wp .expert__itm {
    font-size: 18px;
  }
  .geography .expert__wp .expert__itm span {
    font-size: 28px;
  }
}
.geography__map {
  margin-top: 60px;
  width: calc(100vw - 200px);
  max-width: 1920px;
  left: 50%;
  transform: translate(-50%);
  position: relative;
}
@media (max-width: 1600px) {
  .geography__map {
    width: calc(100vw - 80px);
  }
}
@media (max-width: 998px) {
  .geography__map {
    width: 100%;
    margin-top: 26px;
  }
}
.geography__map img {
  width: 100%;
}
.geography__map #map {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 840px;
  -webkit-filter: grayscale(100%);
}
@media (max-width: 1500px) {
  .geography__map #map {
    height: 650px;
  }
}
@media (max-width: 1300px) {
  .geography__map #map {
    height: 600px;
  }
}
@media (max-width: 998px) {
  .geography__map #map {
    height: 500px;
  }
}
@media (max-width: 600px) {
  .geography__map #map {
    height: 400px;
  }
}

.cluster-count {
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-image: url(../img/clast.svg);
}

.podbor {
  padding-bottom: 120px;
}
@media (max-width: 998px) {
  .podbor {
    padding-bottom: 64px;
  }
}
.podbor__container {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 998px) {
  .podbor__container {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.podbor__fon {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  background: #f7f7f7;
  border-radius: 24px;
  width: calc(100vw - 200px);
  z-index: -1;
}
@media (max-width: 1600px) {
  .podbor__fon {
    width: calc(100vw - 80px);
  }
}
@media (max-width: 998px) {
  .podbor__fon {
    display: none;
  }
}
.podbor__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: flex-end;
}
@media (max-width: 998px) {
  .podbor__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.podbor[data-clas=_3] .podbor__top {
  display: none;
}
.podbor__left {
  gap: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .podbor__left {
    gap: 20px;
  }
}
@media (max-width: 998px) {
  .podbor__left {
    gap: 20px;
  }
}
.podbor__title {
  display: flex;
  flex-direction: column;
}
.podbor__right {
  font-size: 20px;
  line-height: 150%;
  color: #888;
}
@media (max-width: 998px) {
  .podbor__right {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .podbor__right {
    display: none;
  }
}
.podbor__block {
  margin-top: 70px;
  position: relative;
}
@media (max-width: 998px) {
  .podbor__block {
    margin-top: 29px;
  }
}
.podbor[data-clas=_3] .podbor__block {
  margin-top: 0;
}
.podbor__step {
  border-top: 1px solid #00000014;
  padding-top: 60px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  width: 100%;
}
.podbor__step._active {
  opacity: 1;
  pointer-events: all;
}
.podbor__step._position {
  position: relative;
}
@media (max-width: 998px) {
  .podbor__step {
    padding-top: 0;
    border-top: none;
  }
}
.podbor__step._v4 {
  padding-top: 0;
  border-top: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1300px) {
  .podbor__step._v4 {
    gap: 40px;
    grid-template-columns: 1fr 1.1fr;
  }
}
@media (max-width: 998px) {
  .podbor__step._v4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .podbor__step._v4 .podbor__title {
    font-size: 30px;
  }
}
.podbor__step._v4 .podbor__form {
  max-width: 600px;
  margin-left: auto;
}
@media (max-width: 998px) {
  .podbor__step._v4 .podbor__form {
    max-width: 100%;
  }
}
.podbor__step._v4 .form-send {
  padding: clamp(30px, 3vw, 60px);
}
@media (max-width: 1500px) {
  .podbor__step._v4 .form-send {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .podbor__step._v4 .form-send {
    padding: 30px 20px;
  }
}
.podbor__step._v4 .podbor__title {
  margin: auto;
  padding-bottom: 40px;
}
@media (max-width: 998px) {
  .podbor__step._v4 .podbor__title {
    padding-bottom: 0;
  }
}
.podbor__step._v4 .podbor__subtitle {
  margin-top: 160px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 20px;
  line-height: 150%;
  align-items: flex-start;
  display: none;
}
.podbor__step._v4 .podbor__subtitle img {
  width: 210px;
}
@media (max-width: 1500px) {
  .podbor__step._v4 .podbor__subtitle {
    font-size: 18px;
    margin-top: 120px;
  }
}
@media (max-width: 998px) {
  .podbor__step._v4 .podbor__subtitle {
    margin-top: 20px;
  }
}
.podbor__h {
  font-weight: 600;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1500px) {
  .podbor__h {
    font-size: 26px;
  }
}
@media (max-width: 998px) {
  .podbor__h {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 24px;
  }
}
.podbor__h span {
  border-radius: 8px;
  white-space: nowrap;
  background: #fec95f;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 12px;
}
.podbor__wp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 35px;
}
@media (max-width: 998px) {
  .podbor__wp {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .podbor__wp {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
.podbor__el input {
  display: none;
}
.podbor__el input:checked + label .podbor__check img {
  opacity: 1;
}
@media (min-width: 998px) {
  .podbor__el input:checked + label .podbor__img {
    background: #fff;
  }
}
.podbor__el label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 998px) {
  .podbor__el label:hover .podbor__img {
    background: #fff;
  }
}
@media (max-width: 998px) {
  .podbor__el label {
    background: #f0f0f0;
    border-radius: 12px;
    height: 100%;
    padding: 20px 15px;
  }
}
.podbor__img {
  aspect-ratio: 260/280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 16px;
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 998px) {
  .podbor__img {
    padding: 0;
    aspect-ratio: 125/110;
  }
}
.podbor__img img {
  width: 100%;
}
.podbor__step._v3 .podbor__img img {
  width: 50px;
}
.podbor__check {
  width: 50px;
  margin-top: -25px;
  z-index: 2;
  position: relative;
}
@media (max-width: 998px) {
  .podbor__check {
    position: absolute;
    width: 30px;
    top: 8px;
    right: 8px;
    margin: 0;
  }
}
.podbor__check img {
  width: 100%;
  transition: 0.3s;
}
.podbor__check img:nth-child(2) {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.podbor__name {
  margin-top: 20px;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1500px) {
  .podbor__name {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media (max-width: 700px) {
  .podbor__name {
    margin-top: 10px;
    font-size: 14px;
  }
}
.podbor__btn {
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 998px) {
  .podbor__btn {
    display: none;
  }
}

.control ._lines {
  z-index: 3;
  height: 770px;
}
.control ._lines div {
  background: linear-gradient(#fff 0%, #ffffff00 100%);
  opacity: 0.2;
}
.control ._lines._v3 {
  bottom: 0;
  top: auto;
  height: 600px;
}
@media (max-width: 1500px) {
  .control ._lines._v3 {
    height: 500px;
  }
}
.control ._lines._v3 div {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.control__block {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1300px) {
  .control__block {
    border-radius: 16px;
  }
}
@media (max-width: 998px) {
  .control__block {
    grid-template-columns: 1fr;
    border-radius: 0;
  }
}
.control__block._active .control__item {
  opacity: 1;
}
.control__item {
  opacity: 0;
  transition: 0.4s;
  padding: 120px 120px;
  padding-left: 240px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  color: #fff;
  min-height: 600px;
  justify-content: flex-end;
}
.control__item:nth-child(2) {
  transition-delay: 0.5s;
}
.control__item:nth-child(3) {
  transition-delay: 1s;
}
.control__item:nth-child(4) {
  transition-delay: 1.5s;
}
.control__item:nth-child(5) {
  transition-delay: 2s;
}
.control__item._v1 {
  grid-column: auto/span 2;
  display: grid;
  grid-template-columns: 1fr 2.7fr;
  min-height: 740px;
}
@media (max-width: 1500px) {
  .control__item._v1 {
    min-height: 590px;
    grid-template-columns: 1fr 2.25fr;
  }
}
@media (max-width: 1300px) {
  .control__item._v1 {
    min-height: 500px;
  }
}
@media (max-width: 998px) {
  .control__item._v1 {
    grid-column: auto/span 1;
    padding: 60px 10px;
    min-height: 400px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 600px) {
  .control__item._v1 {
    min-height: 340px;
  }
}
.control__item._v1 .control__head {
  margin-top: auto;
}
@media (max-width: 1500px) {
  .control__item {
    padding: 60px 40px;
    min-height: 500px;
    gap: 60px;
  }
}
@media (max-width: 1300px) {
  .control__item {
    min-height: 400px;
    padding: 50px;
  }
}
@media (max-width: 998px) {
  .control__item {
    min-height: 340px;
    padding: 42px 10px;
    gap: 70px;
    justify-content: start;
  }
}
.control__item:nth-child(1) {
  background-image: url(../img/tt.png);
  background-size: cover;
}
.control__item:nth-child(2) {
  color: #222;
  background: #fec95f;
}
@media (max-width: 998px) {
  .control__item:nth-child(2) .control__cif {
    color: #888;
  }
}
.control__item:nth-child(3) {
  background: #181818;
}
.control__item:nth-child(4) {
  background-image: url(../img/t.png);
  background-size: cover;
}
.control__item:nth-child(5) {
  background: #1e2f5a;
}
.control__item:nth-child(3), .control__item:nth-child(5) {
  padding-left: 120px;
}
@media (max-width: 1500px) {
  .control__item:nth-child(3), .control__item:nth-child(5) {
    padding: 60px;
  }
}
@media (max-width: 998px) {
  .control__item:nth-child(3), .control__item:nth-child(5) {
    padding: 40px 10px;
  }
}
.control__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px;
}
@media (max-width: 998px) {
  .control__left {
    max-width: 100%;
  }
}
.control__cif {
  font-family: "Inter Tight";
  font-size: 30px;
  display: flex;
  align-items: center;
  max-width: 320px;
  gap: 24px;
  line-height: 1.2;
}
@media (max-width: 1500px) {
  .control__cif {
    font-size: 25px;
  }
}
.control__cif div {
  font-weight: 200;
  font-size: 80px;
}
@media (max-width: 1500px) {
  .control__cif div {
    font-size: 70px;
  }
}
@media (max-width: 998px) {
  .control__cif {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
    opacity: 0.4;
  }
  .control__cif div {
    font-size: 20px;
    font-weight: 600;
  }
}
.control__content {
  display: flex;
  flex-direction: column;
}
.control__title {
  display: flex;
  flex-direction: column;
}
@media (max-width: 998px) {
  .control__title {
    display: block;
    margin-bottom: 115px;
    margin-top: 25px;
  }
}
.control__title span {
  color: #bdbdbd;
}
.control__head {
  font-weight: 600;
  font-size: clamp(26px, 1.6vw, 30px);
  line-height: 130%;
  max-width: 380px;
}
.control__text {
  font-size: 18px;
  line-height: 150%;
  margin-top: 25px;
  max-width: 480px;
}
@media (max-width: 998px) {
  .control__text {
    margin-top: 20px;
  }
}

.history__container {
  max-width: 1800px;
  padding: 0px 40px;
  padding-top: 120px;
}
@media (max-width: 998px) {
  .history__container {
    padding: 0px 50px;
    padding-top: 64px;
  }
}
@media (max-width: 600px) {
  .history__container {
    padding: 0px 10px;
    padding-top: 64px;
  }
}
.history__start {
  max-width: 1360px;
  margin: 0px auto;
}
@media (max-width: 1500px) {
  .history__start {
    padding: 0px 40px;
  }
}
@media (max-width: 600px) {
  .history__start {
    padding: 0px 0px;
  }
}
.history__top {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: flex-end;
  margin-top: 50px;
}
@media (max-width: 998px) {
  .history__top {
    margin-top: 25px;
  }
}
.history__title {
  max-width: 984px;
}
@media (min-width: 998px) {
  .history__title br {
    display: none;
  }
}
@media (max-width: 998px) {
  .history__arr {
    display: none;
  }
}
.history__arr div._no {
  pointer-events: none;
}
.history__block {
  margin-top: 60px;
  color: #fff;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  --80: 80px;
}
@media (max-width: 1300px) {
  .history__block {
    --80: 65px;
    border-radius: 14px;
  }
}
@media (max-width: 998px) {
  .history__block {
    flex-direction: column;
    border-radius: 0;
    width: 100vw;
    left: 50%;
    transform: translate(-50%);
    position: relative;
    margin-top: 40px;
  }
}
.history__block ._lines {
  z-index: 2;
  height: 70%;
}
.history__block ._lines div {
  opacity: 0.2;
  background: linear-gradient(#fff 0%, #ffffff00 100%);
}
.history__item {
  background-image: url(../img/bbb.png);
  background-size: cover;
  width: var(--80);
  transition: 0.6s;
  flex: 0 0 var(--80);
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
  min-height: 740px;
}
@media (max-width: 1500px) {
  .history__item {
    min-height: 700px;
  }
}
@media (max-width: 1300px) {
  .history__item {
    min-height: 640px;
  }
}
@media (max-width: 998px) {
  .history__item {
    max-height: 80px;
    min-height: 80px;
    flex-direction: column;
    width: 100%;
    flex: 0 0 auto;
  }
}
.history__item._active {
  flex: 1 1 auto;
}
@media (max-width: 998px) {
  .history__item._active {
    flex: 0 0 auto;
    max-height: 1000px;
  }
}
.history__item._active .history__line::before {
  opacity: 0.6;
}
.history__item:nth-child(1) .history__line::before {
  background: #000;
}
.history__item:nth-child(2) {
  background-image: url(../img/bb2.png);
}
.history__item:nth-child(2) .history__line::before {
  background: #000;
}
.history__item:nth-child(3) {
  background-image: url(../img/bb3.png);
}
.history__item:nth-child(3) .history__line::before {
  background: #000;
}
.history__item:nth-child(4) {
  background-image: url(../img/bb4.png);
}
.history__item:nth-child(4) .history__line::before {
  background: #000;
}
.history__line {
  width: var(--80);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 40px;
  z-index: 1;
  font-weight: 500;
  font-size: 24px;
  transition: 0.3s;
  cursor: pointer;
}
@media (min-width: 998px) {
  .history__line {
    writing-mode: vertical-rl;
  }
}
@media (max-width: 1300px) {
  .history__line {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .history__line {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 11px;
    min-height: 80px;
  }
  .history__item._active .history__line::after {
    transform: rotate(180deg);
  }
  .history__line::after {
    position: relative;
    top: 0;
    left: 0;
    content: "";
    width: 16px;
    height: 8px;
    background: url(../img/Polygon-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
  }
}
.history__line::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s;
  opacity: 0.6;
}
.history__content {
  width: 1220px;
  flex: 0 0 1220px;
  max-width: calc(100vw - 480px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: clamp(40px, 4.2vw, 85px) clamp(50px, 5vw, 95px);
  padding-left: 0;
  transform: translate(100%);
  transition: transform 0.6s;
  padding-left: 80px;
}
.history__item._active .history__content {
  transform: translate(0);
}
@media (min-width: 998px) {
  .history__item._active .history__content {
    padding-left: 0;
  }
}
@media (max-width: 1300px) {
  .history__content {
    max-width: calc(100vw - 420px);
  }
}
@media (max-width: 988px) {
  .history__content {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    padding: 30px;
    align-items: flex-start;
    transform: translate(0);
  }
}
@media (max-width: 700px) {
  .history__content {
    padding: 30px 11px;
    height: max-content;
  }
}
.history__head {
  font-weight: 700;
  font-size: clamp(36px, 2.4vw, 44px);
  line-height: 130%;
}
.history__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: clamp(50px, 9vw, 180px);
  margin-top: 20px;
}
@media (max-width: 1500px) {
  .history__info {
    gap: clamp(50px, 5vw, 180px);
  }
}
@media (max-width: 700px) {
  .history__info {
    grid-template-columns: 1fr;
    gap: 120px;
  }
}
.history__el h4 {
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 30px);
  line-height: 130%;
}
@media (max-width: 700px) {
  .history__el h4 br {
    display: none;
  }
}
.history__el p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 1500px) {
  .history__el p {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media (max-width: 1300px) {
  .history__el p {
    font-size: 16px;
    margin-top: 10px;
  }
}

.faq {
  padding-top: 120px;
  padding-bottom: 40px;
}
.faq ._lines._v3 {
  z-index: 2;
  height: 500px;
}
.faq ._lines._v3 div {
  opacity: 0.1;
  background: linear-gradient(#000000 0%, rgba(255, 255, 255, 0) 100%);
}
.faq ._lines._v4 {
  z-index: 2;
  height: 180px;
  bottom: 0;
  top: auto;
}
.faq ._lines._v4 div {
  opacity: 0.1;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #000000 100%);
}
@media (max-width: 998px) {
  .faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.faq__container {
  position: relative;
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 998px) {
  .faq__container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.faq__fon {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  background: #f7f7f7;
  border-radius: 24px;
  width: calc(100vw - 80px);
  z-index: -1;
}
@media (max-width: 1600px) {
  .faq__fon {
    width: calc(100vw - 80px);
  }
}
@media (max-width: 998px) {
  .faq__fon {
    display: none;
  }
}
.faq__top {
  display: grid;
  grid-template-columns: 1fr 2.8fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .faq__top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.faq__title {
  display: flex;
  flex-direction: column;
}
.faq__subtitle {
  font-size: 20px;
  line-height: 150%;
  margin-top: 40px;
  max-width: 620px;
}
@media (max-width: 1500px) {
  .faq__subtitle {
    font-size: 18px;
    margin-top: 35px;
  }
}
@media (max-width: 998px) {
  .faq__subtitle {
    margin-top: 25px;
  }
}
.faq__wp {
  display: grid;
  grid-template-columns: 1fr 2.8fr;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 1300px) {
  .faq__wp {
    gap: 35px;
    grid-template-columns: 1fr 2.4fr;
    margin-top: 50px;
  }
}
@media (max-width: 998px) {
  .faq__wp {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
}
@media (max-width: 998px) {
  .faq__left {
    display: none;
  }
}
.faq__video video,
.faq__video img {
  width: 100%;
  mix-blend-mode: darken;
  border: 1px solid #ededed;
  border-radius: 12px;
}
.faq__name {
  margin-top: 30px;
  font-weight: 500;
  font-size: 20px;
}
.faq__job {
  margin-top: 12px;
  color: #888;
}
.faq__btn {
  margin-top: 30px;
  width: 100%;
  padding: 30px 10px;
  max-width: 100%;
}
.faq__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  border-radius: 12px;
  transition: 0.3s;
}
.faq__item._active {
  background: #eceeee;
}
.faq__quest {
  padding: 35px 40px;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .faq__quest {
    padding: 35px 30px;
  }
}
.faq__quest._active div::before {
  transform: rotate(90deg) translate(-50%, -50%);
}
.faq__quest div {
  width: 16px;
  aspect-ratio: 1/1;
  position: relative;
}
.faq__quest div::before, .faq__quest div::after {
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 2px;
  transform-origin: top;
  height: 100%;
  border-radius: 3px;
  background: #000;
}
.faq__quest div::after {
  width: 100%;
  height: 2px;
}
.faq__resp {
  font-size: 18px;
  line-height: 150%;
  color: #888;
}
.faq__resp div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 35px 40px;
  padding-top: 0;
}
@media (max-width: 600px) {
  .faq__resp div {
    padding: 35px 30px;
    padding-top: 0;
  }
}

.catalog ._lines {
  z-index: 1;
}
.catalog__container {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr;
  padding-right: 0;
  transform: translate(0px, 60px);
  transition: 0.5s;
  opacity: 0;
}
.catalog__container._active {
  transform: translate(0);
  opacity: 1;
}
@media (max-width: 1700px) {
  .catalog__container {
    padding-right: 80px;
  }
}
@media (max-width: 1200px) {
  .catalog__container {
    grid-template-columns: 0.7fr 0.4fr 1.1fr;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 998px) {
  .catalog__container {
    grid-template-columns: 1fr;
    padding: 47px 30px;
    padding-bottom: 20px;
  }
}
.catalog__fon {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  background: #222;
  background-image: url(../img/form2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 24px;
  width: calc(100vw - 80px);
  z-index: -1;
}
@media (max-width: 1600px) {
  .catalog__fon {
    width: calc(100vw - 80px);
    border-radius: 16px;
  }
}
@media (max-width: 998px) {
  .catalog__fon {
    width: calc(100vw - 20px);
    border-radius: 12px;
  }
}
.catalog__left {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 998px) {
  .catalog__left {
    gap: 27px;
  }
}
.catalog__title span {
  color: #888;
}
.catalog__subtitle {
  margin-top: auto;
  font-size: 20px;
  line-height: 150%;
  max-width: 350px;
}
@media (max-width: 1500px) {
  .catalog__subtitle {
    font-size: 18px;
  }
}
.catalog__img {
  position: relative;
  height: 100%;
  width: 100%;
}
@media (max-width: 998px) {
  .catalog__img {
    margin-top: 30px;
  }
}
.catalog__img > img {
  width: 125%;
  position: absolute;
  bottom: 0;
  transform: rotate(90deg) translate(20%);
}
@media (max-width: 1200px) {
  .catalog__img > img {
    left: 50%;
    width: 220%;
    transform: rotate(90deg) translate(20%, 20%);
  }
}
@media (max-width: 998px) {
  .catalog__img > img {
    width: 70%;
    transform: rotate(90deg) translate(0%, 0%);
    position: relative;
    margin-bottom: -20%;
    margin-left: 0;
    left: 15%;
  }
}
@media (max-width: 600px) {
  .catalog__img > img {
    transform: rotate(90deg) translate(0%, 40%);
    left: 50%;
    width: 100%;
  }
}
.catalog__img div {
  width: 140px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  gap: 10px;
  border-radius: 100%;
  padding: 10px;
  background: #fec95f;
  z-index: 2;
  position: relative;
  top: 10%;
}
@media (max-width: 1200px) {
  .catalog__img div {
    width: 120px;
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .catalog__img div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
}
@media (max-width: 600px) {
  .catalog__img div {
    left: 50%;
    transform: translate(-50%);
  }
}
.catalog__form {
  margin-right: -50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1700px) {
  .catalog__form {
    margin-right: 0;
  }
}
.catalog__form .form-send {
  padding: clamp(30px, 3vw, 60px);
}
@media (max-width: 1500px) {
  .catalog__form .form-send {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .catalog__form .form-send {
    padding: 30px 20px;
  }
}
@media (max-width: 1500px) {
  .catalog__form .form-send__top {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .catalog__form .form-send__btn {
    padding: 20px;
  }
}

.footer {
  padding-top: 40px;
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 998px) {
  .footer {
    margin-bottom: 0;
    padding-top: 64px;
  }
}
.footer__container {
  position: relative;
  color: #fff;
}
.footer__container a {
  color: inherit;
}
.footer__fon {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: 100%;
  background: #222;
  border-radius: 24px;
  width: calc(100vw - 80px);
  z-index: -1;
}
@media (max-width: 1600px) {
  .footer__fon {
    width: calc(100vw - 80px);
    border-radius: 16px;
  }
}
@media (max-width: 998px) {
  .footer__fon {
    width: calc(100vw - 0px);
    border-radius: 0px;
  }
}
.footer__top {
  position: relative;
  grid-template-columns: 1fr 1fr;
  display: grid;
  padding-bottom: 70px;
  gap: 20px;
}
.footer__top ._lines {
  width: calc(100% + 160px);
}
.footer__top ._lines div {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}
@media (max-width: 998px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .footer__top::before {
    display: none;
  }
}
.footer__top::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: calc(100vw - 80px);
  max-width: 1840px;
  background: rgba(255, 255, 255, 0.15);
  height: 1px;
}
.footer__left {
  max-width: 68.5%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 998px) {
  .footer__left {
    max-width: 100%;
  }
}
.footer__logo img {
  width: 100%;
}
@media (max-width: 998px) {
  .footer__logo {
    display: none;
  }
}
.footer__users {
  margin-top: 80px;
  width: 210px;
}
@media (max-width: 998px) {
  .footer__users {
    margin-top: 64px;
  }
}
.footer__users img {
  width: 100%;
}
.footer__head {
  margin-top: 30px;
  font-size: 18px;
  line-height: 140%;
  max-width: 280px;
}
.footer__name {
  margin-top: 15px;
  line-height: 163%;
  color: #888;
  max-width: 400px;
}
.footer__phone {
  font-weight: 600;
  font-size: 40px;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .footer__phone {
    font-size: 36px;
  }
}
.footer__phone:hover {
  text-decoration: underline;
}
.footer__mail {
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
  position: relative;
  max-width: max-content;
}
.footer__mail:hover::before {
  opacity: 1;
}
.footer__mail::before {
  position: absolute;
  bottom: -1px;
  right: 0;
  content: "";
  height: 1.5px;
  background: #fff;
  width: 100%;
  opacity: 0.2;
}
.footer__btn {
  color: #000 !important;
  max-width: max-content;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .footer__btn {
    max-width: 100%;
    width: 100%;
  }
}
.footer__adress {
  margin-top: 50px;
}
.footer__hash {
  padding-top: 70px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .footer__hash {
    padding-top: 55px;
  }
}
@media (max-width: 1300px) {
  .footer__hash {
    padding-top: 40px;
    gap: 20px;
  }
}
@media (max-width: 998px) {
  .footer__hash {
    display: none;
  }
}
.footer__hash a {
  font-weight: 500;
  font-size: 18px;
}
.footer__hash a:hover {
  text-decoration: underline;
}
.footer__links {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}
@media (max-width: 998px) {
  .footer__links {
    display: none;
  }
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__social {
  display: flex;
  margin-top: 100px;
  gap: 8px;
}
@media (max-width: 998px) {
  .footer__social {
    margin-top: 40px;
  }
}
.footer__social a {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.3s;
}
.footer__social a:hover {
  background: #ffe2a9;
}
.footer__social a img {
  width: 20px;
}
.footer__bottom {
  grid-template-columns: 1fr 1fr;
  display: grid;
  color: #888;
  gap: 20px;
  padding: 55px 0;
}
@media (max-width: 998px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    line-height: 1.2;
    padding: 60px 0;
  }
}
.footer__two {
  display: flex;
  align-items: center;
  gap: 47px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer__two a,
.footer__two div {
  gap: 12px;
  display: flex;
  align-items: center;
}