@import url(https://fonts.googleapis.com/css?family=Raleway:500,600&display=swap);

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

@charset "UTF-8";

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

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

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

body {
  color: #2d2d33;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
  line-height: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

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

.lock.menu-open body {
  overflow: hidden;
}

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

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

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

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

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 81.25rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

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;
  outline: none;
}

.input:focus::-webkit-input-placeholder {
  color: #DCE0E7;
}

.input:focus::-moz-placeholder {
  color: #DCE0E7;
}

.input:focus:-ms-input-placeholder {
  color: #DCE0E7;
}

.input:focus::-ms-input-placeholder {
  color: #DCE0E7;
}

.input:focus::placeholder {
  color: #DCE0E7;
}

.input:focus {
  border: none;
}

.input:focus-visible {
  border: none;
}

.select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.75rem;
          flex: 0 0 3.75rem;
  width: 3.75rem;
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.4375rem;
  gap: 0.5rem;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/arrow-up.svg") center/contain no-repeat;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.2777777778;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.select__options {
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  color: #8E96AB;
  position: absolute;
  top: 100%;
  min-width: 4.8125rem;
  left: 0;
  background-color: #fff;
  padding: 13px 0px;
  margin-top: 0.5rem;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
  display: grid;
}

.select__option {
  padding: 7px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.select__option._select-selected {
  background-color: #eee;
}

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

.select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

._select-tag {
  cursor: pointer;
}

.popup {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  z-index: 150;
}

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

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

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-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__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  min-height: 613px;
  position: relative;
  z-index: 100;
}

.lock .popup__content {
  visibility: visible;
}

.popup__content.popup-aboutus__content {
  min-height: 30.3125rem;
}

.popup__close {
  width: 32px;
  height: 32px;
  background: url("../img/icons/close-info.svg") center/contain no-repeat;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 120;
}

.popup-info-one {
  color: #FFF;
  padding: 25px;
  position: relative;
}

.no-webp .popup-info-one.one{
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url("../img/main-house/1.jpg") center/cover no-repeat; }

.no-webp .popup-info-one.one{
  background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url("../img/main-house/1.jpg") center/cover no-repeat; }

.no-webp .popup-info-one.two{
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url("../img/two-house/1.jpg") center/cover no-repeat; }

.no-webp .popup-info-one.two{
  background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url("../img/two-house/1.jpg") center/cover no-repeat; }

.no-webp .popup-info-one.three{
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url("../img/three-house/1.jpg") center/cover no-repeat; }

.no-webp .popup-info-one.three{
  background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url("../img/three-house/1.jpg") center/cover no-repeat; }

.popup-info-one__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 62.5rem;
  margin: 0 auto;
}

.popup-info-one__body.popup-info-one__body_video {
  gap: 4.1875rem;
}

.popup-info-one__title {
  font-family: "Raleway";
  font-weight: 600;
  line-height: 1.2222222222;
  text-transform: uppercase;
  text-align: center;
}

.popup-info-one__title:not(:last-child) {
  margin-bottom: 1.25rem;
}

.popup-info-one__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-info-one__sub p {
  font-size: 1.375rem;
  line-height: 1.2727272727;
}

.popup-info-one__video {
  text-align: center;
  border-radius: 24px;
  background: #FFF;
  width: 33.4375rem;
  height: 19.375rem;
  margin: 0 auto;
  padding: 0.5rem;
}

.popup-info-one__video video {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-info-one__title-items {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  margin-bottom: 1.875rem;
}

.popup-info-one__item {
  line-height: 1.5555555556;
  position: relative;
  padding-left: 1.5625rem;
}

.popup-info-one__item span {
  font-weight: 600;
}

.popup-info-one__item::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5px;
          flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFF;
  margin: 11px 10px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.popup-aboutus__content {
  max-width: 66.875rem;
  height: 30.3125rem;
}

.popup-aboutus__video {
  max-width: 66.875rem;
  height: 30.3125rem;
}

.popup-aboutus__video video {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#popup-aboutus-video.popup_show + .about-us__title {
  opacity: 0.3;
}

#popup-aboutus-video.popup_show ~ .about-us__content {
  opacity: 0.3;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30%;
     object-position: 30%;
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: relative;
  z-index: 50;
  color: #FFF;
  font-family: "Raleway";
  font-weight: 500;
  line-height: 1.5555555556;
}

.header__container {
  position: relative;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  min-height: 5.625rem;
  position: relative;
  z-index: 3;
}

.no-webp .header__logo{
  background: url("../img/logo-tech-house.png") center/contain no-repeat; }

.header__logo {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
}

.header__navigation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.header__right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__button button {
  font-family: inherit;
  border-radius: 12px;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0);
  padding: 0.625rem 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__button button.de {
	padding: 0.625rem 1rem;
}

.menu {
  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;
  gap: 0.9375rem;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 0.3125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__item {
  position: relative;
}

.menu__item::after {
  content: "";
  display: block;
  width: 0rem;
  height: 0.1875rem;
  background-color: #DCE0E7;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.icon-menu {
  display: none;
}

.menu-open .icon-menu {
  background-color: inherit;
}

.menu-open .icon-menu::before {
  background: url("../img/icons/close.svg") center/contain no-repeat;
  margin-top: -35px;
}

.backgraund {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(22, 37, 68, 0.5)), to(rgba(22, 37, 68, 0.5)));
  background: linear-gradient(0deg, rgba(22, 37, 68, 0.5) 0%, rgba(22, 37, 68, 0.5) 100%);
  position: relative;
  z-index: 40;
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #0A1327;
  color: #FFF;
  position: relative;
}

