@font-face {
  font-family: 'Muller';
  src: url("fonts/MullerLight.eot");
  src: local("Muller Light"), local("MullerLight"), url("fonts/MullerLight.eot?#iefix") format("embedded-opentype"), url("fonts/MullerLight.woff2") format("woff2"), url("fonts/MullerLight.woff") format("woff"), url("fonts/MullerLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Muller';
  src: url("fonts/MullerExtraBold.eot");
  src: local("Muller ExtraBold"), local("MullerExtraBold"), url("fonts/MullerExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/MullerExtraBold.woff2") format("woff2"), url("fonts/MullerExtraBold.woff") format("woff"), url("fonts/MullerExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none; }
  input.error {
    color: red !important;
    border-color: red !important; }

html {
  scroll-behavior: smooth; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #FF3636;
  border: 1px solid #ddd; }

body {
  font-family: 'Muller', sans-serif;
  font-weight: 300;
  font-size: 0.8rem; }

.overflowH {
  overflow: hidden; }

.lazy {
  opacity: 0; }

.container {
  padding: 0 5rem; }

.section-title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.5rem;
  color: #FF3636; }
  .section-title span {
    display: block;
    padding-left: 9rem; }

.section-text {
  font-size: 1.1rem;
  line-height: 1.4; }

.section-back {
  position: absolute;
  z-index: 2;
  left: 5rem;
  top: 7rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #FF3636;
  text-transform: uppercase; }
  .section-back img {
    width: 2.5rem; }
  .section-back:hover {
    opacity: .8; }

.section-choose {
  position: absolute;
  z-index: 2;
  left: 5rem;
  bottom: 2rem;
  min-width: 11rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1.2rem;
  gap: .8rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(30.0499992371px);
  color: #fff;
  border-radius: .75rem; }
  .section-choose img {
    width: 1.3rem; }
  .section-choose-purple {
    background: #D7D6FF; }

.btn {
  height: 3rem;
  width: 10rem;
  border-radius: .5rem;
  background: #FF3636;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 800; }
  .btn:hover {
    background: #D33939; }
  .btn-white {
    background: #fff;
    border: 1px solid #FF3636;
    color: #FF3636; }
    .btn-white:hover {
      color: #fff;
      background: #FF3636; }

.arrows span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .6s all;
  cursor: pointer;
  user-select: none;
  color: #FF3636;
  background: #D7D6FF;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%; }
  .arrows span:hover {
    background: #FF3636;
    color: #D7D6FF; }

.round-bg {
  background: #fff;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
  z-index: 1; }

.mobile-menu {
  display: none; }

@keyframes pulse-red {
  0% {
    opacity: 1; }
  70% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes svgPulse {
  0% {
    opacity: 0; }
  50% {
    opacity: .8; }
  100% {
    opacity: 0; } }
@keyframes preloaderLogo {
  50% {
    opacity: .5; }
  100% {
    opacity: 1;
    transform: none; } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #D7D6FF url(../img/pattern-preloader.jpg) center center no-repeat;
  background-size: cover;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 22.4rem;
    animation: preloaderLogo 1.5s linear forwards;
    transform: scale(0.7);
    opacity: 0; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.live {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  background: rgba(0, 0, 0, 0.6);
  display: none; }
  .live-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    width: 48rem;
    height: 27rem;
    text-align: center; }
    .live-content iframe {
      width: 100%;
      height: 100%; }
  .live-open {
    right: 5rem;
    bottom: 11rem;
    position: fixed;
    z-index: 6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    flex-direction: column;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #FF3636;
    color: #fff;
    text-align: center;
    gap: .2rem;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    line-height: 1rem; }
    .live-open::after {
      position: absolute;
      width: .35rem;
      height: .35rem;
      border-radius: 50%;
      background: #AF0000;
      animation: pulse-red 1s infinite;
      right: 1.3rem;
      top: 0.9rem;
      content: ''; }
    .live-open img {
      width: 1.2rem; }
    .live-open:hover {
      background: #D33939; }

.tour {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(0, 0, 0, 0.7);
  display: none; }
  .tour-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem 2.25rem;
    box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 64.815px 46.852px 0px rgba(0, 0, 0, 0.05), 0px 38.519px 25.481px 0px rgba(0, 0, 0, 0.04), 0px 20px 13px 0px rgba(0, 0, 0, 0.04), 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.03), 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.02);
    width: 19rem; }
  .tour__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FF3636;
    margin-bottom: 1.5rem;
    text-align: center; }
  .tour-list {
    font-size: 0.8rem; }
    .tour-list li {
      margin-bottom: 0.6rem; }
      .tour-list li:last-child {
        margin-bottom: 0; }
    .tour-list a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 2.5rem;
      color: #000;
      background: #D7D6FF;
      border-radius: 2.5rem; }
      .tour-list a:hover {
        color: #fff;
        background: #FF3636; }
  .tour-btn {
    right: 5rem;
    bottom: 5rem;
    position: fixed;
    z-index: 6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    flex-direction: column;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #FF3636;
    color: #fff;
    text-align: center;
    gap: .2rem;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    line-height: 1rem;
    text-transform: uppercase; }
    .tour-btn img {
      width: 1.5rem; }
    .tour-btn:hover {
      background: #D33939; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  display: none; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.1rem;
    border-bottom: 0.65rem solid #FF3636;
    background: #fff;
    width: 24rem; }
  .feedback__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #FF3636;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .feedback__close img {
      width: 1rem; }
    .feedback__close:hover {
      background: #D33939; }
  .feedback__title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
    color: #FF3636;
    font-weight: 800;
    text-transform: uppercase; }
  .feedback__text {
    font-size: 0.85rem;
    line-height: 150%;
    text-align: center; }
  .feedback-form {
    margin: 2rem 0 0.8rem;
    font-size: 0.9rem; }
    .feedback-form input {
      width: 100%;
      height: 3.5rem;
      border: 1px solid rgba(17, 17, 17, 0.1);
      margin-bottom: 0.8rem;
      text-align: center;
      color: #FF3636;
      outline: none; }
      .feedback-form input::placeholder {
        color: rgba(255, 54, 54, 0.5); }
      .feedback-form input:focus {
        border-color: #FF3636; }
    .feedback-form .btn {
      width: 100%;
      height: 3.5rem;
      margin-top: .4rem;
      font-size: 0.9rem; }
  .feedback__agree {
    font-size: 0.7rem;
    text-align: center;
    max-width: 13rem;
    margin: 0 auto; }
  .feedback-done {
    display: none; }
    .feedback-done .feedback__text {
      margin-bottom: 1rem;
      padding: 0 1rem; }
  .feedback__img {
    margin: 4.3rem 0 3.2rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 10rem; }

.header {
  position: fixed;
  left: 0;
  top: 1.3rem;
  transition: .6s all;
  z-index: 5;
  width: 100%; }
  .header-wrap {
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(30.0499992371px);
    transition: .6s all; }
  .header-mobile {
    display: none; }
  .header__logo {
    width: 7rem; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-menu {
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    gap: 2rem; }
    .header-menu a {
      color: #fff; }
      .header-menu a:hover {
        color: #FF3636; }
  .header__phone {
    color: #FF3636;
    gap: .4rem;
    display: inline-flex;
    align-items: center;
    font-weight: 800; }
    .header__phone:hover {
      color: #D33939; }
    .header__phone svg {
      width: 1rem; }
  .header__btn img {
    display: none; }
  .header__lang {
    border: 1px solid #FF3636;
    border-radius: .5rem;
    color: #FF3636;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 0.9rem; }
    .header__lang:hover {
      background: #FF3636;
      color: #fff; }
  .header.purple .header-wrap {
    background: #D7D6FF; }
  .header.scrolled {
    top: 0;
    background: #fff;
    box-shadow: 0px 7px 18px 0px rgba(117, 117, 117, 0.25); }
    .header.scrolled .header-wrap {
      padding: 0.5rem 0;
      background: #fff; }
    .header.scrolled .header-menu a {
      color: #FF3636; }
      .header.scrolled .header-menu a:hover {
        color: #D33939; }

.main-bg {
  width: 100%;
  height: 43rem; }
  .main-bg img, .main-bg video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }
.main__logo {
  height: 13rem;
  margin-top: -7.3rem;
  transition: 1s all;
  opacity: 0;
  transform: translateY(50%); }
  .main__logo img {
    height: 100%;
    display: block; }

.plans {
  position: relative;
  padding: 10rem 0; }
  .plans::before {
    position: absolute;
    width: 100%;
    height: 40rem;
    background: #D7D6FF url(../img/pattern.jpg) center right no-repeat;
    background-size: contain;
    left: 0;
    top: -5.7rem;
    content: '';
    z-index: -1; }
  .plans .section-title {
    margin-bottom: 2.5rem; }
  .plans-card {
    box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 64.815px 46.852px 0px rgba(0, 0, 0, 0.05), 0px 38.519px 25.481px 0px rgba(0, 0, 0, 0.04), 0px 20px 13px 0px rgba(0, 0, 0, 0.04), 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.03), 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.02);
    background: #fff;
    display: flex; }
  .plans-wrap {
    width: 44%;
    padding: 2.5rem 3rem 1.5rem;
    border-right: 1px solid #D4D4D4;
    font-weight: 800;
    position: relative; }
  .plans-head {
    border-radius: 2.5rem;
    background: #D7D6FF;
    height: 2.5rem;
    padding: 0.2rem;
    display: flex;
    margin-bottom: 3rem; }
    .plans-head li {
      width: 25%;
      border-radius: 2.5rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      color: #FF3636; }
      .plans-head li:hover {
        color: #D33939; }
      .plans-head li.active {
        background: #FF3636;
        color: #fff;
        pointer-events: none; }
  .plans-tab {
    display: none;
    opacity: 0;
    transition: .6s opacity; }
    .plans-tab:first-child {
      display: block; }
    .plans-tab.active {
      opacity: 1; }
  .plans-info {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem; }
    .plans-info li {
      margin-bottom: 0.25rem; }
      .plans-info li:last-child {
        margin-bottom: 0; }
  .plans-btns {
    display: flex;
    justify-content: center;
    gap: .65rem;
    margin-bottom: 3rem; }
  .plans-slider {
    margin-left: -3rem;
    width: calc(100% + 6rem);
    position: relative;
    height: 10rem; }
    .plans-slider::before, .plans-slider::after {
      position: absolute;
      height: 100%;
      width: 4rem;
      top: 0;
      content: '';
      z-index: 1; }
    .plans-slider::before {
      background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
      left: 0; }
    .plans-slider::after {
      background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
      right: 0; }
  .plans .owl-stage {
    display: flex;
    align-items: center;
    margin-left: -.8rem; }
  .plans-item {
    width: 8.5rem;
    height: 8.25rem;
    border-radius: 1rem;
    border: 1px solid #D4D4D4;
    padding: 0.7rem;
    transition: .6s all; }
    .plans-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }
  .plans .center .plans-item {
    width: 10rem;
    height: 10rem; }
  .plans-arrows span {
    position: absolute;
    bottom: 6.5rem;
    z-index: 2; }
  .plans-arrows .arrow-left {
    left: 1rem; }
  .plans-arrows .arrow-right {
    right: 1rem; }
  .plans-img {
    width: 56%;
    padding: 3.5rem 5.5rem;
    position: relative; }
    .plans-img__plan {
      width: 100%;
      height: 100%; }
      .plans-img__plan img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        max-height: 28rem; }
    .plans-img__zoom {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      position: absolute;
      right: 2.5rem;
      top: 2.5rem;
      z-index: 2; }
      .plans-img__zoom:hover {
        opacity: .7; }
      .plans-img__zoom img {
        width: 2.5rem; }
  .plans-zoom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 6;
    cursor: pointer;
    display: none; }
    .plans-zoom__img {
      width: 60vw;
      height: 90vh;
      background: #fff;
      padding: 3.5rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      cursor: default; }
      .plans-zoom__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }

.genplan {
  position: relative;
  min-height: 40rem; }
  .genplan .section-title {
    color: #fff;
    position: absolute;
    z-index: 2;
    margin-top: 5rem; }
  .genplan__btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3rem;
    z-index: 2; }
  .genplan-wrap {
    position: relative; }
  .genplan__img {
    width: 100%; }
    .genplan__img img {
      width: 100%;
      display: block; }
  .genplan-item {
    position: absolute;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none; }
    .genplan-item.active {
      z-index: 2; }
      .genplan-item.active .genplan-item__info {
        opacity: 1;
        visibility: visible; }
    .genplan-item__ico {
      width: 26px;
      height: 26px;
      padding: 5px;
      display: inline-flex;
      border-radius: 50%;
      border: 1px solid #FF3636;
      position: relative;
      pointer-events: auto;
      z-index: 1;
      transition: .6s all; }
      .genplan-item__ico span {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #FF3636; }
    .genplan-item__info {
      padding: 0.95rem 0.8rem .8rem;
      background: #fff;
      width: 14.5rem;
      text-align: left;
      margin: 2.5rem 0;
      opacity: 0;
      visibility: hidden;
      transition: .6s all;
      position: absolute;
      z-index: 3; }
      .genplan-item__info p {
        margin-bottom: 1rem;
        font-size: 0.8rem; }
      .genplan-item__info img {
        width: 100%;
        height: 8rem;
        object-fit: cover;
        display: block; }
    .genplan-item:nth-child(1) {
      left: 53%;
      top: 7%; }
    .genplan-item:nth-child(2) {
      left: 48%;
      top: 16%; }
    .genplan-item:nth-child(3) {
      left: 38%;
      top: 40%; }
    .genplan-item:nth-child(4) {
      left: 50%;
      top: 41%; }
    .genplan-item:nth-child(5) {
      left: 58%;
      top: 47%; }
    .genplan-item:nth-child(6) {
      left: 68%;
      top: 50%; }
    .genplan-item:nth-child(7) {
      left: 40%;
      top: 71%;
      flex-direction: column-reverse; }
    .genplan-item:nth-child(8) {
      left: 61%;
      top: 71%;
      flex-direction: column-reverse; }
  .genplan-info {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 5;
    top: 20rem;
    left: 20rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: #D7D6FF;
    color: #FF3636;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    pointer-events: none; }
    .genplan-info__number {
      font-size: 3rem;
      line-height: 75%; }
    .genplan-info.active {
      opacity: 1;
      visibility: visible; }

.about {
  padding-top: 12rem;
  position: relative; }
  .about::before {
    position: absolute;
    top: 35rem;
    left: 0;
    content: '';
    width: 20rem;
    height: 30rem;
    background: url(../img/about/2.png) bottom left no-repeat;
    background-size: contain;
    z-index: -1; }
  .about::after {
    position: absolute;
    top: 8rem;
    right: 0;
    content: '';
    width: 31rem;
    height: 35rem;
    background: url(../img/about/1.png) top right no-repeat;
    background-size: contain;
    z-index: -1; }
  .about-main {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    margin-bottom: 7.5rem; }
  .about-info {
    width: 23.5rem;
    background: #FF3636;
    color: #fff;
    padding: 1.5rem;
    min-height: 15.5rem; }
    .about-info__text {
      font-size: 0.9rem;
      line-height: 1.4; }
  .about__logo {
    margin-bottom: 1rem;
    width: 10.5rem; }
    .about__logo img {
      width: 100%;
      display: block; }
  .about-letter {
    width: calc(100% - 49.5rem); }
    .about-letter__img {
      width: 100%; }
      .about-letter__img img {
        width: 100%;
        display: block; }
  .about__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    white-space: nowrap;
    font-size: 12.5rem;
    line-height: 100%;
    font-weight: 300;
    color: #FF3636;
    margin-top: 1rem; }
    .about__title::before {
      content: attr(data-text);
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      overflow: hidden;
      width: calc(100% - 49.5rem);
      display: flex;
      justify-content: center; }
  .about-numbers {
    width: 23.5rem;
    background: #FF3636;
    align-self: flex-end;
    min-height: 15.5rem;
    padding: 2.5rem 3rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 0; }
    .about-numbers__item {
      width: 50%;
      text-align: center; }
      .about-numbers__item:nth-child(1), .about-numbers__item:nth-child(2) {
        border-bottom: 1px solid #D7D6FF;
        padding-bottom: 1rem; }
    .about-numbers__number {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem; }
  .about-list {
    display: flex;
    justify-content: space-between; }
    .about-list li {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 1rem; }
      .about-list li img {
        height: 7.4rem;
        margin-bottom: 0.9rem; }

.infra {
  padding-top: 10rem; }
  .infra-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem; }
    .infra-head .section-title {
      flex-shrink: 0;
      margin-top: .2rem; }
    .infra-head .section-text {
      max-width: 49rem; }
  .infra-wrap {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2; }
  .infra-info {
    flex-shrink: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 32.5rem; }
    .infra-info__item {
      width: 15.5rem;
      height: 12.3rem;
      position: relative;
      padding: 0.75rem;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-direction: column;
      font-weight: 800; }
    .infra-info__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .infra-info__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 35.1%); }
      .infra-info__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .infra-info__walk {
      display: inline-flex;
      align-items: center;
      padding: 3px;
      font-size: 0.7rem;
      color: #FF3636;
      gap: .5rem;
      background: #fff;
      border-radius: 2rem; }
      .infra-info__walk img {
        width: 1.7rem; }
      .infra-info__walk span {
        padding-right: 0.7rem; }
    .infra-info__title {
      font-size: 1rem; }
  .infra__map {
    flex-grow: 1;
    width: calc(100% - 34rem);
    box-shadow: 0px 7px 18px 0px rgba(117, 117, 117, 0.25); }
    .infra__map #infraMap {
      width: 100%;
      height: 100%; }
    .infra__map img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .infra-auto {
    padding: 15rem 0 12rem;
    margin-top: -7.5rem;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 26.97%), #D7D6FF; }
    .infra-auto .container {
      display: flex;
      align-items: flex-start;
      padding-right: 0; }
    .infra-auto__title {
      font-size: 5rem;
      color: #FF3636;
      max-width: 14rem; }
    .infra-auto__car {
      width: 19rem;
      margin-right: 10vw; }
      .infra-auto__car img {
        width: 100%;
        display: block; }
    .infra-auto__list {
      flex-grow: 1; }
      .infra-auto__list li {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid #fff;
        font-size: 0.9rem;
        display: flex;
        align-items: flex-start; }
        .infra-auto__list li strong {
          font-size: 4.5rem;
          font-weight: 300;
          color: #FF3636;
          width: 8rem; }
        .infra-auto__list li span {
          margin-top: 0.2rem; }
        .infra-auto__list li:last-child {
          margin-bottom: 0;
          padding-bottom: 0;
          border-bottom: none; }

.advantages {
  padding: 10rem 0;
  position: relative;
  margin-top: -6rem; }
  .advantages::before {
    position: absolute;
    bottom: 5rem;
    left: 0;
    content: '';
    width: 20rem;
    height: 40rem;
    background: url(../img/advantages.png) bottom left no-repeat;
    background-size: contain;
    z-index: -1; }
  .advantages .container {
    display: flex;
    gap: 5rem; }
  .advantages-left {
    width: 31rem; }
  .advantages .section-title {
    margin-bottom: 3.5rem; }
  .advantages-choose {
    padding-left: 5rem;
    font-size: 1.3rem; }
    .advantages-choose li {
      margin-bottom: 2rem;
      cursor: pointer;
      transition: .6s all;
      text-transform: uppercase; }
      .advantages-choose li:hover {
        color: #FF3636; }
      .advantages-choose li.active {
        font-weight: 800;
        color: #FF3636;
        pointer-events: none; }
      .advantages-choose li:last-child {
        margin-bottom: 0; }
  .advantages-right {
    width: calc(100% - 36rem);
    position: relative; }
  .advantages-tab {
    display: none;
    opacity: 0;
    transition: .6s opacity; }
    .advantages-tab:first-child {
      display: block; }
    .advantages-tab.active {
      opacity: 1; }
  .advantages-info {
    position: absolute;
    width: calc(50% - 1rem);
    top: 26.5rem; }
    .advantages-info__title {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      font-weight: 800;
      text-transform: uppercase; }
  .advantages-slider__item {
    display: flex;
    gap: 2rem; }
    .advantages-slider__item img {
      width: calc(50% - 1rem) !important;
      object-fit: cover;
      height: 39rem; }
      .advantages-slider__item img:first-child {
        height: 25rem; }
  .advantages-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.25rem;
    z-index: 2;
    display: flex;
    gap: .75rem;
    flex-direction: column; }

.commerce {
  height: 45rem;
  position: relative;
  color: #fff;
  padding-top: 5rem;
  overflow: hidden; }
  .commerce .section-title {
    color: #fff; }
  .commerce__bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1; }
    .commerce__bg::before {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      content: '';
      background: linear-gradient(108deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 53.7%); }
    .commerce__bg img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .commerce-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45rem;
    padding: 2.25rem;
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(30.0499992371px); }
    .commerce-info__title {
      font-size: 1.3rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 1.5rem; }

.news {
  background: #D7D6FF;
  padding: 10rem 0 9rem; }
  .news .section-title {
    margin-bottom: 3.5rem; }
  .news .owl-stage-outer {
    padding: 0 5rem; }
  .news .owl-stage {
    display: flex; }
  .news-item {
    display: flex;
    height: 21.5rem;
    width: 41rem;
    height: 100%;
    background: #fff; }
    .news-item__img {
      width: 50%; }
      .news-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .news-item__info {
      width: 50%;
      padding: 3.5rem 2.7rem 1.5rem;
      flex-direction: column;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      gap: 2rem; }
    .news-item__name {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 2rem; }
    .news-item__text {
      line-height: 1.1rem;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      max-height: 6.6rem; }
    .news-item__date {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      width: 3.9rem;
      height: 3.9rem;
      border-radius: 50%;
      border: 2px solid #D7D6FF;
      background: #fff;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 1.1rem;
      font-weight: 800;
      color: #FF3636; }
  .news-arrows {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: .75rem; }
    .news-arrows span {
      background: #FF3636;
      color: #D7D6FF;
      border: 1px solid #FF3636; }
      .news-arrows span:hover {
        color: #FF3636;
        background: #D7D6FF; }
  .news-popup {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: none; }
    .news-popup__close {
      width: 2.5rem;
      height: 2.5rem;
      position: absolute;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      background: #FF3636;
      color: #fff;
      top: 0;
      right: 0; }
      .news-popup__close:hover {
        background: #D33939; }
    .news-popup__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      box-shadow: 0px 0.35rem 0.9rem rgba(167, 167, 167, 0.25);
      width: 70rem;
      max-width: calc(100% - 2rem);
      padding: 1.1rem;
      display: flex;
      gap: 1.1rem;
      max-height: calc(100dvh - 5rem);
      overflow: auto; }
    .news-popup__img {
      width: 45%;
      position: sticky;
      top: 0; }
      .news-popup__img img {
        width: 100%;
        display: block;
        object-fit: cover;
        max-height: 87vh; }
    .news-popup__wrap {
      width: 55%; }
    .news-popup__title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      color: #FF3636; }
    .news-popup__text {
      line-height: 150%;
      font-size: 0.9rem; }

.building {
  position: relative;
  height: 100dvh;
  z-index: 1; }
  .building::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 44.84%, rgba(0, 0, 0, 0.2) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    z-index: 1;
    pointer-events: none; }
  .building-wrap {
    height: 100%; }
  .building-main {
    position: relative;
    width: 100%;
    height: 100%; }
    .building-main img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .building-main svg {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
      .building-main svg path {
        opacity: 0;
        transition: .1s all;
        animation: svgPulse 2s infinite linear;
        fill: #FF3636; }
        .building-main svg path:hover {
          opacity: 1;
          fill: #FF3636;
          animation: none; }
  .building-info {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 7;
    top: 20rem;
    left: 20rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 6rem;
    background: #D7D6FF url(../img/pattern-building.jpg) center center no-repeat;
    background-size: cover;
    color: #FF3636;
    text-transform: uppercase;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.7rem;
    pointer-events: none;
    transform: translateY(-50%); }
    .building-info__item {
      margin-bottom: 1rem; }
      .building-info__item:last-child {
        margin-bottom: 0; }
    .building-info__value {
      font-size: 3rem;
      line-height: 75%;
      font-weight: 800; }
    .building-info.active {
      opacity: 1;
      visibility: visible; }

.floor {
  padding-top: 10.5rem; }
  .floor .container {
    display: flex;
    gap: 5rem; }
  .floor-side {
    padding: 3.5rem 0;
    width: 15rem;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid #D7D6FF;
    color: #FF3636; }
  .floor-current {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #D7D6FF;
    display: flex;
    align-items: center;
    flex-direction: column; }
    .floor-current__number {
      font-size: 5rem;
      font-weight: 800;
      line-height: 85%; }
    .floor-current__dropdown {
      width: 6rem;
      position: relative;
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 800; }
      .floor-current__dropdown:hover .floor-current__list {
        display: block; }
    .floor-current__btn {
      height: 2rem;
      width: 100%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 1rem;
      gap: .5rem;
      cursor: pointer;
      background: #D7D6FF; }
      .floor-current__btn img {
        width: 0.4rem; }
    .floor-current__list {
      position: absolute;
      width: 100%;
      background: #D7D6FF;
      padding: 0.5rem;
      border-radius: 1rem;
      border: 1px solid #D7D6FF;
      text-align: center;
      display: none;
      z-index: 2; }
      .floor-current__list li {
        margin-bottom: 0.5rem; }
        .floor-current__list li:last-child {
          margin-bottom: 0; }
        .floor-current__list li a {
          color: #FF3636; }
          .floor-current__list li a:hover {
            color: #D33939; }
  .floor-genplan__title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.7rem; }
  .floor-genplan__list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem; }
    .floor-genplan__list li {
      width: calc(25% - .45rem);
      height: 1.6rem; }
      .floor-genplan__list li a {
        width: 100%;
        height: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 0.5rem;
        background: url(../img/icons/genplan.svg) center center no-repeat;
        background-size: contain;
        font-weight: 800; }
        .floor-genplan__list li a:hover {
          opacity: .8; }
        .floor-genplan__list li a.active {
          pointer-events: none;
          background-image: url(../img/icons/genplan-active.svg);
          color: #FF3636; }
  .floor-genplan__img {
    width: 8rem;
    position: relative; }
    .floor-genplan__img img {
      width: 100%;
      display: block; }
    .floor-genplan__img svg {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      display: block; }
      .floor-genplan__img svg path {
        opacity: 0;
        transition: .6s all; }
        .floor-genplan__img svg path:hover {
          opacity: 1; }
        .floor-genplan__img svg path.active {
          opacity: 1; }
  .floor-main {
    width: calc(100% - 40rem);
    height: 60vh; }
  .floor__img {
    width: 100%;
    height: 100%;
    position: relative; }
    .floor__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }
    .floor__img svg {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 2; }
      .floor__img svg path {
        transition: .6s all;
        animation: svgPulse 2s infinite linear; }
        .floor__img svg path:hover {
          opacity: 1;
          animation: none; }
    .floor__img .current {
      pointer-events: none; }
      .floor__img .current path {
        opacity: 1; }
    .floor__img .reserved {
      cursor: default; }
      .floor__img .reserved path {
        fill: #8A0C21; }
  .floor__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.2rem;
    width: 14rem; }
    .floor__logo img {
      width: 100%;
      display: block; }
  .floor-info {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 7;
    top: 20rem;
    left: 20rem;
    display: flex;
    flex-direction: column;
    width: 6.2rem;
    background: #fff;
    color: #4E4E4E;
    font-size: 0.7rem;
    padding: 0.7rem;
    pointer-events: none;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-110%); }
    .floor-info::after {
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 1.2rem 1.2rem 0 0;
      border-color: #fff transparent transparent transparent;
      content: '';
      position: absolute;
      left: 0;
      bottom: -1.1rem; }
    .floor-info__ico {
      width: 0.8rem;
      position: absolute;
      top: 0.45rem;
      right: 0.6rem;
      display: none; }
      .floor-info__ico img {
        width: 100%;
        display: block; }
    .floor-info__item {
      margin-bottom: .8rem; }
      .floor-info__item:last-child {
        margin-bottom: 0; }
    .floor-info__value {
      font-size: 1.25rem;
      font-weight: 800;
      color: #FF3636; }
    .floor-info.active {
      opacity: 1;
      visibility: visible; }
    .floor-info.reserved .floor-info__ico {
      display: block; }
    .floor-info.reserved .floor-info__value {
      color: #8A0C21; }

.flat {
  padding-top: 10.5rem; }
  .flat-main {
    height: calc(100dvh - 18.5rem);
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem; }
  .flat-info {
    width: 15rem;
    border-right: 1px solid #D7D6FF;
    padding-right: 1.5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.2rem; }
    .flat-info__item {
      padding-bottom: .5rem;
      border-bottom: 1px solid #D7D6FF; }
      .flat-info__item:last-child {
        padding-bottom: 0;
        border-bottom: 0; }
    .flat-info__name {
      font-size: 0.9rem;
      color: #4E4E4E; }
    .flat-info__value {
      font-size: 2.7rem;
      font-weight: 800;
      color: #FF3636;
      line-height: 100%; }
  .flat-images {
    width: calc(100% - 34rem);
    position: relative; }
    .flat-images img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      object-fit: contain;
      opacity: 0;
      transition: .6s all; }
      .flat-images img.volume {
        opacity: 1; }
  .flat-floor {
    width: 15rem;
    align-self: center; }
    .flat-floor__title {
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 800;
      color: #FF3636;
      margin-bottom: 0.65rem; }
    .flat-floor .floor-main {
      width: 100%;
      height: auto; }
      .flat-floor .floor-main path {
        animation: none;
        opacity: 0; }
      .flat-floor .floor-main .current path {
        opacity: 1; }
  .flat-bottom {
    width: calc(50% + 7rem);
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .flat__btn {
    width: 13rem; }
  .flat-buttons {
    display: flex;
    gap: 1.5rem; }
    .flat-buttons a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      border: 1px dashed rgba(215, 214, 255, 0.5);
      background: rgba(215, 214, 255, 0.2);
      backdrop-filter: blur(5px);
      color: #D7D6FF;
      flex-direction: column;
      gap: .3rem;
      font-size: 0.7rem;
      font-weight: 800; }
      .flat-buttons a svg {
        width: 0.9rem;
        height: 0.9rem; }
      .flat-buttons a:hover {
        color: #FF3636; }
      .flat-buttons a.active {
        border: none;
        background: #D7D6FF;
        color: #FF3636; }
  .flat__logo {
    width: 14rem; }
    .flat__logo img {
      width: 100%;
      display: block; }

.footer {
  display: flex;
  overflow: hidden; }
  .footer-wrap {
    width: 50%;
    padding: 5rem 0 2rem;
    background: #FF3636 url(../img/pattern-footer.jpg) center center no-repeat;
    background-size: cover;
    color: #fff; }
  .footer .section-title {
    color: #fff;
    margin-bottom: 2.5rem;
    text-transform: none; }
  .footer-item {
    margin-bottom: 2.3rem; }
    .footer-item:last-child {
      margin-bottom: 2.5rem; }
    .footer-item__head {
      display: flex;
      font-size: 0.9rem;
      align-items: center;
      gap: .5rem;
      margin-bottom: 0.6rem; }
      .footer-item__head img {
        width: 1.1rem; }
    .footer-item__text {
      font-size: 1.25rem; }
      .footer-item__text a {
        color: #fff;
        border-bottom: 1px solid transparent; }
        .footer-item__text a:hover {
          border-color: #fff; }
  .footer-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 2.5rem; }
  .footer-social {
    display: flex;
    gap: 1rem; }
    .footer-social li {
      display: flex; }
    .footer-social a {
      display: flex;
      width: 2.4rem; }
      .footer-social a:hover {
        opacity: .8; }
      .footer-social a img {
        width: 100%; }
  .footer__download {
    color: #fff;
    border-bottom: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem; }
    .footer__download img {
      width: 1.1rem; }
    .footer__download:hover {
      border-color: #fff; }
  .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem; }
    .footer-copy a {
      color: #fff;
      border-bottom: 1px solid transparent; }
      .footer-copy a:hover {
        border-color: #fff; }
  .footer__map {
    width: 50%; }
    .footer__map #footerMap {
      width: 100%;
      height: 100%; }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2700.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 23px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 4rem; }

  .live-open, .tour-btn {
    right: 4rem; }

  .news .owl-stage-outer {
    padding: 0 4rem; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; }

  .header-wrap {
    padding-left: 1rem;
    padding-right: 1rem; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; }

  .header-menu {
    gap: 1.5rem; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .live-open, .tour-btn {
    right: 1rem;
    width: 4rem;
    height: 4rem;
    font-size: 0.7rem;
    line-height: 0.85rem; }
    .live-open::after, .tour-btn::after {
      right: .7rem;
      top: 0.7rem; }

  .live-open {
    bottom: 10rem; }

  .section-title {
    font-size: 2.2rem; }
    .section-title span {
      padding-left: 8rem; }

  .section-back, .section-choose {
    left: 4rem; }

  .preloader__logo {
    width: 20rem; }

  .mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: #fff; }
    .mobile-menu .container {
      padding: 1.5rem 1.5rem 4rem;
      height: 100dvh;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
      width: 100%; }
    .mobile-menu__head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 100%; }
    .mobile-menu__close {
      width: 2.8rem;
      height: 2.8rem;
      background: #FF3636;
      border-radius: .5rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none; }
      .mobile-menu__close img {
        width: 1rem; }
      .mobile-menu__close:hover {
        background: #D33939; }
    .mobile-menu__logo {
      height: 2.8rem;
      display: inline-block; }
      .mobile-menu__logo img {
        height: 100%;
        display: block; }
    .mobile-menu__list {
      font-size: 1.7rem;
      text-align: center;
      font-weight: 800;
      text-transform: uppercase; }
      .mobile-menu__list li {
        margin-bottom: 2rem; }
      .mobile-menu__list a {
        color: #FF3636; }
    .mobile-menu .header__phone {
      font-size: 1rem; }

  .header-menu {
    display: none; }
  .header__btn {
    height: 2.8rem; }
  .header-mobile {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .5rem;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    background: #FF3636; }
    .header-mobile svg {
      width: 1.5rem; }

  .main-bg {
    height: 52rem; }
  .main__logo {
    height: auto;
    width: 100%;
    margin-top: -10.6vw; }
    .main__logo img {
      width: 100%;
      height: auto;
      display: block; }

  .plans {
    padding: 6rem 0; }
    .plans::before {
      margin-top: -10.6vw;
      height: 33rem; }
    .plans-card {
      flex-direction: column; }
    .plans-wrap {
      width: 100%; }
    .plans-arrows span {
      bottom: 5rem; }
    .plans-img {
      width: 100%; }
    .plans-zoom__img {
      width: calc(100% - 2rem);
      height: 60vh;
      padding: 2rem; }

  .genplan {
    min-height: 30rem; }
    .genplan .section-title {
      margin-top: 4rem; }
    .genplan-main {
      overflow: auto;
      max-width: 100%; }
    .genplan-wrap {
      width: 80rem; }
    .genplan-item__info {
      padding: 0.5rem;
      width: 12rem; }
      .genplan-item__info p {
        margin-bottom: 0.5rem; }
      .genplan-item__info img {
        height: 6rem; }

  .about {
    padding-top: 6rem; }
    .about::before {
      top: auto;
      bottom: 20rem;
      width: 10rem;
      height: 15rem; }
    .about::after {
      top: 5rem;
      width: 15rem;
      height: 17.5rem; }
    .about-main {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center; }
    .about-letter {
      width: 80%; }
    .about__title {
      font-size: 6.5rem; }
      .about__title::before {
        width: 80%; }
    .about-list {
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center; }

  .infra {
    padding-top: 6rem; }
    .infra-head {
      display: block; }
    .infra .section-title {
      margin-top: 0;
      margin-bottom: 1.5rem; }
    .infra-wrap {
      flex-direction: column; }
    .infra-info {
      width: 100%; }
      .infra-info__item {
        height: 14rem;
        width: calc(50% - .75rem); }
    .infra__map {
      width: 100%;
      height: 22rem; }
    .infra-auto {
      padding: 12rem 0 7rem; }
      .infra-auto .container {
        padding-right: 4rem;
        flex-wrap: wrap; }
      .infra-auto__title {
        font-size: 4rem;
        max-width: 12rem; }

  .advantages {
    padding: 6rem 0 10rem; }
    .advantages::before {
      bottom: auto;
      top: 10rem;
      width: 10rem;
      height: 20rem; }
    .advantages .container {
      gap: 3rem;
      flex-direction: column; }
    .advantages-right {
      width: 100%; }
    .advantages-slider__item img {
      height: 34rem; }
      .advantages-slider__item img:first-child {
        height: 20rem; }
    .advantages-info {
      top: 21.5rem; }

  .commerce {
    padding-top: 4rem; }

  .news {
    padding: 6rem 0; }
    .news-popup__content {
      display: block; }
    .news-popup__close {
      transform: none;
      right: 0;
      top: 0;
      width: 3rem;
      height: 3rem; }
    .news-popup__img {
      width: 100%;
      position: static; }
    .news-popup__wrap {
      width: 100%;
      padding-top: 1rem; }

  .building-wrap {
    max-width: 100%;
    overflow: auto; }
  .building-main {
    width: 177dvh; }

  .floor {
    padding-top: 12rem; }
    .floor .container {
      flex-direction: column-reverse;
      gap: 3rem; }
    .floor-main {
      width: 100%;
      height: auto; }
    .floor-side {
      padding: 2rem 0 0;
      border-right: none;
      display: flex;
      width: 100%;
      border-top: 1px solid #fff;
      justify-content: space-between; }
    .floor-current {
      padding-bottom: 0;
      margin-bottom: 0;
      width: 40%;
      border-right: 1px solid #ffff;
      border-bottom: none; }
    .floor-genplan {
      width: auto;
      padding-left: 2rem; }
    .floor__logo {
      transform: none;
      right: 4rem;
      left: auto; }

  .flat {
    padding: 12rem 0 2rem; }
    .flat-main {
      height: auto;
      min-height: calc(100dvh - 20rem);
      flex-direction: column;
      align-items: center; }
    .flat-images {
      order: 1;
      width: 100%;
      height: 30rem;
      margin-bottom: 5rem; }
    .flat-info {
      order: 2;
      width: 100%;
      padding-right: 0;
      border-right: 0;
      padding-top: 1rem;
      border-top: 1px solid #fff;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      text-align: center;
      gap: 1.5rem 0; }
      .flat-info__item {
        width: 20%; }
        .flat-info__item:last-child {
          padding-bottom: .5rem;
          border-bottom: 1px solid #fff; }
    .flat-floor {
      order: 3;
      width: 50%; }
    .flat-bottom {
      width: 100%;
      gap: 2rem; }
    .flat-buttons {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 43rem; }

  .footer {
    flex-direction: column; }
    .footer-wrap {
      width: 100%;
      padding: 3rem 0 3rem; }
    .footer__map {
      height: 22rem;
      width: 100%; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  body {
    font-size: 0.9rem; }

  .container {
    padding: 0 1rem; }

  .section-title {
    font-size: 2rem; }
    .section-title span {
      padding-left: 5rem; }

  .section-text {
    font-size: 1rem; }

  .section-back {
    left: 1rem;
    top: 5rem;
    font-size: 0.8rem; }

  .section-choose {
    left: 1rem;
    bottom: 1.5rem;
    padding: 0 1rem;
    gap: .5rem;
    height: 2.5rem;
    width: auto; }
    .section-choose img {
      width: 1rem; }

  .preloader__logo {
    width: 15rem; }

  .feedback-content {
    transform: none;
    top: auto;
    left: 0;
    width: 100%;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }

  .live-content {
    width: 90vw;
    height: 20rem; }

  .mobile-menu .container {
    padding: 1rem 1rem 2.5rem; }
  .mobile-menu__logo {
    height: 2.4rem; }
  .mobile-menu__close {
    width: 2.4rem;
    height: 2.4rem; }
    .mobile-menu__close img {
      width: 1rem; }
  .mobile-menu__list {
    font-size: 1.4rem; }
    .mobile-menu__list li {
      margin-bottom: 1.6rem; }

  .header {
    top: 0.75rem; }
    .header .header__phone {
      display: none; }
    .header-wrap {
      gap: .75rem;
      justify-content: space-between; }
    .header__logo {
      margin-right: calc(100vw - 20rem); }
    .header__btn {
      width: 2.4rem;
      height: 2.4rem;
      flex-shrink: 0; }
      .header__btn img {
        display: inline-block; }
      .header__btn span {
        display: none; }
    .header-mobile, .header__lang {
      height: 2.4rem;
      width: 2.4rem;
      flex-shrink: 0; }
    .header.scrolled .header__logo {
      margin-right: calc(100vw - 18rem); }

  .main-bg {
    height: 40rem; }

  .plans {
    padding: 5rem 0; }
    .plans::before {
      height: 130vw; }
    .plans-wrap {
      padding: 1.5rem 1rem; }
    .plans-head {
      margin-bottom: 2rem; }
    .plans-info {
      font-size: 1.5rem; }
    .plans-slider {
      margin-left: -1rem;
      width: calc(100% + 2rem); }
    .plans-img {
      padding: 1.5rem 1rem; }
      .plans-img__zoom {
        right: 1rem;
        top: 1rem; }
    .plans-zoom__img {
      padding: 1rem; }

  .genplan .section-title {
    margin-top: 3rem; }
  .genplan-wrap {
    width: 70rem; }

  .about {
    padding-top: 5rem; }
    .about::before {
      width: 7rem;
      height: 10rem; }
    .about::after {
      top: 0;
      width: 10rem;
      height: 14rem; }
    .about-main {
      margin-bottom: 5rem; }
    .about-info {
      padding: 1rem; }
    .about__title {
      font-size: 3.7rem; }
    .about-list {
      gap: 1.5rem 1rem; }
      .about-list li {
        width: calc(50% - .5rem); }
        .about-list li img {
          margin-bottom: 0.7rem;
          height: 5rem; }

  .infra {
    padding-top: 5rem; }
    .infra-wrap {
      gap: 1rem; }
    .infra-info {
      gap: 1rem; }
      .infra-info__item {
        width: calc(50% - .5rem);
        height: 12rem; }
    .infra__map {
      height: 18rem; }
    .infra-auto .container {
      padding-right: 1rem; }
    .infra-auto__title {
      font-size: 3rem;
      max-width: 9rem; }
    .infra-auto__car {
      margin-right: 0;
      width: calc(100% - 9rem); }
    .infra-auto__list {
      margin-top: 1.5rem; }
      .infra-auto__list li {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem; }
        .infra-auto__list li strong {
          font-size: 4rem;
          width: 6rem; }

  .advantages {
    padding: 5rem 0; }
    .advantages::before {
      width: 7rem;
      height: 14rem; }
    .advantages-left {
      width: 100%; }
    .advantages-choose {
      padding-left: 5.5em;
      font-size: 1.2rem; }
      .advantages-choose li {
        margin-bottom: 1.5rem; }
    .advantages-info {
      position: static;
      width: 100%;
      margin-bottom: 1rem; }
      .advantages-info__title {
        font-size: 1.2rem;
        margin-bottom: 1rem; }
    .advantages-slider__item {
      gap: 1rem; }
      .advantages-slider__item img {
        width: calc(50% - .5rem) !important;
        height: 15rem !important; }
    .advantages-arrows {
      position: static;
      transform: none;
      margin-top: 1rem;
      justify-content: center;
      flex-direction: row; }

  .commerce {
    padding-top: 3rem; }
    .commerce-info {
      width: 100%;
      padding: 1.5rem 1rem; }

  .news {
    padding: 5rem 0; }
    .news .owl-stage-outer {
      padding: 0 1rem; }
    .news .section-title {
      margin-bottom: 2rem; }
    .news-item {
      width: calc(100vw - 2rem);
      flex-direction: column; }
      .news-item__img {
        height: 19rem;
        width: 100%; }
      .news-item__info {
        width: 100%;
        height: 19rem;
        padding: 2.2rem 1.5rem 1.5rem; }
      .news-item__name {
        margin-bottom: 1.4rem; }
      .news-item__date {
        height: 3.5rem;
        width: 3.5rem;
        font-size: 1rem; }

  .floor {
    padding-top: 10rem; }
    .floor .container {
      gap: 2rem; }
    .floor-genplan {
      padding-left: 1rem; }
      .floor-genplan__title {
        font-size: 0.8rem;
        margin-bottom: 1rem; }
    .floor-current__dropdown {
      font-size: 0.8rem; }
    .floor-current__number {
      font-size: 4rem; }
    .floor__logo {
      bottom: 1.9rem;
      right: 1rem;
      width: 9rem; }

  .flat {
    padding: 9rem 0 1.5rem; }
    .flat-images {
      height: 20rem; }
    .flat-buttons {
      top: 30.5rem; }
    .flat-info__item {
      width: calc(33.3333%); }
    .flat-floor {
      width: 70%; }
      .flat-floor__title {
        font-size: 0.8rem; }
    .flat__btn {
      width: 10rem; }
    .flat__logo {
      width: 9rem; }

  .footer .section-title {
    margin-bottom: 1.5rem; }
  .footer-item {
    margin-bottom: 1.8rem; }
    .footer-item__text {
      font-size: 1.2rem; }
  .footer-links {
    gap: 1.5rem; }
  .footer-copy span {
    display: none; }
  .footer__download {
    gap: .7rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

/*# sourceMappingURL=main.css.map */
