.rent-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  gap: 32px;
}
.rent-info .project-info__box {
  max-width: 100%;
}
.rent-info .project-info__num {
  font-size: 82px;
  font-weight: 400;
  line-height: 1;
}
.rent-info .project-info__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1220px) {
  .rent-info .project-info__num {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
  }
  .rent-info .project-info__text {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .rent-info {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* RENT TEAM END */
.rent-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.rent-team__content {
  width: 100%;
  max-width: 644px;
}
.rent-team__title {
  margin-bottom: 32px;
}
.rent-team__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.rent-team__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  row-gap: 24px;
}
.rent-team__images {
  width: 100%;
  max-width: 636px;
  position: relative;
}
.rent-team__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.rent-team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rent-team__img._img-1 {
  height: 336px;
  width: 336px;
}
.rent-team__img._img-2 {
  width: 445px;
  height: 335px;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  margin-top: -240px;
  margin-left: 190px;
}

@media (max-width: 1220px) {
  .rent-team__images {
    width: auto;
  }
  .rent-team__img._img-1 {
    width: 240px;
    height: 240px;
  }
  .rent-team__img._img-2 {
    width: 300px;
    height: 200px;
    margin-top: -140px;
    margin-left: 100px;
  }
}
@media (max-width: 1024px) {
  .rent-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .rent-team__content {
    display: contents;
  }
  .rent-team__title {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .rent-team__images {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 32px;
  }
  .rent-team__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .rent-team__img._img-1 {
    width: 173px;
    height: 173px;
  }
  .rent-team__img._img-2 {
    width: 229px;
    height: 173px;
    margin-top: -120px;
    margin-left: 98px;
  }
  .rent-team__text {
    font-size: 14px;
    line-height: 1.5;
  }
  .rent-team__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rent-team__btn {
    min-width: 240px;
  }
}
/* RENT TEAM END */
/* REALTY START */
.s-realty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.s-realty .projects-head {
  margin-bottom: 40px;
}
.s-realty__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.s-realty__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  gap: 40px;
}
.s-realty__more {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 40px auto 0;
}

.realty-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 450px;
}
.realty-card._hidden {
  display: none;
}
@media (min-width: 1024px) {
  .realty-card:hover .realty-card__img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.realty-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}
.realty-card__content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 22px;
  color: #FFFFFF;
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.realty-card__title {
  text-align: center;
  margin-bottom: 10px;
}
.realty-card__address {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1220px) {
  .s-realty__grid {
    gap: 16px;
  }
  .realty-card__content {
    padding: 16px;
  }
}
@media (max-width: 1024px) {
  .s-realty__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 600px) {
  .realty-card {
    min-height: 328px;
  }
  .realty-card__content {
    padding: 32px;
  }
}
/* REALTY END */
/* PLAN START */
.plan {
  overflow: hidden;
}
.plan__result {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.plan__result-img {
  width: 100%;
  overflow: hidden;
  min-height: 160px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.plan__result-img img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
  background-color: #fff;
  -webkit-animation: opacityAnim 0.5s ease-in-out;
          animation: opacityAnim 0.5s ease-in-out;
}
.plan .projects-title {
  max-width: 100%;
}

@-webkit-keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.plan-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.plan-filter__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.plan-toggle__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  border-radius: 4px;
}
.plan-toggle__btn {
  cursor: pointer;
}
.plan-toggle__btn span {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #455047;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  background-color: #F5F5F5;
}
.plan-toggle__btn input:checked ~ span {
  background-color: var(--primary-main);
  color: #fff;
}
.zoom {
  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;
}
.zoom button {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F5F5F5;
  border-radius: 4px;
}
[data-corps] {
  display: none;
}
[data-corps]._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .plan-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .plan-toggle__btn span {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .plan__result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .zoom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .zoom button {
    width: 32px;
    height: 32px;
  }
  .zoom button svg {
    width: 16px;
    height: 16px;
  }
}
/* PLAN END */
/* ROOMS START */
.rooms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rooms__btn {
  margin: 32px auto 0;
}

.rooms-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
}
.rooms-grid__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1220px) {
  .rooms-grid__bottom {
    grid-column: span 2;
  }
}

