@charset "UTF-8";
.apartment-gallery {
  max-height: 380px;
  height: 380px;
  display: flex;
  gap: 32px;
}
.apartment-gallery__wrapper {
  display: flex;
  gap: 16px;
}
.apartment-gallery .apartment-gallery-miniatures {
  max-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.apartment-gallery .apartment-gallery-miniatures__item {
  border: 1px solid #EBEDF1;
}
.apartment-gallery .apartment-gallery-miniatures__item img {
  object-fit: contain;
  width: 100px;
  height: 100px;
}
.apartment-gallery .apartment-gallery-miniatures__arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.apartment-gallery .apartment-gallery-miniatures__arrow.arrow-prev {
  transform: rotate(-90deg);
}
.apartment-gallery .apartment-gallery-miniatures__arrow.arrow-next {
  transform: rotate(90deg);
}
.apartment-gallery .apartment-gallery-main-images {
  max-width: 568px;
}
.apartment-gallery .apartment-gallery-main-images__favorite-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #F7F8F9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
  position: absolute;
  top: 16px;
  right: 16px;
}
.apartment-gallery .apartment-gallery-main-images__favorite-btn.added {
  background: #F5EDFF;
}
.apartment-gallery .apartment-gallery-main-images__favorite-btn.added svg path {
  stroke: #9747FF;
}
.apartment-gallery .apartment-gallery-main-images__favorite-btn:hover {
  background: #F5EDFF;
}
.apartment-gallery .apartment-gallery-main-images__favorite-btn:hover svg path {
  stroke: #9747FF;
}
.apartment-gallery .apartment-gallery-main-images__tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apartment-gallery .apartment-gallery-main-images__tag {
  width: fit-content;
  display: block;
  padding: 4px 8px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
  background: #2A59FD;
  border-radius: 6px;
}
.apartment-gallery .apartment-gallery-main-images__tag--bg-yellow {
  background: #FAB62D;
}
.apartment-gallery .apartment-gallery-main-images__tag--bg-green {
  background: #10C44C;
}
.apartment-gallery .apartment-gallery-main-images__tag--bg-orange {
  background: #FF6E31;
}
.apartment-gallery .apartment-gallery-main-images__item {
  border: 1px solid #EBEDF1;
  position: relative;
}
.apartment-gallery .apartment-gallery-main-images__item img {
  object-fit: contain;
  width: 100%;
  max-height: 380px;
}
.apartment-gallery .apartment-gallery-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.apartment-gallery .apartment-gallery-info__btn {
  display: block;
  width: fit-content;
  padding: 12px 12px;
  border-radius: 64px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  min-width: 200px;
  border-color: unset;
  text-align: center;
}
.apartment-gallery .apartment-gallery-info__btn:hover {
  color: #fff;
}
.apartment-gallery .apartment-gallery-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.apartment-gallery .apartment-gallery-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.apartment-gallery .apartment-gallery-info__price {
  display: flex;
  gap: 12px;
  align-items: center;
}
.apartment-gallery .apartment-gallery-info__price .price-sq {
  color: #5A616C;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
}
.apartment-gallery .apartment-gallery-info__price .price {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 24px;
  font-weight: 600;
}
.apartment-gallery .apartment-gallery-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apartment-gallery .apartment-gallery-info__text > span:first-child {
  color: #5A616C;
  font-size: 13px;
}
.apartment-gallery .apartment-gallery-info__text > span:last-child {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .apartment-gallery {
    flex-direction: column;
    height: auto;
    max-height: 100%;
    padding-top: 24px;
  }
  .apartment-gallery__wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .apartment-gallery .apartment-gallery-info {
    gap: 32px;
  }
  .apartment-gallery .apartment-gallery-info__text > span:first-child {
    font-size: 12px;
  }
  .apartment-gallery .apartment-gallery-info__text > span:last-child {
    font-size: 15px;
  }
  .apartment-gallery .apartment-gallery-info__btn {
    font-size: 16px;
    width: 100%;
    border-color: unset;
    max-width: 100%;
  }
  .apartment-gallery .apartment-gallery-miniatures {
    flex-direction: row;
    max-width: 100%;
    order: 2;
  }
  .apartment-gallery .apartment-gallery-miniatures__wrapper {
    max-width: 80%;
  }
  .apartment-gallery .apartment-gallery-miniatures__item {
    width: 80px !important;
    height: 80px;
    margin-right: 10px;
  }
  .apartment-gallery .apartment-gallery-miniatures__item img {
    width: 100%;
    height: 100%;
  }
  .apartment-gallery .apartment-gallery-miniatures__arrow.arrow-prev {
    transform: rotate(180deg);
  }
  .apartment-gallery .apartment-gallery-miniatures__arrow.arrow-next {
    transform: rotate(0deg);
  }
  .apartment-gallery .apartment-gallery-main-images__item img {
    height: 400px;
    object-fit: contain;
  }
}