.footer__container {
  position: relative;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 12.1875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  position: relative;
  z-index: 2;
}

.footer__left-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.no-webp .footer__logo{
  background: url("../img/logo-tech-house.png") center/contain no-repeat; }

.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 87px;
          flex: 0 0 87px;
  width: 87px;
  height: 87px;
}

.footer__info {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1.25rem;
}

.footer__phone {
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__adress {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.footer__adress p {
  text-align: center;
}

.footer__right-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4375rem;
  padding-right: 6.25rem;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.footer__social {
  display: block;
}

.footer__social img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__button-up {
  width: 4.4375rem;
  height: 4.4375rem;
  border-radius: 50%;
  background-color: #162544;
  position: absolute;
  bottom: 30px;
  right: 30px;
  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;
}

.footer__button-up::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../img/icons/bottom-arrow.svg") center/contain no-repeat;
}

.menu-footer {
  font-family: "Raleway";
}

.menu-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 0.3125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-footer__item {
  position: relative;
}

.menu-footer__item::after {
  content: "";
  display: block;
  width: 0rem;
  height: 0.1875rem;
  background-color: #DCE0E7;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-footer__link {
  font-weight: 500;
  line-height: 1.2777777778;
}

.top-main-block {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.25rem;
}

.top-main-block__title {
  font-family: "Raleway";
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1111111111;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: -5.9375rem;
}

.top-main-block__title span {
  color: #FFF;
}

.top-main-block__slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26.875rem;
          flex: 0 0 26.875rem;
}

.top-main-block__wrapper {
  padding-bottom: 6.25rem;
}

.top-main-block__slide {
  color: #8E8E8E;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.main-house {
  position: relative;
}

.swiper-slide__body {
  position: relative;
}

.swiper-slide__image-ibg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide__image-ibg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(178deg, rgba(139, 180, 227, 0.5) 6.34%, rgba(85, 164, 255, 0) 21.43%);
  z-index: 2;
}

.swiper-slide__container {
  position: relative;
  z-index: 2;
  min-height: 613px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 4.375rem;
  gap: 1.0625rem;
}

.swiper-slide__container.swiper-slide__container_big {
  gap: 4.375rem;
}

.swiper-slide__video-block {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.swiper-slide__buttons {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-family: "Raleway";
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.swiper-slide__button {
  border-radius: 12px;
  padding: 20px 32px;
}

.swiper-slide__button_white {
  color: #162544;
  background: rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-slide__button_blue {
  background-color: #162544;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-slide__title-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 3.4375rem;
}

.swiper-slide__title {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2222222222;
  margin-bottom: 1.25rem;
}

.swiper-slide__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}

.video-block-slide {
  border-radius: 24px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  max-width: 26.875rem;
  padding: 0.5rem;
}

.video-block-slide__info {
  color: #162544;
  padding-top: 0.75rem;
  padding-left: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}

.video-block-slide__subtitle {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.video-block-slide__title {
  font-weight: 600;
  line-height: 1.1666666667;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.video-block-slide__button {
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.5625rem;
  border-radius: 50%;
  background-color: #162544;
  margin-bottom: 0.125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.video-block-slide__button::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icons/media-play.svg") center/cover no-repeat;
}

.video-block-slide__image {
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 208px;
          flex: 0 0 208px;
  width: 208px;
  height: 187px;
}

.video-block-slide__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.assortment__title {
  font-family: "Raleway";
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: -6.25rem;
}

.assortment__slider {
  position: relative;
}

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

.slide-assortment__body:not(:last-child) {
  margin-bottom: 1.25rem;
}

.slide-assortment__body_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.slide-assortment__info-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
}

.slide-assortment__info-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
}

.slide-assortment__info-border {
  border-radius: 30px;
  display: -ms-grid;
  display: grid;
  border: 1px solid #162544;
  min-height: 24.1875rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.slide-assortment__content {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-line-pack: end;
      align-content: end;
}

.slide-assortment__title {
  font-family: "Raleway";
  font-weight: 600;
  line-height: 1.2777777778;
}

.slide-assortment__text {
  line-height: 1.5555555556;
}

.slide-assortment__image-ibg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  border-radius: 30px;
  padding-bottom: 24.1875rem;
  overflow: hidden;
}

.about-us__body {
  position: relative;
}

.about-us__title {
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Raleway";
}

.about-us__title:not(:last-child) {
  margin-bottom: 2.375rem;
}

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

.about-us__right-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}

.about-us__showmore {
  color: #8E8E8E;
  font-size: 1.25rem;
  line-height: 1.5;
}

.about-us__button {
  font-family: "Raleway";
  display: block;
  padding: 0.3125rem 2rem;
  min-height: 3.375rem;
  border-radius: 12px;
  background: #162544;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about-us__left-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 26.25rem;
  margin-left: auto;
  padding-left: 0.9375rem;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 2.5rem;
}

.about-us__number {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about-us__desc {
  line-height: 1.5555555556;
}

.about-us-showmore__more {
  font-family: "Raleway";
  display: block;
  padding: 0.3125rem 2rem;
  min-height: 3.375rem;
  border-radius: 12px;
  border: 2px solid #162544;
  background: rgba(255, 255, 255, 0.75);
  color: #162544;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.buttons__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.no-webp .consultation__body{
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.72%, rgba(12, 24, 50, 0.6)), color-stop(83.42%, rgba(12, 24, 50, 0))), url("../img/main-house/7.jpg") 20%/cover no-repeat, lightgray -8.462px -547.58px/100% 290.388% no-repeat; }

