:root {
  --dark-green: #274540;
  --black: #1A1A1A;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-color: #788381;
  --f-button-svg-width: 28px;
  --f-button-svg-height: 28px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-svg-width: 28px;
  --f-button-svg-height: 28px;
  --f-button-color: #788381;
  --f-button-bg: none;
}

@font-face {
  src: url("../fonts/Play/Play-Regular.ttf");
  font-family: "Play";
  font-weight: normal;
  font-style: normal;
}
@font-face {
  src: url("../fonts/Play/Play-Bold.ttf");
  font-family: "Play";
  font-weight: bold;
  font-style: normal;
}
@font-face {
  src: url("../fonts/OpenSans/OpenSans_Condensed-Regular.ttf");
  font-family: "Open Sans Condensed";
  font-weight: normal;
  font-style: normal;
}
@font-face {
  src: url("../fonts/OpenSans/OpenSans_Condensed-Bold.ttf");
  font-family: "Open Sans Condensed";
  font-weight: bold;
  font-style: normal;
}
html, body {
  font-family: "Play";
  color: var(--black, #1A1A1A);
}

.h1, .h2, .h3, .h4 {
  color: var(--dark-green, #274540);
  font-weight: bold;
  margin-bottom: 1rem;
}

.h2 {
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .h2 {
    font-size: 1.5rem;
  }
}

.h4 {
  font-size: 1.2rem;
}

p {
  font-size: inherit;
}

img {
  max-width: 100%;
}

.subhead {
  font-weight: bold;
  font-size: 1.1rem;
}

.bold {
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header {
  background: #fff;
  top: 0;
  position: sticky;
  z-index: 10;
  box-shadow: 0px -6px 8px 4px #777;
}
.header__container {
  display: flex;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header__container {
    padding-top: 0;
    padding-bottom: 0rem;
  }
}
.header__right {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .logo {
    padding: 1rem 0;
  }
}
@media (max-width: 991.98px) {
  .logo__img {
    height: 2.5rem;
  }
}

.top-menu {
  flex-grow: 0.4;
}
@media (max-width: 991.98px) {
  .top-menu {
    display: block;
    position: fixed;
    left: -105%;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 30rem;
    background: #fff;
    border: 1px solid #777;
    z-index: 20;
    transition: all 0.3s ease;
  }
  .top-menu.show {
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .top-menu {
    max-width: none;
  }
}
.top-menu__list {
  display: flex;
  justify-content: space-between;
  clear: both;
}
@media (max-width: 991.98px) {
  .top-menu__list {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.top-menu__item {
  display: block;
  color: var(--dark-green, #274540);
  padding: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .top-menu__item {
    font-size: 1.5rem;
    padding: 1.5rem;
  }
}
.top-menu__item:hover {
  text-decoration: underline;
}
.top-menu .hamburger {
  float: right;
  padding: 2rem;
}

.top-phone__link {
  font-weight: bold;
  color: var(--dark-green, #274540);
  text-decoration: none;
}
.top-phone__link:hover {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .top-phone__link svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.top-phone__number {
  margin-left: 0.5rem;
}
@media (max-width: 575.98px) {
  .top-phone__number {
    display: none;
  }
}

.welcome {
  background: url(../img/bg4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 12rem 0 15rem;
}
@media (max-width: 767.98px) {
  .welcome {
    padding: 8rem 0 10rem;
  }
}
.welcome h1 {
  color: #fff;
  max-width: 40rem;
  margin-top: 0;
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  .welcome h1 {
    font-size: 1.8rem;
  }
}

h1 {
  font-size: 3rem;
}

.btn {
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(207deg, #1FDCBC 0%, #2E9987 100%);
  padding: 1.3rem 2rem;
  outline: none;
  border: none;
}
.btn:hover {
  background: #118E7A;
}
.btn:focus {
  outline: 0;
}

.about {
  padding: 7.8rem 0 3.6rem;
  background: url(../img/vector2.svg) no-repeat;
  background-position-y: bottom;
  background-position-x: left;
}
@media (max-width: 991.98px) {
  .about {
    padding: 5rem 0 2rem;
    background-size: 80%;
  }
}
@media (max-width: 767.98px) {
  .about {
    background: none;
  }
}
.about__text {
  margin-top: 2.2rem;
  line-height: 1.28;
}
.about__text p {
  font-family: "Open Sans Condensed";
}
.about__img {
  max-width: 100%;
}
.about__plan-img {
  margin-top: 2.5rem;
}
.about__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 991.98px) {
  .about__columns {
    display: block;
    margin-bottom: 3rem;
  }
}

.list-styled {
  list-style: none;
  padding: 0.2rem 0 0.2rem;
}
.list-styled li {
  font-family: "Open Sans Condensed";
  padding-left: 1.65rem;
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.list-styled li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: url(../img/vector3.svg) no-repeat;
}

.apartment {
  padding: 3rem 0 8rem;
}
@media (max-width: 991.98px) {
  .apartment {
    padding: 2.5rem 0 5rem;
  }
}
.apartment__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991.98px) {
  .apartment__list {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
.apartment__item {
  padding: 1.5rem 1.2rem;
  background: #FFF;
  color: var(--dark-green, #274540);
  transition: all 0.3s ease;
}
.apartment__item:hover {
  box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
@media (max-width: 991.98px) {
  .apartment__item {
    box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.25);
  }
}
.apartment__wrap-img {
  height: 15rem;
  padding: 0 1.5rem;
}
.apartment__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.apartment__name {
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.apartment__area {
  padding: 0.5rem 0;
}
.apartment__price {
  padding: 0.6rem 0;
  font-size: 1.75rem;
}
.apartment__btn {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1.3rem 1rem;
}

.callback {
  padding: 5rem 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.callback .container.callback__container_with_bg {
  position: relative;
}
.callback .container.callback__container_with_bg:before {
  content: "";
  display: block;
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  background: url(../img/vector3.svg) no-repeat;
  background-size: 100%;
  right: -3rem;
  top: -8rem;
}
@media (max-width: 1399.98px) {
  .callback .container.callback__container_with_bg:before {
    right: 3rem;
  }
}
@media (max-width: 767.98px) {
  .callback .container.callback__container_with_bg:before {
    top: -5.8rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
.callback__head {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.callback__sub {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-family: Open Sans Condensed;
}
.callback__bg_bg1 {
  background-image: url(../img/bg2.jpg);
}
.callback__bg_bg2 {
  background-image: url(../img/bg2.jpg);
}
@media (min-width: 576px) {
  .callback__form {
    max-width: 25rem;
  }
}
.callback__form .form__control {
  width: 100%;
}
.callback__form .form__check-label {
  color: #fff;
}
.callback__form .form__check-label:hover input ~ .form__check-checkmark {
  background-color: #118E7A;
}
.callback__form .form__check-checkmark {
  border: 1px solid #fff;
}
.callback__form .form__check-checkmark:after {
  border-color: #fff;
}

.form {
  font-family: Open Sans Condensed;
}
.form__group {
  margin-bottom: 0.5rem;
}
.form__control {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  box-sizing: border-box;
}
.form__control.is-invalid {
  border-color: red;
}
.form__control::-moz-placeholder {
  font-family: Open Sans Condensed;
}
.form__control::placeholder {
  font-family: Open Sans Condensed;
}
.form__btn {
  width: 100%;
}
.form__check {
  margin-top: 1.5rem;
}
.form__check-label {
  display: block;
  font-family: Open Sans Condensed;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__check-label:hover input ~ .form__check-checkmark {
  background-color: #efefef;
}
.form__check-label input:checked ~ .form__check-checkmark:after {
  display: block;
}
.form__check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__check-label input.is-invalid ~ span {
  color: red;
}
.form__check-checkmark {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 0.8rem;
  width: 0.8rem;
  border: 1px solid var(--black, #1A1A1A);
}
.form__check-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form__check-checkmark:after {
  left: 0.25rem;
  top: 0.1rem;
  width: 0.2rem;
  height: 0.4rem;
  border: 1px solid var(--black, #1A1A1A);
  border-width: 0 0.15rem 0.15rem 0;
  transform: rotate(45deg);
}
.form__error {
  margin-top: 0.5rem;
  color: red;
}

.payments {
  padding: 8rem 0 3rem;
}
@media (max-width: 991.98px) {
  .payments {
    padding: 5rem 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .payments {
    padding: 3rem 0 0;
  }
}
.payments__body {
  display: grid;
  grid-template-columns: 42% 1fr;
  margin-top: 3rem;
}
@media (max-width: 991.98px) {
  .payments__body {
    grid-template-columns: 48% 1fr;
  }
}
@media (max-width: 767.98px) {
  .payments__body {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}
.payments__buttons {
  padding-right: 7rem;
}
@media (max-width: 991.98px) {
  .payments__buttons {
    padding-right: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .payments__buttons {
    margin-top: 1rem;
    order: 1;
  }
}
.payments__button {
  color: var(--dark-green, #274540);
  font-size: 1.3rem;
  cursor: pointer;
  font-weight: bold;
  padding: 1.55rem 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .payments__button {
    padding: 0.8rem 0;
    font-size: 1rem;
  }
}
.payments__button:hover {
  color: var(--dark-green, #274540);
}
.payments__button:after {
  content: "";
  width: 3rem;
  height: 1rem;
  display: block;
  background: url(../img/arrow1.svg) no-repeat center right;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 1199.98px) {
  .payments__button:after {
    content: none;
  }
}
.payments__button.active {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(207deg, #1FDCBC 0%, #2E9987 100%);
  outline: none;
  border: none;
}
@media (min-width: 768px) {
  .payments__button.active {
    padding: 1.3rem 1.5rem;
  }
}
.payments__item {
  height: 100%;
  font-size: 1.1rem;
  font-family: Open Sans Condensed;
  line-height: 1.35;
}
.payments__item:not(.active) {
  display: none;
}
.payments__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.payments__img-wrap {
  height: 100%;
}
@media (max-width: 767.98px) {
  .payments__img-wrap {
    height: 7rem;
  }
}

.building {
  padding: 3rem 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .building {
    padding: 2rem 0;
  }
}
.building__big {
  display: flex;
  flex-direction: column;
}
.building__selector {
  margin-top: 3rem;
  font-family: Open Sans Condensed;
  font-size: 1.15rem;
}
.building__select {
  margin-left: 0.5rem;
  background: url(../img/select_arrow.svg) no-repeat;
  background-position: right 1rem center;
  background-color: #fff;
  border: 1px solid rgba(120, 131, 129, 0.3);
  padding: 0.2rem 2rem 0.2rem 0.6rem;
  min-width: 11.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.building__select:focus {
  outline: none;
  border: 1px solid rgba(120, 131, 129, 0.6);
}
.building__grid {
  display: none;
  grid-template-columns: 66% 1fr;
  gap: 1.3rem;
  margin-top: 2rem;
}
.building__grid.active {
  display: grid;
}
@media (max-width: 991.98px) {
  .building__grid {
    grid-template-columns: 1fr;
  }
}
.building__head {
  color: var(--dark-green, #274540);
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.building__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
.building__gallery-item {
  display: block;
  height: 8.5rem;
}
@media (max-width: 991.98px) {
  .building__gallery-item {
    height: 12rem;
  }
}
@media (max-width: 767.98px) {
  .building__gallery-item {
    height: 8rem;
  }
}
@media (min-width: 992px) {
  .building__gallery-item:nth-child(n+7) {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .building__gallery-item:nth-child(n+7) {
    display: none;
  }
}
.building__gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.building__video {
  flex-grow: 1;
  min-height: 20rem;
  height: 100%;
}
.building .container {
  position: relative;
}
@media (min-width: 992px) {
  .building .container:before {
    content: "";
    display: block;
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: url(../img/vector3.svg) no-repeat;
    background-size: 100%;
    left: -3rem;
    bottom: -4rem;
  }
}

.apart-completed {
  padding: 4.5rem 0;
  background: url(../img/bg3.png) no-repeat right bottom;
  background-size: 30%;
}
@media (max-width: 991.98px) {
  .apart-completed {
    padding: 3rem 0 14rem;
    background-size: 50%;
    background-position-x: 120%;
  }
}
@media (max-width: 767.98px) {
  .apart-completed {
    background: none;
  }
}
.apart-completed__head {
  margin-bottom: 3rem;
}
.apart-completed__gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .apart-completed__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.apart-completed__gallery-item {
  display: block;
  height: 24rem;
}
@media (max-width: 767.98px) {
  .apart-completed__gallery-item {
    height: 20rem;
  }
}
@media (max-width: 575.98px) {
  .apart-completed__gallery-item {
    height: 12rem;
  }
}
.apart-completed__gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company {
  padding: 6rem 0 0;
}
@media (max-width: 991.98px) {
  .company {
    padding: 6rem 0 0;
  }
}
.company__logo {
  margin: 2rem 0;
}
@media (max-width: 991.98px) {
  .company__logo {
    margin: 1rem 0;
  }
}
@media (max-width: 767.98px) {
  .company__logo {
    width: 15rem;
  }
}

.map .container {
  position: relative;
}
.map #map {
  height: 50rem;
}
@media (max-width: 991.98px) {
  .map #map {
    height: 35rem;
  }
}
@media (max-width: 767.98px) {
  .map #map {
    height: 25rem;
  }
}

.map-contacts {
  position: absolute;
  z-index: 8;
  padding: 4rem 3rem;
  background: #fff;
  top: 11rem;
  left: -2.5rem;
  box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1399.98px) {
  .map-contacts {
    left: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .map-contacts {
    left: 1.5rem;
    right: 1.5rem;
    top: -12rem;
    padding: 1.5rem;
  }
  .map-contacts .h2 {
    font-size: 1.8rem;
  }
}
.map-contacts .list-styled {
  margin-top: 2.5rem;
  margin-bottom: 1.7rem;
}
@media (max-width: 991.98px) {
  .map-contacts .list-styled {
    margin: 1rem 0 0;
  }
}
.map-contacts .list-styled li {
  margin-bottom: 1.2rem;
  font-size: 1.12rem;
}
.map-contacts__phone {
  display: block;
  margin-top: 1.5rem;
  font-family: "Open Sans Condensed";
  font-size: 2rem;
  color: var(--dark-green, #274540);
  text-decoration: none;
}
.map-contacts__phone:hover {
  text-decoration: underline;
}
.map-contacts .phone-icon {
  width: 2rem;
  height: 1.5rem;
}
.map-contacts__sub {
  color: #788381;
  font-family: Open Sans Condensed;
  font-size: 1.15rem;
  margin-left: 2.5rem;
}

.footer {
  padding: 4rem 0;
  background: var(--dark-green, #274540);
}
@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer__columns {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__columns {
    display: block;
  }
}
.footer__copyright-text {
  color: #777;
  font-family: "Open Sans Condensed";
  font-size: 0.8rem;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .footer__copyright-text {
    margin-top: 1rem;
  }
}
.footer__contacts {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .footer__contacts {
    margin-top: 0;
    text-align: right;
  }
}
.footer__phone {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
.footer__phone:hover {
  text-decoration: underline;
}
.footer__phone svg {
  margin-right: 0.5rem;
}
.footer__social {
  margin-top: 1rem;
}
.footer__social-link {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: opacity 0.3s ease;
}
.footer__social-link:not(:last-child) {
  margin-right: 0.8rem;
}
.footer__social-link:hover {
  opacity: 0.6;
}
.footer__social-link_icon_vk {
  background-image: url(../img/social/vk.svg);
}
.footer__social-link_icon_ok {
  background-image: url(../img/social/ok.svg);
}
.footer__social-link_icon_tg {
  background-image: url(../img/social/tg.svg);
}
.footer__social-link_icon_wh {
  background-image: url(../img/social/wh.svg);
}
.footer__social-link_icon_ru {
  background-image: url(../img/social/ru.svg);
}

.hamburger {
  margin-left: 1rem;
  font: inherit;
  display: none;
  overflow: visible;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}
@media (max-width: 991.98px) {
  .hamburger {
    display: inline-block;
  }
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background: var(--gradient, linear-gradient(207deg, #1FDCBC 0%, #2E9987 100%));
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner:after {
  top: 20px;
  bottom: -10px;
}
.hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
}
.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner:after {
  top: 20px;
  bottom: -10px;
}

.order__head {
  margin: 2rem 0 1.5rem;
}
.order__sub {
  margin: 1.5rem 0;
  font-family: Open Sans Condensed;
}
.fancybox__content > .f-button.is-close-btn {
  top: 1rem !important;
  right: 1rem !important;
}/*# sourceMappingURL=style.css.map */