.apartment-similiar {
  padding: 48px 0 64px;
}
.apartment-similiar .slick-slide {
  margin-right: 32px;
}
.apartment-similiar__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.apartment-similiar__title h2 {
  color: var(--Text-Text-1, #111827);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  margin: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .apartment-similiar__title h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.apartment-similiar__navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}
.apartment-similiar__navigation > a {
  font-size: 18px;
  color: #9747FF;
  line-height: 24px;
}
.apartment-similiar__navigation-arrow {
  border-radius: 150px;
  border: 1px solid #EBEDF1;
  background: #FFF;
  color: #000000;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
}
.apartment-similiar .apartment-similiar-item {
  max-width: 358px;
  min-width: 358px;
}
.apartment-similiar .apartment-similiar-item__order {
  display: block;
  width: fit-content;
  padding: 14px 14px;
  border-radius: 64px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.apartment-similiar .apartment-similiar-item__order:hover {
  color: #fff;
}
.apartment-similiar .apartment-similiar-item__img {
  border: 1px solid #EBEDF1;
  height: 240px;
  display: flex;
  justify-content: center;
  padding: 6px;
}
.apartment-similiar .apartment-similiar-item__img img {
  height: 100%;
  object-fit: contain;
}
.apartment-similiar .apartment-similiar-item__content {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apartment-similiar .apartment-similiar-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.apartment-similiar .apartment-similiar-item__tag {
  display: inline-block;
  color: #fff;
  padding: 4px 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
  font-weight: 500;
  background: #2A59FD;
  border-radius: 6px;
}
.apartment-similiar .apartment-similiar-item__tag--bg-yellow {
  background: #FAB62D;
}
.apartment-similiar .apartment-similiar-item__tag--bg-green {
  background: #10C44C;
}
.apartment-similiar .apartment-similiar-item__tag--bg-orange {
  background: #FF6E31;
}
.apartment-similiar .apartment-similiar-item__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: #000000 !important;
  font-weight: 600;
}
.apartment-similiar .apartment-similiar-item__title a {
  color: #000000 !important;
}
.apartment-similiar .apartment-similiar-item__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.apartment-similiar .apartment-similiar-item__favorite {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #F7F8F9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
}
.apartment-similiar .apartment-similiar-item__favorite.added {
  background: #F5EDFF;
}
.apartment-similiar .apartment-similiar-item__favorite.added svg path {
  stroke: #9747FF;
}
.apartment-similiar .apartment-similiar-item__favorite:hover {
  background: #F5EDFF;
}
.apartment-similiar .apartment-similiar-item__favorite:hover svg path {
  stroke: #9747FF;
}
.apartment-similiar .apartment-similiar-item__order {
  width: calc(100% - 52px - 16px);
  text-align: center;
}
.apartment-similiar .apartment-similiar-item-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 232px;
  row-gap: 12px;
  column-gap: 14px;
}
.apartment-similiar .apartment-similiar-item-info__item {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #5A616C;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
}
.apartment-similiar .apartment-similiar-item-info__item--value {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .apartment-similiar {
    padding: 64px 0;
  }
  .apartment-similiar .slick-slide {
    margin-right: 24px;
    width: fit-content;
  }
  .apartment-similiar__title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .apartment-similiar__title h2 {
    font-size: 24px;
  }
  .apartment-similiar .apartment-similiar-item {
    min-width: auto;
  }
  .apartment-similiar .apartment-similiar-item__order {
    font-size: 16px;
  }
  .apartment-similiar .apartment-similiar-item__content {
    padding: 24px 0 0;
  }
  .apartment-similiar .apartment-similiar-item__title {
    font-weight: 600;
  }
  .apartment-similiar .apartment-similiar-item-info__item {
    font-size: 16px;
  }
  .apartment-similiar .apartment-similiar-item-info__item--value {
    font-size: 18px;
  }
  .apartment-similiar__navigation a {
    font-size: 16px;
  }
  .apartment-similiar__navigation-arrow {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .apartment-similiar .slick-slide {
    margin-right: 0;
    width: calc(100vw - 40px);
  }
}

.apartment-tabs .apartment-tabs-content #apartment-tab-5 {
  max-width: 684px;
}
.apartment-tabs .apartment-tabs-nav {
  padding: 0;
  margin: 48px 0;
  list-style-type: none;
  display: flex;
  transition: 0.3s;
  border-bottom: 1px solid #EBEDF1;
  width: fit-content;
}
.apartment-tabs .apartment-tabs-nav li {
  margin: 0;
}
.apartment-tabs .apartment-tabs-nav li a {
  padding: 12px;
  color: #111827;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  display: block;
  transition: 0.2s;
}
.apartment-tabs .apartment-tabs-nav li a.active {
  border-bottom: 2px solid #9747FF !important;
}
.apartment-tabs .apartment-tabs-nav li a:hover {
  border-bottom: 2px solid var(--Borders-Border-2, #D2D6DC);
}
.apartment-tabs .short-characteristics {
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
}
.apartment-tabs .short-characteristics__block {
  max-width: 318px;
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.apartment-tabs .short-characteristics__item {
  width: 100%;
  display: flex;
  align-items: center;
}
.apartment-tabs .short-characteristics__item > span:first-child {
  color: #5A616C;
  font-size: 14px;
  line-height: 20px;
}
.apartment-tabs .short-characteristics__item > span:last-child {
  font-size: 16px;
  line-height: 28px;
}
.apartment-tabs .short-characteristics__item .spacer-dotes {
  flex: 1;
  height: 1rem;
  display: block;
  position: relative;
}
.apartment-tabs .short-characteristics__item .spacer-dotes:after {
  content: "";
  height: 1px;
  border-bottom: 1px #B7BECA dashed;
  left: 50%;
  width: 90%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
}
.apartment-tabs .about-apartment {
  max-width: 678px;
}
.apartment-tabs .about-apartment__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apartment-tabs .about-apartment__container p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}
.apartment-tabs .about-apartment__container ul {
  list-style-type: none;
  padding-left: 32px;
  margin: 0;
}
.apartment-tabs .about-apartment__container ul li {
  position: relative;
  margin: 0;
}
.apartment-tabs .about-apartment__container ul li:not(:last-child) {
  margin-bottom: 12px;
}
.apartment-tabs .about-apartment__container ul li:before {
  content: "";
  padding-right: 8px;
  width: 24px;
  height: 24px;
  display: block;
  background: url("/wp-content/themes/twentytwenty-child/assets/images/check.png") center no-repeat;
  position: absolute;
  top: 0;
  left: -32px;
}
.apartment-tabs .about-apartment.about-apartment--otdelka {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apartment-tabs .about-apartment.about-apartment--otdelka .about-apartment-gallery {
  max-width: 500px;
}
.apartment-tabs .about-apartment.about-apartment--otdelka .about-apartment-gallery__slide {
  min-width: 500px;
}
.apartment-tabs .about-apartment.about-apartment--otdelka .about-apartment-gallery__slide img {
  object-fit: cover;
  height: 440px;
  width: 100%;
}
.apartment-tabs .mortgage {
  max-width: 1020px;
}
.apartment-tabs .apartment-promotions {
  max-width: 684px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.apartment-tabs .apartment-promotions__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apartment-tabs .apartment-promotions__content {
  font-size: 16px;
  color: #111827;
  line-height: 175%;
}
.apartment-tabs .apartment-promotions__title-section {
  display: flex;
  gap: 10px;
}
.apartment-tabs .apartment-promotions__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 2px;
}
.apartment-tabs .apartment-promotions__subtitle {
  color: var(--Text-Text-2, #5A616C);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.apartment-tabs .apartment-promotions .order-callback {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 12px;
  background: #F5EDFF;
}
.apartment-tabs .apartment-promotions .order-callback__btn {
  display: block;
  width: fit-content;
  padding: 13px 30px;
  border-radius: 64px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  border-color: none;
  text-transform: capitalize;
  white-space: nowrap;
}
.apartment-tabs .apartment-promotions .order-callback__btn:hover {
  color: #fff;
}
.apartment-tabs .apartment-promotions .order-callback__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 991px) {
  .apartment-tabs .apartment-promotions .order-callback {
    flex-direction: column;
  }
}
.apartment-tabs .apartment-promotions .apartment-promotions-payments {
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 991px) {
  .apartment-tabs .about-apartment-gallery__slide {
    min-width: auto !important;
    max-width: calc(100vw - 40px);
  }
  .apartment-tabs .apartment-tabs-nav {
    overflow-x: scroll;
    scrollbar-width: none;
    margin: 32px 0 !important;
    width: auto;
  }
  .apartment-tabs .apartment-tabs-nav li a {
    white-space: nowrap;
    font-size: 15px;
  }
  .apartment-tabs .short-characteristics {
    flex-direction: column;
    gap: 12px;
  }
  .apartment-tabs .about-apartment__container p, .apartment-tabs .about-apartment__container li {
    font-size: 15px;
    line-height: 22px;
  }
  .apartment-tabs .apartment-promotions {
    gap: 32px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 48px 0;
  align-items: flex-start !important;
  border: none !important;
}
.footer-top__address {
  font-size: 16px;
  line-height: 22px;
}
.footer-top__time-work {
  font-size: 16px;
  line-height: 22px;
}
.footer-top__phone {
  font-size: 16px;
  line-height: 22px;
}
.footer-top__mail {
  font-size: 16px;
  line-height: 22px;
}
.footer-top__order-btn {
  display: block;
  width: fit-content;
  padding: 10px 10px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}
.footer-top__order-btn:hover {
  color: #fff;
}
.footer-top__order-btn:hover {
  color: #fff;
}
.footer-top__column {
  width: max-content;
  max-width: 227px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__column:first-child {
  width: 180px;
}
.footer-top__column:last-child {
  width: 200px;
}
.footer-top__column--contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__logo {
  width: 100%;
  display: flex;
  height: 60px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgb(207, 24, 94) 0%, rgb(226, 11, 78) 35%, rgb(0, 212, 255) 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  align-items: center;
  padding-right: 18px;
  justify-content: flex-end;
  font-size: 12px;
  margin-bottom: 12px;
}
.footer-top__offer {
  color: #9299A5;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer-top__item {
  color: #111827;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.footer-top__subitem {
  color: #111827;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.footer-top__subitems__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top__socials {
  display: flex;
  gap: 10px;
}
.footer-top__socials img {
  max-width: 26px;
  max-height: 26px;
}
.footer-top__phone {
  font-weight: 500;
  color: #111827 !important;
}
.footer-top__mail {
  color: #9747FF !important;
}
.footer-bottom {
  width: 100%;
  padding: 16px 0;
  background: #F7F8F9;
}
.footer-bottom__wrapper {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom__item {
  color: #9747FF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer-bottom--caption {
  color: #5A616C;
}
.footer-bottom__link-wrapper {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .footer-top__socials-wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    margin: 4px 0;
  }
  .mobile-menu {
    display: block;
  }
  .footer-top__phone {
    font-size: 18px;
  }
  .footer-top {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }
  .footer-bottom {
    padding: 16px 20px;
  }
  .footer-top__logo {
    margin-bottom: 19px;
  }
  .footer-top__item {
    font-weight: 400;
  }
  .footer-top__item.has-submenu {
    display: flex;
    justify-content: space-between;
  }
  .footer-top__item:after {
    margin: 0;
  }
  .footer-top__column {
    width: 100%;
    max-width: 100%;
  }
  .footer-bottom__wrapper {
    flex-direction: column;
  }
  .footer-bottom__link-wrapper {
    flex-direction: column;
  }
  .footer-top__offer {
    display: none;
  }
  .order-btn {
    width: 100%;
  }
  .footer-top__order-btn {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
  }
  .footer-top__column {
    width: 100%;
  }
  .footer-top__column:last-child {
    width: 100%;
  }
  .footer-top__column {
    display: flex;
  }
  .footer-top__subitems__wrapper {
    padding-left: 16px;
    display: none;
  }
  .footer-top__subitem:not(:last-child) {
    padding-bottom: 12px;
  }
  .footer-top__subitem {
    display: block;
  }
  .footer-top__item.has-submenu:after {
    content: "❯";
    display: inline-flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
    margin-left: 8px;
    transition: 0.3s;
  }
  .footer-top__item.has-submenu.opened:after {
    color: #9747FF;
    transform: rotate(270deg);
  }
  .footer-top__time-work br {
    display: none;
  }
  .footer-top__address br {
    display: none;
  }
  .footer-bottom * {
    font-size: 15px;
    line-height: 22px;
  }
  .footer-bottom__wrapper {
    gap: 12px;
    align-items: flex-start;
  }
  .footer-bottom__link-wrapper {
    gap: 6px;
  }
  .footer-top__socials img {
    max-width: 32px;
    max-height: 32px;
  }
}
.header {
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
}
.header address {
  margin: 0;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  max-width: 947px;
  margin: 0;
  margin-left: auto;
  position: relative;
}
.header__top-bg {
  background: #F7F8F9;
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
}
.header__bottom-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}
.header__bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 947px;
}
.header__contacts {
  display: flex;
  gap: 16px;
}
.header__contacts a {
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #111827;
}
.header__contacts a.new-header__mail {
  color: #9747FF;
}
.header__order {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__order .order-btn {
  display: flex;
  padding: 10px 24px;
  font-size: 15px;
  background: #9747FF;
  color: #fff !important;
  font-weight: 500;
  border-radius: 64px;
  justify-content: center;
  cursor: pointer;
}
.header__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu .menu-glavnoe-container {
  height: 100%;
}
.header__menu .menu {
  display: flex;
  gap: 12px;
  list-style-type: none;
  margin: 0;
  height: 100%;
  align-items: center;
}
.header__menu .menu > li:hover:after {
  color: #9747FF !important;
}
.header__menu .menu > li:hover > a {
  color: #9747FF !important;
}
.header__menu .menu li {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__menu .menu > li > .sub-menu {
  min-width: 216px;
}
.header__menu .menu .sub-menu {
  display: none;
  position: relative;
}
.header__menu .menu li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.header__menu .menu li.menu-item-has-children::after {
  content: "❯";
  display: flex;
  width: 18px;
  height: 18px;
  justify-content: center;
  align-items: center;
  transform: rotate(90deg);
  position: absolute;
  right: -2px;
}
.header__menu .menu li.menu-item-has-children:hover > .sub-menu {
  padding: 8px 0;
  display: block;
  position: absolute;
  list-style-type: none;
  border-radius: 10px;
  border: 1px solid #EBEDF1;
  background: #FFF;
  top: 40px;
  z-index: 20;
  width: max-content;
  margin: 0;
  transition: linear 300ms;
}
.header__menu .menu li.menu-item-has-children:hover > .sub-menu a {
  display: block;
  padding: 0;
  width: 100%;
}
.header__menu .menu li.menu-item-has-children:hover > .sub-menu li {
  padding: 16px 12px 16px 16px;
}
.header__menu .menu li.menu-item-has-children:hover > .sub-menu li:hover {
  background: #F7F8F9;
}
.header__menu .menu li.menu-item-has-children:hover > .sub-menu li:after {
  transform: rotate(0deg) !important;
  color: #b1aeae;
  display: inline-flex;
  position: static;
  padding: 0;
}
.header__menu .menu a {
  color: #111827;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.header__menu .menu .sub-menu .sub-menu {
  margin-left: calc(100% - 8px) !important;
  top: 0 !important;
}
.header__menu .menu .sub-menu .sub-menu:before {
  content: "";
  display: block;
  height: 100%;
  width: 10px;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  left: -10px;
}
.header__logo {
  position: absolute;
  width: calc((100% - 947px) / 2 + 74px);
  min-width: 150px;
  left: 0;
  bottom: 10px;
  display: flex;
  height: 54px;
  border-radius: 0px 100px 100px 0px;
  background: linear-gradient(90deg, rgb(207, 24, 94) 0%, rgb(226, 11, 78) 35%, rgb(0, 212, 255) 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  align-items: center;
  padding-right: 18px;
  justify-content: flex-end;
  font-size: 12px;
}
.header__logo:hover {
  color: #fff;
}
.header__address {
  display: flex;
  gap: 24px;
}
.header__address span {
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.header__address span:first-child {
  color: #111827;
}
.header__address span:last-child {
  color: #5A616C;
}
.header__address span:nth-child(2) {
  color: #9299A5;
}
.header__favorite-counter {
  position: absolute;
  top: -5px;
  right: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #9747FF;
}
.header__favorite {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
  background: #F7F8F9;
  position: relative;
}
.header__favorite.added {
  background: #F5EDFF;
}
.header__favorite.added svg path {
  stroke: #9747FF;
}
@media screen and (max-width: 1000px) {
  .header {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.mobile-menu__top-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mobile-menu__logo {
  display: flex;
  height: 60px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgb(207, 24, 94) 0%, rgb(226, 11, 78) 35%, rgb(0, 212, 255) 100%);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 24px;
  min-width: 180px;
}
.mobile-menu__favorite-counter {
  position: absolute;
  top: -5px;
  right: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #9747FF;
}
.mobile-menu__favorite {
  padding: 12px;
  border-radius: 64px;
  background: #F7F8F9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mobile-menu__favorite svg {
  width: 24px;
  height: 24px;
}
.mobile-menu__burger {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 8px 6px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-align: left;
}
.mobile-menu__burger span {
  width: 100%;
  display: block;
  height: 1px;
  background: #000;
  transition: 0.5s;
}
.mobile-menu__burger span:nth-child(2) {
  width: 55%;
}
.mobile-menu__burger.opened {
  transform: rotate(180deg);
}
.mobile-menu__burger.opened span {
  position: absolute;
  width: 60%;
}
.mobile-menu__burger.opened span:first-child {
  transform: rotate(45deg) translate(3px, 7px);
}
.mobile-menu__burger.opened span:nth-child(2) {
  display: none;
}
.mobile-menu__burger.opened span:last-child {
  transform: rotate(-45deg) translate(-7px, 3px);
}
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-menu__footer > * {
  width: 100%;
}
.mobile-menu__footer .mobile-menu__order {
  display: block;
  width: fit-content;
  padding: 12px 12px;
  border-radius: 64px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  color: #fff !important;
  width: 100%;
}
.mobile-menu__footer .mobile-menu__order:hover {
  color: #fff;
}
.mobile-menu__footer * {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.mobile-menu__address {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 0;
  row-gap: 8px;
}
.mobile-menu__address span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mobile-menu__address span:first-child {
  color: #111827;
}
.mobile-menu__address span:nth-child(2) {
  color: #5A616C;
}
.mobile-menu__address span:last-child {
  color: #9299A5;
}
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 0;
}
.mobile-menu__contacts-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.mobile-menu__contacts .mobile-menu__mail {
  color: #9747FF !important;
}
.mobile-menu__contacts .mobile-menu__phone {
  color: #111827 !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.mobile-menu__socials {
  display: flex;
  gap: 6px;
  align-items: center;
}
.mobile-menu__socials svg {
  width: 1.7rem;
  height: 1.7rem;
}

#mobile-menu {
  transition: height 0.3s ease;
  overflow: hidden;
  padding: 16px 20px 24px;
  gap: 35px;
  height: min-content;
  max-width: 100vw;
}
#mobile-menu .mm-btn--next:after {
  inset-inline-end: 2px;
  border-color: black;
  border-width: 1px;
}
#mobile-menu .mm-navbar .mm-btn.mm-btn--prev:before {
  border-color: black;
  border-width: 1px;
}
#mobile-menu .mobile-menu__top {
  padding: 0;
  justify-content: space-between;
}
#mobile-menu .menu-item {
  border-color: #fff;
}
#mobile-menu .mm-listitem__text {
  color: #111827;
}
#mobile-menu .mm-listitem__text:hover {
  color: #9747FF;
}
#mobile-menu li.menu-item:not(:last-child) {
  padding: 0 0 16px 0;
}
#mobile-menu li.menu-item:not(:last-child) a {
  padding: 0;
}
#mobile-menu li.menu-item:last-child a.mm-listitem__text {
  padding: 0;
}
.mobile-menu__hidden{
      display:none;
}
.mm-navbars--top {
  border: none !important;
}
.mm-navbars--top .mm-navbar {
  margin: 0;
}
.mm-navbars--bottom {
  border: none !important;
}
.mm-navbars--bottom .mm-navbar:last-child {
  margin-bottom: 0;
}

