@charset "UTF-8";
:root {
  --primary: #131411;
  --black: #000;
  --white: #fff;
  --light: #F0F0F0;
  --light-gray: #EFEEEE;
  --gray: #BBBBBB;
  --gray2: #AFAFAF;
  --gray3: #636363;
  --gray4: #777777;
  --dark-gray: #1C1C1C;
  --dark-gray2: #121212;
  --red: #dc2626;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a {
  color: inherit;
}

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

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

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

body {
  line-height: 1;
  font-size: 10px;
  font-family: "TT Norms", sans-serif;
  color: var(--primary);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: "TT Norms", sans-serif;
}

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

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

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-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-weight: 300;
  scrollbar-gutter: stable;
}
body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}
@media (max-width: 1555px) {
  body {
    font-size: 8.2px;
  }
}
@media (max-width: 1279.98px) {
  body {
    font-size: 7px;
  }
}
@media (max-width: 991.98px) {
  body {
    font-size: 8px;
  }
}

.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;
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/*preloader*/
.preloader {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
  background: #f6f6f6;
}
.preloader .container {
  position: relative;
  z-index: 10;
  height: 100%;
}
.preloader.hidden {
  opacity: 0;
}

.preloader-body {
  position: relative;
  height: inherit;
}
.preloader-body__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 440px;
}
@media (max-width: 1540px) {
  .preloader-body__logo {
    width: calc(290px + 150 * ((100vw - 320px) / (1220)));
  }
}
.preloader-body__logo img {
  width: 440px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1540px) {
  .preloader-body__logo img {
    width: calc(290px + 150 * ((100vw - 320px) / (1220)));
  }
}
@media (max-width: 1540px) {
  .preloader-body__logo img {
    height: calc(76px + 44 * ((100vw - 320px) / (1220)));
  }
}
.preloader-body__logo-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}
.preloader-body__percents {
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-family: "TT Norms";
  font-size: 40px;
  line-height: 110%;
  text-align: center;
  color: var(--black);
}
@media (max-width: 1540px) {
  .preloader-body__percents {
    font-size: calc(20px + 20 * ((100vw - 320px) / (1220)));
  }
}

.container, .container-big {
  max-width: 1555px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
}

.container-big {
  max-width: 1800px;
}

/*links*/
.link, .link-invert {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.link::before, .link-invert::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: currentColor;
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover::before, .link-invert:hover::before {
    width: 100%;
  }
}

.link-invert::before {
  width: 100%;
}
@media (any-hover: hover) {
  .link-invert:hover::before {
    width: 0%;
  }
}

/*drop info text*/
.info-text-drop {
  cursor: pointer;
  position: relative;
}
.info-text-drop span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.info-text-drop span::after {
  font-weight: 400;
  content: attr(data-tooltip);
  position: absolute;
  z-index: 30;
  width: 100%;
  top: 1em;
  left: 0;
  -webkit-clip-path: polygon(90% 5%, 95% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
          clip-path: polygon(90% 5%, 95% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
  background: var(--gray);
  color: var(--white);
  padding: 0.75em;
  padding-top: 1.25em;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
@media (any-hover: hover) {
  .info-text-drop:hover span {
    background: var(--light);
  }
  .info-text-drop:hover span::after {
    opacity: 1;
  }
}

/*title text*/
.title-anim-block, .text-anim-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title-anim-block.active .title-anim > *, .text-anim-block.active .title-anim > * {
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
}

.title-anim {
  overflow: hidden;
  display: block;
}
.title-anim span {
  display: block;
}
.title-anim > * {
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
  -webkit-transform: translateY(100%) rotate(-5deg);
          transform: translateY(100%) rotate(-5deg);
}

/*slider buttons*/
.slider-controls__prev, .slider-controls__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  width: 6.6em;
  height: 6.6em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: transparent url("../img/circle.png") no-repeat center/100% 100%;
}
.slider-controls__prev.swiper-button-disabled, .slider-controls__next.swiper-button-disabled {
  opacity: 0.4;
}
@media (any-hover: hover) {
  .slider-controls__prev:not(.swiper-button-disabled):hover, .slider-controls__next:not(.swiper-button-disabled):hover {
    background: var(--gray) url("../img/circle.png") no-repeat center/100% 100%;
  }
}
.slider-controls__prev svg, .slider-controls__next svg {
  width: 2em;
  height: 2em;
}
.slider-controls__prev svg path, .slider-controls__next svg path {
  stroke: var(--primary);
  fill: var(--primary);
}
@media (max-width: 767.98px) {
  .slider-controls__prev, .slider-controls__next {
    width: 4em;
    height: 4em;
  }
}
.slider-controls__prev {
  background: var(--white) url("../img/circle.png") no-repeat center/100% 100%;
  z-index: 1;
}
.slider-controls__next {
  background: var(--primary) url("../img/circle.png") no-repeat center/100% 100%;
  z-index: 2;
}
.slider-controls__next svg path {
  stroke: var(--white);
  fill: var(--white);
}
.slider-controls__dots.swiper-pagination-horizontal, .slider-controls__dots.swiper-pagination-vertical {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
}
.slider-controls__dots .swiper-pagination-bullet {
  margin: 0 4px;
  opacity: 1;
  width: 1em;
  height: 0.4em;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
  cursor: pointer;
  position: relative;
  border-radius: 0;
}
.slider-controls__dots .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 1em;
  height: 100%;
  top: 0;
  left: 0;
}
.slider-controls__dots .swiper-pagination-bullet-active {
  width: 5.6em;
}
.slider-controls__dots .swiper-pagination-bullet-active::before {
  background-color: var(--white);
  width: 100%;
  -webkit-transition: width 3s linear 0s;
  transition: width 3s linear 0s;
}

.scrollbar {
  margin: 1.25em 0;
  height: 2px;
  background: var(--primary);
}
.scrollbar .swiper-scrollbar-drag {
  cursor: pointer;
  height: 2.4em;
  border-radius: 1em;
  background: var(--light);
  border: 2px solid var(--gray3);
  top: calc(50% - 1.3em);
  position: relative;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.scrollbar .swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--gray3);
}
@media (any-hover: hover) {
  .scrollbar .swiper-scrollbar-drag:hover {
    background: var(--light);
  }
}

/*form*/
.form__body {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.form__text {
  color: var(--gray2);
}
.form__row {
  margin-top: 3rem;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__row .input-body, .form__row .form__button {
    width: 100%;
  }
}
.form__footer {
  margin-top: 1rem;
}
.form__policy {
  color: var(--gray8);
}
.form__policy a {
  text-decoration: underline;
}

/*filter*/
.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
}
@media (min-width: 767.98px) {
  .filter {
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 767.98px) {
  .filter {
    overflow: visible;
  }
}
.filter__body {
  position: relative;
}
.filter__spoller-button {
  display: block;
  cursor: pointer;
  white-space: nowrap;
  background: var(--primary);
  border: 1px solid var(--primary);
  font-size: 1.8em;
  line-height: 120%;
  padding: 1em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
@media (min-width: 767.98px) {
  .filter__spoller-button {
    display: none;
  }
}
.filter__spoller-body {
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .filter__spoller-body {
    position: absolute;
    z-index: 20;
    padding-top: 6em;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    top: 0;
    left: 0;
  }
  .filter__spoller-body.active {
    height: auto;
  }
  .filter__spoller-body.active .filter__list {
    opacity: 1;
    visibility: visible;
  }
}
.filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767.98px) {
  .filter__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 0.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    background: var(--white);
    border: 1px solid var(--primary);
  }
}
.filter__item {
  display: block;
  cursor: pointer;
  white-space: nowrap;
  font-size: 1.8em;
  line-height: 120%;
  padding: 1em 1.5em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: var(--white);
}
@media (min-width: 767.98px) {
  .filter__item {
    border-right: 1px solid var(--primary);
  }
  .filter__item:first-child {
    border-left: 1px solid var(--primary);
  }
  .filter__item.active {
    color: var(--white);
    background: var(--primary);
  }
}
@media (min-width: 767.98px) and (any-hover: hover) {
  .filter__item:not(.active):hover {
    color: var(--primary);
    background: var(--gray);
  }
}
@media (max-width: 767.98px) {
  .filter__item {
    padding: 1em;
    color: var(--primary);
  }
  .filter__item.active {
    color: var(--white);
    background: var(--primary);
  }
}
@media (max-width: 767.98px) and (any-hover: hover) {
  .filter__item:not(.active):hover {
    color: var(--white);
    background: var(--gray);
  }
}

.noUi-target {
  width: 100%;
  min-width: 8em;
  height: 3px;
  border: none;
  border-radius: 0 !important;
  position: relative;
  background: var(--gray2);
  overflow: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noUi-handle {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  height: 1.25em !important;
  width: 1.25em !important;
  border-radius: 0% !important;
  top: 50% !important;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  pointer-events: auto;
  background: transparent;
  border: 0.5em solid var(--primary);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
@media (any-hover: hover) {
  .noUi-handle:hover {
    background: var(--primary);
  }
}
.noUi-handle::before, .noUi-handle::after {
  display: none;
}

.noUi-connect {
  height: 100%;
  background: var(--primary);
}

.ui-slider__body {
  margin-top: 1em;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
.ui-slider__input-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.1rem;
}
.ui-slider__input-body span {
  font-size: 1.4em;
}
.ui-slider__input {
  text-align: center;
  max-width: 6.5em;
  font-size: 1.6em;
  line-height: 110%;
  background: transparent;
  -moz-appearance: textfield;
}
.ui-slider__input::-webkit-outer-spin-button, .ui-slider__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*toggle*/
.toggle__button {
  cursor: pointer;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
.toggle__button span {
  display: block;
  position: relative;
  height: 2em;
  width: 7em;
  background: var(--light-gray);
}
.toggle__button span::before {
  content: "";
  position: absolute;
  width: 3.5em;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.toggle__button.active span::before {
  left: auto;
  right: 0;
}
@media (any-hover: hover) {
  .toggle__button:hover span::before {
    background: var(--gray);
  }
}
.toggle__text {
  color: var(--gray3);
  font-size: 1.4em;
  line-height: 110%;
  white-space: nowrap;
}
.toggle__icon {
  overflow: hidden;
  width: 1.5em;
  height: 1.5em;
}
.toggle__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*social*/
.social__item {
  width: 4em;
  height: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: url("../img/cir_b.png") no-repeat center/100% 100%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.social__item svg {
  width: 1.4em;
  height: 1.4em;
}
.social__item svg path {
  fill: var(--white);
}
@media (any-hover: hover) {
  .social__item:hover {
    opacity: 0.5;
  }
}

/*address*/
.address__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.address__desc {
  color: var(--gray);
  line-height: 110%;
}
.address__desc span {
  color: var(--white);
}
/*select*/
.select {
  position: relative;
  width: 32em;
  cursor: pointer;
}
.select.active {
  z-index: 20;
}
.select.active .select__filter-body, .select.active .select__list {
  opacity: 1;
  visibility: visible;
  min-height: 100%;
}
.select.active .select__spoller {
  height: auto;
}
.select__body {
  position: relative;
  z-index: 5;
  width: 100%;
}
.select__button {
  position: relative;
  z-index: 3;
  padding: 0.75em 1em;
  cursor: pointer;
  font-size: 1.6em;
  line-height: 120%;
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  color: var(--white);
  background: var(--primary);
}
.select__button i {
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
}
.select__button i svg {
  width: 1em;
  height: 2em;
}
.select__spoller {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.select__list, .select__filter-body {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: var(--white);
  border: 1px solid var(--gray2);
  -webkit-box-shadow: 0px 2em 2em 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 2em 2em 0px rgba(0, 0, 0, 0.0509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.select__filter-body {
  gap: 1rem;
}
.select__item {
  width: 100%;
  padding: 0.75em;
  font-size: 1.6em;
  line-height: 110%;
}
.select__item:not(:last-child) {
  border-bottom: 1px solid var(--gray2);
}
.select__item.active {
  color: var(--white);
  background: var(--primary);
}

.filter-body-select {
  padding: 1em 0;
}
.filter-body-select__item {
  margin: 0 1em;
  padding: 1em 0;
}
.filter-body-select__item:not(:last-child) {
  border-bottom: 1px solid var(--gray2);
}
.filter-body-select__title {
  text-align: left;
  font-size: 1.8em;
}
.filter-body-select__radio-buttons {
  margin-top: 1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media (max-width: 479.98px) {
  .filter-body-select__radio-buttons {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter-body-select__checkbox {
  font-size: 1.4em;
}
.filter-body-select__checkbox .checkbox__label {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.eye-icon {
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background: url("../img/circle_w.png") no-repeat center/100%;
}
.eye-icon::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white) url("../img/icons/eye_closed.png") no-repeat center/65%;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

/*widgets*/
@media (max-width: 1555px) {
  .widgets {
    right: 2rem;
  }
}
@media (min-width: 767.98px) {
  .widgets {
    position: fixed;
    z-index: 100;
    bottom: 1rem;
    /*bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);*/
    right: 1rem;
  }
}

.buttons-form {
  margin-top: 1em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 2em;
  background: rgba(19, 20, 17, 0.5019607843);
  padding: 1em;
}
@media (min-width: 767.98px) {
  .buttons-form .buttons-form__link {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .buttons-form {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1em;
    gap: 1em;
  }
}
.buttons-form__link {
  padding: 1em 0.5em !important;
  font-size: 1.4em;
}
@media (min-width: 767.98px) {
  .buttons-form__link {
    min-height: 160px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media (max-width: 767.98px) {
  .buttons-form__link {
    padding: 1em !important;
  }
  .buttons-form__link_h {
    display: none;
  }
}

/*widget chat*/
#chatWidgetContainer.chat-widget-container {
  position: relative;
}
@media (max-width: 767.98px) {
  #chatWidgetContainer.chat-widget-container {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 8em;
  }
}
#chatWidgetContainer.chat-widget-container .chat-toggle {
  position: relative;
  overflow: hidden;
  width: 6em;
  height: 6em;
  background: rgba(19, 20, 17, 0.5019607843);
  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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--white);
  font-size: inherit;
  cursor: pointer;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#chatWidgetContainer.chat-widget-container .chat-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
#chatWidgetContainer.chat-widget-container .chat-toggle.hidden {
  -webkit-transform: scale(0) rotate(180deg);
          transform: scale(0) rotate(180deg);
  opacity: 0;
  pointer-events: none;
}
#chatWidgetContainer.chat-widget-container .chat-toggle.has-notification::after {
  content: "";
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  width: 1em;
  height: 1em;
  background: var(--red);
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-animation: notification-pulse 2s infinite;
          animation: notification-pulse 2s infinite;
}
@media (any-hover: hover) {
  #chatWidgetContainer.chat-widget-container .chat-toggle:hover {
    -webkit-transform: translateY(-2px) scale(1.05);
            transform: translateY(-2px) scale(1.05);
    -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  #chatWidgetContainer.chat-widget-container .chat-toggle:hover::before {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
#chatWidgetContainer.chat-widget-container .chat-toggle__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#chatWidgetContainer.chat-widget-container .chat-toggle__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
#chatWidgetContainer.chat-widget-container .chat-widget {
  width: 38em;
  height: 52em;
  background: var(--white);
  border: 1px solid var(--primary);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(20px) scale(0.95);
          transform: translateY(20px) scale(0.95);
  opacity: 0;
  overflow: hidden;
}
#chatWidgetContainer.chat-widget-container .chat-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#1e293b), color-stop(#475569), to(#1e293b));
  background: linear-gradient(90deg, #1e293b, #475569, #1e293b);
  z-index: 1;
}
#chatWidgetContainer.chat-widget-container .chat-widget.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
@media (min-width: 767.98px) {
  #chatWidgetContainer.chat-widget-container .chat-widget.open {
    position: absolute;
    z-index: 5;
    right: 0;
  }
}
@media (max-width: 767.98px) {
  #chatWidgetContainer.chat-widget-container .chat-widget {
    width: 100%;
    height: calc(100vh - 32px);
    max-height: 60em;
  }
}
#chatWidgetContainer.chat-widget-container .chat-header {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#chatWidgetContainer.chat-widget-container .chat-header__image {
  background: rgba(19, 20, 17, 0.5019607843);
  border-radius: 50%;
  overflow: hidden;
  width: 6em;
  height: 6em;
}
#chatWidgetContainer.chat-widget-container .chat-header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
#chatWidgetContainer.chat-widget-container .chat-header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
}
#chatWidgetContainer.chat-widget-container .chat-title {
  font-weight: 500;
  font-size: 1.4em;
  line-height: 120%;
}
#chatWidgetContainer.chat-widget-container .chat-subtitle {
  font-size: 1.4em;
  line-height: 120%;
}
#chatWidgetContainer.chat-widget-container .chat-close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: inherit;
  width: 1.6em;
  height: 1.6em;
  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;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 1em;
  right: 1em;
  border-radius: 50%;
  background: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#chatWidgetContainer.chat-widget-container .chat-close::before, #chatWidgetContainer.chat-widget-container .chat-close::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gray);
}
#chatWidgetContainer.chat-widget-container .chat-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (any-hover: hover) {
  #chatWidgetContainer.chat-widget-container .chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
#chatWidgetContainer.chat-widget-container .chat-messages {
  background: var(--white);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  position: relative;
}
#chatWidgetContainer.chat-widget-container .chat-messages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#e2e8f0), to(transparent));
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
#chatWidgetContainer.chat-widget-container .chat-messages::-webkit-scrollbar {
  width: 0.6em;
}
#chatWidgetContainer.chat-widget-container .chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
#chatWidgetContainer.chat-widget-container .chat-messages::-webkit-scrollbar-thumb {
  background: var(--gray);
}
#chatWidgetContainer.chat-widget-container .chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--gray4);
}
#chatWidgetContainer.chat-widget-container .chat-input-container {
  padding: 2em;
  background: var(--white);
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
#chatWidgetContainer.chat-widget-container .chat-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em;
  outline: none;
  font-size: 1.4em;
  resize: none;
  min-height: 2em;
  max-height: 10em;
  line-height: 1.5;
  font-family: inherit;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: var(--white);
  border: 1px solid var(--gray);
}
#chatWidgetContainer.chat-widget-container .chat-input::-webkit-input-placeholder {
  color: var(--gray);
  opacity: 0.8;
}
#chatWidgetContainer.chat-widget-container .chat-input::-moz-placeholder {
  color: var(--gray);
  opacity: 0.8;
}
#chatWidgetContainer.chat-widget-container .chat-input:-ms-input-placeholder {
  color: var(--gray);
  opacity: 0.8;
}
#chatWidgetContainer.chat-widget-container .chat-input::-ms-input-placeholder {
  color: var(--gray);
  opacity: 0.8;
}
#chatWidgetContainer.chat-widget-container .chat-input::placeholder {
  color: var(--gray);
  opacity: 0.8;
}
#chatWidgetContainer.chat-widget-container .message {
  max-width: 85%;
  padding: 1em;
  word-wrap: break-word;
  line-height: 1.5;
  font-size: 1.4em;
  -webkit-animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: var(--white);
  color: var(--gray4);
  border: 1px solid var(--gray);
}
#chatWidgetContainer.chat-widget-container .message.user {
  background: var(--gray4);
  color: var(--white);
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
          box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
  margin-left: 4em;
}
@media (max-width: 767.98px) {
  #chatWidgetContainer.chat-widget-container .message.user {
    margin-left: 2em;
  }
}
#chatWidgetContainer.chat-widget-container .message.bot {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 4em;
}
@media (max-width: 767.98px) {
  #chatWidgetContainer.chat-widget-container .message.bot {
    margin-right: 2em;
  }
}
#chatWidgetContainer.chat-widget-container .message.typing {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-style: italic;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
#chatWidgetContainer.chat-widget-container .message.error {
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fecaca;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
#chatWidgetContainer.chat-widget-container .typing-dots::after {
  content: "";
  -webkit-animation: dots 1.5s infinite;
          animation: dots 1.5s infinite;
}
#chatWidgetContainer.chat-widget-container .chat-input {
  background: var(--white);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
}
#chatWidgetContainer.chat-widget-container .chat-send-btn {
  background: var(--primary);
  width: 2.6em;
  height: 2.6em;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
          box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#chatWidgetContainer.chat-widget-container .chat-send-btn svg {
  width: 1.2em;
  height: 1.2em;
}
#chatWidgetContainer.chat-widget-container .chat-send-btn svg path {
  fill: var(--white);
}
#chatWidgetContainer.chat-widget-container .chat-send-btn.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#chatWidgetContainer.chat-widget-container .chat-send-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}
#chatWidgetContainer.chat-widget-container .chat-send-btn:disabled::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@media (any-hover: hover) {
  #chatWidgetContainer.chat-widget-container .chat-send-btn:hover {
    background: var(--gray);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0 6px 16px rgba(30, 41, 59, 0.25);
            box-shadow: 0 6px 16px rgba(30, 41, 59, 0.25);
  }
}

