body, html {
  background: #fff;
  color: #444;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.header {
  width: 100%;
  height: 81px;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 150;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
}
.header__wrapper {
  max-width: 1290px;
  height: 81px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1310px) {
  .header__wrapper {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1110px) {
  .header__wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .header__wrapper {
    gap: 10px;
  }
}
.header__group {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 170px;
}
@media screen and (max-width: 767px) {
  .header__group {
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .header__group {
    gap: 10px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__switch {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 30px;
  background: #5AA9B0;
  border-radius: 31px;
  overflow: hidden;
  position: relative;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 60px;
  max-width: 806px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1110px) {
  .header__menu {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 20px;
  }
}

.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 30px;
  position: absolute;
  top: 0;
  left: -17px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.language__icon {
  width: 17px;
  height: 17px;
  display: block;
  background: url(/img/ru.png);
}
.language-en {
  left: 8px;
}
.language-en .language__icon {
  background: url(/img/en.png);
}

.menu {
  z-index: 200;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1110px) {
  .menu-property {
    display: none;
  }
}
@media screen and (max-width: 1110px) {
  .menu-complexes {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .menu-phone {
    display: none;
  }
}
.menu-phone2 {
  display: none;
}
@media screen and (max-width: 600px) {
  .menu-phone2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu-magazine {
  display: none;
}
@media screen and (max-width: 600px) {
  .menu-magazine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .menu-messenger {
    display: none;
  }
}
.menu ul {
  z-index: 210;
  opacity: 0;
  margin: 0;
  padding: 23px 25px 30px;
  top: 48px;
  left: -25px;
  position: absolute;
  background: #fff;
  display: none;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0px 0px 4px 4px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu ul li a {
  white-space: nowrap;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  opacity: 0.5;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu ul li a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 1;
}
.menu:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.menu__phone {
  color: #000;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.menu__phone::before {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: url(/img/phone.svg) no-repeat center;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: block;
  content: "";
}
.menu__phone:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}
.menu__phone:hover::before {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(145deg);
      -ms-transform: rotate(145deg);
          transform: rotate(145deg);
}
.menu__phone2 {
  display: block;
  width: 20px;
  height: 20px;
  background: url(/img/whatsapp_mobile.svg) center no-repeat;
}
.menu__messenger {
  display: block;
  width: 48px;
  height: 48px;
  background: url(/img/whatsapp.svg) center no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu__messenger:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.mainarea {
  max-width: 1920px;
  margin: 81px auto 0;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .mainarea {
    overflow-x: auto;
  }
}
.mainarea__wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainarea__wrapper {
    width: 768px;
  }
}
.mainarea__wrapper > img {
  width: 100%;
  max-width: 100%;
}

.staticarea {
  max-width: 1330px;
  margin: 81px auto 0;
  position: relative;
  display: block;
  padding: 40px 20px;
}

.page-article__text {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

@media screen and (max-width: 1100px) {
  .page-article__text p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 900px) {
  .page-article__text p {
    font-size: 0.8rem;
  }
}

.page-article__text *{
    line-height: 1.3;
}

.h1 {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  top: 126px;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .h1 {
    font-size: 30px;
    top: 116px;
  }
}
@media screen and (max-width: 900px) {
  .h1 {
    font-size: 20px;
  }
}

h1 {
  font-size: 40px;
}

@media screen and (max-width: 1100px) {
  h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 32px;
}

@media screen and (max-width: 1100px) {
  h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 18px;
  }
}

.magazine {
  position: absolute;
  width: 17%;
  height: 20%;
  right: 11.5%;
  bottom: 3.2%;
}
.magazine > img {
  width: 100%;
  max-width: 100%;
}

@-webkit-keyframes pulseA {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes pulseA {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes pulseB {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(2.1);
            transform: scale(2.1);
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes pulseB {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(2.1);
            transform: scale(2.1);
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0;
  }
}
.point {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
}
.point::before, .point::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  -webkit-animation: pulseA 2.5s ease-in-out infinite;
          animation: pulseA 2.5s ease-in-out infinite;
  height: 100%;
  width: 100%;
  will-change: transform;
}
.point::before {
  opacity: 0.5;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.point::after {
  opacity: 0.25;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  -webkit-animation-name: pulseB;
          animation-name: pulseB;
}

.footer {
  width: 100%;
}
.footer__wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1420px) {
  .footer__wrapper {
    padding: 0 10px;
    overflow: hidden;
  }
}

.contacts {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .contacts {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contacts {
    margin-top: 30px;
    grid-template-columns: auto;
    gap: 0;
  }
}
.contacts__splitter {
  width: 1px;
  height: 59px;
  opacity: 0.3;
  background: #444;
}
@media screen and (max-width: 767px) {
  .contacts__splitter {
    display: none;
  }
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 645px;
  width: 100%;
}
@media screen and (max-width: 950px) {
  .contacts__wrapper {
    max-width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 610px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contacts__logo {
    display: none;
  }
}
.contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contacts__phone {
    display: none;
  }
}
.contacts__phone a {
  font-size: 24px;
  line-height: normal;
  color: #444;
  text-decoration: none;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.contacts__phone a:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}
.contacts__phone span {
  color: #a2a2a2;
}
.contacts__magazine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__magazine img {
  cursor: pointer;
}
.contacts__magazine a {
  color: #a2a2a2;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__magazine a::after {
  content: "";
  background: url(/img/magazine.svg) no-repeat center;
  width: 14px;
  height: 19px;
  display: block;
}
.contacts__messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 202px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contacts__messengers {
    display: none;
  }
}
.contacts__messengers a {
  display: block;
  width: 48px;
  height: 48px;
  background: url(/img/whatsapp.svg) center no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.contacts__messengers a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.contacts__messengers span {
  color: #a2a2a2;
  line-height: 150%;
  display: block;
  padding-right: 26px;
  margin-bottom: -5px;
}

.links {
  margin-top: 57px;
  border-top: 1px solid #dadada;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 950px) {
  .links {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1199px) {
  .info {
    display: none;
  }
}
.info a, .info__block {
  color: #444;
  font-weight: 500;
}
.info a {
  font-weight: 400;
  opacity: 0.7;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.info a:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}
.info__text {
  color: #444;
  opacity: 0.9;
}

.property {
  padding-right: 180px;
}
@media screen and (max-width: 1199px) {
  .property {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.property__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 1199px) {
  .property__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .property__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: 10px;
  }
}
.property__content a {
  font-size: 16px;
  display: block;
  color: #444;
  opacity: 0.9;
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 150%;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media screen and (max-width: 1199px) {
  .property__content a {
    margin-bottom: 0px;
  }
}
.property__content a:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}

.complexes__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
.complexes__content {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 180px;
     -moz-column-gap: 180px;
          column-gap: 180px;
  padding-right: 90px;
}
@media screen and (max-width: 1199px) {
  .complexes__content {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .complexes__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: 10px;
  }
}
.complexes__content a {
  font-size: 16px;
  display: block;
  color: #444;
  opacity: 0.9;
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 150%;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media screen and (max-width: 1199px) {
  .complexes__content a {
    margin-bottom: 0px;
  }
}
.complexes__content a:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}

.copyright {
  margin-top: 40px;
  border-top: 1px solid #0EB2B6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
}
@media screen and (max-width: 640px) {
  .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
  }
}
.copyright a {
  color: #444;
}

.copyright__inner {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.copyright__organization {
    
}

.copyright__copyright {
    
}

.copyright__license {
    margin-top: 10px;
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  display: none;
}
.modal-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.preview {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 30px 90px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  max-width: 730px;
  max-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}
.preview::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.preview::-webkit-scrollbar-thumb {
  background: #0EB2B6;
  border-radius: 5px;
}
.preview::-webkit-scrollbar-track {
  background: #dadada;
}
.preview {
  scrollbar-face-color: #0EB2B6;
  scrollbar-track-color: #dadada;
}
@media screen and (max-width: 729px) {
  .preview {
    padding: 40px 30px 30px;
  }
}
.preview__close {
  background: url(/img/close-black.svg) no-repeat center;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /*
  @media screen and (max-width: 829px) {
      background: url(/img/close-black.svg) no-repeat center;
      top: 10px;
      right: 10px;
  }
  */
}
.preview__close:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.preview__wrapper {
  position: relative;
}
.preview__control {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 3px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.preview__arrow-prev {
  left: -30px;
  position: relative;
}
.preview__arrow-next {
  right: -30px;
  position: relative;
}
.preview__title {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.preview__title::before {
  content: "";
  background: url(/img/landmark.svg) no-repeat center;
  width: 26px;
  height: 26px;
  display: block;
}
.preview__text {
  margin-top: 25px;
}
.preview__text b, .preview__text strong {
  color: #777878;
  font-size: 16px;
  font-weight: 400;
  margin-top: 25px;
  display: block;
}
.preview__text p {
  color: #000;
}
.preview__text p + P {
  margin-top: 13px;
}
.preview__price {
  margin-top: 22px;
  border-top: 1px solid #0EB2B6;
  padding-top: 18px;
  font-size: 16px;
  color: #000;
  letter-spacing: -0.32px;
}
.preview__notice {
  margin-top: 26px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.preview__button {
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  background: #0EB2B6;
  -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.preview__button:hover {
  background: #000;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.preview__arrow:hover rect {
  fill: #0EB2B6;
}
.preview__arrow:hover path {
  stroke: #fff;
}

.form {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 38px 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 474px) {
  .form {
    padding: 28px 30px 40px;
  }
}
.form-callback {
  max-width: 474px;
}
.form__title {
  color: #000;
  font-size: 42px;
  line-height: 130%;
  margin-bottom: 15px;
  letter-spacing: -2px;
}
@media screen and (max-width: 474px) {
  .form__title {
    font-size: 32px;
  }
}
.form__text {
  margin-bottom: 15px;
  color: #777;
}
@media screen and (max-width: 474px) {
  .form__text {
    font-size: 14px;
  }
}
.form__close {
  background: url(/img/close.svg) no-repeat center;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 0;
  right: -40px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 575px) {
  .form__close {
    top: -40px;
    right: 0px;
  }
}
.form__close:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.form__field {
  font-family: Montserrat;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #F7F7F7;
  background: #F7F7F7;
  color: #333333;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  margin-top: 15px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form__field-error {
  border: 1px solid red;
}
.form__field:focus {
  border: 1px solid #0EB2B6;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form__button {
  margin-top: 30px;
  border: none;
  border-radius: 6px;
  background: #0EB2B6;
  -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.form__button:hover {
  background: #000;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

textarea.form__field {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  height: 100px;
  resize: none;
}

.cmplx {
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .cmplx {
    padding: 26px 0 0;
  }
}
.cmplx__wrapper {
  position: relative;
}
.cmplx__control {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .cmplx__control {
    bottom: 70px;
  }
}
.cmplx__arrow-prev {
  left: -30px;
  position: relative;
  z-index: 100;
}
.cmplx__arrow-next {
  right: -30px;
  position: relative;
  z-index: 100;
}
.cmplx__arrow:hover rect {
  fill: #0EB2B6;
}
.cmplx__arrow:hover path {
  stroke: #fff;
}
.cmplx__title {
  color: #444;
  font-size: 38px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .cmplx__title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}
.cmplx__name {
  color: #444;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  margin: 15px 0;
  cursor: pointer;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .cmplx__name {
    font-size: 18px;
    font-weight: 600;
  }
}
.cmplx__name:hover {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #0EB2B6;
}
.cmplx__price {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.cmplx img {
  border-radius: 5px;
  cursor: pointer;
}