.no-webp .consultation__body{
  background: linear-gradient(180deg, rgba(12, 24, 50, 0.6) 37.72%, rgba(12, 24, 50, 0) 83.42%), url("../img/main-house/7.jpg") 20%/cover no-repeat, lightgray -8.462px -547.58px/100% 290.388% no-repeat; }

.consultation__body {
  border-radius: 36px;
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.consultation__left-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consultation__left-block_content {
  padding-top: 3.75rem;
}

.consultation__title {
  font-family: "Raleway";
  line-height: 1.2222222222;
  text-transform: uppercase;
  font-weight: 600;
}

.consultation__sub {
  line-height: 1.4545454545;
}

.consultation__right-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 34%;
          flex: 1 0 34%;
}

.form {
  border-radius: 36px;
  background: #FFF;
  width: 100%;
}

.form__line {
  position: relative;
}

.form__line:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #DCE0E7;
  position: absolute;
  bottom: -7px;
  left: 0;
}

.form__input {
  width: 100%;
  line-height: 1.5555555556;
  color: #2D2D33;
}

.form__input::-webkit-input-placeholder {
  color: #8E96AB;
  line-height: 1.5555555556;
}

.form__input::-moz-placeholder {
  color: #8E96AB;
  line-height: 1.5555555556;
}

.form__input:-ms-input-placeholder {
  color: #8E96AB;
  line-height: 1.5555555556;
}

.form__input::-ms-input-placeholder {
  color: #8E96AB;
  line-height: 1.5555555556;
}

.form__input::placeholder {
  color: #8E96AB;
  line-height: 1.5555555556;
}

.form__button {
  position: relative;
}