@-webkit-keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}

@keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px) scale(0.95);
            transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px) scale(0.95);
            transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes notification-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
}
@keyframes notification-pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*Buttons*/
.button-black, .button-white, .button-gray, .button-black-tr, .button-white-tr {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1em 1.5em;
  font-size: 1.4em;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
.button-black i, .button-white i, .button-gray i, .button-black-tr i, .button-white-tr i {
  width: 2em;
  height: 2em;
}
.button-black i svg, .button-white i svg, .button-gray i svg, .button-black-tr i svg, .button-white-tr i svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.button-black i svg path, .button-white i svg path, .button-gray i svg path, .button-black-tr i svg path, .button-white-tr i svg path {
  stroke: currentColor;
  -webkit-transition: stroke 0.3s ease 0s;
  transition: stroke 0.3s ease 0s;
}
@media (any-hover: hover) {
  .button-black:hover i svg path, .button-white:hover i svg path, .button-gray:hover i svg path, .button-black-tr:hover i svg path, .button-white-tr:hover i svg path {
    stroke: currentColor;
  }
}
.button-black:disabled, .button-white:disabled, .button-gray:disabled, .button-black-tr:disabled, .button-white-tr:disabled {
  pointer-events: none;
  opacity: 0.7;
}

.button-black, .button-black-tr {
  color: var(--white);
}
.button-black.button-cr, .button-black-tr.button-cr {
  background: var(--primary) url("../img/bg_gray.png") no-repeat center/90% 90%;
}
@media (any-hover: hover) {
  .button-black:hover, .button-black-tr:hover {
    color: var(--primary);
    background: var(--light);
  }
  .button-black:hover.button-cr, .button-black-tr:hover.button-cr {
    background: var(--light) url("../img/bg_gray.png") no-repeat center/90% 90%;
  }
}

.button-gray {
  color: var(--primary);
  background: var(--light);
  border: 1px solid var(--light);
}
.button-gray.button-cr, .button-gray-tr.button-cr {
  background: var(--light) url("../img/bg_gray.png") no-repeat center/90% 90%;
}
.button-gray i svg path {
  stroke: var(--primary);
}
@media (any-hover: hover) {
  .button-gray:hover {
    color: var(--white);
    background: var(--primary);
  }
  .button-gray:hover.button-cr {
    color: var(--primary);
    background: var(--white) url("../img/bg_gray.png") no-repeat center/90% 90% !important;
  }
}

.button-white, .button-white-tr {
  color: var(--primary);
  background: var(--white) url("../img/bg_gray.png") no-repeat center/90% 90%;
  border: 1px solid var(--white);
}
@media (any-hover: hover) {
  .button-white:hover, .button-white-tr:hover {
    background: var(--primary);
    color: var(--white);
  }
  .button-white:hover.button-cr, .button-white-tr:hover.button-cr {
    background: var(--primary) url("../img/bg_gray.png") no-repeat center/90% 90% !important;
  }
}

.button-black-tr, .button-white-tr {
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--gray);
}
.button-black-tr i svg path, .button-white-tr i svg path {
  stroke: var(--primary);
}
@media (any-hover: hover) {
  .button-black-tr:hover, .button-white-tr:hover {
    background: var(--light);
  }
}

.button-white-tr {
  color: var(--white);
  border: 1px solid var(--white);
}
.button-white-tr i svg path {
  stroke: var(--white);
}
@media (any-hover: hover) {
  .button-white-tr:hover {
    background: var(--gray);
  }
}