.room {
  border: 1px solid #EBEAE9;
  border-radius: 16px;
  padding: 24px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.room__img {
  position: relative;
  width: 167px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.room__img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  color: var(--primary-main);
}
.room__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.room__info {
  width: 100%;
}
.room__info-title {
  margin-bottom: 20px;
}
.room__info-list {
  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;
  width: 100%;
}
.room__info-char {
  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;
  width: 100%;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
.room__info-char ._line {
  background: repeating-linear-gradient(90deg, #c3c3c3, #c3c3c3 3px, transparent 0, transparent 8px);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  left: 0;
}
.room__info-name {
  color: #707070;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-right: 4px;
}
.room__info-value {
  color: #1D1D1F;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-left: 4px;
  margin-left: auto;
  text-align: right;
}
.room__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 54px;
  width: 100%;
  margin-top: 32px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.room__info-link {
  font-size: 18px;
  line-height: 1;
  color: var(--primary-main);
}
.room__info-link:hover {
  color: var(--primary-hover);
}

@media (max-width: 1220px) {
  .rooms-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .room__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .room__btn-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .room__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 37px;
  }
}
@media (max-width: 400px) {
  .room__info-value {
    min-width: 60px;
  }
}
.rooms-empty__wrap {
  padding: 24px;
  border-radius: 16px;
  background-color: var(--bg-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.rooms-empty__title {
  margin-bottom: 12px;
}
.rooms-empty__text {
  max-width: 890px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.rooms-empty__btn {
  background-color: transparent;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media (max-width: 1024px) {
  .rooms-empty__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* ROOMS END */
.room-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.room-modal-content .contact-form__box-bg {
  margin-bottom: 32px;
}

.room-modal-slider {
  width: 612px;
  height: 350px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 62px;
  margin-bottom: 32px;
}

.roomSwiper {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.roomSwiper .swiper-wrapper {
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.roomSwiper .swiper-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.roomSwiper .swiper-slide img {
  height: 100%;
  display: block;
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.roomSwiper .apartment-wrap {
  height: 100%;
  position: relative;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.roomSwiper .zoom {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.roomSwiper .zoom button {
  width: 32px;
  height: 32px;
}
.roomSwiper .zoom button svg {
  width: 24px;
  height: 24px;
}

.roomNavSwiper {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 60px;
  margin: auto;
}
.roomNavSwiper .swiper-slide {
  cursor: pointer;
}
.roomNavSwiper .swiper-slide img {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.room-acc-wrap {
  width: 100%;
  max-width: 612px;
}

.room-acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.room-acc__el {
  width: 100%;
}
.room-acc__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.room-acc__btn.active svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.room-acc__btn svg {
  width: 30px;
  height: 30px;
  color: var(--primary-main);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.room-acc__panel {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.room-acc__content {
  margin-top: 16px;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 6px;
}
.room-acc__content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.room-acc__content::-webkit-scrollbar-thumb {
  background-color: rgba(129, 184, 59, 0.5019607843);
  width: 6px;
  height: 6px;
  border-radius: 10px;
}

.room-acc-char {
  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;
  overflow: hidden;
}
.room-acc-char li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.room-acc-char li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  background-image: radial-gradient(circle, rgba(129, 184, 59, 0.5019607843) 1px, transparent 1px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
}
.room-acc-char__name {
  color: var(--stroke-tertiary);
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-right: 6px;
}
.room-acc-char__value {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-left: 6px;
  font-weight: 500;
  text-align: right;
}

.room-cond {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.room-cond__item-label {
  margin-bottom: 8px;
  color: var(--stroke-tertiary);
  line-height: 1.6;
}
.room-cond__item-text {
  font-weight: 500;
  line-height: 1.4;
}

.room-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1360px) {
  .room-modal-slider {
    width: 500px;
  }
}
@media (max-width: 1024px) {
  .room-modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .room-acc-wrap {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .room-modal-slider {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .roomNavSwiper {
    height: 60px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .roomNavSwiper .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .roomSwiper {
    margin-right: 0;
  }
  .room-modal-slider {
    gap: 16px;
  }
}
.scheme-modal-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.scheme-modal-content .apartment-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 160px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.scheme-modal-content .apartment-wrap img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .scheme-modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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