.form__button .button {
  position: absolute;
  top: 72px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: block;
  background-color: #162544;
  width: 143px;
  height: 143px;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form__button .button::before {
  content: "";
  display: block;
  background: url("../img/icons/arrow-slider-white.svg") center/contain no-repeat;
  width: 45px;
  height: 45px;
  margin: 0 auto;
}

.swiper,
.swiper-house,
.swiper-assortment {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

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

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

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

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

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

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

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
.swiper-house,
.swiper-assortment {
  margin-left: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-assortment {
  padding-top: 150px;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

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

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  bottom: 5px;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev-house,
.swiper-button-next-house {
  position: absolute;
  bottom: 45px;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev-assortment,
.swiper-button-next-assortment {
  position: absolute;
  top: 0;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next-house.swiper-button-disabled,
.swiper-button-prev-house.swiper-button-disabled {
  opacity: 0.7;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next-assortment.swiper-button-disabled,
.swiper-button-prev-assortment.swiper-button-disabled {
  opacity: 0.7;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  display: block;
  background: url("../img/icons/arrow-swiper.svg") center/contain no-repeat;
  width: 31px;
  height: 31px;
}

.swiper-button-next-house:after,
.swiper-button-prev-house:after {
  content: "";
  display: block;
  background: url("../img/icons/arrow-slider-white.svg") center/contain no-repeat;
  width: 31px;
  height: 31px;
}

.swiper-button-next-assortment:after,
.swiper-button-prev-assortment:after {
  content: "";
  display: block;
  background: url("../img/icons/arrow-swiper.svg") center/contain no-repeat;
  width: 60px;
  height: 58px;
}

.swiper-button-prev:after,
.swiper-button-prev-house:after,
.swiper-button-prev-assortment:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: auto;
  right: 70px;
}

.swiper-button-prev-house,
.swiper-rtl .swiper-button-next-house {
  left: 45px;
  right: auto;
}

.swiper-button-prev-assortment,
.swiper-rtl .swiper-button-next-assortment {
  left: auto;
  right: 110px;
}

.swiper-rtl .swiper-button-next:after,
.swiper-rtl .swiper-button-next-house:after,
.swiper-rtl .swiper-button-next-assortment:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
}

.swiper-button-next-house,
.swiper-rtl .swiper-button-prev-house {
  right: auto;
  left: 100px;
}

.swiper-button-next-assortment,
.swiper-rtl .swiper-button-prev-assortment {
  right: 0px;
  left: auto;
}

.swiper-rtl .swiper-button-prev:after,
.swiper-rtl .swiper-button-prev-house:after,
.swiper-rtl .swiper-button-prev-assortment:after {
  content: "next";
}

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

.swiper-pagination {
  position: absolute;
  text-align: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination-house {
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
  padding-bottom: 10px;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 5px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 21px;
  height: 4px;
  display: inline-block;
  border-radius: 3px;
  background: #DCE0E7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-pagination-house .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50%;
  background: #DCE0E7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: #8E96AB;
  width: 50px;
}

.swiper-pagination-house .swiper-pagination-bullet-active {
  background: #8E96AB;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media (min-width: 47.99875em) {
  .header {
    background-color: #162544;
  }

  .header__container::before {
    content: "";
    height: 5.625rem;
    width: 18.3125rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #263657;
    border-bottom-right-radius: 5.625rem;
    z-index: 2;
  }

  .header__container::after {
    content: "";
    display: block;
    width: 100vw;
    height: 5.625rem;
    background-color: #263657;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
    z-index: 2;
  }

  .header__right-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19.8125rem;
            flex: 0 0 19.8125rem;
  }

  .header__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.1875rem;
            flex: 0 0 14.1875rem;
  }

  .menu__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__container::before {
    content: "";
    min-height: 12.1875rem;
    width: 32.25rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #162544;
    border-top-right-radius: 12.5rem;
    z-index: 2;
  }

  .footer__container::after {
    content: "";
    display: block;
    width: 100vw;
    min-height: 12.1875rem;
    background-color: #162544;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
    z-index: 2;
  }

  .assortment__slide.assortment__slide_mobile {
    display: none;
  }

  .slide-assortment__info-right {
    padding-left: 1.25rem;
  }

  .slide-assortment__info-left {
    padding-right: 1.25rem;
  }
}

@media (min-width: 81.25em) {
  .popup__content.popup__content_big {
    min-height: 61.375rem;
  }

  .popup-info-one {
    padding-top: 5.4375rem;
  }

  .popup-info-one__body {
    gap: 5.625rem;
  }

  .popup-info-one__title {
    font-size: 2.8125rem;
  }

  .menu__list {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .footer__body {
    gap: 2.5rem;
  }

  .footer__left-block {
    gap: 2.5rem;
  }

  .footer__right-block {
    padding-left: 11.5rem;
  }

  .menu-footer__list {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .main-block {
    padding-top: 5.8125rem;
  }

  .top-main-block__title {
    font-size: 5.625rem;
  }

  .swiper-slide__container.swiper-slide__container_big {
    min-height: 61.375rem;
  }

  .swiper-slide__title {
    font-size: 2.8125rem;
  }

  .assortment {
    padding-top: 7.5rem;
  }

  .assortment {
    padding-bottom: 7.5rem;
  }

  .assortment__title {
    font-size: 3.125rem;
  }

  .slide-assortment__info-border {
    padding-left: 2rem;
  }

  .slide-assortment__info-border {
    padding-right: 2rem;
  }

  .slide-assortment__title {
    font-size: 2.25rem;
  }

  .slide-assortment__text {
    font-size: 1.125rem;
  }

  .about-us {
    padding-bottom: 7.5rem;
  }

  .about-us__title {
    font-size: 3.125rem;
  }

  .about-us__title {
    max-width: 43.75rem;
  }

  .about-us-showmore__content {
    font-size: 1.125rem;
  }

  .about-us-showmore__content p:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .buttons__flex {
    margin-top: 3.75rem;
  }

  .consultation {
    padding-bottom: 7.5rem;
  }

  .consultation__left-block_content {
    max-width: 40.625rem;
  }

  .consultation__title {
    font-size: 2.8125rem;
  }

  .consultation__title:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .form {
    padding-left: 3.125rem;
  }

  .form {
    padding-right: 3.125rem;
  }

  .form {
    padding-top: 4.375rem;
  }

  .form {
    padding-bottom: 9.375rem;
  }
}

@media (min-width: 767.98px) {
  .swiper-pagination-house {
    display: none;
  }
}

@media (max-width: 65em) {
  .footer__right-block {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .swiper-button-prev-house,
  .swiper-button-next-house {
    display: none;
  }

  .swiper-button-prev-assortment,
  .swiper-button-next-assortment {
    display: none;
  }
}

@media (max-width: 75.9375em) {
  .top-main-block__title {
    font-size: 4.375rem;
    margin-bottom: -4.6875rem;
  }

  .top-main-block__wrapper {
    padding-bottom: 4.375rem;
  }
}

@media (max-width: 68.75em) {
  .top-main-block__slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20.625rem;
            flex: 0 0 20.625rem;
  }

  .top-main-block__slide {
    line-height: 1.2;
  }
}

@media (max-width: 61.99875em) {
  .top-main-block__title {
    margin-bottom: -4.6875rem;
  }

  .top-main-block__wrapper {
    padding-bottom: 2.5rem;
  }

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

  .about-us__left-content {
    margin-left: 0;
    padding-left: 0rem;
    padding-top: 4.375rem;
  }
}

@media (max-width: 61.99875em) and (max-width: 23.4375em) {
  .top-main-block__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 47.99875em) {
  .select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.4375rem;
            flex: 0 0 1.4375rem;
  }

  .popup__close {
    width: 24px;
    height: 24px;
    right: 15px;
    background: url("../img/icons/close-info-mobile.svg") center/contain no-repeat;
  }

  .popup-info-one {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-info-one__top {
    display: none;
  }

  .popup-info-one__video video {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
  }

  .popup-info-one__video {
    background: inherit;
  }

  .popup-info-one__title-items {
    margin-bottom: 1.25rem;
  }

  .popup-aboutus__content {
    height: 38.3125rem;
  }

  .popup-aboutus__video video {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
  }

  .popup-aboutus__video {
    height: 38.3125rem;
  }

  .no-webp .header__logo{
    background: url("../img/logo-for-white.png") center/contain no-repeat; }

  .header__logo {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }

  .no-webp .menu-open .header__logo{
    background: url("../img/logo-tech-house.png") center/contain no-repeat; }

  .header__right-block {
    gap: 1.5625rem;
    -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;
  }

  .menu {
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    row-gap: 1.75rem;
    width: calc(100% - 0.9375rem);
    height: calc(100% - 0.9375rem);
    top: 0;
    left: -100%;
    overflow: auto;
    background-color: #162544;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    padding-bottom: 1.875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-top: 8.75rem;
  }

  .menu::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

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

  .menu-open .menu::before {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(22, 37, 68, 0.5)), to(rgba(22, 37, 68, 0.5)));
    background: linear-gradient(0deg, rgba(22, 37, 68, 0.5) 0%, rgba(22, 37, 68, 0.5) 100%);
  }

  .menu__body {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
    width: 100%;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: rem(20);
  }

  .menu__link {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 2.75rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.75rem;
            flex: 0 0 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: #162544;
    z-index: 5;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .icon-menu::before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: url("../img/icons/line-menu.svg") center/contain no-repeat;
    margin: 0 auto;
  }

  .footer__container::before {
    content: "";
    height: 11.875rem;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #162544;
    border-bottom-left-radius: 12.5rem;
    z-index: 2;
  }

  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }

  .footer__left-block {
    -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;
    gap: 3.125rem;
  }

  .footer__phone {
    font-size: 1.375rem;
    line-height: 1.4545454545;
    text-align: center;
  }

  .footer__adress {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .footer__button-up {
    display: none;
  }

  .menu-footer__list {
    -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;
    row-gap: 1.25rem;
  }

  .menu-footer__link {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }

  .top-main-block__title {
    max-width: 31.25rem;
    font-size: 2.5rem;
    margin-bottom: -2.8125rem;
  }

  .top-main-block__slider {
    display: none;
  }

  .swiper-slide__container {
    gap: 4.4375rem;
    padding-bottom: 3.125rem;
  }

  .swiper-slide__video-block {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .video-block-slide {
    max-width: 22.5rem;
  }

  .video-block-slide__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 145px;
            flex: 0 0 145px;
    width: 145px;
  }

  .slide-assortment__body.mobile-none {
    display: none;
  }

  .slide-assortment__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.1875rem;
  }

  .slide-assortment__info-border {
    margin-bottom: 1.25rem;
  }

  .about-us__title:not(:last-child) {
    margin-bottom: 1.875rem;
  }

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

  .form__button .button {
    width: 91px;
    height: 91px;
  }

  .form__button .button::before {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) and (max-width: 23.4375em) {
  .consultation__left-block_content {
    max-width: 19.0625rem;
  }

  .form__button .button {
    top: 2.875rem;
  }
}

@media (max-width: 32.5em) {
  .buttons__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 23.4375em) {
  .popup__content.popup__content_big {
    min-height: 43.9375rem;
  }

  .popup-info-one {
    padding-top: 1.625rem;
  }

  .popup-info-one__body {
    gap: 1.875rem;
  }

  .popup-info-one__title {
    font-size: 1.875rem;
  }

  .menu__list {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }

  .footer__body {
    gap: 0.9375rem;
  }

  .footer__left-block {
    gap: 0.9375rem;
  }

  .footer__right-block {
    padding-left: 0.0000000625rem;
  }

  .menu-footer__list {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }

  .main-block {
    padding-top: 0.9375rem;
  }

  .top-main-block__title {
    font-size: 2.5rem;
  }

  .swiper-slide__container.swiper-slide__container_big {
    min-height: 43.9375rem;
  }

  .swiper-slide__title {
    font-size: 2.25rem;
  }

  .assortment {
    padding-top: 5rem;
  }

  .assortment {
    padding-bottom: 4.0625rem;
  }

  .assortment__title {
    font-size: 1.875rem;
  }

  .slide-assortment__info-border {
    padding-left: 1.375rem;
  }

  .slide-assortment__info-border {
    padding-right: 1.375rem;
  }

  .slide-assortment__title {
    font-size: 1.375rem;
  }

  .slide-assortment__text {
    font-size: 0.875rem;
  }

  .about-us {
    padding-bottom: 5rem;
  }

  .about-us__title {
    font-size: 1.875rem;
  }

  .about-us__title {
    max-width: 21.875rem;
  }

  .about-us-showmore__content {
    font-size: 1rem;
  }

  .about-us-showmore__content p:not(:last-child) {
    margin-bottom: 0.9375rem;
  }

  .buttons__flex {
    margin-top: 2.5rem;
  }

  .consultation {
    padding-bottom: 5rem;
  }

  .consultation__left-block_content {
    max-width: 19.0625rem;
  }

  .consultation__title {
    font-size: 1.875rem;
  }

  .consultation__title:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .form {
    padding-left: 1.625rem;
  }

  .form {
    padding-right: 1.625rem;
  }

  .form {
    padding-top: 3.125rem;
  }

  .form {
    padding-bottom: 5.9375rem;
  }
}

@media (min-width: 23.4375em) and (max-width: 81.25em) {
@supports (min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem )) {
    .popup__content.popup__content_big {
      min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem );
    }
}

@supports not (min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem )) {
    .popup__content.popup__content_big {
      min-height: calc(43.9375rem + 17.4375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-top: clamp( 1.625rem , 0.0793918919rem  +  6.5945945946vw , 5.4375rem )) {
    .popup-info-one {
      padding-top: clamp( 1.625rem , 0.0793918919rem  +  6.5945945946vw , 5.4375rem );
    }
}

@supports not (padding-top: clamp( 1.625rem , 0.0793918919rem  +  6.5945945946vw , 5.4375rem )) {
    .popup-info-one {
      padding-top: calc(1.625rem + 3.8125 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (gap: clamp( 1.875rem , 0.3547297297rem  +  6.4864864865vw , 5.625rem )) {
    .popup-info-one__body {
      gap: clamp( 1.875rem , 0.3547297297rem  +  6.4864864865vw , 5.625rem );
    }
}

@supports not (gap: clamp( 1.875rem , 0.3547297297rem  +  6.4864864865vw , 5.625rem )) {
    .popup-info-one__body {
      gap: calc(1.875rem + 3.75 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem )) {
    .popup-info-one__title {
      font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem )) {
    .popup-info-one__title {
      font-size: calc(1.875rem + 0.9375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports ((-moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) or (column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem ))) {
    .menu__list {
      -webkit-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
         -moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
              column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not ((-moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) or (column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem ))) {
    .menu__list {
      -webkit-column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
         -moz-column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
              column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) {
    .footer__body {
      gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) {
    .footer__body {
      gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) {
    .footer__left-block {
      gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) {
    .footer__left-block {
      gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-left: clamp( 0.0000000625rem , -4.6621620743rem  +  19.8918917838vw , 11.5rem )) {
    .footer__right-block {
      padding-left: clamp( 0.0000000625rem , -4.6621620743rem  +  19.8918917838vw , 11.5rem );
    }
}

@supports not (padding-left: clamp( 0.0000000625rem , -4.6621620743rem  +  19.8918917838vw , 11.5rem )) {
    .footer__right-block {
      padding-left: calc(0.0000000625rem + 11.4999999375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports ((-moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) or (column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem ))) {
    .menu-footer__list {
      -webkit-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
         -moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
              column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not ((-moz-column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem )) or (column-gap: clamp( 0.9375rem , 0.3040540541rem  +  2.7027027027vw , 2.5rem ))) {
    .menu-footer__list {
      -webkit-column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
         -moz-column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
              column-gap: calc(0.9375rem + 1.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-top: clamp( 0.9375rem , -1.0388513514rem  +  8.4324324324vw , 5.8125rem )) {
    .main-block {
      padding-top: clamp( 0.9375rem , -1.0388513514rem  +  8.4324324324vw , 5.8125rem );
    }
}

@supports not (padding-top: clamp( 0.9375rem , -1.0388513514rem  +  8.4324324324vw , 5.8125rem )) {
    .main-block {
      padding-top: calc(0.9375rem + 4.875 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 2.5rem , 1.2331081081rem  +  5.4054054054vw , 5.625rem )) {
    .top-main-block__title {
      font-size: clamp( 2.5rem , 1.2331081081rem  +  5.4054054054vw , 5.625rem );
    }
}

@supports not (font-size: clamp( 2.5rem , 1.2331081081rem  +  5.4054054054vw , 5.625rem )) {
    .top-main-block__title {
      font-size: calc(2.5rem + 3.125 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem )) {
    .swiper-slide__container.swiper-slide__container_big {
      min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem );
    }
}

@supports not (min-height: clamp( 43.9375rem , 36.8682432432rem  +  30.1621621622vw , 61.375rem )) {
    .swiper-slide__container.swiper-slide__container_big {
      min-height: calc(43.9375rem + 17.4375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 2.25rem , 2.0219594595rem  +  0.972972973vw , 2.8125rem )) {
    .swiper-slide__title {
      font-size: clamp( 2.25rem , 2.0219594595rem  +  0.972972973vw , 2.8125rem );
    }
}

@supports not (font-size: clamp( 2.25rem , 2.0219594595rem  +  0.972972973vw , 2.8125rem )) {
    .swiper-slide__title {
      font-size: calc(2.25rem + 0.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-top: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .assortment {
      padding-top: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem );
    }
}

@supports not (padding-top: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .assortment {
      padding-top: calc(5rem + 2.5 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-bottom: clamp( 4.0625rem , 2.6689189189rem  +  5.9459459459vw , 7.5rem )) {
    .assortment {
      padding-bottom: clamp( 4.0625rem , 2.6689189189rem  +  5.9459459459vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 4.0625rem , 2.6689189189rem  +  5.9459459459vw , 7.5rem )) {
    .assortment {
      padding-bottom: calc(4.0625rem + 3.4375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem )) {
    .assortment__title {
      font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem )) {
    .assortment__title {
      font-size: calc(1.875rem + 1.25 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-left: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem )) {
    .slide-assortment__info-border {
      padding-left: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem );
    }
}

@supports not (padding-left: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem )) {
    .slide-assortment__info-border {
      padding-left: calc(1.375rem + 0.625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-right: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem )) {
    .slide-assortment__info-border {
      padding-right: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem );
    }
}

@supports not (padding-right: clamp( 1.375rem , 1.1216216216rem  +  1.0810810811vw , 2rem )) {
    .slide-assortment__info-border {
      padding-right: calc(1.375rem + 0.625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1.375rem , 1.0202702703rem  +  1.5135135135vw , 2.25rem )) {
    .slide-assortment__title {
      font-size: clamp( 1.375rem , 1.0202702703rem  +  1.5135135135vw , 2.25rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.0202702703rem  +  1.5135135135vw , 2.25rem )) {
    .slide-assortment__title {
      font-size: calc(1.375rem + 0.875 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7736486486rem  +  0.4324324324vw , 1.125rem )) {
    .slide-assortment__text {
      font-size: clamp( 0.875rem , 0.7736486486rem  +  0.4324324324vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7736486486rem  +  0.4324324324vw , 1.125rem )) {
    .slide-assortment__text {
      font-size: calc(0.875rem + 0.25 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .about-us {
      padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .about-us {
      padding-bottom: calc(5rem + 2.5 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem )) {
    .about-us__title {
      font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.3682432432rem  +  2.1621621622vw , 3.125rem )) {
    .about-us__title {
      font-size: calc(1.875rem + 1.25 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (max-width: clamp( 21.875rem , 13.0067567568rem  +  37.8378378378vw , 43.75rem )) {
    .about-us__title {
      max-width: clamp( 21.875rem , 13.0067567568rem  +  37.8378378378vw , 43.75rem );
    }
}

@supports not (max-width: clamp( 21.875rem , 13.0067567568rem  +  37.8378378378vw , 43.75rem )) {
    .about-us__title {
      max-width: calc(21.875rem + 21.875 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1rem , 0.9493243243rem  +  0.2162162162vw , 1.125rem )) {
    .about-us-showmore__content {
      font-size: clamp( 1rem , 0.9493243243rem  +  0.2162162162vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9493243243rem  +  0.2162162162vw , 1.125rem )) {
    .about-us-showmore__content {
      font-size: calc(1rem + 0.125 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.5574324324rem  +  1.6216216216vw , 1.875rem )) {
    .about-us-showmore__content p:not(:last-child) {
      margin-bottom: clamp( 0.9375rem , 0.5574324324rem  +  1.6216216216vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.5574324324rem  +  1.6216216216vw , 1.875rem )) {
    .about-us-showmore__content p:not(:last-child) {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (margin-top: clamp( 2.5rem , 1.9932432432rem  +  2.1621621622vw , 3.75rem )) {
    .buttons__flex {
      margin-top: clamp( 2.5rem , 1.9932432432rem  +  2.1621621622vw , 3.75rem );
    }
}

@supports not (margin-top: clamp( 2.5rem , 1.9932432432rem  +  2.1621621622vw , 3.75rem )) {
    .buttons__flex {
      margin-top: calc(2.5rem + 1.25 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .consultation {
      padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem );
    }
}

@supports not (padding-bottom: clamp( 5rem , 3.9864864865rem  +  4.3243243243vw , 7.5rem )) {
    .consultation {
      padding-bottom: calc(5rem + 2.5 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (max-width: clamp( 19.0625rem , 10.3209459459rem  +  37.2972972973vw , 40.625rem )) {
    .consultation__left-block_content {
      max-width: clamp( 19.0625rem , 10.3209459459rem  +  37.2972972973vw , 40.625rem );
    }
}

@supports not (max-width: clamp( 19.0625rem , 10.3209459459rem  +  37.2972972973vw , 40.625rem )) {
    .consultation__left-block_content {
      max-width: calc(19.0625rem + 21.5625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem )) {
    .consultation__title {
      font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.4949324324rem  +  1.6216216216vw , 2.8125rem )) {
    .consultation__title {
      font-size: calc(1.875rem + 0.9375 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.9966216216rem  +  1.0810810811vw , 1.875rem )) {
    .consultation__title:not(:last-child) {
      margin-bottom: clamp( 1.25rem , 0.9966216216rem  +  1.0810810811vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.9966216216rem  +  1.0810810811vw , 1.875rem )) {
    .consultation__title:not(:last-child) {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-left: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem )) {
    .form {
      padding-left: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem );
    }
}

@supports not (padding-left: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem )) {
    .form {
      padding-left: calc(1.625rem + 1.5 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-right: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem )) {
    .form {
      padding-right: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem );
    }
}

@supports not (padding-right: clamp( 1.625rem , 1.0168918919rem  +  2.5945945946vw , 3.125rem )) {
    .form {
      padding-right: calc(1.625rem + 1.5 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-top: clamp( 3.125rem , 2.6182432432rem  +  2.1621621622vw , 4.375rem )) {
    .form {
      padding-top: clamp( 3.125rem , 2.6182432432rem  +  2.1621621622vw , 4.375rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 2.6182432432rem  +  2.1621621622vw , 4.375rem )) {
    .form {
      padding-top: calc(3.125rem + 1.25 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (padding-bottom: clamp( 5.9375rem , 4.5439189189rem  +  5.9459459459vw , 9.375rem )) {
    .form {
      padding-bottom: clamp( 5.9375rem , 4.5439189189rem  +  5.9459459459vw , 9.375rem );
    }
}

@supports not (padding-bottom: clamp( 5.9375rem , 4.5439189189rem  +  5.9459459459vw , 9.375rem )) {
    .form {
      padding-bottom: calc(5.9375rem + 3.4375 * (100vw - 23.4375rem) / 57.8125);
    }
}
}

@media (max-width: 61.99875em) and (min-width: 81.25em) {
  .top-main-block__title {
    font-size: 3.25rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 23.4375em) and (max-width: 81.25em) {
@supports (font-size: clamp( 2.5rem , 2.1959459459rem  +  1.2972972973vw , 3.25rem )) {
    .top-main-block__title {
      font-size: clamp( 2.5rem , 2.1959459459rem  +  1.2972972973vw , 3.25rem );
    }
}

@supports not (font-size: clamp( 2.5rem , 2.1959459459rem  +  1.2972972973vw , 3.25rem )) {
    .top-main-block__title {
      font-size: calc(2.5rem + 0.75 * (100vw - 23.4375rem) / 57.8125);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 81.25em) {
  .consultation__left-block_content {
    max-width: 43.75rem;
  }

  .form__button .button {
    top: 4.5rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 23.4375em) and (max-width: 81.25em) {
@supports (max-width: clamp( 19.0625rem , 9.0540540541rem  +  42.7027027027vw , 43.75rem )) {
    .consultation__left-block_content {
      max-width: clamp( 19.0625rem , 9.0540540541rem  +  42.7027027027vw , 43.75rem );
    }
}

@supports not (max-width: clamp( 19.0625rem , 9.0540540541rem  +  42.7027027027vw , 43.75rem )) {
    .consultation__left-block_content {
      max-width: calc(19.0625rem + 24.6875 * (100vw - 23.4375rem) / 57.8125);
    }
}

@supports (top: clamp( 2.875rem , 2.2162162162rem  +  2.8108108108vw , 4.5rem )) {
    .form__button .button {
      top: clamp( 2.875rem , 2.2162162162rem  +  2.8108108108vw , 4.5rem );
    }
}

@supports not (top: clamp( 2.875rem , 2.2162162162rem  +  2.8108108108vw , 4.5rem )) {
    .form__button .button {
      top: calc(2.875rem + 1.625 * (100vw - 23.4375rem) / 57.8125);
    }
}
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .header__button button:hover {
    color: #162544;
    background-color: #FFF;
  }

  .menu__item:hover::after {
    width: 2.5rem;
  }

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

  .footer__social:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }

  .menu-footer__item:hover::after {
    width: 2.5rem;
  }

  .swiper-slide__button_white:hover {
    background-color: #FFF;
  }

  .swiper-slide__button_blue:hover {
    background: #103993;
  }

  .video-block-slide__button:hover {
    background: #103993;
  }

  .about-us__button:hover {
    background: #103993;
  }

  .about-us__number:hover {
    color: #8E96AB;
    cursor: pointer;
  }

  .about-us-showmore__more:hover {
    border: 2px solid #103993;
    color: #103993;
  }

  .form__button .button:hover {
    background-color: #103993;
  }
}

.webp .popup-info-one.one{ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url(../img/main-house/1.webp) center/cover no-repeat; }

.webp .popup-info-one.one{ background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url(../img/main-house/1.webp) center/cover no-repeat; }

.webp .popup-info-one.two{ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url(../img/two-house/1.webp) center/cover no-repeat; }

.webp .popup-info-one.two{ background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url(../img/two-house/1.webp) center/cover no-repeat; }

.webp .popup-info-one.three{ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(1, 7, 53, 0.7)), to(rgba(1, 7, 53, 0.7))), url(../img/three-house/1.webp) center/cover no-repeat; }

.webp .popup-info-one.three{ background: linear-gradient(0deg, rgba(1, 7, 53, 0.7) 0, rgba(1, 7, 53, 0.7) 100%), url(../img/three-house/1.webp) center/cover no-repeat; }

.webp .header__logo{ background: url(../img/logo-tech-house.webp) center/contain no-repeat; }

.webp .footer__logo{ background: url(../img/logo-tech-house.webp) center/contain no-repeat; }

.webp .consultation__body{ background: -webkit-gradient(linear, left top, left bottom, color-stop(37.72%, rgba(12, 24, 50, 0.6)), color-stop(83.42%, rgba(12, 24, 50, 0))), url(../img/main-house/7.webp) 20%/cover no-repeat, lightgray -8.462px -547.58px/100% 290.388% no-repeat; }

.webp .consultation__body{ background: linear-gradient(180deg, rgba(12, 24, 50, 0.6) 37.72%, rgba(12, 24, 50, 0) 83.42%), url(../img/main-house/7.webp) 20%/cover no-repeat, lightgray -8.462px -547.58px/100% 290.388% no-repeat; }

@media (max-width: 47.99875em){

  .webp .header__logo{ background: url(../img/logo-for-white.webp) center/contain no-repeat; }
}

@media (max-width: 47.99875em){

  .webp .menu-open .header__logo{ background: url(../img/logo-tech-house.webp) center/contain no-repeat; }
}

.menu-open .header__logo {
	background: url("../img/logo-tech-house.png") center / contain no-repeat;
}