.button-icon {
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 110%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.button-icon i svg {
  -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: 1.66em;
  height: 1.66em;
}
@media (any-hover: hover) {
  .button-icon:hover {
    color: var(--blue);
  }
  .button-icon:hover i svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

/*popup*/
.popup {
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  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;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  width: 100%;
  position: relative;
  margin-bottom: 3em;
  padding-top: 2em;
}
.popup__body {
  padding: 5em;
  background: var(--white);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup__text {
  margin-bottom: 1.5em;
}
.popup__link {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .popup__link:hover {
    opacity: 0.5;
  }
}
.popup .content-form__button {
  margin-top: 4em;
}

.close-popup {
  position: absolute;
  font-size: 1em;
  top: 0;
  right: 0;
}
.close-popup span {
  display: block;
  position: relative;
  width: 2em;
  height: 2em;
}
.close-popup span::before, .close-popup span::after {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 2px;
  background: var(--primary);
  left: 0;
  -webkit-transition: -webkit-transform 0.9s ease 0s;
  transition: -webkit-transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s, -webkit-transform 0.9s ease 0s;
}
.close-popup span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}
.close-popup span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}
@media (any-hover: hover) {
  .close-popup span:hover::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .close-popup span:hover::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.popup-map {
  z-index: 10;
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  overflow-y: visible;
  overflow-x: visible;
}
@media (max-width: 479.98px) {
  .popup-map {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.popup-map__content {
  width: 36em;
  padding: 2em;
  color: var(--primary);
  background: var(--white);
  -webkit-box-shadow: 0px 4px 3.4em 0px rgba(28, 28, 28, 0.0901960784);
          box-shadow: 0px 4px 3.4em 0px rgba(28, 28, 28, 0.0901960784);
}
@media (max-width: 767.98px) {
  .popup-map__content {
    -webkit-box-shadow: 0px 4px 5em 0px #1C1C1C;
            box-shadow: 0px 4px 5em 0px #1C1C1C;
  }
}
.popup-map__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.popup-map__header-row {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
}
.popup-map__close.close-popup {
  position: relative;
}
.popup-map__close.close-popup span::before, .popup-map__close.close-popup span::after {
  width: 1.5em;
  background: var(--gray);
}
.popup-map__label {
  padding: 0.5em 1em;
  text-transform: uppercase;
  color: var(--gray3);
  background: var(--light);
  letter-spacing: 1px;
}
.popup-map__subtitle {
  font-size: 1.4em;
  line-height: 120%;
}
.popup-map__title {
  font-size: 2em;
  line-height: 120%;
}
.popup-map__slider {
  margin-top: 1em;
}
.popup-map__slider .images-slider-projects__image {
  height: 18em;
}
.popup-map__items {
  margin-top: 1em;
}
.popup-map__item {
  padding: 1em 0;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.popup-map__item:not(:last-child) {
  border-bottom: 1px solid var(--light);
}
.popup-map__desc, .popup-map__price {
  font-size: 1.4em;
  line-height: 120%;
}
.popup-map__button {
  margin-top: 1em;
  width: 100%;
}

.popup-news {
  padding-top: 12em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.popup-news .popup__close {
  z-index: 10;
  top: 12em;
  right: 1rem;
}
.popup-news .popup__close span {
  width: 4em;
  height: 4em;
}
.popup-news .popup__close span::before, .popup-news .popup__close span::after {
  width: 4em;
  height: 2px;
  background: var(--white);
}
.popup-news .popup__content {
  width: 100%;
}
.popup-news .popup__header {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.popup-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.popup-news__date {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em;
  color: var(--white);
  background: var(--primary);
  font-size: 1.4em;
  line-height: 110%;
}
.popup-news__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .popup-news__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.popup-news__video {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.popup-news__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup-news__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.popup-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .popup-news__image img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.popup-news__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767.98px) {
  .popup-news__text {
    max-width: 54em;
  }
}

.slider-popup__prev, .slider-popup__next {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-popup__prev {
  left: 0;
}
.slider-popup__next {
  right: 0;
  background: var(--white);
}
.slider-popup__next svg path {
  stroke: var(--primary);
}

.popup-catalog {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 12em;
}
@media (max-width: 767.98px) {
  .popup-catalog {
    padding-top: 6em;
  }
}
.popup-catalog .popup__body, .popup-catalog .popup__content {
  width: 100%;
}
@media (max-width: 767.98px) {
  .popup-catalog .popup__body {
    padding: 2em;
  }
}
.popup-catalog .popup__wrap {
  width: 100%;
}
@media (min-width: 767.98px) {
  .popup-catalog .popup__wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 1rem 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .info-block-popup {
    margin-top: 2em;
  }
}
.info-block-popup__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.item-info-block-popup {
  position: relative;
  padding: 1em;
  background: var(--light);
  border: 1px solid var(--gray);
}
.item-info-block-popup.checked {
  border: 1px solid var(--primary);
}
.item-info-block-popup.hide {
  display: none;
}
.item-info-block-popup__header {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 1em;
  padding-right: 3em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.item-info-block-popup__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.item-info-block-popup__body {
  padding: 1em 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.item-info-block-popup__radio {
  cursor: pointer;
  position: absolute;
  width: 2em;
  height: 2em;
  top: 1em;
  right: 1em;
}
.item-info-block-popup__radio::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray);
}
.item-info-block-popup__radio.active::before {
  border: 2px solid var(--primary);
}
.item-info-block-popup__radio.active::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--primary);
}
@media (max-width: 479.98px) {
  .item-info-block-popup__button {
    width: 100%;
  }
}
.item-info-block-popup__footer {
  border-top: 1px solid var(--gray);
  padding-top: 1em;
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .item-info-block-popup__footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.circumstances-item-info {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.circumstances-item-info__labels {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.circumstances-item-info__label {
  padding: 0 2em;
}
.circumstances-item-info__label:not(:last-child) {
  border-right: 1px solid var(--gray);
}
.circumstances-item-info__desc {
  color: var(--gray);
}

.calc-column-popup {
  padding: 1em;
  border: 1px solid var(--gray);
}
.calc-column-popup .filter-body-select__item {
  margin: 0;
}
.calc-column-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.calc-column-popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.calc-column-popup__content .select__button {
  padding: 0.25em 0.75em;
}
.calc-column-popup__content .select__button i {
  width: 2em;
  height: 2em;
}
.calc-column-popup__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
.calc-column-popup__info-text:not(:last-child) {
  position: relative;
}
.calc-column-popup__info-text:not(:last-child)::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.75em;
  background: var(--gray);
}
.calc-column-popup__row-info {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.25em 0.5em;
  background: var(--light);
}
.calc-column-popup__filter {
  width: 100%;
  overflow: visible;
}
.calc-column-popup__result {
  border-top: 1px solid var(--gray);
  padding-top: 1em;
  margin-top: 1em;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.calc-column-popup__button {
  width: 100%;
  margin-top: 2em;
}

.parking-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 50;
  width: auto;
  height: auto;
  padding: 1em;
  color: var(--white);
  background: var(--gray);
  -webkit-transition: opacity 0.3s, visibility 0.3s ease 0s;
  transition: opacity 0.3s, visibility 0.3s ease 0s;
}
@media (max-width: 479.98px) {
  .parking-popup {
    display: none;
  }
}
.parking-popup.active {
  opacity: 1;
  visibility: visible;
}
.parking-popup__body {
  position: relative;
  z-index: 3;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.parking-popup__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2em;
  line-height: 120%;
}
.parking-popup__text, .parking-popup__text_b {
  font-size: 1.6em;
  line-height: 120%;
}
.parking-popup__text_b {
  font-weight: 700;
}
.parking-popup__price {
  font-size: 1.8em;
  white-space: nowrap;
}

.popup-order {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
  padding: 1em 3em;
  background: var(--light);
  border-right: 1px solid var(--gray);
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.popup-order.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.parking-order-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 1rem;
}
.parking-order-page .close-popup span::before, .parking-order-page .close-popup span::after {
  background: var(--primary);
}
.parking-order-page #popupstage, .parking-order-page #popuphouse {
  display: none;
}
.parking-order-page__wrap {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.parking-order-page__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1em;
}
.parking-order-page__block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.parking-order-page__price {
  text-transform: uppercase;
  font-size: 3.2em;
  line-height: 110%;
  margin-bottom: 0.33em;
}
.parking-order-page__text {
  text-transform: uppercase;
  font-size: 1.8em;
  line-height: 110%;
  margin-bottom: 1.2em;
}
.parking-order-page__button {
  border: 1px solid var(--white);
}
.parking-order-page__button span {
  z-index: 5;
}
.parking-order-page__image {
  margin: 2em auto;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-height: 42em;
  width: 42em;
}
.parking-order-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1555px) {
  .parking-order-page__image {
    height: 25em;
  }
}
.parking-order-page__link {
  margin-top: 1em;
  font-size: 1.6em;
  line-height: 110%;
}

.item-parking-order__info {
  font-weight: 700;
  font-size: 2em;
  line-height: 120%;
}
.item-parking-order__title {
  text-transform: lowercase;
  font-weight: 300;
  font-size: 2em;
  line-height: 120%;
}

.parking-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 50;
  width: auto;
  height: auto;
  padding: 1em;
  background: var(--light);
  background: var(--gray);
  -webkit-transition: opacity 0.3s, visibility 0.3s ease 0s;
  transition: opacity 0.3s, visibility 0.3s ease 0s;
}
@media (max-width: 479.98px) {
  .parking-popup {
    display: none;
  }
}
.parking-popup.active {
  opacity: 1;
  visibility: visible;
}
.parking-popup__body {
  position: relative;
  z-index: 3;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.parking-popup__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2em;
  line-height: 120%;
}
.parking-popup__text, .parking-popup__text_b {
  font-family: "TT Norms";
  font-size: 1.6em;
  line-height: 120%;
}
.parking-popup__text_b {
  font-weight: 700;
}
.parking-popup__price {
  font-family: "TT Norms";
  font-size: 1.8em;
  white-space: nowrap;
}
.parking-popup__body-info {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.parking-popup__body-info .parking-popup__text {
  padding: 1em;
  max-width: 12em;
}
.parking-popup__image {
  display: none;
  overflow: hidden;
  width: 100%;
  height: 10em;
}
.parking-popup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (any-hover: hover) {
  #parkingpopupinfo:hover {
    opacity: 1;
    visibility: visible;
  }
}

/*checkbox*/
.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 5px;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
  border: 1px solid var(--primary);
  background: url("../img/icons/check.svg") center no-repeat, var(--primary);
}
.checkbox__input:checked + .checkbox__label .checkbox__text {
  opacity: 1;
}
.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 1em;
}
.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid var(--primary);
}
.checkbox__text {
  color: var(--gray3);
  font-size: 1.2em;
  line-height: 120%;
}
.checkbox__link {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .checkbox__link:hover {
    text-decoration: none;
  }
}

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

.input-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.25em;
  color: var(--dark-gray);
  background: transparent;
  border: 1px solid var(--dark-gray);
}
.input-body label {
  position: absolute;
  z-index: 2;
  top: 1em;
  left: 1em;
  text-transform: uppercase;
  color: var(--dark-gray);
  font-size: 1.2em;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
  -webkit-transition: top 0.3s, left 0.3s ease 0s, -webkit-transform 0.3s;
  transition: top 0.3s, left 0.3s ease 0s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s, left 0.3s ease 0s;
  transition: transform 0.3s, top 0.3s, left 0.3s ease 0s, -webkit-transform 0.3s;
}
.input-body label svg {
  width: 1.3em;
  height: 1.8em;
}
.input-body input {
  position: relative;
  z-index: 5;
  opacity: 0;
  background: transparent;
  color: var(--dark-gray);
  font-size: 1.6em;
  line-height: 110%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.input-body input::-webkit-input-placeholder {
  color: var(--gray);
}
.input-body input::-moz-placeholder {
  color: var(--gray);
}
.input-body input:-ms-input-placeholder {
  color: var(--gray);
}
.input-body input::-ms-input-placeholder {
  color: var(--gray);
}
.input-body input::placeholder {
  color: var(--gray);
}
.input-body input:focus, .input-body input:valid {
  opacity: 1;
}
.input-body input:focus ~ label, .input-body input:valid ~ label {
  top: -0.5em;
  left: -1em;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.input-body:focus-within {
  border: 1px solid var(--gray);
}
.input-body.err {
  border: 1px solid red;
}

textarea {
  resize: none;
  background: transparent;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  padding: 2.5em 0 1em;
}
.header.fixed {
  padding: 1em 0 0.5em;
  background: var(--white);
}
.header.fixed .header__container {
  border-bottom: none;
}
.header.fixed .header__list {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.header.fixed .header__logo {
  width: 16em;
}
@media (max-width: 767.98px) {
  .header.fixed .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__container {
  position: relative;
  z-index: 20;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding-bottom: 1em;
}
@media (max-width: 1279.98px) {
  .header__container {
    gap: 1em;
  }
}
.header__block {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
@media (max-width: 479.98px) {
  .header__block {
    gap: 1em;
  }
}
.header__logo {
  display: block;
  width: 23em;
  height: auto;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .header__list {
    display: none;
  }
}
.header__link, .header__link-phone, .header__link_b, .header__link-popup {
  text-transform: uppercase;
  font-size: 1.4em;
  line-height: 120%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__link:hover, .header__link-phone:hover, .header__link_b:hover, .header__link-popup:hover {
    opacity: 0.7;
  }
}
.header__link_b {
  font-weight: 700;
}
.header__buttons {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .header__buttons {
    gap: 1em;
  }
}
.header__link-block {
  position: relative;
}
@media (min-width: 767.98px) {
  .header__link-block i {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .header__link-block i {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid var(--primary);
    width: 3.8em;
    height: 3.8em;
  }
  .header__link-block svg path {
    stroke: var(--primary);
  }
  .header__link-block.active .header__link-block-body {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767.98px) {
  .header__link-block-body {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-height: 100%;
    height: auto;
    top: 0;
    right: 0;
    padding-top: 5em;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
  }
}
.header__link-block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
}
@media (max-width: 767.98px) {
  .header__link-block-list {
    background: var(--white);
    padding: 1em;
    -webkit-box-shadow: 0px 16px 24px 0px rgba(66, 68, 90, 0.21);
            box-shadow: 0px 16px 24px 0px rgba(66, 68, 90, 0.21);
  }
}
.header__link-phone {
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 120%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__link-phone:hover {
    opacity: 0.5;
  }
}

/*header submenu*/
.submenu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding-top: 10em;
}
.submenu__body.active {
  visibility: visible;
  opacity: 1;
}
.submenu__body.active .submenu__nav {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.submenu__body.active .submenu__image.active {
  opacity: 1;
  visibility: visible;
}
.submenu__nav {
  width: 50%;
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: var(--white);
}
@media (max-width: 479.98px) {
  .submenu__nav {
    width: 100%;
  }
}
.submenu__nav_links {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow-y: auto;
  min-height: 100%;
  padding-left: calc((100vw - 1555px) / 2);
  padding-top: 3em;
  padding-bottom: 3em;
}
@media (max-width: 1555px) {
  .submenu__nav_links {
    padding-left: 1rem;
  }
}
.submenu__nav_pictures {
  position: relative;
  padding: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (max-width: 479.98px) {
  .submenu__nav_pictures {
    display: none;
  }
}
.submenu__list, .submenu__nav_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
}
@media (max-width: 991.98px) {
  .submenu__list, .submenu__nav_links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.submenu__link {
  color: var(--primary);
  font-size: 2.4em;
  line-height: 110%;
}
.submenu__link_b {
  font-weight: 500;
}
.submenu__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.8s, visibility 0.8s ease 0s;
  transition: opacity 0.8s, visibility 0.8s ease 0s;
  -o-object-fit: cover;
     object-fit: cover;
}
.submenu__items {
  font-size: 1.6em;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  .submenu__items {
    margin-top: 3.75em;
  }
}
.submenu__item-text {
  color: var(--primary);
  font-size: 1.4em;
  line-height: 120%;
}
.submenu__item-link {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .submenu__item-link:hover {
    color: var(--primary);
  }
}

/*burger*/
.icon-menu {
  font-size: 1em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 0.2em;
  position: relative;
  width: 3.8em;
  height: 3.8em;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.icon-menu::before, .icon-menu::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1.8em;
  height: 2px;
  background: var(--primary);
}
.icon-menu.active::before {
  -webkit-transform: translateY(135%) rotate(-45deg);
          transform: translateY(135%) rotate(-45deg);
}
.icon-menu.active::after {
  -webkit-transform: translateY(-135%) rotate(45deg);
          transform: translateY(-135%) rotate(45deg);
}
@media (any-hover: hover) {
  .icon-menu:hover {
    background: var(--light-gray);
  }
}

/*footer*/
.footer {
  padding-top: 11em;
  color: var(--white);
  background: var(--primary);
}
.footer__container {
  position: relative;
  padding-bottom: 4em;
}
.footer__wrap {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7em;
}
.footer__logo {
  overflow: hidden;
  width: 34em;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 767.98px) {
  .footer__logo {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .footer__logo {
    width: 100%;
  }
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8em;
}
@media (max-width: 767.98px) {
  .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.footer__contacts-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5em;
}
@media (min-width: 991.98px) {
  .footer__contacts-body {
    min-width: 72em;
  }
}
@media (max-width: 991.98px) {
  .footer__contacts-body {
    margin-bottom: 4em;
    gap: 2rem;
  }
}
@media (max-width: 767.98px) {
  .footer__contacts-body .footer__title {
    display: none;
  }
}
.footer__title {
  color: var(--gray);
}
.footer__phone {
  font-family: "Cormorant Unicase", sans-serif;
  font-size: 10em;
  line-height: 100%;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__phone:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767.98px) {
  .footer__phone {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 7em;
  }
}
@media (max-width: 479.98px) {
  .footer__phone {
    font-size: 5.6em;
  }
}
.footer__address, .footer__social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .footer__address, .footer__social-block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .footer__social-block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__address {
  gap: 3em;
}
@media (max-width: 767.98px) {
  .footer__address {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer__address a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__address a:hover {
    opacity: 0.7;
  }
}
.footer__social {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.footer__menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
}
@media (max-width: 767.98px) {
  .footer__menu-body {
    gap: 2em;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.footer__menu a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__menu a:hover {
    opacity: 0.7;
  }
}
.footer__copy-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.footer__stroke {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.footer__text {
  color: var(--gray);
  line-height: 110%;
}
.footer__text a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__text a:hover {
    opacity: 0.7;
  }
}
.footer__icon-link {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__icon-link:hover {
    opacity: 0.7;
  }
}
.footer__icon {
  display: block;
  opacity: 0.5;
  overflow: hidden;
  width: 12em;
  height: auto;
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.footer__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bg {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  width: 42em;
  height: 59em;
  bottom: 0;
  right: 0;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 991.98px) {
  .footer__bg {
    width: 32em;
    height: auto;
  }
}

.page__main {
  margin-top: 12em;
}
@media (max-width: 767.98px) {
  .page__main {
    padding-bottom: 6em;
  }
}
.page__map {
  padding-top: 8em;
}
@media (max-width: 767.98px) {
  .page__map {
    padding-bottom: 6em;
  }
}
.page__projects {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__building {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__why {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__principses {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__history {
  padding-bottom: 12em;
}
.page__form {
  padding-top: 8em;
}
.page__catalog {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__admission {
  padding-top: 8em;
}
.page__news {
  padding-top: 12em;
  padding-bottom: 8em;
}
.page__avtors {
  padding-top: 8em;
  padding-bottom: 8em;
}
.page__team {
  padding-top: 8em;
  padding-bottom: 8em;
}

.container_l {
  padding-right: calc((100vw - 1555px) / 2);
}
@media (max-width: 1555px) {
  .container_l {
    padding: 0 1rem;
  }
}

.container_r {
  padding-left: calc((100vw - 1555px) / 2);
}
@media (max-width: 1555px) {
  .container_r {
    padding: 0 1rem;
  }
}

#zuck-modal-content .story-viewer .slides-pointers {
  border-spacing: 10px;
}

#zuck-modal-content .story-viewer .slides-pointers .wrap span {
  border-radius: 0.6em;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.3);
}

#zuck-modal-content .story-viewer .slides-pointers b {
  border-radius: 0.6em;
  height: 0.6em;
}

/*home page*/
.main-page {
  position: relative;
  overflow: clip;
  overflow-y: visible;
}
.main-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 767.98px) {
  .main-page__content {
    max-width: 36em;
    position: absolute;
    z-index: 5;
    bottom: 5em;
    right: 1rem;
  }
}
@media (max-width: 1555px) {
  .main-page__content {
    right: 10em;
  }
}
@media (max-width: 767.98px) {
  .main-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    margin-top: 2em;
  }
}
.main-page__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.main-page__title .title-main {
  font-size: 8em;
}
@media (max-width: 991.98px) {
  .main-page__title .title-main {
    font-size: 6em;
  }
}
@media (max-width: 479.98px) {
  .main-page__title .title-main {
    font-size: 5em;
  }
}
.main-page__slider-block {
  position: relative;
}
.main-page__slider {
  margin-top: 1em;
  width: 100%;
  height: 81em;
}
@media (max-width: 767.98px) {
  .main-page__slider {
    height: 32em;
  }
}
.content-main {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s;
  transition: opacity 1s ease 0s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s ease 0s;
  transition: transform 1s, opacity 1s ease 0s, -webkit-transform 1s;
}
.content-main.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 767.98px) {
  .content-main {
    padding: 2em;
    color: var(--white);
    background: rgba(19, 20, 17, 0.5019607843);
  }
}
@media (any-hover: hover) {
  .content-main:hover .eye-icon::after {
    background: var(--white) url("../img/icons/eye.png") no-repeat center/65%;
  }
}
.content-main__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.content-main__icon {
  position: absolute;
  top: 2em;
  right: 2em;
}
@media (max-width: 767.98px) {
  .content-main__icon {
    display: none;
  }
}
.content-main__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.content-main__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: var(--white);
}
.content-main__image img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .content-main__image {
    display: none;
  }
}
.content-main__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767.98px) {
  .content-main__text-block {
    padding: 2em;
  }
}
.content-main__title {
  font-size: 3.2em;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .content-main__title {
    font-size: 2.2em;
  }
  .content-main__title br {
    display: none;
  }
}
.content-main__row {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .content-main__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 767.98px) {
  .content-main__subtext {
    padding: 0.25em;
    color: var(--white);
    background: var(--primary);
  }
}
@media (min-width: 767.98px) {
  .content-main__text {
    padding: 1em;
    background: url("../img/bg_gray.png") no-repeat center/100% 100%;
  }
}
@media (max-width: 767.98px) {
  .content-main__button {
    max-width: 12em;
    min-width: auto;
  }
}

.slider-main {
  position: relative;
}
.slider-main__slide {
  background: var(--white);
}
.slider-main__image {
  margin-top: 2em;
  overflow: hidden;
  width: inherit;
  height: inherit;
}
.slider-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.slider-main__bg, .slider-main__bg-mob {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slider-main__bg img, .slider-main__bg-mob img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-main__pagination {
  position: absolute;
  z-index: 20;
}
.slider-main__pagination.slider-controls__dots {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
.slider-main__pagination.slider-controls__dots .swiper-pagination-bullet {
  background: var(--light);
}
.slider-main__pagination.slider-controls__dots .swiper-pagination-bullet-active::before {
  background: var(--primary);
}
.slider-main__pagination .swiper-pagination-bullet, .slider-main__pagination .swiper-pagination-bullet-active {
  width: 5em;
  height: 0.3em;
}

/*map*/
.map {
  position: relative;
  z-index: 7;
  overflow: hidden;
}
.map.active .map__column {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
@media (max-width: 767.98px) {
  .map {
    color: var(--white);
    background: var(--primary);
  }
}
.map__wrap {
  position: relative;
}
.map__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.map__map-block {
  position: relative;
}
.map__filter {
  position: absolute;
  z-index: 5;
  bottom: 4em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .map__filter {
    top: 3em;
    bottom: auto;
    left: 2em;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.map__button {
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 1.4em;
  line-height: 120%;
  padding: 1.2em;
}
.map__map-body {
  margin-top: 3em;
  overflow: hidden;
  width: 100%;
  height: 72em;
}
.map__map-body [class*=ymaps][class*=-ground-pane] {
  -webkit-filter: grayscale(100%) invert(0);
          filter: grayscale(100%) invert(0);
}
.map__map-body [class*=controls__control] {
  inset: 27em 2rem auto auto !important;
}
@media (max-width: 767.98px) {
  .map__map-body [class*=controls__control] {
    inset: 2rem 1rem auto auto !important;
  }
}
.map__controls-zoom {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.map__zoom-btn {
  cursor: pointer;
  border: 1px solid var(--primary);
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2em;
  line-height: 100%;
  width: 2em;
  height: 2em;
}
@media (max-width: 767.98px) {
  .map__zoom-btn {
    width: 1.6em;
    height: 1.6em;
  }
}

/*projects*/
.projects {
  overflow: clip;
  overflow-y: visible;
  position: relative;
  z-index: 15;
}
.projects.active .slider-projects {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.projects__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.projects__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.projects__wrap {
  margin-top: 4em;
}
@media (max-width: 767.98px) {
  .projects__slider-block {
    display: none;
  }
}
.slider-projects {
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out 0s;
  transition: opacity 2.8s ease-out 0s;
}
.slider-projects__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .slider-projects__controls {
    display: none !important;
  }
}
@media (min-width: 767.98px) {
  .slider-projects__slide {
    position: relative;
  }
  .slider-projects__slide::before {
    content: "";
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(1em);
            backdrop-filter: blur(1em);
    -webkit-box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: opacity 1.3s ease 0s;
    transition: opacity 1.3s ease 0s;
    opacity: 0;
    visibility: hidden;
  }
  .slider-projects__slide:not(.swiper-slide-visible)::before {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767.98px) {
  .slider-projects__slide {
    top: 2em;
    position: sticky;
    background: var(--white);
  }
  .slider-projects__slide:nth-child(3n) {
    color: var(--white);
    background: var(--primary);
  }
  .slider-projects__slide:nth-child(3n) .slider-projects__button {
    color: var(--primary);
    background: var(--light);
    border: 1px solid var(--light);
  }
  .slider-projects__slide:nth-child(3n) .slider-projects__button svg path {
    stroke: var(--primary);
  }
  .slider-projects__slide:nth-child(3n) .item-slider-projects__info {
    color: var(--primary);
  }
}
.slider-projects__body {
  padding: 1em;
  border: 1px solid var(--light);
}
.slider-projects__content {
  margin-top: 1em;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.slider-projects__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .slider-projects__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.slider-projects__title {
  font-size: 2.6em;
  line-height: 110%;
}
.slider-projects__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .slider-projects__items {
    width: 100%;
  }
}
.slider-projects__text {
  color: var(--gray2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.slider-projects__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .slider-projects__buttons {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.slider-projects__button {
  width: 100%;
}

.item-slider-projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
  font-size: 1.2em;
  line-height: 120%;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}
.item-slider-projects__info, .item-slider-projects__info_p {
  padding: 0.5em 1em;
  background: var(--light);
}
.item-slider-projects__info {
  width: 100%;
}
.item-slider-projects__info_p {
  width: 100%;
  color: var(--white);
  background: var(--primary);
}

.images-slider-projects__image {
  overflow: hidden;
  width: 100%;
  height: 42em;
}
.images-slider-projects__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .images-slider-projects__image {
    height: 29em;
  }
}
.images-slider-projects__pagination {
  margin-top: 1em;
}
.images-slider-projects__pagination .swiper-pagination-bullet {
  background: var(--light);
}
.images-slider-projects__pagination .swiper-pagination-bullet-active {
  background: var(--light);
}
.images-slider-projects__pagination .swiper-pagination-bullet-active::before {
  background: var(--primary);
}

/*building*/
.building {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.building.active .building__title-block, .building.active .slider-building {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.building__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .building__header {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.building__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
  transition: opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 2.8s ease-out 0s;
  transition: transform 1.6s, opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
}
.building__text {
  color: var(--gray);
}
.building__slider-block {
  margin-top: 6em;
}

.slider-building {
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out 0s;
  transition: opacity 2.8s ease-out 0s;
}
.slider-building__slide {
  width: 32em;
}
@media (max-width: 767.98px) {
  .slider-building__slide {
    width: 16em;
  }
}
@media (any-hover: hover) {
  .slider-building__slide:hover .eye-icon::after {
    background: var(--white) url("../img/icons/eye.png") no-repeat center/65%;
  }
}
.slider-building__images {
  cursor: pointer;
  position: relative;
  display: block;
  width: inherit;
  height: 37em;
  overflow: hidden;
}
.slider-building__icon {
  position: absolute;
  z-index: 5;
  top: 1em;
  right: 1em;
}
.slider-building__image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.slider-building__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .slider-building__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.slider-building__image_dn {
  display: none;
}
.slider-building__text-block {
  margin-top: 3em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.slider-building__subtext {
  text-align: center;
  width: 100%;
  border: 1px solid var(--gray);
  padding: 1em;
}
@media (max-width: 767.98px) {
  .slider-building__title {
    text-align: center;
    font-size: 1.6em;
  }
}
.slider-building__text {
  padding: 0.5em 1em;
  background: var(--light);
}
.slider-building__items {
  display: none;
}
.slider-building__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
/*why*/
.why {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1555px) {
  .why__container {
    padding-right: 0;
    padding-left: 1rem;
  }
}
.why__wrap {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3em;
}
@media (max-width: 767.98px) {
  .why__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.why__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767.98px) {
  .why__content .why__text-block {
    max-width: 63em;
  }
}
.why__content .why__image {
  margin-top: 5em;
  width: 100%;
  height: 100%;
}
@media (min-width: 767.98px) {
  .why__content .why__image {
    max-width: 53em;
    max-height: 35em;
  }
}
@media (max-width: 767.98px) {
  .why__content .why__image {
    display: none;
  }
}
@media (min-width: 767.98px) {
  .why__body .why__text-block {
    max-width: 50em;
  }
}
@media (min-width: 767.98px) {
  .why__body .why__text.decore {
    padding: 1em;
    background: url("../img/bg_gray.png") no-repeat center/100% 100%;
  }
}
.why__body .why__image {
  margin-top: 5em;
  width: 100%;
  height: 100%;
}
@media (min-width: 767.98px) {
  .why__body .why__image {
    max-width: 88em;
    max-height: 53em;
  }
}
@media (max-width: 767.98px) {
  .why__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
}
.why__text-block {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.why__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.why__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .why__text {
    padding-right: 1rem;
  }
}
.why__text-cur {
  padding: 1em;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.why__text-cur img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why__text-cur.decore {
  position: relative;
}
.why__text-cur.decore p {
  position: relative;
  z-index: 5;
}
.why__text-cur.decore::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 1em;
  bottom: 0;
  left: 0;
  background: url("../img/decore.png") no-repeat center/100% 100%;
}
.why__text-cur.decore::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 1em;
  bottom: 0;
  right: 0;
  background: var(--white);
  -webkit-transition: width 1.3s ease 0s;
  transition: width 1.3s ease 0s;
}
.why__text-cur.decore.active::after {
  width: 0;
}
.why__image {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.why__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*principses*/
.principses {
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
}
.principses.active .slider-principses {
  opacity: 1;
}
.principses__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .principses__header {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.principses__wrap {
  margin-top: 4em;
}
.slider-principses {
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out 0s;
  transition: opacity 2.8s ease-out 0s;
}
.slider-principses__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.slider-principses__swiper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.slider-principses__slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.slider-principses__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .slider-principses__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.slider-principses__image, .slider-principses__image_s {
  display: block;
  overflow: hidden;
  width: 48em;
  height: 33em;
}
.slider-principses__image img, .slider-principses__image_s img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .slider-principses__image, .slider-principses__image_s {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
  }
}
.slider-principses__image_s {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25em;
  height: 100%;
  aspect-ratio: 1/1;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 1.5s ease-out 0s, -webkit-transform 1.5s ease-out 0s;
  transition: opacity 1.5s ease-out 0s, -webkit-transform 1.5s ease-out 0s;
  transition: transform 1.5s ease-out 0s, opacity 1.5s ease-out 0s;
  transition: transform 1.5s ease-out 0s, opacity 1.5s ease-out 0s, -webkit-transform 1.5s ease-out 0s;
}
@media (max-width: 767.98px) {
  .slider-principses__image_s {
    width: 18em;
    position: absolute;
    top: 0;
    right: -6em;
    -webkit-transform: translateY(-10em);
            transform: translateY(-10em);
  }
}
.slider-principses__image_s.active {
  opacity: 1;
  -webkit-transform: translateY(-17em);
          transform: translateY(-17em);
}
@media (max-width: 767.98px) {
  .slider-principses__image_s.active {
    -webkit-transform: translateY(-10em);
            transform: translateY(-10em);
  }
}
.slider-principses__text-block {
  position: relative;
  margin-top: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
.slider-principses__number {
  font-size: 12em;
  line-height: 40%;
  font-family: "Cormorant Unicase", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1em;
  height: 1em;
  background: url("../img/circle.png") no-repeat center/100%;
}
@media (min-width: 767.98px) {
  .slider-principses__number {
    margin-top: 0.125em;
    margin-right: 0.125em;
  }
}
.slider-principses__info {
  max-width: 39em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
}
@media (max-width: 767.98px) {
  .slider-principses__info {
    gap: 2em;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .slider-principses__title {
    padding-right: 5em;
  }
}
/*history*/
.history {
  color: var(--white);
  background: var(--primary);
  position: relative;
  z-index: 5;
}
.history__header {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 6em;
}
.history__slider-thumb {
  margin-top: 4em;
}
.history__slider {
  margin-top: 4em;
}
.history__icon {
  margin: 0 auto;
  overflow: hidden;
  width: 30em;
  height: 10em;
  -webkit-transform: translateY(-9em);
          transform: translateY(-9em);
}
.history__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-history-thumb {
  position: relative;
}
.slider-history-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: var(--white);
}
.slider-history-thumb__slide {
  cursor: pointer;
  width: 17em;
  height: 17em;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--white);
  -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;
}
.slider-history-thumb__slide:not(.swiper-slide-thumb-active) {
  color: var(--white);
  background: var(--primary);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.slider-history-thumb__slide:not(.swiper-slide-thumb-active) .slider-history-thumb__body {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .slider-history-thumb__slide:not(.swiper-slide-thumb-active):hover {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .slider-history-thumb__slide:not(.swiper-slide-thumb-active):hover .slider-history-thumb__body {
    opacity: 0.8;
  }
}
.slider-history-thumb__body {
  padding: 1em;
  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;
  height: 100%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.slider-history-thumb__date {
  font-size: 5.4em;
  line-height: 40%;
  font-family: "Cormorant Unicase", sans-serif;
}

.slider-history {
  position: relative;
}
.slider-history__slide {
  background: var(--primary);
}
.slider-history__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
  padding: 2em 10em;
}
@media (max-width: 767.98px) {
  .slider-history__body {
    padding: 1em 5em;
  }
}
.slider-history__button {
  width: 20em;
}
.slider-history__prev, .slider-history__next {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-history__prev {
  left: 0;
}
.slider-history__next {
  right: 0;
}

/*form*/
.form {
  overflow: hidden;
}
.form__wrap {
  text-align: center;
  position: relative;
  padding: 3em;
}
.form__wrap .form__body {
  position: relative;
  z-index: 5;
}

/*admission*/
.admission__header {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .admission__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.admission__text {
  color: var(--gray2);
}
.admission__wrap {
  margin-top: 5em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
}
.admission__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .admission__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .admission__items {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.admission__button {
  width: 20em;
}

.item-admission {
  padding: 4em 1em;
  opacity: 0;
}
@media (min-width: 767.98px) {
  .item-admission {
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
  }
}
.item-admission.active {
  opacity: 1;
}
.item-admission__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
@media (max-width: 767.98px) {
  .item-admission__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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.item-admission__image {
  overflow: hidden;
  width: 24em;
}
.item-admission__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 479.98px) {
  .item-admission__image {
    width: 18em;
  }
}
.item-admission__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
@media (max-width: 767.98px) {
  .item-admission__block {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .item-admission__date {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    border-radius: 1em;
    padding: 1em 0.5em;
    background: var(--light-gray);
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.item-admission:nth-child(1) {
  -webkit-transition: opacity 1s ease 0s !important;
  transition: opacity 1s ease 0s !important;
}

.item-admission:nth-child(2) {
  -webkit-transition: opacity 2s ease 0s !important;
  transition: opacity 2s ease 0s !important;
}

.item-admission:nth-child(3) {
  -webkit-transition: opacity 3s ease 0s !important;
  transition: opacity 3s ease 0s !important;
}

.item-admission:nth-child(4) {
  -webkit-transition: opacity 4s ease 0s !important;
  transition: opacity 4s ease 0s !important;
}

/*news*/
.news {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.news.active .news__title-block, .news.active .slider-news {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.news__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .news__header {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
  transition: opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 2.8s ease-out 0s;
  transition: transform 1.6s, opacity 2.8s ease-out 0s, -webkit-transform 1.6s;
}
.news__text {
  color: var(--gray);
}
.news__slider-block {
  margin-top: 6em;
}
.news__popups {
  position: relative;
  z-index: 30;
}

.slider-news {
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out 0s;
  transition: opacity 2.8s ease-out 0s;
}
.slider-news__slide {
  width: 34em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-news__images, .slider-news__videos {
  display: block;
  border: 1px solid var(--gray);
  width: 34em;
  padding: 1em;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.slider-news__image {
  display: block;
  border-radius: 50%;
  width: 32em;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.slider-news__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .slider-news__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.slider-news__image_dn {
  display: none;
}
.slider-news__text-block {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.slider-news__text {
  color: var(--gray);
}
.slider-news__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.slider-news__video-icon {
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.4em;
  height: 12.4em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--white);
}
.slider-news__video-icon svg {
  width: 3.3em;
  height: 3.5em;
}

/*avtors*/
.avtors {
  overflow: hidden;
  position: relative;
}
.avtors::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--light);
  -webkit-transition: width 1.3s ease 0s;
  transition: width 1.3s ease 0s;
}
.avtors.active::before {
  width: 100%;
}
.avtors.active .avtors__image, .avtors.active .avtors__text-block {
  opacity: 1;
}
.avtors__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.avtors__wrap {
  margin-top: 6em;
}
@media (min-width: 767.98px) {
  .avtors__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 6em 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 6em;
  }
}
.avtors__main {
  position: relative;
}
@media (max-width: 767.98px) {
  .avtors__main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
  }
  .avtors__main > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .avtors__main > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .avtors__main > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .avtors__main > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .avtors__main > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .avtors__main > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .avtors__main > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .avtors__main > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
}
.avtors__image {
  opacity: 0;
  -webkit-transition: opacity 1.8s ease-out 0s;
  transition: opacity 1.8s ease-out 0s;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 60em;
}
.avtors__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .avtors__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/4/3;
  }
}
.avtors__item_l, .avtors__item_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  opacity: 0;
  -webkit-transition: opacity 1.8s, -webkit-transform 1.8s ease-out 0s;
  transition: opacity 1.8s, -webkit-transform 1.8s ease-out 0s;
  transition: opacity 1.8s, transform 1.8s ease-out 0s;
  transition: opacity 1.8s, transform 1.8s ease-out 0s, -webkit-transform 1.8s ease-out 0s;
}
.avtors__item_l.active, .avtors__item_r.active {
  opacity: 1;
}
@media (min-width: 767.98px) {
  .avtors__item_l, .avtors__item_r {
    position: absolute;
    z-index: 5;
    top: 10%;
  }
}
@media (max-width: 767.98px) {
  .avtors__item_l, .avtors__item_r {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (min-width: 767.98px) {
  .avtors__item_l {
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .avtors__item_l {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/5/2;
  }
}
@media (min-width: 767.98px) {
  .avtors__item_r {
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .avtors__item_r {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4/2/5/3;
    margin-left: auto;
  }
}
.avtors__name {
  font-family: "TT Norms", sans-serif;
}
@media (max-width: 767.98px) {
  .avtors__name {
    font-size: 2.2em;
  }
}
@media (max-width: 767.98px) {
  .avtors__job {
    font-size: 1.8em;
  }
}
.avtors__link i {
  width: 1em;
  height: 1em;
}
.avtors__content {
  margin-top: 6em;
  padding-left: 16em;
  position: relative;
}
@media (max-width: 767.98px) {
  .avtors__content {
    padding-left: 7em;
  }
}
.avtors__icon {
  position: absolute;
  width: 12em;
  height: 7em;
  top: 0;
  left: 0;
  overflow: hidden;
}
.avtors__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .avtors__icon {
    width: 6em;
    height: 3.5em;
  }
}
.avtors__text-block {
  opacity: 0;
  -webkit-transition: opacity 1.8s ease-out 0s;
  transition: opacity 1.8s ease-out 0s;
}
.avtors__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.avtors__button {
  margin-top: 4em;
}

/*team*/
.team.active .team__image {
  opacity: 1;
}
.team__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .team__wrap {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.team__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5em;
}
.team__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 767.98px) {
  .team__text {
    max-width: 26em;
  }
}
.team__image {
  opacity: 0;
  -webkit-transition: opacity 1.8s ease-out 0s;
  transition: opacity 1.8s ease-out 0s;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.team__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*gallery-page*/
.gallery-page {
  margin-top: 12em;
  margin-bottom: 10em;
  position: relative;
  overflow: hidden;
}
.gallery-page__container {
  position: relative;
}
.gallery-page__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.gallery-page__wrap {
  margin-top: 7em;
}
.gallery-page__items.active .gallery-page__item {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (min-width: 767.98px) {
  .gallery-page__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(54em, 1fr) 4em minmax(54em, 1fr);
    grid-template-columns: repeat(2, minmax(54em, 1fr));
    gap: 4em;
  }
}
.gallery-page__item {
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s ease 0s;
  transition: opacity 1.3s, -webkit-transform 1.3s ease 0s;
  transition: opacity 1.3s, transform 1.3s ease 0s;
  transition: opacity 1.3s, transform 1.3s ease 0s, -webkit-transform 1.3s ease 0s;
}

.item-gallery-page {
  width: 100%;
}
.item-gallery-page__header {
  position: relative;
}
.item-gallery-page__header .images-slider-projects {
  position: relative;
  margin-bottom: 2em;
  max-height: 38em;
  overflow: hidden;
}
.item-gallery-page__header .images-slider-projects::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(193.81deg, rgba(28, 28, 28, 0) 49.02%, rgba(28, 28, 28, 0.7) 79.12%);
}
.item-gallery-page__header .images-slider-projects__image {
  height: 38em;
}
.item-gallery-page__header .images-slider-projects__pagination {
  position: absolute;
  z-index: 10;
  bottom: 2em;
  right: 2em;
  margin-top: 0;
}
.item-gallery-page__header .images-slider-projects__pagination .swiper-pagination-bullet-active::before {
  background: var(--white);
}

/*project*/
.page__project {
  margin-top: 14em;
  margin-bottom: 10em;
}

.item-project-page__wrap {
  margin-top: 2em;
  padding-bottom: 2em;
}
.item-project-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  margin-bottom: 3em;
}
@media (max-width: 767.98px) {
  .item-project-page__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1rem;
  }
}
.item-project-page__info {
  color: var(--white);
  background: var(--primary);
  font-size: 2em;
  line-height: 120%;
  padding: 0.5em;
}
@media (max-width: 767.98px) {
  .item-project-page__info {
    padding: 0;
    color: var(--primary);
    background: transparent;
  }
}
.item-project-page__content {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4em;
  padding: 1em;
}
@media (max-width: 991.98px) {
  .item-project-page__content {
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .item-project-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.item-project-page__logo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .item-project-page__logo-block {
    margin-bottom: 1em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.item-project-page__logo {
  overflow: hidden;
  width: 25em;
  height: 7em;
}
.item-project-page__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-project-page__logo-number {
  font-family: "Cormorant Unicase", sans-serif;
  font-size: 4.5em;
  line-height: 110%;
}
.item-project-page .item-gallery-page__header .images-slider-projects {
  max-height: 64em;
}
.item-project-page .images-slider-projects__image {
  height: 64em;
}
@media (max-width: 767.98px) {
  .item-project-page .images-slider-projects__image {
    height: 42em;
  }
}
@media (max-width: 479.98px) {
  .item-project-page .images-slider-projects__image {
    height: 32em;
  }
}
.item-project-page .slider-projects__header {
  color: var(--white);
  position: absolute;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 4em 6em;
}
@media (max-width: 767.98px) {
  .item-project-page .slider-projects__header {
    padding: 0 2em 4em;
  }
}
@media (max-width: 479.98px) {
  .item-project-page .slider-projects__header {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    color: var(--primary);
    margin-top: 2em;
  }
  .item-project-page .slider-projects__header .item-slider-projects__info, .item-project-page .slider-projects__header .item-slider-projects__info_p {
    color: var(--white);
    background: var(--primary);
  }
}
.item-project-page .slider-projects__title {
  font-size: 4.2em;
}
@media (max-width: 767.98px) {
  .item-project-page .slider-projects__title {
    display: none;
  }
}
.item-project-page .slider-projects__items {
  margin-top: 2em;
}
@media (max-width: 767.98px) {
  .item-project-page .slider-projects__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin: 0 0 2em 0;
  }
}
.item-project-page .item-slider-projects {
  font-size: 1.6em;
}
.item-project-page .item-slider-projects__info {
  color: var(--primary);
}
@media (max-width: 767.98px) {
  .item-project-page .item-slider-projects__desc, .item-project-page .item-slider-projects__info, .item-project-page .item-slider-projects__info_p {
    color: var(--primary) !important;
    background: transparent !important;
    padding: 0 !important;
    text-align: left;
    text-transform: none;
  }
}
.item-project-page .images-slider-projects__pagination {
  bottom: 4em;
  right: 4em;
}
.item-project-page .images-slider-projects__pagination .swiper-pagination-bullet {
  width: 2.3em;
  height: 0.9em;
}
.item-project-page .images-slider-projects__pagination .swiper-pagination-bullet-active {
  width: 12.5em;
}
@media (max-width: 767.98px) {
  .item-project-page .images-slider-projects__pagination {
    bottom: 1em;
    right: 2em;
  }
}
.item-project-page .slider-projects__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/*project detail*/
.page__project-detail {
  padding-top: 6em;
  padding-bottom: 12em;
}

.project-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.project-detail__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.project-detail__items {
  margin-top: 6em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .project-detail__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.item-project-detail {
  opacity: 0;
  -webkit-transition: opacity 1.3s ease 0s;
  transition: opacity 1.3s ease 0s;
}
.item-project-detail.active {
  opacity: 1;
}
.item-project-detail__body {
  position: relative;
  overflow: hidden;
}
@media (any-hover: hover) {
  .item-project-detail__body:hover .item-project-detail__hide-block {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .item-project-detail__body:hover .item-project-detail__plus {
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
}
.item-project-detail__image {
  overflow: hidden;
  width: 100%;
  height: 50em;
}
.item-project-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-project-detail__plus {
  cursor: pointer;
  position: absolute;
  z-index: 15;
  bottom: 2em;
  right: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em;
  background: rgba(29, 29, 29, 0.5019607843);
  -webkit-backdrop-filter: blur(1em);
          backdrop-filter: blur(1em);
  -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;
}
.item-project-detail__plus svg {
  width: 4.4em;
  height: 3.5em;
}
.item-project-detail__hide-block {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em 0 1em;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -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;
}
.item-project-detail__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 2em 1em 4em 1em;
  background: var(--white);
}
.item-project-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

/*project map*/
.page__project-map {
  padding-top: 6em;
  padding-bottom: 6em;
}

.project-map {
  position: relative;
}
.project-map.active .project-map__content {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .project-map.active .project-map__content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.project-map__map {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 72em;
}
@media (max-width: 767.98px) {
  .project-map__map {
    margin-top: 3em;
    height: 56em;
  }
}
.project-map__map-body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.project-map__map-body [class*=ymaps][class*=-ground-pane] {
  -webkit-filter: grayscale(100%) invert(0);
          filter: grayscale(100%) invert(0);
}
.project-map__content {
  width: 100%;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s ease 0s;
  transition: opacity 1.3s, -webkit-transform 1.3s ease 0s;
  transition: opacity 1.3s, transform 1.3s ease 0s;
  transition: opacity 1.3s, transform 1.3s ease 0s, -webkit-transform 1.3s ease 0s;
  left: calc((100vw - 1555px) / 2);
}
@media (max-width: 1555px) {
  .project-map__content {
    left: 1rem;
  }
}
@media (min-width: 767.98px) {
  .project-map__content {
    padding: 2em;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(2em);
            backdrop-filter: blur(2em);
    position: absolute;
    width: 60em;
    top: 50%;
  }
}
@media (max-width: 767.98px) {
  .project-map__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.project-map__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.project-map__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.project-map__text {
  color: var(--gray3);
}
/*catalog*/
.catalog {
  overflow: hidden;
  background: var(--dark-gray2);
}
.catalog__header {
  color: var(--white);
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 1.8s ease-out 0s, -webkit-transform 0.6s;
  transition: opacity 1.8s ease-out 0s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 1.8s ease-out 0s;
  transition: transform 0.6s, opacity 1.8s ease-out 0s, -webkit-transform 0.6s;
}
.catalog__header.active {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.catalog__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.catalog__row {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .catalog__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.catalog__text {
  color: var(--gray2);
}
@media (min-width: 767.98px) {
  .catalog__text {
    max-width: 35em;
  }
}
.catalog__button, .catalog__link {
  font-size: 1.8em;
}
.catalog__control-rows {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.catalog__filter .filter__item {
  border: 1px solid var(--white);
  color: var(--primary);
}
.catalog__filter .filter__item.active {
  color: var(--white);
  background: var(--primary);
}
.catalog__link {
  margin-top: 2em;
}

.catalog-slider {
  overflow: visible;
  margin-top: 7em;
}
.catalog-slider__slide {
  display: block;
  width: 36em;
}
.catalog-slider__slide.hide {
  visibility: hidden;
  opacity: 0;
  max-width: 0;
  display: none;
}
.catalog-slider__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.catalog-slider__prev {
  z-index: 1;
}
.catalog-slider__prev svg path {
  stroke: var(--white);
}
.catalog-slider__next {
  z-index: 2;
}
.catalog-slider__next svg path {
  stroke: var(--primary);
}

.item-catalog {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  width: 100%;
  padding: 3em;
  -webkit-transition: border 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: border 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, border 0.3s ease 0s;
  transition: transform 0.3s ease 0s, border 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background: var(--white);
  border: 1px solid var(--gray);
}
@media (any-hover: hover) {
  .item-catalog:hover {
    border: 1px solid var(--primary);
  }
}
.item-catalog__text-block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.item-catalog__house {
  padding: 0.25em 0.5em;
  background: var(--light);
}
.item-catalog__title {
  font-family: "Cormorant Unicase";
}
.item-catalog__image-block {
  position: relative;
  width: 100%;
  height: 28em;
  -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;
}
.item-catalog__image-block .item-catalog__image, .item-catalog__image-block .item-catalog__image-absolute {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.3s, opacity 0.3s ease 0s;
  transition: visibility 0.3s, opacity 0.3s ease 0s;
}
.item-catalog__image-block .item-catalog__image img, .item-catalog__image-block .item-catalog__image-absolute img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .item-catalog__image-block .item-catalog__image, .item-catalog__image-block .item-catalog__image-absolute {
    max-width: 29em;
  }
}
.item-catalog__image-block .item-catalog__image-absolute {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}
@media (any-hover: hover) {
  .item-catalog__image-block:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
    /*.item-catalog__image {
    	visibility: hidden;
    	opacity: 0;
    }
    .item-catalog__image-absolute {
    	visibility: visible;
    	opacity: 1;
    }*/
  }
}
.item-catalog__image {
  overflow: hidden;
  width: 100%;
  height: 28em;
}
.item-catalog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -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;
}
@media (any-hover: hover) {
  .item-catalog__image img:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}
.item-catalog__info {
  color: var(--gray4);
}
.item-catalog__tags {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
.item-catalog__tag, .item-catalog__tag_park {
  padding: 0.5em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light);
  line-height: 100%;
}
.item-catalog__tag_park {
  color: var(--white);
  background: var(--primary);
}

/*project building*/
.project-building {
  color: var(--white);
  background: var(--dark-gray2);
}
.project-building .slider-building__images {
  border: 0.6em solid var(--white);
}
.project-building .slider-building__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.project-building .slider-building__desc {
  color: var(--light);
}
.project-building .slider-building__info {
  text-transform: uppercase;
  padding: 0.5em 1em;
  color: var(--gray3);
  background: var(--white);
}
.project-building .slider-building__prev {
  z-index: 1;
}
.project-building .slider-building__prev svg path {
  stroke: var(--white);
}
.project-building .slider-building__next {
  z-index: 2;
}
.project-building .slider-building__next svg path {
  stroke: var(--primary);
}
.project-building__links {
  margin-top: 8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .project-building__links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.project-building__link-block {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3em;
  border: 2px solid var(--white);
  padding: 0.5em 2em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
@media (any-hover: hover) {
  .project-building__link-block:hover {
    background: var(--gray3);
  }
  .project-building__link-block:hover .project-building__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.project-building__link-block i {
  margin-left: auto;
}
.project-building__link-block svg {
  width: 5.4em;
  height: 1.5em;
}
@media (max-width: 479.98px) {
  .project-building__link-block {
    width: 100%;
  }
}
.project-building__image {
  overflow: hidden;
  border-radius: 50%;
  width: 8.5em;
  height: 8.5em;
}
.project-building__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
.project-building__text {
  font-size: 1.8em;
  line-height: 120%;
}

/*news page*/
.news-page__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}
.news-page__wrap {
  margin-top: 3em;
}
.news-page__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  opacity: 0;
  -webkit-transition: opacity 1.3s ease 0s;
  transition: opacity 1.3s ease 0s;
}
.news-page__items.active {
  opacity: 1;
}
.news-page__items .item-news-page__body {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .news-page__items .item-news-page__body:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    border: 1px solid var(--gray3);
    -webkit-box-shadow: 0px 16px 24px 0px rgba(66, 68, 90, 0.21);
            box-shadow: 0px 16px 24px 0px rgba(66, 68, 90, 0.21);
  }
}
@media (max-width: 991.98px) {
  .news-page__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .news-page__items {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.item-news-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  padding: 2em;
  border: 1px solid var(--light);
}
@media (max-width: 767.98px) {
  .item-news-page__body {
    padding: 1em;
  }
}
.item-news-page__image {
  overflow: hidden;
  width: 100%;
  height: 36em;
}
.item-news-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-news-page__text-block {
  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.5rem;
}
.item-news-page__date {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em;
  background: var(--light);
}
.item-news-page__title {
  text-transform: uppercase;
}
.item-news-page__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*detail news page*/
.detail-news {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  opacity: 0;
  -webkit-transition: opacity 1.3s ease 0s;
  transition: opacity 1.3s ease 0s;
}
.detail-news.active {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .detail-news {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.detail-news__image {
  border: 1px solid var(--light);
  padding: 2em;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-width: 54em;
}
.detail-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .detail-news__image {
    min-width: 100%;
    padding: 1em;
  }
}
.detail-news__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.detail-news__date {
  font-size: 1.4em;
}
.detail-news__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.page__news-slider {
  padding-top: 4em;
  padding-bottom: 8em;
}

.news-slider-page__header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.news-slider-page__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.news-slider-page__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.news-slider-page__slider {
  margin-top: 3em;
}

/*catalog-page*/
.catalog-page__header {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
}
.catalog-page__icon {
  overflow: hidden;
  width: 100%;
}
.catalog-page__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 767.98px) {
  .catalog-page__icon {
    max-width: 81em;
  }
}
.catalog-page__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media (min-width: 767.98px) {
  .catalog-page__text-block {
    max-width: 76em;
  }
}
.catalog-page__text {
  color: var(--gray2);
}
.catalog-page__wrap {
  margin-top: 4em;
}
.catalog-page__items {
  margin-top: 4em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .catalog-page__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .catalog-page__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-page__items .item-catalog__image-block .item-catalog__image, .catalog-page__items .item-catalog__image-block .item-catalog__image-absolute {
    max-width: 100%;
  }
}
@media (max-width: 479.98px) {
  .catalog-page__items {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.catalog-page__items.reload_in_progress {
  position: relative;
}
.catalog-page__items.reload_in_progress::before {
  content: "";
  position: absolute;
  z-index: 5;
  border-radius: 2em;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url("../img/icons/loading.gif") center 20em/8em no-repeat, rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 2em 1em rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 2em 1em rgba(0, 0, 0, 0.1);
}
.catalog-page__more-button {
  cursor: pointer;
  margin: 2em auto 0;
  padding: 0.5em 1.5em;
}
.catalog-page__more-button i {
  width: 1.2em;
  height: 1.2em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.catalog-page__more-button i svg path {
  fill: currentColor;
}
@media (any-hover: hover) {
  .catalog-page__more-button:hover i svg path {
    fill: currentColor;
  }
}

.filter-catalog__row:not(:last-child) {
  margin-bottom: 3em;
}
.filter-catalog__items-row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .filter-catalog__items-row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479.98px) {
  .filter-catalog__items-row {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.filter-catalog__select {
  width: 100%;
}
.filter-catalog__select .select__body, .filter-catalog__select .select__button {
  height: 100%;
}
@media (min-width: 479.98px) {
  .filter-catalog__select.filter-block .select__spoller {
    left: 0;
  }
}
@media (min-width: 479.98px) {
  .filter-catalog__select.filter-block.active .select__spoller {
    width: 54em;
  }
}
@media (min-width: 991.98px) {
  .filter-catalog__select.filter-block .select__spoller {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.filter-catalog__link {
  text-transform: none;
  padding: 0.25em 1em;
}
.filter-catalog__link svg {
  width: 3.2em;
  height: 3.2em;
}
.filter-catalog__link svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
@media (any-hover: hover) {
  .filter-catalog__link:hover svg path {
    fill: currentColor;
  }
}
.filter-catalog__button {
  position: relative;
  cursor: pointer;
  width: calc(25% - 0.5rem);
  height: 3em;
}
@media (max-width: 767.98px) {
  .filter-catalog__button {
    width: 100%;
  }
}
.filter-catalog__button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary);
  border-radius: 50%;
}
.filter-catalog__button i svg {
  width: 1.4em;
  height: 1.4em;
}
.filter-catalog__button i svg path {
  fill: var(--white);
}
.filter-catalog__buttons-row {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.row-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .row-filter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.row-filter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .row-filter__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.row-filter__projects {
  padding: 0.5em 0.5em 0.5em 1em;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  color: var(--white);
  background: var(--primary);
}
@media (max-width: 479.98px) {
  .row-filter__projects {
    width: 100%;
  }
}
.row-filter__button {
  font-size: 2.4em;
  line-height: 120%;
}
.row-filter__button span {
  display: block;
  color: var(--primary);
  background: var(--white);
  padding: 0.25em;
}
.row-filter__button a {
  display: block;
  padding: 0.25em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .row-filter__button a:hover {
    color: var(--primary);
    background: var(--white);
  }
}
.row-filter__image {
  overflow: hidden;
  width: 7em;
  min-height: 100%;
}
.row-filter__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .row-filter__image {
    display: none;
  }
}
.row-filter__select {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.row-filter__select .select__button {
  padding: 0;
  font-size: 2em;
  color: var(--primary);
  background: transparent;
}
.row-filter__select .select__button i {
  width: 2.4em;
  height: 2.4em;
  background: var(--primary);
}
.row-filter__select .select__button i svg path {
  stroke: var(--white);
}
@media (max-width: 479.98px) {
  .row-filter__select {
    width: 100%;
  }
}

/*catalog detail*/
.catalog-detail {
  overflow: clip;
  padding-bottom: 6em;
}
.catalog-detail__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.catalog-detail__icon {
  overflow: hidden;
  width: 4em;
  height: 4.4em;
}
.catalog-detail__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .catalog-detail__icon {
    display: none;
  }
}
.catalog-detail__title {
  font-weight: 300;
}
.catalog-detail__title .title-main {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.catalog-detail__title .title-main .desktop {
  color: var(--gray3);
}
@media (max-width: 767.98px) {
  .catalog-detail__title .desktop {
    display: none;
  }
}
.catalog-detail__wrap {
  margin-top: 5em;
}
.catalog-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .catalog-detail__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.catalog-detail__bottom {
  margin-top: 3em;
  margin-bottom: 3em;
}
.catalog-detail__checkboxes {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.catalog-detail__checkbox-body {
  width: 100%;
  position: relative;
  padding: 3em;
  border: 1px solid var(--light);
  -webkit-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
}
.catalog-detail__checkbox-body._tab-active {
  border: 1px solid var(--gray);
}
.catalog-detail__checkbox-body._tab-active .catalog-detail__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-detail__checkbox-body._tab-active .checkbox__label:before {
  background: url(../img/icons/check.svg) center/80% no-repeat, var(--primary);
}
@media (any-hover: hover) {
  .catalog-detail__checkbox-body:hover {
    border: 1px solid var(--primary);
  }
}
.catalog-detail__checkbox-body .catalog-detail__button {
  margin-top: 1em;
  margin-left: 3.5em;
  display: none;
}
.catalog-detail__checkbox-body .checkbox__block {
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 100%;
  color: var(--gray3);
}
.catalog-detail__checkbox-body .checkbox__block span {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 1.2em;
  height: 1.2em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.catalog-detail__checkbox-body .checkbox__block span::before {
  content: "?";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--gray3);
  border: 1px solid var(--gray3);
}
.catalog-detail__checkbox-body .checkbox__block span::after {
  font-weight: 400;
  content: attr(data-tooltip);
  position: absolute;
  z-index: 30;
  width: 32em;
  right: -20px;
  -webkit-clip-path: polygon(90% 5%, 95% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
          clip-path: polygon(90% 5%, 95% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
  background: var(--gray);
  color: var(--white);
  padding: 1em;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s, top 0.3s ease 0s;
  transition: opacity 0.5s, top 0.3s ease 0s;
}
@media (any-hover: hover) {
  .catalog-detail__checkbox-body .checkbox__block:hover span::after {
    opacity: 1;
    top: 1em;
  }
}
@media (max-width: 767.98px) {
  .catalog-detail__checkbox-body .checkbox__block span::after {
    width: 20em;
  }
}
@media (min-width: 767.98px) {
  .catalog-detail__checkbox-body {
    max-width: 42em;
  }
}
.catalog-detail__checkbox {
  position: relative;
  z-index: 5;
}
.catalog-detail__checkbox .checkbox__label:before {
  position: absolute;
  width: 3em;
  height: 3em;
  top: 0;
  left: 0;
}
.catalog-detail__checkbox .checkbox__text-block {
  padding-left: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.catalog-detail__checkbox .checkbox__price {
  font-size: 2.2em;
  line-height: 120%;
}
.catalog-detail__checkbox .checkbox__mounth-price {
  font-size: 1.6em;
  line-height: 120%;
}
.catalog-detail__checkbox .checkbox__text {
  font-size: 2em;
}

.information-detail {
  position: relative;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .information-detail {
    width: 100%;
  }
}
.information-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .information-detail__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
}
.information-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--light);
}
.information-detail__icon {
  position: relative;
  width: 6.2em;
  height: 4.6em;
}
.information-detail__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.information-detail__icon::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 3.7em;
  top: 0;
  right: -1rem;
  background: var(--gray3);
}
.information-detail__size {
  font-size: 1.4em;
  line-height: 120%;
}
.information-detail__tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767.98px) {
  .information-detail__tablet {
    max-width: 32em;
  }
}
.information-detail__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.information-detail__row i {
  width: 100%;
  height: 1px;
  background: var(--light);
}
.information-detail__desc, .information-detail__text {
  font-size: 1.2em;
  line-height: 120%;
}
.information-detail__text {
  text-align: right;
}
.information-detail__price-old {
  color: var(--gray3);
  text-decoration: line-through;
  font-size: 3.2em;
  line-height: 110%;
}
.information-detail__price {
  white-space: nowrap;
  font-size: 4.2em;
  line-height: 110%;
}
.information-detail__buttons-block {
  position: sticky;
  z-index: 15;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1em 0;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .information-detail__buttons-block {
    position: fixed;
    width: 100%;
    padding: 1em;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    gap: 1em;
  }
}
.information-detail__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .information-detail__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .information-detail__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.information-detail__button {
  font-size: 1.4em;
  padding: 0.75em;
}
@media (max-width: 767.98px) {
  .information-detail__button {
    font-size: 1em;
  }
}
.information-detail__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .information-detail__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.information-detail__link {
  font-size: 1.4em;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .information-detail__link:hover {
    opacity: 0.5;
  }
}
@media (max-width: 767.98px) {
  .information-detail__link {
    font-size: 1.2em;
  }
}

.scheme-detail {
  width: 100%;
}
@media (min-width: 767.98px) {
  .scheme-detail {
    position: sticky;
    top: 5em;
  }
}
.scheme-detail.active .tabs__content {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  aspect-ratio: 1/1;
}
.scheme-detail.active .circle__svg {
  opacity: 1;
}
.scheme-detail.active .circle__start {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.scheme-detail.active .circle__finish {
  opacity: 1;
  -webkit-transition: opacity 3.3s ease-in 0s;
  transition: opacity 3.3s ease-in 0s;
}
.scheme-detail.active .circle__progress {
  stroke-dashoffset: 45em;
  opacity: 1;
  -webkit-transition: stroke-dashoffset 3.3s ease 0s;
  transition: stroke-dashoffset 3.3s ease 0s;
}
.scheme-detail.active .circle__way {
  -webkit-transform: translate(-50%, -50%) rotate(42deg);
          transform: translate(-50%, -50%) rotate(42deg);
}
.scheme-detail.active .circle__start {
  -webkit-transform: translate(50%, -50%) rotate(-42deg);
          transform: translate(50%, -50%) rotate(-42deg);
}
.scheme-detail.active .circle__finish {
  -webkit-transform: translate(-50%, -50%) rotate(-42deg);
          transform: translate(-50%, -50%) rotate(-42deg);
}
.scheme-detail .tabs__content {
  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;
  -webkit-transition: -webkit-transform 0.8s ease 0s;
  transition: -webkit-transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s, -webkit-transform 0.8s ease 0s;
}
.scheme-detail__tabs {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.scheme-detail__image {
  overflow: hidden;
  aspect-ratio: 1/1;
  height: 64em;
}
.scheme-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .scheme-detail__image {
    height: 42em;
  }
}
.scheme-detail__controls {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .scheme-detail__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.scheme-detail__navigation {
  width: 100%;
}
.scheme-detail__navigation .tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
}
.scheme-detail__navigation .tabs__title {
  white-space: nowrap;
  font-size: 1.6em;
  line-height: 100%;
  padding: 0.75em 1.5em;
  border: 1px solid var(--gray2);
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.scheme-detail__navigation .tabs__title._tab-active {
  color: var(--white);
  background: var(--primary);
}
@media (any-hover: hover) {
  .scheme-detail__navigation .tabs__title:not(._tab-active):hover {
    background: var(--light);
  }
}
.scheme-detail__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .scheme-detail__buttons {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.scheme-detail__icon-button {
  position: relative;
  display: block;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.scheme-detail__icon-button::before {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid var(--primary);
}
.scheme-detail__icon-button::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 1em;
  background: var(--primary);
}
.scheme-detail__icon-button span {
  padding-left: 2.4em;
  color: var(--gray3);
  font-size: 1.4em;
  line-height: 110%;
}
@media (any-hover: hover) {
  .scheme-detail__icon-button:hover {
    opacity: 0.5;
  }
}
.scheme-detail__toggle {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
}
.circle {
  width: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767.98px) {
  .circle {
    margin-top: 3em;
  }
}
.circle__way {
  position: absolute;
  z-index: 5;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.circle__start, .circle__finish {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  text-transform: uppercase;
  color: var(--black);
  font-size: 1em;
  line-height: 120%;
  opacity: 0;
}
.circle__start {
  bottom: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.circle__finish {
  top: 0;
  left: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.circle__svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.circle__svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 3;
  r: 49%;
  cx: 50%;
  cy: 50%;
}
.circle__main {
  stroke: var(--primary);
  stroke-opacity: 0.3;
  stroke-dasharray: 1.5em, 1em;
}
.circle__progress {
  stroke: var(--primary);
  stroke-width: 3;
  stroke-dasharray: 275%;
  stroke-dashoffset: 0;
}

.detail-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  z-index: 15;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.detail-popup.change {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767.98px) {
  .detail-popup {
    display: none;
  }
}
.detail-popup__body {
  padding: 1em 2em;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .detail-popup__body {
    padding: 1em;
  }
  .detail-popup__body .information-detail__price-old {
    font-size: 1.6em;
  }
  .detail-popup__body .information-detail__price {
    font-size: 2em;
  }
  .detail-popup__body .information-detail__button {
    font-size: 1em;
  }
  .detail-popup__body .information-detail__link {
    font-size: 1.2em;
  }
}
.detail-popup__price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
}
.detail-popup__block {
  padding: 2em;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3em;
}
.detail-popup__buttons {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
}
.detail-popup__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
}

.page__parking {
  margin-top: 6em;
  margin-bottom: 6em;
}

.parking-detail {
  overflow: clip;
}
.parking-detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 6em;
}
@media (max-width: 767.98px) {
  .parking-detail__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
.parking-detail__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  width: 44em;
  height: 28em;
}
.parking-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .parking-detail__image {
    width: 100%;
    height: auto;
  }
}
.parking-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.parking-detail__title {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
/*map page*/
.map-detail {
  margin-top: 8em;
  margin-bottom: 6em;
}
@media (min-width: 767.98px) {
  .map-detail__wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.map-detail__items {
  overflow: hidden;
  margin-top: 3em;
}
@media (min-width: 991.98px) {
  .map-detail__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    row-gap: 2rem;
  }
}
@media (min-width: 991.98px) {
  .map-detail__items .popup-map {
    border: 1px solid var(--light);
    width: calc(50% - 0.5rem);
  }
  .map-detail__items .popup-map.open {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    border: 1px solid var(--primary);
  }
  .map-detail__items .popup-map:not(.open) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 767.98px) {
  .map-detail__items .popup-map {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 0;
    left: 0;
  }
  .map-detail__items .popup-map__content {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    height: 100%;
  }
  .map-detail__items .popup-map__close {
    display: none;
  }
  .map-detail__items .popup-map__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .map-detail__items .popup-map__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    height: 100%;
  }
  .map-detail__items .popup-map__button {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}
@media (min-width: 767.98px) {
  .map-detail .map__filter {
    margin-top: 1em;
    position: relative;
    left: 0;
    bottom: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 767.98px) {
  .map-detail .map__map-body {
    top: 8em;
    position: sticky;
  }
}

/*map page*/
.map-detail {
  margin-top: 8em;
  margin-bottom: 6em;
}
.map-page {
  margin-top: 8em;
  margin-bottom: 6em;
  position: relative;
}
.map-page__wrap {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc((100vw - 1555px) / 2);
}
@media (max-width: 1555px) {
  .map-page__wrap {
    left: 1rem;
  }
}
@media (max-width: 767.98px) {
  .map-page__wrap {
    top: 0;
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.map-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.map-page__header {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.map-page__items {
  margin-top: 3em;
}
.map-page__social {
  margin-top: 3em;
}
@media (min-width: 767.98px) {
  .map-page__form-block {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background: rgba(217, 217, 217, 0.4901960784);
    padding: 3em;
    right: calc((100vw - 1555px) / 2);
  }
}
@media (max-width: 1555px) {
  .map-page__form-block {
    right: 1rem;
  }
}
@media (max-width: 767.98px) {
  .map-page__form-block {
    margin-top: 4em;
  }
}
.map-page .map__map-body {
  height: 81em;
  position: relative;
}
.map-page .map__map-body::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(52.85% 52.85% at 59.33% 51.13%, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
@media (max-width: 767.98px) {
  .map-page .map__map-body {
    height: 64em;
  }
}

.item-map-page:not(:last-child) {
  margin-bottom: 2em;
}
.item-map-page__title {
  text-transform: uppercase;
  color: var(--gray2);
}
.item-map-page__text a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-map-page__text a:hover {
    opacity: 0.5;
  }
}

@media (max-width: 767.98px) {
  .social-map-page__title {
    font-size: 2.6em;
  }
}
.social-map-page__links {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .social-map-page__link {
    font-size: 1.2em;
  }
}

.form-map__checkbox {
  margin-top: 2em;
}
.form-map__input-block {
  margin-top: 2em;
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  padding: 1em 1.5em;
  border: 1px solid var(--primary);
}
.form-map__input-block button {
  width: 3em;
  height: 3em;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.form-map__input-block button svg {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .form-map__input-block button:hover {
    opacity: 0.5;
  }
}
.form-map__input {
  font-size: 1.6em;
  line-height: 120%;
  width: 100%;
}

/*options page*/
.options-page {
  margin-top: 12em;
  margin-bottom: 6em;
}
.options-page__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.options-page__wrap {
  margin-top: 5em;
}
.options-page__navigation {
  margin-top: 3em;
}
.options-page__text-block {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (min-width: 479.98px) {
  .options-page__text-block {
    max-width: 49em;
  }
}
.options-page__icon {
  width: 2.8em;
  height: 10em;
}
.options-page__icon svg {
  width: 100%;
  height: 100%;
}
.options-page .tabs__title {
  display: block;
  width: 12em;
  white-space: nowrap;
  padding: 0.5em 1.5em;
  font-weight: 300;
  font-size: 2.2em;
  line-height: 110%;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  -webkit-transition: color 0.3s, background 0.3s ease 0s;
  transition: color 0.3s, background 0.3s ease 0s;
}
@media (any-hover: hover) {
  .options-page .tabs__title:not(._tab-active):hover {
    background: var(--white);
    color: var(--primary);
  }
}
.options-page .tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
}
.options-page .tabs__content {
  margin-top: 8em;
}

.tab-body-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.tab-body-option__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 479.98px) {
  .tab-body-option__text-block {
    max-width: 49em;
  }
}
.tab-body-option__text {
  color: var(--gray3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.tab-body-option__item span {
  color: var(--gray3);
}
.tab-body-option__variant {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.tab-body-option__variant:not(:first-child) {
  border-top: 1px solid var(--gray);
}
.tab-body-option__title {
  color: var(--gray3);
}
.tab-body-option__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .tab-body-option__button {
    width: 100%;
  }
}

.variant-tab-option {
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.variant-tab-option__number {
  font-family: "Cormorant Unicase", sans-serif;
  font-size: 8.4em;
  line-height: 100%;
}
.variant-tab-option__text-block {
  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.5rem;
}
/*team page*/
.team-page__wrap {
  overflow: hidden;
  padding: 6em 2em;
  color: var(--white);
  background: var(--primary);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1rem -webkit-max-content 1rem 1fr;
  -ms-grid-columns: 1fr 1rem max-content 1rem 1fr;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .team-page__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }
  .team-page__wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team-page__wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .team-page__wrap > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .team-page__wrap > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .team-page__wrap > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .team-page__wrap > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .team-page__wrap > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .team-page__wrap > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .team-page__wrap > *:nth-child(9) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .team-page__wrap > *:nth-child(10) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
  }
}
@media (max-width: 767.98px) {
  .team-page__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 1/2/2/6;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.team-page__logo {
  overflow: hidden;
  width: 14em;
  height: 19em;
}
.team-page__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .team-page__logo {
    width: 6em;
    height: 8em;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
.team-page__text {
  margin: 0 auto;
}
@media (min-width: 767.98px) {
  .team-page__text {
    max-width: 24em;
  }
}
@media (max-width: 767.98px) {
  .team-page__text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 2/2/3/6;
  }
}
.team-page__item:first-child {
  padding-top: 0;
}
.team-page__item:not(:last-child) {
  margin-bottom: 4em;
  border-bottom: 1px solid var(--light);
}

.item-team {
  padding: 4em 0;
}
@media (any-hover: hover) {
  .item-team:hover .item-team__icon {
    opacity: 1;
  }
}
@media (min-width: 767.98px) {
  .item-team__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5em;
  }
}
.item-team__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5em;
}
@media (max-width: 479.98px) {
  .item-team__content {
    gap: 2em;
  }
}
.item-team__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  width: 24em;
  height: auto;
}
.item-team__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479.98px) {
  .item-team__image {
    width: 17em;
  }
}
.item-team__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 767.98px) {
  .item-team__info-block {
    max-width: 22em;
  }
}
.item-team__text-block {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
@media (max-width: 767.98px) {
  .item-team__text-block {
    margin-top: 5em;
  }
}
.item-team__icon {
  opacity: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 5.6em;
  height: 5.9em;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.item-team__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .item-team__icon {
    width: 3.5em;
    height: 3.8em;
    opacity: 1;
  }
}
@media (min-width: 767.98px) {
  .item-team__text {
    max-width: 24em;
  }
}

/*career page*/
.page__career {
  margin-top: 12em;
}

.career-page__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 991.98px) {
  .career-page__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.career-page__text-block {
  margin-top: 5em;
  opacity: 0;
  -webkit-transition: opacity 1.3s ease 0s;
  transition: opacity 1.3s ease 0s;
}
.career-page__text-block.active {
  opacity: 1;
}
@media (min-width: 991.98px) {
  .career-page__text-block {
    max-width: 63em;
  }
}
.career-page__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.career-page__text:not(:last-child) {
  margin-bottom: 2em;
}
.career-page__items {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (36em)[2];
  grid-template-columns: repeat(2, 36em);
}
@media (max-width: 991.98px) {
  .career-page__items {
    margin-top: 3em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .career-page__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.item-career {
  background: var(--gray);
  padding: 5em;
  width: 100%;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.item-career.active {
  opacity: 1;
}
@media (min-width: 767.98px) {
  .item-career {
    aspect-ratio: 1/1;
  }
}
.item-career:nth-child(2) {
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--gray4);
}
@media (min-width: 767.98px) {
  .item-career:nth-child(2) {
    -webkit-transform: translate(-3em, 3em);
            transform: translate(-3em, 3em);
  }
}
.item-career:nth-child(3) {
  -webkit-transition: opacity 2s ease 0s;
  transition: opacity 2s ease 0s;
  position: relative;
  z-index: 4;
  background: var(--light);
}
@media (min-width: 767.98px) {
  .item-career:nth-child(3) {
    -webkit-transform: translate(3em, -3em);
            transform: translate(3em, -3em);
  }
}
.item-career:nth-child(4) {
  -webkit-transition: opacity 1.5s ease 0s;
  transition: opacity 1.5s ease 0s;
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--primary);
}
.item-career__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item-career__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.page__benefits {
  margin-top: 8em;
}

.benefits {
  overflow: clip;
}
.benefits__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}
.benefits__wrap {
  margin-top: 5em;
}
.benefits__slider {
  margin-top: 5em;
}
.benefits__controls {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.slider-benefits {
  overflow: visible;
}
.slider-benefits__swiper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.slider-benefits__slide {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  background: var(--white);
}
.slider-benefits__number {
  position: absolute;
  width: 6em;
  height: 6em;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--white) url("../img/circle.png") no-repeat center/100% 100%;
}
.slider-benefits__number span {
  font-size: 7em;
  font-family: "Cormorant Unicase";
}
.slider-benefits__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
.slider-benefits__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-benefits__body {
  margin-top: 2em;
  -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: 1rem;
}
.page__reasons {
  margin-top: 8em;
}

.reasons {
  overflow: clip;
}
.reasons__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.reasons__number {
  font-size: 10em;
}
.reasons__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}
.reasons__wrap {
  margin-top: 5em;
}
.reasons__slider-thumb {
  position: relative;
}
.reasons__slider-thumb::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  top: calc(50% - 0.5px);
  left: 12em;
  opacity: 0.2;
  background: var(--primary);
  -webkit-transition: width 3s ease 0s;
  transition: width 3s ease 0s;
}
.reasons__slider-thumb.active::before {
  width: 100vw;
}
.reasons__slider {
  margin-top: 5em;
}
.reasons__controls {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

.slider-reasons {
  overflow: visible;
}
.slider-reasons__swiper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.slider-reasons__slide {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  background: var(--white);
  padding: 3em;
}
.slider-reasons__number {
  position: absolute;
  width: 6em;
  height: 6em;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--white) url("../img/circle.png") no-repeat center/100% 100%;
}
.slider-reasons__number span {
  font-size: 7em;
  font-family: "Cormorant Unicase";
}
.slider-reasons__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
.slider-reasons__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-reasons__body {
  margin-top: 2em;
  -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: 1rem;
}
.page {
  overflow: clip;
}
.page__vacancies {
  margin-top: 8em;
}

.vacancies__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}
.vacancies__wrap {
  margin-top: 3em;
}
.vacancies__spoller:not(:last-child) {
  margin-bottom: 2em;
}

.spoller-vacancies {
  border: 1px solid var(--gray);
}
.spoller-vacancies__button {
  width: 100%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  padding: 1.5em;
  background: var(--light);
}
.spoller-vacancies__button span {
  text-align: left;
  font-size: 1.8em;
  line-height: 100%;
}
.spoller-vacancies__button i {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: 1px solid var(--primary);
  -webkit-transition: border 0.3s ease 0s, background 0.3s ease 0s;
  transition: border 0.3s ease 0s, background 0.3s ease 0s;
}
.spoller-vacancies__button i::before, .spoller-vacancies__button i::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 1px;
  top: 50%;
  left: 50%;
  background: var(--primary);
  -webkit-transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: background 0.3s ease 0s, transform 0.3s ease 0s;
  transition: background 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.spoller-vacancies__button i::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.spoller-vacancies__button i::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.spoller-vacancies__button.spoller-active i {
  background: var(--primary);
}
.spoller-vacancies__button.spoller-active i::before, .spoller-vacancies__button.spoller-active i::after {
  background: var(--white);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .spoller-vacancies__button:not(.spoller-active):hover i {
    border: 1px solid var(--gray);
  }
  .spoller-vacancies__button:not(.spoller-active):hover i::before, .spoller-vacancies__button:not(.spoller-active):hover i::after {
    background: var(--gray);
  }
}
@media (max-width: 767.98px) {
  .spoller-vacancies__button {
    padding: 1em;
    border-radius: 2em;
    background: var(--white);
  }
  .spoller-vacancies__button span {
    font-size: 1.4em;
  }
  .spoller-vacancies__button i {
    width: 2em;
    height: 2em;
  }
}
.spoller-vacancies__content {
  padding: 1.5em;
  border-top: 1px solid var(--gray);
}
.spoller-vacancies__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.spoller-vacancies__link {
  margin: 2em auto 0;
}

.page__corculture {
  overflow: clip;
  margin-top: 8em;
}

.corculture {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.corculture.active .news__title-block, .corculture.active .slider-corculture {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.corculture__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}
.corculture__wrap {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4em;
}
.corculture__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.corculture__text span {
  font-weight: 500;
}
.slider-corculture {
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out 0s;
  transition: opacity 2.8s ease-out 0s;
}
.slider-corculture__slide {
  width: 34em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-corculture__images, .slider-corculture__videos {
  display: block;
  border: 1px solid var(--gray);
  width: 34em;
  padding: 1em;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.slider-corculture__image {
  display: block;
  border-radius: 50%;
  width: 32em;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.slider-corculture__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .slider-corculture__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.slider-corculture__image_dn {
  display: none;
}
.slider-corculture__text-block {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.slider-corculture__text {
  color: var(--gray);
}
.slider-corculture__controls {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.slider-corculture__video-icon {
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.4em;
  height: 12.4em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--white);
}
.slider-corculture__video-icon svg {
  width: 3.3em;
  height: 3.5em;
}

.page__join {
  margin-top: 8em;
  margin-bottom: 6em;
}

.career-join__wrap {
  padding: 3em 5em;
  position: relative;
  background: var(--gray2);
  opacity: 0;
  -webkit-transition: opacity 1.3s ease 0s;
  transition: opacity 1.3s ease 0s;
}
.career-join__wrap.active {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .career-join__wrap {
    padding: 2em 3em;
  }
}
.career-join__content {
  position: relative;
  z-index: 5;
}
@media (min-width: 767.98px) {
  .career-join__content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.career-join__block {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  margin-top: 3em;
}
@media (max-width: 767.98px) {
  .career-join__block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.career-join__text {
  text-transform: uppercase;
}
.career-join__text a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .career-join__text a:hover {
    opacity: 0.5;
  }
}
.career-join__text:not(:last-child) {
  margin-bottom: 1em;
}
.career-join__button {
  padding: 0.25em 1.5em;
  border: 1px solid var(--primary);
}
.career-join__button i {
  display: block;
  overflow: hidden;
  width: 2.5em;
  height: 2.5em;
}
.career-join__button i img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.career-join__bg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
  overflow: hidden;
  width: 19em;
}
.career-join__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .career-join__bg {
    width: 9em;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    bottom: 0;
    right: 0;
  }
}

.page__form {
  margin-top: 8em;
  margin-bottom: 8em;
}

.form-page__title {
  text-align: center;
}
.form-page__wrap {
  margin-top: 3em;
}
.form-page__body {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*parking-page*/
.parking-page {
  padding-top: 8em;
  overflow: hidden;
}
.parking-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.parking-page__header .detail-page__link {
  border: 1px solid var(--primary);
}
.parking-page__body {
  margin-top: 6em;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-grid-columns: 1fr 2rem 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
@media (max-width: 479.98px) {
  .parking-page__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 479.98px) {
  .image-parkingplaces {
    width: 100%;
  }
}
.image-parkingplaces.astronom .image-parkingplaces__image-block {
  width: 77.03em;
  height: 84.45em;
}
@media (max-width: 991.98px) {
  .image-parkingplaces.astronom .image-parkingplaces__image-block {
    width: 59.25em;
    height: 64.96em;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces.astronom .image-parkingplaces__image-block {
    width: 592.5px;
    height: 649.6px;
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.astronom .image-parkingplaces__image-block {
    width: calc(290px + 302.5 * ((100vw - 320px) / (1220)));
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.astronom .image-parkingplaces__image-block {
    height: calc(320px + 329.6 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.bolshaya .image-parkingplaces__image-block {
  width: 85em;
}
@media (max-width: 991.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block {
    width: 59.52em;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block {
    width: 592.2px;
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block {
    width: calc(290px + 302.2 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.bolshaya .image-parkingplaces__image-block_1 {
  height: 81em;
}
@media (max-width: 991.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_1 {
    height: 56.38em;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_1 {
    height: 563.8px;
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_1 {
    height: calc(270px + 293.8 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.bolshaya .image-parkingplaces__image-block_2 {
  height: 118.7em;
}
@media (max-width: 991.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_2 {
    height: 81.78em;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_2 {
    height: 817.8px;
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.bolshaya .image-parkingplaces__image-block_2 {
    height: calc(393px + 424.8 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.peter .image-parkingplaces__image-block {
  width: 81.648em;
}
@media (max-width: 1023.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block {
    width: 68.04em;
  }
}
@media (max-width: 991.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block {
    width: 59.52em;
  }
}
@media (max-width: 479.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block {
    width: 592.2px;
  }
}
@media (max-width: 479.98px) and (max-width: 1540px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block {
    width: calc(290px + 302.2 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.peter .image-parkingplaces__image-block_1 {
  height: 81.648em;
}
@media (max-width: 1023.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_1 {
    height: 68.04em;
  }
}
@media (max-width: 991.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_1 {
    height: 59.52em;
  }
}
@media (max-width: 479.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_1 {
    height: 595.2px;
  }
}
@media (max-width: 479.98px) and (max-width: 1540px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_1 {
    height: calc(320px + 275.2 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.peter .image-parkingplaces__image-block_2 {
  height: 62.052em;
}
@media (max-width: 1023.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_2 {
    height: 51, 71em;
  }
}
@media (max-width: 991.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_2 {
    height: 45, 23em;
  }
}
@media (max-width: 479.98px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_2 {
    height: 452.3px;
  }
}
@media (max-width: 479.98px) and (max-width: 1540px) {
  .image-parkingplaces.peter .image-parkingplaces__image-block_2 {
    height: calc(244px + 208.3 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces.godovik .image-parkingplaces__image-block {
  width: 92.625em;
  height: 70.86em;
}
@media (max-width: 991.98px) {
  .image-parkingplaces.godovik .image-parkingplaces__image-block {
    width: 61.75em;
    height: 47.24em;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces.godovik .image-parkingplaces__image-block {
    width: 617.5px;
    height: 472.4px;
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.godovik .image-parkingplaces__image-block {
    width: calc(290px + 327.5 * ((100vw - 320px) / (1220)));
  }
}
@media (max-width: 767.98px) and (max-width: 1540px) {
  .image-parkingplaces.godovik .image-parkingplaces__image-block {
    height: calc(220px + 252.4 * ((100vw - 320px) / (1220)));
  }
}
.image-parkingplaces__navigation {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.image-parkingplaces__tab-button {
  cursor: pointer;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: var(--primary);
  background: var(--light);
  font-size: 1.6em;
  line-height: 110%;
  padding: 1em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.image-parkingplaces__tab-button._tab-active {
  color: var(--white);
  background: var(--primary);
}
@media (any-hover: hover) {
  .image-parkingplaces__tab-button:hover {
    color: var(--white);
    background: var(--gray);
  }
}
.image-parkingplaces__body {
  margin-top: 2em;
  position: relative;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .image-parkingplaces__body {
    gap: 1rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.image-parkingplaces__image-block {
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.image-parkingplaces__image-block.active {
  cursor: -webkit-grab;
  cursor: grab;
}
.image-parkingplaces__image-block.active .image-parkingplaces__image {
  position: absolute;
  z-index: 2;
}
.image-parkingplaces__gesture-area {
  position: relative;
  width: 100%;
  height: 100%;
}
.image-parkingplaces__gesture-area .image-parkingplaces__image {
  -ms-touch-action: none;
  touch-action: none;
}
.image-parkingplaces__image {
  width: 100%;
  height: 100%;
}
.image-parkingplaces__image svg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 15;
}
.image-parkingplaces__image svg path {
  cursor: pointer;
}
.image-parkingplaces__image img, .image-parkingplaces__image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 479.98px) {
  .image-parkingplaces__image img, .image-parkingplaces__image svg {
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
@media (max-width: 767.98px) {
  .image-parkingplaces__zoom {
    display: none !important;
  }
}

.zoom-body {
  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;
}
@media (max-width: 767.98px) {
  .zoom-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.zoom-body__button_plus, .zoom-body__button_minus {
  position: relative;
  cursor: pointer;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--primary);
  background: var(--light);
  text-transform: uppercase;
  font-size: 2.4em;
  line-height: 110%;
  padding: 0.5em 1.2em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
@media (any-hover: hover) {
  .zoom-body__button_plus:hover, .zoom-body__button_minus:hover {
    color: var(--light);
    background: var(--primary);
  }
}

.parking-filter {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.parking-filter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  min-width: 25em;
}
.parking-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 479.98px) {
  .parking-filter__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.parking-filter__spoller-button {
  width: 100%;
  text-align: left;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  padding-right: 1.5em;
}
.parking-filter__spoller-button span {
  font-size: 1.4em;
  line-height: 110%;
}
.parking-filter__spoller-button i {
  position: relative;
}
.parking-filter__spoller-button i::before, .parking-filter__spoller-button i::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1px;
  background: var(--primary);
  -webkit-transition: width 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: width 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.parking-filter__spoller-button i::before {
  -webkit-transform: rotate(-45deg) translate(50%, -50%);
          transform: rotate(-45deg) translate(50%, -50%);
}
.parking-filter__spoller-button i::after {
  -webkit-transform: rotate(45deg) translate(-50%, 50%);
          transform: rotate(45deg) translate(-50%, 50%);
}
.parking-filter__spoller-button.spoller-active i::before {
  width: 1.5em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.parking-filter__spoller-button.spoller-active i::after {
  width: 1.5em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.parking-filter__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 479.98px) {
  .parking-filter__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.parking-filter__range {
  margin-top: 3em;
}
.parking-filter__buttons {
  margin-top: 2em;
}
.parking-filter__buttons .spoller:not(:last-child) {
  margin-bottom: 2em;
}
.parking-filter__buttons .spoller-body {
  margin-top: 1em;
}
.parking-filter__radio {
  position: relative;
  cursor: pointer;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 1.6em;
  line-height: 120%;
  background: var(--light);
  padding: 1em 1.2em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.parking-filter__radio input {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.parking-filter__radio.active {
  color: var(--white);
  background: var(--primary);
}
@media (any-hover: hover) {
  .parking-filter__radio:not(.active):hover {
    color: var(--white);
    background: var(--gray);
  }
}
.parking-filter__button-clear {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.parking-filter__info-text {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}

/*svg parking*/
.image-parkingplaces__image svg path[data-filter=filtered] {
  fill: var(--gray);
  stroke: var(--primary);
  opacity: 0.5;
}
.image-parkingplaces__image svg path[data-status-enable=disabled] {
  cursor: default;
}
.image-parkingplaces__image svg path[data-engage=mouseover] {
  fill: var(--primary);
  opacity: 0.7;
}
.image-parkingplaces__image svg path:not([data-status=AVAILABLE]) {
  fill: var(--white);
  opacity: 0.7;
}
.image-parkingplaces__image svg path[data-type] {
  fill: var(--gray);
  opacity: 0.2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .image-parkingplaces__image svg path[data-type]:hover {
    stroke: var(--primary);
    opacity: 0.7;
  }
}