.mm-navbar {
  border-color: #fff;
  min-height: min-content;
  align-items: center;
  margin-bottom: 20px;
}
.mm-navbar .mm-btn.mm-btn--prev {
  height: 11px;
  width: 16px;
}
.mm-navbar .mm-btn.mm-btn--prev:before {
  inset-inline-start: 2px;
}
.mm-navbar .mm-btn.mm-btn--next:after {
  top: -12px;
  border-color: black;
}
.mm-navbar .mm-navbar__title {
  justify-content: flex-start;
  padding: 0;
}
.mm-navbar .mm-navbar__title > span {
  color: #111827;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.mm-panel:after {
  display: none !important;
}
.mm-panel.mm-panel--opened {
  position: static;
}
.mm-panel.mm-panel--parent {
  display: none;
}

#mm-1 .mm-navbar {
  display: none;
}

@media screen and (max-width: 1125px) {
  .header__bottom {
    justify-content: flex-end;
  }
}
.main-banner {
  position: relative;
}
.main-banner__bg {
  min-height: 960px;
  position: relative;
}
.main-banner__bg p {
  margin: 0;
  padding: 0;
}
.main-banner__bg video {
  position: absolute;
  height: 100% !important;
  object-fit: cover;
  width:100%;
}
.main-banner .main-banner-description {
  width: 100%;
  max-width: 1140px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  background: #9747FF;
  padding: 12px 32px;
  border-radius: 64px;
  bottom: 100px;
}
.main-banner .main-banner-description__item span {
  color: var(--Text-Text-white, #FFF);
  font-style: normal;
  font-weight: 500;
}
.main-banner .main-banner-description__item span:first-child {
  font-size: 32px;
  line-height: 40px;
}
.main-banner .main-banner-description__item span:last-child {
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 991px) {
  .main-banner .main-banner__bg {
    min-height: 366px;
  }
  .main-banner .main-banner-description {
    position: static;
    background: #fff;
    transform: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
    gap: 8px;
    padding: 16px 0;
  }
  .main-banner .main-banner-description__item {
    background: #9747FF;
    height: 100%;
    border-radius: 12px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .main-banner .main-banner-description__item span:first-child {
    font-size: 20px;
    line-height: 28px;
  }
  .main-banner .main-banner-description__item span:last-child {
    font-size: 14px;
    line-height: 20px;
  }
  .main-banner .main-banner-description__item:last-child {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .main-banner .main-banner-description__item:nth-child(2) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}

.home-description__wrapper {
  padding: 80px 0;
  display: grid;
  grid-template-areas: "main main main" "item item item";
  column-gap: 32px;
  row-gap: 48px;
}
.home-description__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-description__desc {
  grid-area: main;
  display: flex;
  gap: 48px;
  align-items: center;
}
.home-description__desc .logo {
  display: flex;
  min-width: 537px;
  gap: 12px;
}
.home-description__desc .logo img {
  max-width: 133px;
}
.home-description__desc .logo p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 28px !important;
}
.home-description__desc .logo .home-description__text {
  color: var(--Text-Text-1, #111827) !important;
}
.home-description__desc .logo .title {
  color: var(--Text-Text-1, #111827);
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px; /* 108.333% */
}
.home-description__desc .logo .title span {
  font-weight: 600;
}
.home-description__title {
  display: flex;
  gap: 12px;
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  align-items: center;
}
.home-description__text p {
  color: #5A616C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .home-description__wrapper {
    grid-template-areas: "main" "item" "item" "item";
    padding: 48px 0;
    gap: 16px;
  }
  .home-description__title {
    font-size: 18px;
  }
  .home-description__text {
    color: var(--Text-Text-2, #5A616C);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
  }
  .home-description__desc {
    flex-direction: column;
    gap: 32px;
  }
  .home-description__desc .home-description__text {
    margin-bottom: 16px;
  }
  .home-description__desc .home-description__text p {
    color: #111827;
  }
  .home-description__desc .logo {
    min-width: auto;
  }
  .home-description__desc .logo img {
    max-width: 85px;
  }
  .home-description__desc .logo .title {
    font-size: 28px;
    line-height: 34px;
    display: flex;
    flex-direction: column;
  }
}
.apartments-map {
  position: relative;
}
.apartments-map__btn {
  position: absolute;
  bottom: 34px;
  left: 18%;
  display: block;
  width: fit-content;
  padding: 24px 48px;
  border-radius: 64px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 372px;
  font-weight: 600;
  line-height: 28px;
  text-transform: math-auto;
}
.apartments-map__btn:hover {
  color: #fff;
}
.apartments-map .hotspots-interaction {
  margin: 0;
}
.apartments-map .hotspot-title {
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  margin: 0 0 4px;
}
.apartments-map .hotspot-content {
  margin: 0;
}
.apartments-map .hotspot-content * {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.apartments-map .hotspot-info {
  padding: 16px;
  max-width: 225px;
  width: 100%;
}
.apartments-map .leaflet-popup-pane {
  max-width: 225px;
}
.apartments-map .leaflet-rrose-content-wrapper {
  max-width: 225px !important;
}
@media screen and (max-width: 991px) {
  .apartments-map__btn {
    position: static;
    padding: 16px 32px;
    width: 92%;
    font-size: 16px;
    line-height: 24px;
    margin: 10px auto 48px;
  }
  .apartments-map .hotspots-interaction {
    margin: 0;
  }
}

.apartment-plans__wrapper {
  display: grid;
  grid-template-areas: "title title" "left right";
  row-gap: 24px;
  column-gap: 48px;
  align-items: center;
  padding: 80px 0 48px;
}
.apartment-plans__title {
  grid-area: title;
  color: var(--Text-Text-1, #111827);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  display: flex;
  flex-direction: column;
}
.apartment-plans__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .apartment-plans__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.apartment-plans__items {
  grid-area: left;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 24px;
  align-items: center;
}
.apartment-plans__content p:last-child {
  margin: 0;
}
.apartment-plans__content * {
  grid-area: right;
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.apartment-plans__item {
  max-width: 262px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apartment-plans__item .title {
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
}
.apartment-plans__item .subtitle {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.apartment-plans__slider .apartment-similiar {
  padding: 0 0 80px;
}
.apartment-plans__slider .apartment-similiar__title {
  justify-content: flex-end;
  margin-bottom: 24px;
}
.apartment-plans__slider .apartment-similiar__title h2 {
  display: none;
}
@media screen and (max-width: 991px) {
  .apartment-plans__wrapper {
    grid-template-areas: "title" "left" "right";
    gap: 32px;
    padding: 48px 0 32px;
  }
  .apartment-plans__item {
    max-width: 47%;
  }
  .apartment-plans__item .title {
    font-size: 18px;
  }
  .apartment-plans__items {
    gap: 16px;
    flex-direction: row;
    align-items: flex-start;
  }
  .apartment-plans .apartment-similiar {
    padding-bottom: 48px;
  }
  .apartment-plans .apartment-similiar .apartment-similiar-item__buttons {
    margin-top: 8px;
  }
}

.decoration-variants .decoration-variants-content {
  padding-top: 80px;
  display: flex;
  gap: 48px;
  flex-direction: column;
  transition: 0.5s;
}
.decoration-variants .decoration-variants-content.dark {
  background: #111827;
}
.decoration-variants .decoration-variants-content.dark * {
  color: #fff !important;
}
.decoration-variants .decoration-variants-content__static-text {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.decoration-variants .decoration-variants-content__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 24px;
}
.decoration-variants .decoration-variants-content__title {
  grid-row: 1/2;
  grid-column: span 2;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  display: flex;
  flex-direction: column;
}
.decoration-variants .decoration-variants-content__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .decoration-variants .decoration-variants-content__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav li {
  padding: 0;
  margin: 0;
  width: 100%;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav a {
  display: flex;
  padding: 12px;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid #B7BECA;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav a.active {
  border-color: #9747FF;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav a:hover {
  border-color: #9747FF;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav a {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs .decoration-variants-tabs-nav a.active {
  color: #111827;
}
.decoration-variants .decoration-variants-content .decoration-variants-tabs__tab * {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.decoration-variants .decoration-variants-images__item-wrapper {
  display: none;
  max-height: 508px;
}
.decoration-variants .decoration-variants-images__item-wrapper.active {
  display: block;
}
.decoration-variants .decoration-variants-images__item-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}
.decoration-variants .decoration-variants-images__slider .slick-slide {
  max-width: 50vw;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .decoration-variants .decoration-variants-content {
    padding: 48px 0;
    gap: 32px;
  }
  .decoration-variants .decoration-variants-content__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
  }
  .decoration-variants .decoration-variants-content .decoration-variants-tabs {
    grid-row: 2/3;
    grid-column: 1;
  }
  .decoration-variants .decoration-variants-content .decoration-variants-tabs__content p {
    margin: 0;
  }
  .decoration-variants .decoration-variants-content__title {
    grid-row: 1/2;
    grid-column: 1;
  }
  .decoration-variants .decoration-variants-content__static-text {
    grid-row: 3/4;
    grid-column: 1;
    display: none;
  }
  .decoration-variants .decoration-variants-content .decoration-variants-images__slider {
    padding: 0;
  }
  .decoration-variants .decoration-variants-content .decoration-variants-images__slider .slick-slide {
    max-width: 100vw;
    height: 270px;
  }
  .decoration-variants .decoration-variants-content .decoration-variants-images__slider .slick-slide > div {
    height: 100%;
  }
  .decoration-variants .decoration-variants-content .decoration-variants-images__slider .slick-slide a {
    height: 100%;
  }
}

.mortgage-calculator {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  /*********** Baseline, reset styles ***********/
  /* Removes default focus */
  /******** Chrome, Safari, Opera and Edge Chromium styles ********/
  /* slider track */
  /* slider thumb */
  /*********** Firefox styles ***********/
  /* slider track */
  /* slider thumb */
}
.mortgage-calculator__input {
  position: relative;
}
.mortgage-calculator__input.mortgage-calculator__input--price:after, .mortgage-calculator__input.mortgage-calculator__input--down-payment:after {
  content: "₽";
}
.mortgage-calculator__input.mortgage-calculator__input--date:after {
  content: "лет";
}
.mortgage-calculator__input:after {
  position: absolute;
  right: 20px;
  display: flex;
  width: fit-content;
  height: 100%;
  top: 0;
  align-items: center;
  color: #5A616C;
}
.mortgage-calculator__label {
  font-size: 16px;
}
.mortgage-calculator__label--down-payment-label {
  display: flex;
  justify-content: space-between;
}
.mortgage-calculator__down-payment-percents {
  color: #9299A5;
}
.mortgage-calculator__input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mortgage-calculator__input-wrapper input[type=text] {
  border-color: #EBEDF1;
  border-width: 2px;
  border-radius: 10px 10px 0px 0px;
  padding: 14px 16px;
}
.mortgage-calculator__price {
  border-radius: 10px !important;
  position: relative;
}
.mortgage-calculator__down-payment {
  position: relative;
}
.mortgage-calculator__date {
  position: relative;
}
.mortgage-calculator input[type=range] {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
}
.mortgage-calculator input[type=range]:focus {
  outline: none;
}
.mortgage-calculator input[type=range]::-webkit-slider-runnable-track {
  background-color: #9747ff;
  border-radius: 0rem;
  height: 2px;
}
.mortgage-calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -10px; /* Centers thumb on the track */
  background-color: #ffffff;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  border: 1px solid rgba(198, 198, 198, 0.67);
}
.mortgage-calculator input[type=range]:focus::-webkit-slider-thumb {
  outline: 1px solid #757575;
  outline-offset: 0.125px;
}
.mortgage-calculator input[type=range]::-moz-range-track {
  background-color: #9747ff;
  border-radius: 0rem;
  height: 2px;
}
.mortgage-calculator input[type=range]::-moz-range-thumb {
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  height: 22px;
  width: 22px;
}
.mortgage-calculator input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #ffffff;
  outline-offset: 0.125rem;
}
@media screen and (max-width: 991px) {
  .mortgage-calculator {
    flex-direction: column;
  }
  .mortgage-calculator__label {
    font-size: 15px;
    margin-bottom: 0;
  }
}

.mortgage-result-benefits {
  display: grid;
  grid-template-columns: minmax(200px, 260px) repeat(4, auto);
  row-gap: 24px;
  justify-content: space-between;
  padding: 48px 0;
}
.mortgage-result-benefits .mortgage-date-value .value {
  color: #111827;
}
.mortgage-result-benefits--mobile {
  display: none;
}
.mortgage-result-benefits__item {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.mortgage-result-benefits__item--payment a {
  display: block;
  color: #9747FF;
  font-size: 13px;
  margin-top: 2px;
  line-height: 20px;
}
.mortgage-result-benefits__item-title {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #5A616C;
  font-size: 15px;
}
.mortgage-result-benefits__item--name {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.mortgage-result-benefits__subtitle {
  color: var(--Text-Text-1, #111827);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .mortgage-result-benefits--mobile {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }
  .mortgage-result-benefits--desktop {
    display: none;
  }
  .mortgage-result-benefits__item {
    padding: 0;
  }
  .mortgage-result-benefits__title-section {
    display: flex;
    gap: 10px;
  }
  .mortgage-result-benefits__title {
    color: var(--Text-Text-1, #111827);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    display: flex;
    flex-direction: column;
  }
  .mortgage-result-benefits__title span {
    color: var(--Text-Text-2, #5A616C);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
  }
  .mortgage-result-benefits__text-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    padding-left: 48px;
  }
  .mortgage-result-benefits__text-item {
    display: flex;
    gap: 8px;
  }
  .mortgage-result-benefits__text-item span:first-child {
    color: var(--Text-Text-2, #5A616C);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
  }
  .mortgage-result-benefits__text-item span:last-child {
    color: var(--Text-Text-1, #111827);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
  }
  .mortgage-result-benefits__payment {
    display: flex;
    flex-direction: column;
    padding-left: 48px;
    gap: 4px;
  }
  .mortgage-result-benefits__payment * {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
  }
  .mortgage-result-benefits__payment .title {
    color: var(--Text-Text-2, #5A616C);
  }
  .mortgage-result-benefits__payment span {
    color: var(--Text-Text-1, #111827);
  }
  .mortgage-result-benefits__payment a {
    color: #9747FF;
    display: inline-block;
    padding-left: 10px;
  }
}

.mortgage-result {
  display: flex;
  border-radius: 16px;
  background: linear-gradient(272deg, #CF185E 0.26%, #844B9F 45.82%, #18DEEE 98.24%);
  align-items: center;
  gap: 20px;
}
.mortgage-result img {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.mortgage-result__wrapper {
  display: flex;
  gap: 48px;
}
.mortgage-result__text {
  color: var(--Text-Text-white, #FFF);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mortgage-result__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.mortgage-result__btn {
  border-radius: 64px;
  background: var(--Button-Secondary-Light-Violet, #F5EDFF);
  padding: 14px 24px;
  color: #9747FF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
}
@media screen and (max-width: 991px) {
  .mortgage-result {
    flex-direction: column;
    gap: 32px;
  }
  .mortgage-result__wrapper {
    order: 0;
    flex-direction: column;
    width: 100%;
    padding: 32px 24px 0;
    gap: 24px;
  }
  .mortgage-result img {
    order: 1;
  }
  .mortgage-result__btn {
    text-transform: capitalize;
    font-size: 16px;
    width: 100%;
    line-height: 24px;
  }
}

.modern-people {
  padding: 80px 0;
}
.modern-people__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  max-width: 537px;
}
.modern-people__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .modern-people__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.modern-people .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.modern-people .modern-people-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.modern-people .modern-people-items__item {
  max-width: 358px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modern-people .modern-people-items__title {
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 125% */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 991px) {
  .modern-people .modern-people-items__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.modern-people .modern-people-items__content {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
@media screen and (max-width: 991px) {
  .modern-people {
    padding: 48px 0;
  }
  .modern-people .container {
    gap: 32px;
  }
  .modern-people .modern-people-items__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.posts-list {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.posts-list__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.posts-list__title h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  margin: 0;
}
.posts-list__title h3 span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .posts-list__title h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.posts-list__navigation {
  display: flex;
  gap: 16px;
  align-items: center;
}
.posts-list__navigation a {
  color: #9747FF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}
.posts-list__navigation-buttons {
  display: flex;
  gap: 12px;
}
.posts-list__navigation-button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 150px;
  border: 1px solid var(--Borders-Border-3, #B7BECA);
  background: var(--Background-BG-0, #FFF);
}
.posts-list__navigation-button:after {
  content: "›";
  position: absolute;
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 45%;
}
.posts-list__navigation-button.prev {
  transform: rotate(180deg);
}
.posts-list .posts-list-cards .posts-list-card {
  max-width: 358px;
  margin-right: 32px;
  min-height: 432px;
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}
.posts-list .posts-list-cards .posts-list-card__img img {
  height: 240px;
  object-fit: cover;
}
.posts-list .posts-list-cards .posts-list-card__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.posts-list .posts-list-cards .posts-list-card__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  max-width: 338px;
}
.posts-list .posts-list-cards .posts-list-card__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .posts-list .posts-list-cards .posts-list-card__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.posts-list .posts-list-cards .posts-list-card__text, .posts-list .posts-list-cards .posts-list-card__text * {
  color: var(--Text-Text-1, #111827);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin: 0;
}
.posts-list .posts-list-cards .posts-list-card__show-more {
  margin-top: auto;
  padding: 10px;
  background: #F5EDFF;
  color: #9747FF;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
}

.news-block .posts-list .posts-list-cards .posts-list-card {
  min-height: 400px;
}

.forms-payment-block-home .posts-list {
  gap: 28px;
}
.forms-payment-block-home .posts-list .posts-list-cards .posts-list-card {
  max-width: 260px;
  margin-right: 32px;
  min-height: 365px;
}
.forms-payment-block-home .posts-list .posts-list-cards .posts-list-card__img {
  max-height: 170px;
}
.forms-payment-block-home .posts-list .posts-list-cards .posts-list-card__img img {
  height: 170px;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .posts-list {
    padding: 48px 0;
    gap: 32px;
  }
  .posts-list__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .posts-list__navigation-buttons {
    display: none;
  }
  .posts-list .posts-list-cards .posts-list-card {
    margin-right: 0 !important;
    max-width: calc(100vw - 40px) !important;
  }
  .posts-list .posts-list-cards .posts-list-card__title {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.comfort {
  padding: 80px 0;
}
.comfort .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comfort__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  max-width: 537px;
}
.comfort__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .comfort__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.comfort .comfort-block {
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
.comfort .comfort-block .comfort-block-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav li {
  padding: 0;
  margin: 0;
  width: 100%;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav a {
  display: flex;
  padding: 12px;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid #B7BECA;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav a.active {
  border-color: #9747FF;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav a:hover {
  border-color: #9747FF;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav a {
  color: #5A616C;
}
.comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav a.active {
  color: #111827;
}
.comfort .comfort-block .comfort-block-tabs__content p {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  margin-bottom: 12px;
}
.comfort .comfort-block .comfort-block-tabs__content p:last-child {
  margin: 0;
}
.comfort .comfort-block .comfort-block-slider {
  max-width: 550px;
  height: 550px;
  position: relative;
}
.comfort .comfort-block .comfort-block-slider__navigation {
  position: absolute;
  top: 35%;
  z-index: 2;
  display: flex;
  width: 95%;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}
.comfort .comfort-block .comfort-block-slider__navigation-btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 150px;
  border: 1px solid var(--Borders-Border-3, #B7BECA);
  background: var(--Background-BG-0, #FFF);
  background: rgba(255, 255, 255, 0.12);
  border: none;
}
.comfort .comfort-block .comfort-block-slider__navigation-btn:after {
  content: "›";
  position: absolute;
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 45%;
}
.comfort .comfort-block .comfort-block-slider__navigation-btn.prev {
  transform: rotate(180deg);
}
.comfort .comfort-block .comfort-block-slider__navigation-btn:after {
  color: #fff;
}
.comfort .comfort-block .comfort-block-slider__slide img {
  max-width: 550px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .comfort {
    padding: 48px 0;
  }
  .comfort .container {
    gap: 32px;
  }
  .comfort .comfort-block {
    flex-direction: column;
  }
  .comfort .comfort-block .comfort-block-slider {
    margin: 0 auto;
  }
  .comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav {
    align-items: flex-end;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .comfort .comfort-block .comfort-block-tabs .comfort-block-tabs-nav li a {
    min-width: max-content;
  }
}
@media screen and (max-width: 991px) and (max-width: 576px) {
  .comfort .comfort-block .comfort-block-slider {
    width: 100vw;
    transform: translateX(-20px);
    height: auto;
  }
  .comfort .comfort-block .comfort-block-slider__navigation {
    top: 38%;
  }
  .comfort .comfort-block .comfort-block-slider__slide img {
    max-width: 100vw;
  }
}
.have-questions {
  background: linear-gradient(0deg, #5C22A7 0%, #5C22A7 100%), linear-gradient(272deg, #CF185E 0.26%, #844B9F 45.82%, #18DEEE 98.24%);
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
.have-questions p {
  margin: 0;
}
.have-questions .wpcf7-spinner {
  display: none;
}
.have-questions__wrapper {
  max-width: 1004px;
}
.have-questions__bg-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.have-questions__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  color: #fff;
  margin-bottom: 12px;
}
.have-questions__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .have-questions__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.have-questions__subtitle {
  color: var(--Text-Text-white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  margin-bottom: 48px;
}
.have-questions .have-questions-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.have-questions .have-questions-form__privacy {
  color: var(--Text-Text-white, #FFF);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  opacity: 0.8;
}
.have-questions .have-questions-form__inputs {
  display: flex;
  gap: 16px;
}
.have-questions .have-questions-form__inputs input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 18px;
  cursor: pointer;
  color: var(--Text-Text-white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  border: none;
}
.have-questions .have-questions-form__inputs input:focus {
  border: none;
  outline: none;
}
.have-questions .have-questions-form__inputs input::placeholder {
  opacity: 0.5;
  color: #FFF;
}
.have-questions .have-questions-form__inputs input[type=submit] {
  background: #9747FF;
}

@media screen and (max-width: 991px) {
  .have-questions {
    padding: 48px 0;
  }
  .have-questions__title {
    margin-bottom: 8px;
  }
  .have-questions__subtitle {
    margin-bottom: 32px;
  }
  .have-questions__bg-logo {
    display: none;
  }
  .have-questions .have-questions-form__inputs {
    flex-direction: column;
  }
  .have-questions .have-questions-form input {
    font-size: 16px;
    padding: 12px 16px;
  }
  .have-questions .have-questions-form input[type=submit] {
    width: 100%;
    text-align: center;
  }
}
.contacts {
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contacts__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  margin-bottom: 24px;
}
.contacts__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .contacts__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.contacts .contacts-columns {
  display: flex;
  justify-content: space-between;
}
.contacts .contacts-columns__item {
  max-width: 208px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts .contacts-columns__title {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.contacts .contacts-columns__text {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}
.contacts .contacts-columns__text--time-work {
  display: flex;
  flex-direction: column;
}
.contacts .contacts-columns__text--phone a {
  color: var(--Text-Text-1, #111827);
}
.contacts .contacts-columns__text--mail a {
  color: #9747FF;
}
.contacts .contacts-columns__text--socials {
  display: flex;
  gap: 6px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .contacts {
    padding: 48px 0;
    gap: 32px;
  }
  .contacts__title {
    margin-bottom: 32px;
  }
  .contacts .contacts-columns {
    flex-direction: column;
    gap: 16px;
  }
  .contacts .contacts-columns__text {
    line-height: 24px;
  }
  .contacts .contacts-columns__item {
    max-width: 100%;
  }
  .contacts .contacts-map {
    height: 300px;
  }
  .contacts .contacts-map iframe {
    height: 100%;
  }
}
.about-builder {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding: 24px 0 64px;
}
@media screen and (min-width: 1500px) {
  .about-builder {
    width: 79.3vw;
  }
}
.about-builder .about-builder-content {
  display: flex;
  flex-direction: column;
  max-width: 583px;
  max-height: 617px;
  justify-content: space-between;
}
.about-builder .about-builder-content__logo {
  max-width: 364px;
  object-fit: cover;
}
.about-builder .about-builder-content__logo-subtitle {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-builder .about-builder-content__subtitle {
  color: var(--Text-Text-1, #111827);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.about-builder .about-builder-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-builder .about-builder-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-builder .about-builder-info__title {
  color: var(--Text-Text-1, #111827);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.about-builder .about-builder-info__subtitle {
  color: var(--Text-Text-2, #5A616C);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.about-builder .about-builder-map {
  position: relative;
}
.about-builder .about-builder-map__list {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.about-builder .about-builder-map__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-bottom: 8px;
}
.about-builder .about-builder-map__list li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}
.about-builder .about-builder-map__list li:first-child:before {
  background: #FBBA21;
}
.about-builder .about-builder-map__list li:last-child:before {
  background: #080F08;
}
@media screen and (max-width: 991px) {
  .about-builder {
    flex-direction: column;
    padding: 24px 0 48px;
    gap: 42px;
  }
  .about-builder .about-builder-content {
    max-height: none;
    gap: 48px;
  }
  .about-builder .about-builder-content__logo {
    max-width: 240px;
  }
  .about-builder .about-builder-content__logo-subtitle {
    gap: 16px;
  }
  .about-builder .about-builder-content__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .about-builder .about-builder-content .about-builder-info__title {
    font-size: 24px;
    line-height: 36px; /* 150% */
  }
  .about-builder .about-builder-content .about-builder-info__subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .about-builder .about-builder-map {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    width: 100vw;
    transform: translateX(-20px);
  }
  .about-builder .about-builder-map__list {
    position: static;
    padding-left: 20px;
  }
  .about-builder .about-builder-map img {
    object-fit: cover;
  }
}
@media screen and (max-width: 991px) and (max-width: 576px) {
  .about-builder .about-builder-map img {
    height: 300px;
  }
}
.about-builder-banner {
  background: url("/wp-content/themes/twentytwenty-child/assets/images/about-builder-banner.jpg") bottom no-repeat;
  height: 960px;
  padding: 80px 0;
}
.about-builder-banner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 909px;
  width: 100%;
}
.about-builder-banner__title {
  color: var(--Text-Text-white, #FFF);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  text-shadow: 1px 1px black;
}
.about-builder-banner__content {
  display: flex;
  flex-direction: column;
  text-shadow: 1px 1px black;
}
.about-builder-banner__content p {
  color: var(--Text-Text-white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  margin-bottom: 0;
}
.about-builder-banner__content p:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
  .about-builder-banner {
    height: 1282px;
    background-position-x: 38%;
    background-position-y: bottom;
  }
  .about-builder-banner__title {
    font-size: 18px;
    line-height: 28px;
  }
}
.our-rewards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 0 40px;
}
.our-rewards__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
.our-rewards__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .our-rewards__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.our-rewards .our-rewards-slider__slide {
  max-width: 260px;
}
.our-rewards .our-rewards-slider__slide > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.our-rewards .our-rewards-slider__slide > div:hover img {
  filter: unset;
}
.our-rewards .our-rewards-slider__text {
  color: var(--Text-Text-1, #111827);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}
.our-rewards .our-rewards-slider img {
  filter: grayscale(1);
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .our-rewards {
    gap: 32px;
  }
  .our-rewards .our-rewards-slider__slide {
    max-width: 100%;
  }
  .our-rewards .our-rewards-slider__slide img {
    filter: unset;
  }
}
.forms-payment-banner {
  height: 960px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/wp-content/themes/twentytwenty-child/assets/images/forms-payment-bg.png") lightgray 50%/cover no-repeat;
  padding: 160px 0 138px;
}
.forms-payment-banner * {
  color: #fff !important;
}
.forms-payment-banner .container-breadcrumbs {
  display: block !important;
}
.forms-payment-banner__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  margin-bottom: 16px;
}
.forms-payment-banner__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .forms-payment-banner__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.forms-payment-banner__subtitle {
  max-width: 540px;
  margin-bottom: 64px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.forms-payment-banner .forms-payment-banner-list {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.forms-payment-banner .forms-payment-banner-list__item {
  width: 100%;
  padding: 14px 24px;
  display: block;
  border-radius: 64px;
  background: #9747FF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  position: relative;
}
.forms-payment-banner .forms-payment-banner-list__item:after {
  content: "🡢";
  position: absolute;
  right: 24px;
}

@media screen and (max-width: 576px) {
  .forms-payment-banner {
    padding: 116px 0 64px;
    height: 812px;
  }
  .forms-payment-banner .container-breadcrumbs {
    padding: 0;
  }
  .forms-payment-banner .container-breadcrumbs #breadcrumbs {
    margin: 0;
  }
  .forms-payment-banner .container-breadcrumbs #breadcrumbs * {
    font-size: 15px;
  }
  .forms-payment-banner__subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 50px;
  }
  .forms-payment-banner .forms-payment-banner-list {
    gap: 16px;
  }
}
.apartment-card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.apartment-card__img {
  max-width: 376px;
  height: 250px;
  width: 100%;
  border: 1px solid var(--Borders-Border-1, #EBEDF1);
}
.apartment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.apartment-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.apartment-card__tag {
  display: block;
  color: var(--Text-Text-white, #FFF);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 153.846% */
  padding: 4px 8px;
  background: #06F;
  border-radius: 6px;
}
.apartment-card__title {
  color: var(--Text-Text-1, #111827);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 125% */
  margin: 0;
}
@media screen and (max-width: 991px) {
  .apartment-card__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.apartment-card__title a {
  color: inherit;
}
.apartment-card__description-item {
  display: grid;
  grid-template-columns: max-content max-content;
  row-gap: 12px;
  column-gap: 14px;
  grid-auto-rows: max-content;
}
.apartment-card__description-item .name {
  color: var(--Text-Text-2, #5A616C);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  grid-column: 1/2;
}
.apartment-card__description-item .value {
  grid-column: 2/3;
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
}
.apartment-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.apartment-card__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 12px;
}
.apartment-card__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.apartment-card__btn {
  display: block;
  width: fit-content;
  padding: 14px 24px;
  border-radius: 64px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  word-break: auto-phrase;
  text-wrap: nowrapx;
}
.apartment-card__btn:hover {
  color: #fff;
}
.apartment-card__favorite {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #F7F8F9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
}
.apartment-card__favorite.added {
  background: #F5EDFF;
}
.apartment-card__favorite.added svg path {
  stroke: #9747FF;
}
.apartment-card__favorite:hover {
  background: #F5EDFF;
}
.apartment-card__favorite:hover svg path {
  stroke: #9747FF;
}

.apartment-card-favorite.apartment-card {
  display: grid;
  grid-template-areas: "check img content ." ". . actions actions";
  grid-template-columns: min-content 375px 438px 1fr;
  gap: 32px;
}
.apartment-card-favorite.apartment-card .apartment-card__checkbox {
  grid-area: check;
}
.apartment-card-favorite.apartment-card .apartment-card__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: #D2D6DC solid;
  border-width: 2px;
  border-radius: 4px;
  background: #fff;
}
.apartment-card-favorite.apartment-card .apartment-card__checkbox input[type=checkbox]:checked {
  background: #9747FF;
}
.apartment-card-favorite.apartment-card .apartment-card__checkbox input[type=checkbox]:checked::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
}
.apartment-card-favorite.apartment-card .apartment-card__checkbox input[type=checkbox]:not(:checked):hover::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  filter: invert(0.5);
  opacity: 0.5;
}
.apartment-card-favorite.apartment-card .apartment-card__img {
  grid-area: img;
  margin-left: -12px;
}
.apartment-card-favorite.apartment-card .apartment-card__content {
  grid-area: content;
}
.apartment-card-favorite.apartment-card .apartment-card-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apartment-card-favorite.apartment-card .apartment-card-actions__btn {
  display: block;
  width: fit-content;
  padding: 14px 24px;
  border-radius: 64px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.apartment-card-favorite.apartment-card .apartment-card-actions__btn:hover {
  color: #fff;
}
.apartment-card-favorite.apartment-card .apartment-card-actions__delete-btn {
  width: 52px;
  height: 52px;
  border-radius: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Button-Secondary-Grey, #F7F8F9);
  cursor: pointer;
}
.apartment-card-favorite.apartment-card .apartment-card-actions__wrapper {
  display: flex;
  justify-content: space-between;
}
.apartment-card-favorite.apartment-card .apartment-card-actions__wrapper .apartment-card-actions__wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}
.apartment-card-favorite.apartment-card .apartment-card-actions .apartment-card-note__title {
  color: #9747FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
}
.apartment-card-favorite.apartment-card .apartment-card-actions .apartment-card-note__title.opened {
  color: #5A616C;
}
.apartment-card-favorite.apartment-card .apartment-card-actions .apartment-card-note__subtitle {
  color: var(--Text-Text-2, #5A616C);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 12px;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__button {
  padding: 10px;
  background: #9747FF;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 18px;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__button.cancel {
  background: #F5EDFF;
  color: #9747FF;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__textarea-wrapper {
  position: relative;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__textarea-wrapper:after {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/pencil.png");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form textarea {
  border-radius: 10px;
  border: 2px solid var(--Borders-Border-1, #EBEDF1);
  background: var(--Background-BG-0, #FFF);
  padding: 14px 20px 14px 16px;
  color: var(--Text-Text-1, #111827);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form textarea[name=apartment-card-note-saved] {
  height: auto;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form textarea[name=apartment-card-note-no-save] {
  min-height: 141px;
  height: auto;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form textarea[name=apartment-card-note-no-save]:focus, .apartment-card-favorite.apartment-card .apartment-card-note-form textarea[name=apartment-card-note-no-save]:focus-visible {
  border-color: #9747FF;
  outline: none;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 137.5% */
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__title span.delete {
  font-size: 14px;
  color: #9747FF;
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__subtitle {
  margin-top: 6px;
  color: var(--Text-Text-2, #5A616C);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
}
.apartment-card-favorite.apartment-card .apartment-card-note-form__wrapper--not-saved {
  display: none;
}

@media screen and (max-width: 991px) {
  .apartment-card-favorite.apartment-card {
    grid-template-areas: "check img" "content content" "actions actions";
    grid-template-columns: min-content 1fr;
  }
  .apartment-card-favorite.apartment-card .apartment-card-actions__wrapper {
    gap: 32px;
  }
  .apartment-card-favorite.apartment-card .apartment-card-actions__wrapper .apartment-card-actions__wrapper {
    flex-direction: column;
  }
  .apartment-card-favorite.apartment-card .apartment-card-actions__btn {
    width: 100%;
    text-align: center;
    gap: 8px;
  }
  .apartment-card-favorite.apartment-card .apartment-card-note-form__buttons {
    flex-direction: column;
  }
  .apartment-card-favorite.apartment-card .apartment-card-note-form__button {
    width: 100%;
  }
  .apartment-card {
    flex-direction: column;
    gap: 24px;
  }
  .apartment-card__img {
    max-width: 100%;
  }
  .apartment-card__title {
    font-size: 24px;
    line-height: 32px;
  }
  .apartment-card__content {
    max-width: 100%;
    width: 100%;
  }
  .apartment-card__description {
    grid-template-columns: 1fr;
  }
  .apartment-card__buttons {
    padding-top: 8px;
    width: 100%;
    justify-content: space-between;
  }
  .apartment-card__btn {
    flex: 1;
    text-align: center;
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
  .apartment-card__tags {
    gap: 8px;
  }
  .apartment-card__tag {
    font-size: 12px;
  }
  .apartment-card__description-item {
    width: max-content;
  }
  .apartment-card__description-item span.name {
    font-size: 16px;
    min-width: 100px;
    max-width: 100px;
  }
  .apartment-card__description-item span.value {
    font-size: 18px;
  }
}
.apartment__title {
  color: var(--Text-Text-1, #111827);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  margin: 0;
}
@media screen and (max-width: 991px) {
  .apartment__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.apartment__address {
  color: #5A616C;
  font-size: 14px;
  padding: 6px 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apartment__address a {
  display: block;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #9747FF;
  font-size: 14px;
}

.container-apartment {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .apartment__title {
    color: var(--Text-Text-1, #111827);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
    margin: 0;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .apartment__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .apartment__address {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding-top: 0;
  }
}
.slick-dots li {
  margin: 0 -2px;
}

.slick-dots li button:before {
  font-size: 8px !important;
  color: #9747FF !important;
}

.slick-dots {
  bottom: -50px !important;
}

.category-apartments .posts-pagination {
  margin: 32px 0 64px;
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 991px) {
  .category-apartments .posts-pagination {
    flex-wrap: wrap;
  }
}
.category-apartments .posts-pagination__wrapper {
  align-self: flex-end;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
}
.category-apartments .posts-pagination__wrapper ul {
  display: flex;
  gap: 12px;
}
.category-apartments .posts-pagination__wrapper ul li {
  margin: 0;
}
.category-apartments .posts-pagination__wrapper .paginationjs-next, .category-apartments .posts-pagination__wrapper .paginationjs-prev {
  border: none !important;
}
.category-apartments .posts-pagination__wrapper .paginationjs-next a, .category-apartments .posts-pagination__wrapper .paginationjs-prev a {
  font-size: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-apartments .posts-pagination__wrapper .paginationjs-page {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
}
.category-apartments .posts-pagination__wrapper .paginationjs-page a {
  border: 1.5px solid var(--Borders-Border-1, #EBEDF1);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.category-apartments .posts-pagination__wrapper .paginationjs-page a:hover {
  border: 1.5px solid var(--Borders-Border-3, #B7BECA);
  background: unset;
}
.category-apartments .posts-pagination__wrapper .paginationjs-page.active a {
  background: #9747FF !important;
  height: 100%;
}
.category-apartments .posts-pagination__wrapper .paginationjs-ellipsis {
  border: none;
}
.category-apartments .posts-pagination__wrapper .paginationjs-ellipsis a {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 3px;
}
.category-apartments .posts-pagination__load-more {
  align-self: flex-end;
  width: max-content;
  padding: 17px 24px;
  background: #F5EDFF;
  color: #9747FF;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 18px;
  cursor: pointer;
  padding: 14px 34px;
}
.category-apartments #results {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 24px;
}
.category-apartments h1 {
  color: var(--Text-Text-1, #111827);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  margin: 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .category-apartments h1 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.category-apartments .filter-block-visible {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}
.category-apartments .filter-block-visible__left {
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-apartments .filter-block-visible__left label {
  display: flex;
  gap: 12px;
  color: var(--Text-Text-2, #5A616C);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  margin: 0;
}
.category-apartments .filter-block-visible__left label input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: #D2D6DC solid;
  border-width: 2px;
  border-radius: 4px;
  background: #fff;
}
.category-apartments .filter-block-visible__left label input[type=checkbox]:checked {
  background: #9747FF;
}
.category-apartments .filter-block-visible__left label input[type=checkbox]:checked::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
}
.category-apartments .filter-block-visible__left label input[type=checkbox]:not(:checked):hover::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  filter: invert(0.5);
  opacity: 0.5;
}
.category-apartments .filter-block-visible__right {
  display: flex;
  gap: 8px;
}
.category-apartments .filter-block-visible__right button {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  padding: 0;
}
.category-apartments .filter-block-visible__right button.view-page-btn {
  background: #fff;
  transition: 1s;
}
.category-apartments .filter-block-visible__right button.view-page-btn svg path {
  stroke: #9747FF;
}
.category-apartments .filter-block-visible__right button.view-page-btn.active {
  background: #9747FF;
}
.category-apartments .filter-block-visible__right button.view-page-btn.active svg path {
  stroke: #fff;
}
.category-apartments .filter-settings {
  padding: 24px 0;
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.category-apartments .filter-settings__wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}
.category-apartments .filter-settings__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--Text-Text-3, #9299A5);
  font-size: 16px;
  order: 2;
}
.category-apartments .filter-settings span {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 18px;
  line-height: 24px;
}
.category-apartments .filter-settings__order-by {
  position: relative;
  height: 100%;
  min-width: 200px;
}
.category-apartments .filter-settings__order-by:hover .filter-settings__order-by-list {
  display: block;
}
.category-apartments .filter-settings__order-by-list {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 197px;
  top: 35px;
  right: 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #fff;
  z-index: 2;
  box-shadow: 0px 8px 20px 0px rgba(4, 19, 43, 0.04);
}
.category-apartments .filter-settings__order-by-list li {
  cursor: pointer;
  padding: 13px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}
.category-apartments .filter-settings__order-by-list li:first-child {
  border-radius: 10px 10px 0 0;
}
.category-apartments .filter-settings__order-by-list li:last-child {
  border-radius: 0 0 10px 10px;
}
.category-apartments .filter-settings__order-by-list li:hover {
  background: #F7F8F9;
}
.category-apartments .filter-settings__open {
  padding: 14px 39px;
  background: #F5EDFF;
  color: #9747FF;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  cursor: pointer;
}
.category-apartments .filter-block-hidding {
  padding: 32px;
  background: #F7F8F9;
  border-radius: 24px;
  display: none;
  margin-bottom: 24px;
}
.category-apartments .filter-block-hidding label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--Text-Text-1, #111827);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 133.333% */
}
.category-apartments .filter-block-hidding .house-number {
  display: flex;
  gap: 24px;
  flex-direction: row;
  margin-top: 32px;
  margin-bottom: 32px;
}
.category-apartments .filter-block-hidding .house-number span {
  display: flex;
  gap: 12px;
}
.category-apartments .filter-block-hidding .house-number span input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: #D2D6DC solid;
  border-width: 2px;
  border-radius: 4px;
  background: #fff;
  padding: 0;
}
.category-apartments .filter-block-hidding .house-number span input[type=checkbox]:checked {
  background: #9747FF;
}
.category-apartments .filter-block-hidding .house-number span input[type=checkbox]:checked::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
}
.category-apartments .filter-block-hidding .house-number span input[type=checkbox]:not(:checked):hover::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  filter: invert(0.5);
  opacity: 0.5;
}
.category-apartments .filter-block-hidding .filter-block__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.category-apartments .filter-block-hidding .filter-block__wrapper .min, .category-apartments .filter-block-hidding .filter-block__wrapper .max {
  position: relative;
}
.category-apartments .filter-block-hidding .filter-block__wrapper .min:before, .category-apartments .filter-block-hidding .filter-block__wrapper .max:before {
  display: flex;
  height: 100%;
  position: absolute;
  left: 16px;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.category-apartments .filter-block-hidding .filter-block__wrapper .min:before {
  content: "от";
}
.category-apartments .filter-block-hidding .filter-block__wrapper .max:before {
  content: "до";
}
.category-apartments .filter-block-hidding .filter-block__input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 282px;
}
.category-apartments .filter-block-hidding .filter-block__input-wrapper--pricesq {
  max-width: 346px;
}
.category-apartments .filter-block-hidding .filter-block__input-wrapper--price {
  max-width: 393px;
}
.category-apartments .filter-block-hidding input {
  border-radius: 10px;
  border: 2px solid var(--Borders-Border-1, #EBEDF1);
  background: var(--Background-BG-0, #FFF);
  width: 100%;
  padding: 12px 1px 12px 47px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.category-apartments .filter-block-hidding input[name=apartment_number] {
  padding: 12px 16px;
}
.category-apartments .filter-block-hidding input::placeholder {
  color: #9299A5;
}
.category-apartments .filter-block-hidding #reset-filters {
  padding: 17px 24px;
  background: #F5EDFF;
  color: #9747FF;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 18px;
  cursor: pointer;
  text-transform: capitalize;
}
.category-apartments .filter-block-hidding #apply-filters {
  text-transform: capitalize;
  margin-right: 12px;
  padding: 17px 24px;
  background: #9747FF;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 18px;
  cursor: pointer;
}
.category-apartments .filters-selected {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
.category-apartments .filters-selected .selected-filter {
  color: #9747FF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  padding: 6px 10px;
  background: #F5EDFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.category-apartments .filters-selected .remove-filter {
  color: #9747FF;
  font-size: 31px;
  cursor: pointer;
}
.category-apartments .filters-selected #reset-all-filters {
  border-radius: 6px;
  background: var(--Background-BG-1, #F7F8F9);
  padding: 6px 10px;
  color: var(--Text-Text-2, #5A616C);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
@media screen and (min-width: 991px) {
  .category-apartments .filter-block__wrapper label:first-child {
    max-width: 282px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .category-apartments .filters-selected {
    padding: 0;
    order: 1;
  }
  .category-apartments .filters-selected.empty {
    display: none;
  }
  .category-apartments .filters-selected .selected-filter {
    font-size: 13px;
    padding: 4px 8px;
    line-height: 20px;
    max-height: 28px;
  }
  .category-apartments .filters-selected #reset-all-filters {
    padding: 4px 8px;
  }
  .category-apartments .posts-pagination {
    height: auto;
    align-items: center;
    gap: 24px;
    margin: 42px 0 64px;
  }
  .category-apartments .posts-pagination__wrapper {
    align-self: center;
  }
  .category-apartments .posts-pagination__wrapper li {
    width: 30px !important;
    height: 30px !important;
  }
  .category-apartments .posts-pagination__wrapper li a {
    min-height: 30px !important;
  }
  .category-apartments .posts-pagination__load-more {
    align-self: center;
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
  }
  .category-apartments h1 {
    font-size: 28px;
  }
  .category-apartments .filters__wrapper {
    flex-direction: column;
    gap: 32px;
    border-radius: 24px;
    background: var(--Background-BG-1, #F7F8F9);
    padding: 24px;
    display: none;
    max-width: calc(100vw - 40px);
    order: 1;
  }
  .category-apartments .filters .filter-block-visible {
    display: none;
    padding: 0;
  }
  .category-apartments .filters .filter-block-visible__right {
    display: none;
  }
  .category-apartments .filters .filter-block-visible__left {
    gap: 16px;
    margin-bottom: 32px;
  }
  .category-apartments .filters .filter-block-visible__left label {
    font-size: 16px;
  }
  .category-apartments .filters .filter-block-hidding {
    padding: 0;
    margin-bottom: 0;
  }
  .category-apartments .filters .filter-block-hidding input {
    font-size: 16px !important;
    max-height: 48px;
  }
  .category-apartments .filters .filter-block-hidding label {
    max-width: 100%;
    width: 100%;
    line-height: 28px;
    margin-bottom: 0;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--price {
    flex-direction: column;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--price span {
    width: 100%;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--price input {
    padding: 14px 16px;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--price span {
    padding-left: 32px;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--price span:before {
    left: 0px;
    text-transform: capitalize;
    color: var(--Text-Text-1, #111827);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--pricesq {
    flex-direction: column;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--pricesq span {
    width: 100%;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--pricesq input {
    padding: 14px 16px;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--pricesq span {
    padding-left: 32px;
  }
  .category-apartments .filters .filter-block-hidding .filter-block__input-wrapper--pricesq span:before {
    left: 0px;
    text-transform: capitalize;
    color: var(--Text-Text-1, #111827);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .category-apartments .filters .filter-block-hidding .spacer {
    display: none;
  }
  .category-apartments .filters .filter-block-hidding .house-number {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 12px;
    column-gap: 12px;
    justify-content: space-between;
  }
  .category-apartments .filters .filter-block-hidding .house-number .title {
    grid-column: span 5;
  }
  .category-apartments .filters .filter-block-hidding .house-number span:not(.title) {
    color: var(--Text-Text-2, #5A616C);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    gap: 10px;
  }
  .category-apartments .filters .filter-block-hidding #apply-filters {
    font-size: 16px;
    padding: 12px 24px;
    margin-right: 9px;
    margin-top: 32px;
  }
  .category-apartments .filters .filter-block-hidding #reset-filters {
    padding: 12px 24px;
    font-size: 16px;
    margin-top: 32px;
  }
  .category-apartments .filters .filter-settings {
    gap: 18px;
    flex-direction: column;
    padding: 24px 0 18px;
  }
  .category-apartments .filters .filter-settings__wrapper {
    flex-direction: column;
    gap: 16px;
    order: 0;
  }
  .category-apartments .filters .filter-settings__open {
    padding: 12px;
    width: 100% !important;
    justify-content: center !important;
    order: 0;
  }
  .category-apartments .filters .filter-settings__open span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .category-apartments .filters .filter-settings__order-by {
    align-self: flex-start !important;
    order: 2;
  }
  .category-apartments .filters .filter-settings__order-by .value {
    color: var(--Text-Text-2, #5A616C);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .category-apartments .filters .filter-settings__order-by-list li {
    padding: 9px 16px;
  }
  .category-apartments .filters .filter-settings__order-by-list li:first-child {
    padding: 17px 16px 9px;
  }
  .category-apartments .filters .filter-settings__order-by-list li:last-child {
    padding: 9px 16px 17px;
  }
  .category-apartments #results {
    gap: 32px;
  }
}

body.block-view .category-apartments #results {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 32px;
  flex-direction: row;
}
body.block-view .category-apartments #results .apartment-card {
  width: 100%;
  flex-direction: column;
  max-width: 358px;
}
body.block-view .category-apartments #results .apartment-card__description {
  grid-template-columns: 1fr;
}
body.block-view .category-apartments #results .apartment-card__description span:first-child {
  min-width: 100px;
}

.about-builder-contacts .contacts {
  padding-top: 40px;
}

body.page-template-template-forms-payment .header {
  transition: 0.3s;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 122.68%);
}
body.page-template-template-forms-payment .header__mail {
  color: #9747FF !important;
}
body.page-template-template-forms-payment .header__top-bg {
  background: rgba(0, 0, 0, 0);
}
body.page-template-template-forms-payment .header__menu .menu > li:after {
  color: #fff;
}
body.page-template-template-forms-payment .header__menu .menu > li > a {
  color: #fff;
}
body.page-template-template-forms-payment .header__top * {
  color: #fff;
}
body.page-template-template-forms-payment #page {
  padding-top: 0 !important;
}
body.page-template-template-forms-payment .mobile-menu {
  background: rgba(255, 255, 255, 0);
}
body.page-template-template-forms-payment .mobile-menu__burger span {
  background: #fff;
}
body.page-template-template-forms-payment.scroll .header {
  transition: 0.3s;
  background: #fff;
}
body.page-template-template-forms-payment.scroll .header__mail {
  color: #9747FF !important;
}
body.page-template-template-forms-payment.scroll .header__top-bg {
  background: rgba(0, 0, 0, 0);
}
body.page-template-template-forms-payment.scroll .header__menu .menu > li:after {
  color: #000;
}
body.page-template-template-forms-payment.scroll .header__menu .menu > li > a {
  color: #000;
}
body.page-template-template-forms-payment.scroll .header__top * {
  color: #000;
}
body.page-template-template-forms-payment.scroll .mobile-menu {
  background: rgb(255, 255, 255);
}
body.page-template-template-forms-payment.scroll .mobile-menu__burger span {
  background: #000;
}
body.page-template-template-forms-payment .container-breadcrumbs {
  display: none;
}

.forms-payment-mortgage {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.forms-payment-mortgage__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}
.forms-payment-mortgage__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .forms-payment-mortgage__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.forms-payment-mortgage .forms-payment-mortgage-banks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.forms-payment-mortgage .forms-payment-mortgage-banks__content {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.forms-payment-mortgage .forms-payment-mortgage-banks__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.forms-payment-mortgage .forms-payment-mortgage-banks__item {
  padding: 4px 8px;
  color: #9747FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px; /* 175% */
  border-radius: 6px;
  background: #F5EDFF;
}
.forms-payment-mortgage .forms-payment-mortgage-advantages {
  display: flex;
  justify-content: space-between;
}
.forms-payment-mortgage .forms-payment-mortgage-advantages__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
  width: 100%;
}
.forms-payment-mortgage .forms-payment-mortgage-advantages__title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--Text-Text-1, #111827);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.forms-payment-mortgage .forms-payment-mortgage-advantages__text {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.forms-payment-mortgage .forms-payment-mortgage-callback a {
  display: block;
  width: fit-content;
  padding: 14px 14px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 35px;
}
.forms-payment-mortgage .forms-payment-mortgage-callback a:hover {
  color: #fff;
}

.forms-payment-block {
  padding: 80px 0;
  display: grid;
  grid-template-areas: "title title" "left right";
  row-gap: 24px;
  column-gap: 48px;
}
.forms-payment-block__title {
  grid-area: title;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
.forms-payment-block__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .forms-payment-block__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.forms-payment-block .forms-payment-block-content {
  grid-area: right;
  max-width: 555px;
  width: 100%;
}
.forms-payment-block .forms-payment-block-content p {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}
.forms-payment-block .forms-payment-block-content p:not(:last-child) {
  margin-bottom: 12px;
}
.forms-payment-block .forms-payment-block-content a {
  display: block;
  width: fit-content;
  padding: 10px 55px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  margin-top: 24px;
}
.forms-payment-block .forms-payment-block-content a:hover {
  color: #fff;
}
.forms-payment-block .forms-payment-block-list {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.forms-payment-block .forms-payment-block-list__list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
.forms-payment-block .forms-payment-block-list__list li {
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--Text-Text-1, #111827);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.forms-payment-block .forms-payment-block-list__list li svg {
  min-width: 42px;
}
.forms-payment-block .forms-payment-block-list__desc {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}

.military-payment {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 0;
}
.military-payment__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
.military-payment__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .military-payment__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.military-payment .military-payment-content {
  display: flex;
  gap: 48px;
}
.military-payment .military-payment-content__left {
  max-width: 537px;
  width: 100%;
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.military-payment .military-payment-content__right {
  max-width: 537px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.military-payment .military-payment-content__right a {
  padding: 4px 8px;
  color: #9747FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px; /* 175% */
  border-radius: 6px;
  background: #F5EDFF;
  width: fit-content;
}
.military-payment__btn {
  display: block;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.military-payment__btn:hover {
  color: #fff;
}

.trade-in-payment {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.trade-in-payment__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
.trade-in-payment__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .trade-in-payment__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.trade-in-payment__desc {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.trade-in-payment__desc p {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  margin: 0;
}
.trade-in-payment__desc p:not(:last-child) {
  margin-bottom: 12px;
}
.trade-in-payment .trade-in-payment-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trade-in-payment .trade-in-payment-steps__subtitle {
  color: var(--Text-Text-1, #111827);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.trade-in-payment .trade-in-payment-steps__items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .trade-in-payment .trade-in-payment-steps__items {
    justify-content: space-around;
  }
}
.trade-in-payment .trade-in-payment-steps__item {
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trade-in-payment .trade-in-payment-steps__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.trade-in-payment .trade-in-payment-steps__content {
  color: var(--Text-Text-2, #5A616C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.trade-in-payment__btn {
  display: block;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.trade-in-payment__btn:hover {
  color: #fff;
}

.forms-payment-contacts .contacts {
  padding: 80px 0;
}

@media screen and (max-width: 576px) {
  .forms-payment-mortgage {
    padding: 48px 0;
    gap: 32px;
  }
  .forms-payment-mortgage .forms-payment-mortgage-advantages {
    gap: 16px;
    flex-direction: column;
  }
  .forms-payment-mortgage .forms-payment-mortgage-advantages__item {
    max-width: 100%;
  }
  .forms-payment-mortgage .forms-payment-mortgage-callback a {
    width: 100%;
    text-align: center;
  }
  .forms-payment-block {
    padding: 48px 0;
    gap: 32px;
    grid-template-areas: "title" "left" "right";
  }
  .forms-payment-block .forms-payment-block-list__list li {
    font-size: 18px;
    line-height: 28px;
    align-items: flex-start;
  }
  .forms-payment-block .forms-payment-block-content a {
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin-top: 32px;
  }
  .military-payment {
    padding: 48px 0;
    gap: 32px;
  }
  .military-payment .military-payment-content {
    flex-direction: column;
    gap: 32px;
  }
  .military-payment__btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .trade-in-payment {
    padding: 48px 0;
    gap: 32px;
  }
  .trade-in-payment .trade-in-payment-steps {
    gap: 16px;
  }
  .trade-in-payment .trade-in-payment-steps__items {
    gap: 16px;
  }
  .trade-in-payment .trade-in-payment-steps__item {
    max-width: 100%;
  }
  .trade-in-payment__btn {
    width: 100%;
    text-align: center;
  }
  .forms-payment-contacts .contacts {
    padding: 48px 0;
  }
  .forms-payment-mortgage-banks .slick-slide {
    margin-right: 12px;
  }
}
.building-progress-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
.building-progress-title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .building-progress-title {
    font-size: 28px;
    line-height: 34px;
  }
}

.building-progress {
  padding: 24px 0 64px;
  display: flex;
  gap: 48px;
}
.building-progress .building-progress-dates {
  max-width: 158px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 584px;
  overflow-y: scroll;
}
.building-progress .building-progress-dates::-webkit-scrollbar {
  border-radius: 10px;
  background: var(--Background-BG-2, #F1F2F4);
  width: 6px;
}
.building-progress .building-progress-dates::-webkit-scrollbar-thumb {
  background: #9747FF;
  border-radius: 10px;
}
.building-progress .building-progress-dates__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.building-progress .building-progress-dates__months {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.building-progress .building-progress-dates__year {
  color: var(--Text-Text-1, #111827);
  font-size: 48px;
  font-weight: 600;
  line-height: 52px; /* 108.333% */
  cursor: pointer;
}
.building-progress .building-progress-dates__month {
  color: var(--Text-Text-1, #111827);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  cursor: pointer;
}
.building-progress .building-progress-dates__month.active {
  color: #9747FF;
}
.building-progress .building-progress-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.building-progress .building-progress-content__btn {
  display: block;
  width: fit-content;
  padding: 14px 14px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
}
.building-progress .building-progress-content__btn:hover {
  color: #fff;
}
.building-progress .building-progress-content__video {
  width: 934px;
  height: 524px;
}
.building-progress .building-progress-content__video iframe {
  height: 100%;
  width: 100%;
}

.building-progress-contacts .contacts {
  padding: 40px 0 0;
}

@media screen and (max-width: 1220px) {
  .building-progress {
    flex-direction: column;
  }
  .building-progress .building-progress-dates {
    flex-direction: row;
    max-width: 100%;
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 18px;
  }
  .building-progress .building-progress-dates::-webkit-scrollbar {
    height: 6px;
  }
  .building-progress .building-progress-dates__months {
    flex-direction: row;
  }
  .building-progress .building-progress-dates__month {
    width: max-content;
  }
  .building-progress .building-progress-dates__year {
    width: max-content;
  }
  .building-progress .building-progress-content__video {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .building-progress {
    padding: 24px 0 48px;
    gap: 42px;
  }
  .building-progress .building-progress-dates {
    gap: 24px;
  }
  .building-progress .building-progress-dates__item {
    gap: 8px;
  }
  .building-progress .building-progress-dates__month {
    font-size: 16px;
    line-height: 28px;
  }
  .building-progress .building-progress-dates__year {
    font-size: 24px;
    line-height: 28px;
  }
  .building-progress .building-progress-content {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .building-progress .building-progress-content__btn {
    font-size: 16px;
    text-transform: unset;
    text-align: center;
  }
  .building-progress .building-progress-content__video {
    width: 100%;
    height: 188px;
  }
  .building-progress-contacts .contacts {
    padding: 48px 0;
  }
}
.documents-block {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 48px;
}
.documents-block__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
.documents-block__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .documents-block__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.documents-block > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.documents-block__privacy, .documents-block__cookies {
  gap: 24px !important;
}
.documents-block .documents-block-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.documents-block__btn {
  display: block;
  width: fit-content;
  padding: 14px 14px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background: #9747FF;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  margin-top: auto;
  min-width: 200px;
  justify-content: center;
  padding: 10px 14px;
}
.documents-block__btn:hover {
  color: #fff;
}
.documents-block .documents-block-items__item {
  color: #9747FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.documents-contacts .contacts {
  padding: 40px 0 0;
}

@media screen and (max-width: 576px) {
  .documents-block {
    padding: 24px 0 48px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .documents-block > div {
    gap: 16px;
  }
  .documents-block__title {
    font-size: 24px;
    line-height: 32px;
  }
  .documents-block__btn {
    width: 100%;
    font-size: 16px;
  }
  .documents-block .documents-block-items__item {
    line-height: 24px;
  }
  .documents-contacts .contacts {
    padding: 48px 0;
  }
}
.contacts-page .contacts-block__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  font-weight: 600;
}
.contacts-page .contacts-block__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .contacts-page .contacts-block__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.contacts-page .contacts {
  padding: 40px 0 0;
}
.contacts-page .contacts__title {
  display: none;
}

@media screen and (max-width: 576px) {
  .contacts-page .contacts {
    padding: 24px 0 48px;
  }
}
body.home .header {
  transition: 0.3s;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 122.68%);
}
body.home .header__mail {
  color: #9747FF !important;
}
body.home .header__top-bg {
  background: rgba(0, 0, 0, 0);
}
body.home .header__menu .menu > li:after {
  color: #fff;
}
body.home .header__menu .menu > li > a {
  color: #fff;
}
body.home .header__top * {
  color: #fff;
}
body.home #page {
  padding-top: 0 !important;
}
body.home #breadcrumbs {
  display: none;
}
body.home .mobile-menu {
  background: rgba(255, 255, 255, 0);
}
body.home .mobile-menu__burger:not(.opened) span {
  background: #fff;
}
body.home.scroll .header {
  transition: 0.3s;
  background: #fff;
}
body.home.scroll .header__mail {
  color: #9747FF !important;
}
body.home.scroll .header__top-bg {
  background: rgba(0, 0, 0, 0);
}
body.home.scroll .header__menu .menu > li:after {
  color: #000;
}
body.home.scroll .header__menu .menu > li > a {
  color: #000;
}
body.home.scroll .header__top * {
  color: #000;
}
body.home.scroll .mobile-menu {
  background: rgb(255, 255, 255);
}
body.home.scroll .mobile-menu__burger span {
  background: #000;
}

.mortgage-block {
  padding: 80px 0;
}
.mortgage-block .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.mortgage-block__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  max-width: 537px;
}
.mortgage-block__title span {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .mortgage-block__title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 991px) {
  .mortgage-block {
    padding: 48px 0;
  }
  .mortgage-block .container {
    gap: 32px;
  }
}
.favorite-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 0 64px;
}

.favorite-options {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.favorite-options span {
  cursor: pointer;
}
.favorite-options__left, .favorite-options__right {
  display: flex;
  gap: 32px;
  align-items: center;
}
.favorite-options__right span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--Text-Link, #9747FF);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
}
.favorite-options__left span {
  color: var(--Text-Text-1, #111827);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.favorite-options__filter-by {
  display: flex;
  gap: 8px;
}
.favorite-options__count-selected {
  display: flex;
  align-items: center;
}
.favorite-options__count-selected input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: #D2D6DC solid;
  border-width: 2px;
  border-radius: 4px;
  background: #fff;
  margin-right: 20px;
}
.favorite-options__count-selected input[type=checkbox]:checked {
  background: #9747FF;
}
.favorite-options__count-selected input[type=checkbox]:checked::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
}
.favorite-options__count-selected input[type=checkbox]:not(:checked):hover::before {
  content: url("/wp-content/themes/twentytwenty-child/assets/images/white-check.png");
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  filter: invert(0.5);
  opacity: 0.5;
}

@media screen and (max-width: 991px) {
  .favorite-options {
    flex-direction: column;
    gap: 12px;
  }
  .favorite-options__left, .favorite-options__right {
    justify-content: space-between;
    width: 100%;
    gap: 24px;
  }
  .favorite-options__left {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}
.news-posts .news-posts-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 350px;
  min-height: 370px;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0px 0px 13px 3px rgba(0, 0, 0, 0.0392156863);
}
.news-posts .news-posts-item__date {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}
.news-posts .news-posts-item__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  color: #000;
  margin-bottom: 12px;
}
.news-posts .news-posts-item__excerpt {
  color: var(--Text-Text-1, #111827);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.news-posts .news-posts-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-posts .news-posts-item__image {
  max-height: 220px;
  height: 100%;
}
.news-posts .news-posts-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-posts .news-posts-item__show-more-btn {
  padding: 10px;
  background: #F5EDFF;
  color: #9747FF;
  font-style: normal;
  font-weight: 500;
  border-radius: 64px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
}

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