@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

:root {
  --container-width: 1166px;
  --sp: 100px;
  --tr: .3s ease;
  --trd: .3s ease .3s;
  --ff1: 'Inter';
  --default-font-family: var(--ff1);
  --heading-font-family: var(--ff1);
  --primary: #9257A9;
  --secondary: #2C2E31;
  --white: #FFFFFF;
  --black: #1E2022;
  --dark: #181818;
  --grey-100: #F1F1F1;
  --grey-300: #E8E8E8;
  --grey-400: #B3B9C1;
  --grey-700: #626667;
  --white-20: rgb(255, 255, 255, 20%);
  --red: #FF3F3F;
  --green: #00E067;
  --ss-primary-color: var(--primary);
  --ss-bg-color: var(--secondary);
  --ss-font-color: var(--grey-400);
  --ss-font-placeholder-color: var(--grey-400);
  --ss-border-color: var(--white-20);
  --ss-focus-color: var(--primary);
  --ss-main-height: 48px;
  --ss-border-radius: 0px;
  --header-height: 90px;
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Inter/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Inter/Inter-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Inter/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Inter/Inter-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Inter/Inter-Black.woff2") format("woff2");
}

body {
  font: 400 16px/1.5 var(--default-font-family), sans-serif;
  background: var(--secondary);
  min-width: 360px;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body._locked {
  overflow: hidden;
  height: 100vh;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper:has(> .wrapper__inner-wrap) {
  overflow: visible;
}

.wrapper:is(.post-type-archive-residential-real-est .wrapper),
.wrapper:is(.post-type-archive-commercial-real-esta .wrapper),
.wrapper:is(.post-type-archive-projects .wrapper) {
  overflow: visible;
}

.wrapper:is(:not(.home .wrapper)) {
  padding-top: 145px;
}

.wrapper__inner-wrap {
  overflow: hidden;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

[class*=__container] [class*=__container] {
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

b,
strong,
._bold {
  font-weight: 700;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.head {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.head__pretitle {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
}

.head__title {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.head__subtitle {
  color: var(--grey-400);
}

._accent {
  color: var(--primary);
}

.slider {
  position: relative;
}

.slider__btn {
  background: var(--grey-400);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 40px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background-color var(--tr);
}

.slider__btn:hover {
  background: var(--primary);
}

.slider__btn_prev {
  right: calc(100% + 40px);
  -webkit-mask: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2217%22%20height%3D%2227%22%20viewBox%3D%220%200%2017%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.3333%200L-1.14441e-05%2013.3333L13.3333%2026.6667L16.675%2023.3333L6.66665%2013.3333L16.675%203.33333L13.3333%200Z%22%20fill%3D%22%23B3B9C1%22%2F%3E%0A%3C%2Fsvg%3E%0A');
  mask: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2217%22%20height%3D%2227%22%20viewBox%3D%220%200%2017%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.3333%200L-1.14441e-05%2013.3333L13.3333%2026.6667L16.675%2023.3333L6.66665%2013.3333L16.675%203.33333L13.3333%200Z%22%20fill%3D%22%23B3B9C1%22%2F%3E%0A%3C%2Fsvg%3E%0A');
}

.slider__btn_next {
  left: calc(100% + 40px);
  -webkit-mask: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2217%22%20height%3D%2227%22%20viewBox%3D%220%200%2017%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.34167%200L16.675%2013.3333L3.34167%2026.6667L0%2023.3333L10.0083%2013.3333L0%203.33333L3.34167%200Z%22%20fill%3D%22%23B3B9C1%22%2F%3E%0A%3C%2Fsvg%3E%0A');
  mask: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2217%22%20height%3D%2227%22%20viewBox%3D%220%200%2017%2027%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.34167%200L16.675%2013.3333L3.34167%2026.6667L0%2023.3333L10.0083%2013.3333L0%203.33333L3.34167%200Z%22%20fill%3D%22%23B3B9C1%22%2F%3E%0A%3C%2Fsvg%3E%0A');
}

.slider .swiper-wrapper {
  align-items: stretch;
}

.slider .swiper-slide {
  height: initial;
}

._hidden {
  display: none;
  overflow: hidden;
}

._loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background: center 40px url(../img/loading.svg) no-repeat;
}

.social {
  display: grid;
  grid-template-columns: 30px 30px 30px;
  align-items: center;
  gap: 15px;
}

.social__link {
  background: #9257A9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.social__link img {
  width: 16px;
  height: 16px;
}

.btn {
  font: 700 12px var(--ff1);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 20px 22px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: transparent;
}

.btn:before,
.btn:after {
  background: var(--primary);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 51%;
  height: 100%;
  z-index: 1;
  transition: var(--tr);
}

.btn:after {
  left: auto;
  right: 0;
}

.btn:hover:before {
  transform: translateY(3px);
}

.btn:hover:after {
  transform: translateY(-3px);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn_outline {
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--white-20);
}

.btn_outline:before,
.btn_outline:after {
  display: none;
}

.btn-transparent {
  font: 700 14px var(--ff1);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--tr);
}

.btn-transparent:after {
  background: currentColor;
  content: "";
  display: block;
  flex-shrink: 0;
  aspect-ratio: 46/28;
  width: 46px;
  -webkit-mask: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2246%22%20height%3D%2228%22%20viewBox%3D%220%200%2046%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M30.1293%208L29.1759%208.95351L33.4187%2013.1964H0V14.5449H33.4187L29.1759%2018.7878L30.1293%2019.7413L36%2013.8706L30.1293%208Z%22%20fill%3D%22white%22%2F%3E%0A%3Ccircle%20cx%3D%2232%22%20cy%3D%2214%22%20r%3D%2213.5%22%20stroke%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2246%22%20height%3D%2228%22%20viewBox%3D%220%200%2046%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M30.1293%208L29.1759%208.95351L33.4187%2013.1964H0V14.5449H33.4187L29.1759%2018.7878L30.1293%2019.7413L36%2013.8706L30.1293%208Z%22%20fill%3D%22white%22%2F%3E%0A%3Ccircle%20cx%3D%2232%22%20cy%3D%2214%22%20r%3D%2213.5%22%20stroke%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  transition: background-color var(--tr);
}

.btn-transparent:hover {
  color: var(--primary);
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.btn-wrap:before,
.btn-wrap:after {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  flex: 1 1 auto;
  display: block;
  height: 1px;
  pointer-events: none;
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input .flag-container {
  top: -11px;
}

.country-list .country-name {
  color: #333;
}

.form {
  background: var(--black);
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.form__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__field input,
.form__field textarea {
  font: 16px var(--default-font-family);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--white-20);
  background: none;
  color: var(--white);
  padding: 0 0 10px;
  resize: vertical;
}

.form__field input::-moz-placeholder,
.form__field textarea::-moz-placeholder {
  color: var(--grey-400);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--grey-400);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form__field input.error,
.form__field textarea.error {
  border-color: var(--red);
}

.form__message {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--red);
}

.form__submit {
  margin-top: auto;
  width: 100%;
}

.form._sending .form__submit {
  opacity: 0.6;
  pointer-events: none;
}

.apartment-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apartment-card__plan {
  background: var(--secondary);
  position: relative;
  aspect-ratio: 214/152;
  width: 100%;
  padding: 24px;
}

.apartment-card__plan-link {
  display: block;
  height: 100%;
  width: 100%;
}

.apartment-card__plan img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.apartment-card__plan:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  width: 68px;
  top: 0;
  right: 0;
}

.apartment-card__tags.tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.apartment-card__tags.tags .tags__item {
  padding: 2px 10px;
  font-size: 8px;
}

.apartment-card__info {
  background: var(--secondary);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apartment-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.apartment-card__props {
  font-size: 10px;
}

.apartment-card__props li {
  color: var(--grey-400);
  margin-bottom: 5px;
}

.apartment-card__props li:last-child {
  margin-bottom: 0;
}

.apartment-card__props li span {
  color: var(--white);
}

.apartment-card__project {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apartment-card__project-name {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.apartment-card__project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--grey-400);
}

.apartment-card__project-location:before {
  content: "";
  background: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%201.25C8.277%201.25%205.25%204.304%205.25%208.071C5.25%209.347%205.812%2010.93%206.63%2012.509C8.431%2015.986%2011.431%2019.488%2011.431%2019.488C11.5014%2019.57%2011.5887%2019.6358%2011.6869%2019.6809C11.7851%2019.726%2011.8919%2019.7494%2012%2019.7494C12.1081%2019.7494%2012.2149%2019.726%2012.3131%2019.6809C12.4113%2019.6358%2012.4986%2019.57%2012.569%2019.488C12.569%2019.488%2015.569%2015.986%2017.37%2012.509C18.188%2010.93%2018.75%209.347%2018.75%208.071C18.75%204.304%2015.723%201.25%2012%201.25ZM12%205.25C11.2835%205.26932%2010.6028%205.56753%2010.1029%206.08115C9.60292%206.59477%209.32317%207.28323%209.32317%208C9.32317%208.71677%209.60292%209.40523%2010.1029%209.91885C10.6028%2010.4325%2011.2835%2010.7307%2012%2010.75C12.7165%2010.7307%2013.3972%2010.4325%2013.8971%209.91885C14.3971%209.40523%2014.6768%208.71677%2014.6768%208C14.6768%207.28323%2014.3971%206.59477%2013.8971%206.08115C13.3972%205.56753%2012.7165%205.26932%2012%205.25Z%22%20fill%3D%22%239257A9%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.784%2017.377C17.597%2017.621%2018.267%2017.923%2018.73%2018.277C19.03%2018.505%2019.25%2018.728%2019.25%2019C19.25%2019.16%2019.159%2019.305%2019.031%2019.45C18.819%2019.689%2018.504%2019.904%2018.114%2020.104C16.736%2020.809%2014.508%2021.25%2012%2021.25C9.492%2021.25%207.264%2020.809%205.886%2020.104C5.496%2019.904%205.181%2019.689%204.969%2019.45C4.841%2019.305%204.75%2019.16%204.75%2019C4.75%2018.728%204.97%2018.505%205.27%2018.277C5.733%2017.923%206.403%2017.621%207.216%2017.377C7.40656%2017.3197%207.56655%2017.189%207.66079%2017.0138C7.75503%2016.8385%207.77579%2016.633%207.7185%2016.4425C7.66121%2016.2519%207.53057%2016.0919%207.35532%2015.9977C7.18007%2015.9034%206.97456%2015.8827%206.784%2015.94C5.546%2016.313%204.584%2016.824%204.006%2017.389C3.498%2017.884%203.25%2018.438%203.25%2019C3.25%2019.702%203.647%2020.402%204.454%2020.986C5.87%2022.01%208.714%2022.75%2012%2022.75C15.286%2022.75%2018.13%2022.01%2019.546%2020.986C20.353%2020.402%2020.75%2019.702%2020.75%2019C20.75%2018.438%2020.502%2017.884%2019.994%2017.389C19.416%2016.824%2018.454%2016.313%2017.216%2015.94C17.1216%2015.9116%2017.0226%2015.9021%2016.9246%2015.912C16.8266%2015.9219%2016.7315%2015.951%2016.6447%2015.9977C16.5579%2016.0443%2016.4812%2016.1076%2016.4189%2016.184C16.3565%2016.2603%2016.3099%2016.3481%2016.2815%2016.4425C16.2531%2016.5368%2016.2436%2016.6358%2016.2535%2016.7339C16.2634%2016.8319%2016.2925%2016.927%2016.3392%2017.0138C16.3859%2017.1006%2016.4492%2017.1773%2016.5255%2017.2396C16.6018%2017.3019%2016.6896%2017.3486%2016.784%2017.377Z%22%20fill%3D%22%239257A9%22%2F%3E%0A%3C%2Fsvg%3E%0A');
  aspect-ratio: 1/1;
  width: 18px;
  flex: 0 0 auto;
}

.apartment-card__link {
  margin-top: 10px;
}

.list-card {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 20px 25px 30px;
  counter-increment: list-card;
  z-index: 2;
  font-size: 10px;
  line-height: 1.6;
  color: var(--grey-400);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-card:after {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 68px;
}

.list-card:before {
  content: counter(list-card, decimal-leading-zero);
  display: block;
  font-weight: 700;
  font-size: 52px;
  color: var(--primary);
  line-height: 1.25;
}

.list-card:has(.list-card__icon):before {
  display: none;
}

.list-card__icon {
  aspect-ratio: 1/1;
  width: 60px;
}

.list-card__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.list-card__content {
  flex: 1 1 auto;
}

.list-card__content p:not(:last-child) {
  margin-bottom: 10px;
}

.list-card__content h1,
.list-card__content h2,
.list-card__content h3,
.list-card__content h4,
.list-card__content h5,
.list-card__content h6 {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--white);
}

.list-card__content ul li {
  position: relative;
  padding-left: 10px;
}

.list-card__content ul li::before {
  content: "•";
  position: absolute;
  top: 0px;
  left: 0;
  color: inherit;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.news-card__image {
  position: relative;
  aspect-ratio: 343/230;
  width: 100%;
  overflow: hidden;
}

.news-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news-card__image:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  width: 40%;
  top: 0;
  right: 0;
  z-index: 1;
}

.news-card__body {
  background: var(--secondary);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-card__tag {
  font-size: 10px;
  color: var(--grey-400);
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.news-card__text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--grey-400);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-card__link {
  margin-top: auto;
}

.text-content {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-400);
}

.text-content > * {
  margin-top: 20px;
}

.text-content > *:first-child {
  margin-top: 0;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
}

.text-content h1 {
  font-size: 28px;
  margin-top: 40px;
}

.text-content h2 {
  font-size: 20px;
  margin-top: 36px;
}

.text-content h3 {
  font-size: 14px;
  margin-top: 30px;
}

.text-content h4,
.text-content h5,
.text-content h6 {
  font-size: 14px;
  margin-top: 24px;
}

.text-content a {
  color: inherit;
  text-decoration: underline;
  transition: color var(--tr);
}

.text-content a:hover {
  color: var(--primary);
}

.text-content strong,
.text-content b {
  color: var(--white);
  font-weight: 700;
}

.text-content ul,
.text-content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.text-content ul {
  list-style: disc;
}

.text-content ol {
  list-style: decimal;
}

.simple-page {
  padding: 52px 0 var(--sp);
}

.simple-page__container {
  max-width: var(--container-width);
}

.simple-page .head {
  margin-bottom: 30px;
}

.simple-page .text-content {
  max-width: 940px;
}

.simple-page .text-content > * {
  margin-top: 0;
}

.simple-page .text-content h3 {
  margin-top: 21px;
  color: var(--grey-400);
  line-height: 1.5;
}

.simple-page .text-content ul,
.simple-page .text-content ol {
  gap: 0;
}

.status-page {
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  padding: 60px 20px 80px;
}

.status-page_success {
  padding-top: 200px;
}

.status-page:before,
.status-page:after {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}

.status-page:before {
  top: 0;
  left: 0;
  width: 42%;
}

.status-page:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: 58%;
}

.status-page__blob {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  transform: initial;
  z-index: 1;
}

.status-page__blob_a {
  top: 176px;
  left: 77px;
}

.status-page__blob_b {
  width: 116px;
  top: 478px;
  left: auto;
  right: 69px;
}

.status-page__container {
  position: relative;
  z-index: 2;
  max-width: 878px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.status-page__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.status-page__digit {
  font: 900 360px/1 var(--ff1);
  color: rgba(255, 255, 255, 0.2);
}

.status-page__photo {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 -20px;
  position: relative;
  z-index: 1;
}

.status-page__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.status-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.status-page__title {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  font-size: 36px;
}

.status-page__title_lg {
  font-size: 50px;
  line-height: 1.2;
  color: var(--white);
}

.status-page__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-400);
  max-width: 785px;
}

.status-page__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.status-page__buttons .btn {
  width: 260px;
}

.estate-hero {
  position: relative;
  padding-top: 30px;
}

.estate-hero._commercial {
  padding-top: 98px;
}

.estate-hero._commercial .estate-hero__text {
  padding-bottom: 131px;
}

.estate-hero__container {
  position: relative;
}

.estate-hero__tags {
  margin-bottom: 44px;
}

.estate-hero__body {
  display: flex;
  align-items: stretch;
  gap: 68px;
}

.estate-hero__image {
  flex: 0 0 392px;
}

.estate-hero__image-link {
  display: block;
  cursor: zoom-in;
}

.estate-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.estate-hero__text {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 68px;
  padding: 0px 0 var(--sp);
}

.estate-hero__text:after {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  left: 0;
  bottom: 0;
  width: 100vw;
}

.estate-hero__col._1 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.estate-hero__col._2 {
  flex: 0 0 200px;
}

.estate-hero__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.estate-hero__project {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  transition: color var(--tr);
}

.estate-hero__project:before {
  content: "";
  flex-shrink: 0;
  display: block;
  aspect-ratio: 1/1;
  width: 36px;
  background: center/contain no-repeat url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22Group%20238%22%3E%0A%3Ccircle%20id%3D%22Ellipse%205%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2218%22%20transform%3D%22matrix(-1%200%200%201%2036%200)%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cg%20id%3D%22bx%3Abx-arrow-back%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M9.00013%2017H23.5861L18.2931%2011.707L19.7071%2010.293L27.4141%2018L19.7071%2025.707L18.2931%2024.293L23.5861%2019H9.00013V17Z%22%20fill%3D%22%231E2022%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A');
}

.estate-hero__project:hover {
  color: var(--primary);
}

.estate-hero__props {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.estate-hero__props li {
  display: flex;
  gap: 6px;
  font-size: 14px;
}

.estate-hero__props li span:first-child {
  color: var(--grey-400);
}

.estate-hero__props li span:last-child {
  color: var(--white);
  font-weight: 700;
}

.estate-hero__btn {
  min-width: 268px;
}

.estate-hero__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.estate-hero__cta a {
  color: inherit;
}

.estate-hero__div {
  background: var(--white-20);
  align-self: stretch;
  width: 2px;
  height: calc(100% + 44px);
  transform: translateY(-44px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tags__item {
  background: var(--black);
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--white-20);
  font-size: 12px;
  line-height: 1.5;
  color: var(--white);
  white-space: nowrap;
}

.tags__item._red {
  background: #FF4B59;
}

.tags__item._green {
  background: #00CA48;
  color: var(--black);
}

.props {
  display: flex;
  flex-direction: column;
}

.props li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--grey-400);
}

.props li:first-child {
  padding-top: 0;
}

.props li:last-child {
  padding-bottom: 0;
}

.props li:nth-last-child(-n+2) {
  font-weight: 700;
  margin-top: 4px;
}

.estate-plan {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: var(--sp) 0;
}

.estate-plan__inner {
  position: relative;
  display: flex;
  gap: 52px;
}

.estate-plan__inner:before {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  top: 0;
  left: auto;
  right: 0;
  transform: translate3d(30%, -30%, 0);
}

.estate-plan__inner:after {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  width: 200px;
  top: auto;
  bottom: 100px;
  left: 100px;
  transform: translate3d(-30%, 30%, 0);
}

.estate-plan__inner._centered {
  flex-direction: column;
}

.estate-plan__inner._centered .head {
  flex: 0 0 auto;
  text-align: center;
}

.estate-plan__inner._centered .estate-plan__image {
  padding: 0;
}

.estate-plan .head {
  flex: 0 0 408px;
}

.estate-plan__image {
  background: var(--secondary);
  flex: 1 1 auto;
  position: relative;
  padding: 70px 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.estate-plan__image-link {
  display: block;
  width: 100%;
  position: relative;
  cursor: zoom-in;
}

.estate-plan__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.estate-archive-hero {
  background: var(--secondary);
  position: relative;
}

.estate-archive-hero__image {
  position: relative;
  aspect-ratio: 1400/389;
  overflow: hidden;
}

.estate-archive-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.estate-archive-hero__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.estate-archive-hero__title {
  flex: 0 0 auto;
  max-width: 460px;
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.estate-archive-hero__text {
  flex: 1 1 auto;
  max-width: 557px;
  color: var(--grey-400);
}

.estate-archive {
  background: var(--black);
  position: relative;
}

.estate-archive__container {
  display: block;
}

.estate-archive__head {
  margin-bottom: 50px;
}

.estate-archive__body {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 30px;
}

.estate-archive__sidebar {
  padding-bottom: 50px;
}

.estate-archive__sidebar:is(.estate-archive:not(:has(+ .news)) .estate-archive__sidebar) {
  padding-bottom: 147px;
}

.estate-archive__filters-toggle {
  display: none;
}

.estate-archive__filters-toggle-icon {
  background: currentColor;
  display: block;
  flex: 0 0 auto;
  width: 23px;
  height: 22px;
  transform: rotate(90deg);
  -webkit-mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2223%22%20height%3D%2222%22%20viewBox%3D%220%200%2023%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22Group%22%3E%0A%3Cpath%20id%3D%22Vector%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.11008%200H2.46605V9.16667H4.11008V0ZM14.1387%209.16667H8.87777L8.22016%208.15833V6.325L8.87777%205.5H14.1387L14.7963%206.41667V8.25L14.1387%209.16667V9.16667ZM5.91851%2014.6667H0.657613L0%2013.75L0%2011.9167L0.657613%2011H5.91851L6.57613%2011.9167V13.75L5.91851%2014.6667ZM12.3302%200H10.6862V3.66667H12.3302V0ZM10.6862%2011H12.3302V22H10.6862V11ZM4.11008%2016.5H2.46605V22H4.11008V16.5ZM17.0979%2016.5H22.3424L23%2015.5833V13.8417L22.3424%2012.925H17.0979L16.4403%2013.8417V15.5833L17.0979%2016.5ZM20.5504%200H18.9064V11H20.5504V0ZM18.9064%2018.3333H20.5504V22H18.9064V18.3333Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2223%22%20height%3D%2222%22%20viewBox%3D%220%200%2023%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22Group%22%3E%0A%3Cpath%20id%3D%22Vector%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.11008%200H2.46605V9.16667H4.11008V0ZM14.1387%209.16667H8.87777L8.22016%208.15833V6.325L8.87777%205.5H14.1387L14.7963%206.41667V8.25L14.1387%209.16667V9.16667ZM5.91851%2014.6667H0.657613L0%2013.75L0%2011.9167L0.657613%2011H5.91851L6.57613%2011.9167V13.75L5.91851%2014.6667ZM12.3302%200H10.6862V3.66667H12.3302V0ZM10.6862%2011H12.3302V22H10.6862V11ZM4.11008%2016.5H2.46605V22H4.11008V16.5ZM17.0979%2016.5H22.3424L23%2015.5833V13.8417L22.3424%2012.925H17.0979L16.4403%2013.8417V15.5833L17.0979%2016.5ZM20.5504%200H18.9064V11H20.5504V0ZM18.9064%2018.3333H20.5504V22H18.9064V18.3333Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
}

.estate-archive__content {
  padding-top: 50px;
}

.estate-archive__content:is(.estate-archive:not(:has(+ .news)) .estate-archive__content) {
  padding-bottom: 50px;
}

.estate-archive__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.estate-archive__grid .apartment-card {
  position: relative;
}

.estate-archive__grid:before {
  background: var(--primary);
  content: "";
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 200px;
  transform: translate(25%, -50%);
}

.estate-archive__empty {
  color: var(--grey-400);
}

.filters {
  background: var(--secondary);
  position: sticky;
  top: 100px;
  padding: 50px 30px 35px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters:before {
  background: inherit;
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.filters > * {
  position: relative;
  z-index: 2;
}

.filters__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 5px;
}

.filters__mobile-title {
  font-size: 14px;
  color: var(--white);
  padding: 23px 0 17px;
  border-bottom: 1px solid var(--white-20);
  display: flex;
  justify-content: space-between;
}

.filters__mobile-title .close-button {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: translate(0, 0);
}

.filters__field {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filters__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.filters__select-wrap {
  position: relative;
}

.filters__select-wrap .ss-main {
  font: 10px var(--ff1);
  width: 100%;
  padding: 15px 15px;
  cursor: pointer;
}

.filters__select-wrap .ss-main .ss-values .ss-placeholder {
  color: var(--grey-400);
  padding: 0;
}

.filters__select-wrap .ss-main .ss-values {
  align-items: center;
  min-width: 0;
}

.filters__select-wrap .ss-main .ss-values .ss-value {
  max-width: 100%;
  min-width: 0;
  height: -moz-fit-content;
  height: fit-content;
  animation: none;
  transform: none;
  opacity: 1;
}

.filters__select-wrap .ss-main .ss-values .ss-value .ss-value-text {
  color: var(--white);
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filters__select-wrap .ss-main .ss-values .ss-value .ss-value-delete {
  flex-shrink: 0;
  border-left-color: rgba(255, 255, 255, 0.3);
}

.filters__select-wrap .ss-main .ss-values .ss-value .ss-value-delete svg path {
  stroke: var(--white);
}

.filters__select-wrap .ss-main .ss-arrow path,
.filters__select-wrap .ss-main .ss-deselect svg path {
  stroke: var(--white);
}

.filters select.filters__select {
  font: 10px var(--ff1);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  color: var(--grey-400);
  background: transparent;
  border: 1px solid var(--white-20);
  padding: 15px 40px 15px 15px;
  cursor: pointer;
  height: 48px;
}

.filters select.filters__select option {
  color: var(--black);
}

.filters__placeholder {
  font-size: 10px;
  color: var(--grey-400);
  border: 1px solid var(--white-20);
  padding: 15px 40px 15px 15px;
  cursor: not-allowed;
}

.filters__range {
  position: relative;
  height: 14px;
  margin: 8px 7px 0;
}

.filters__range-track {
  background: var(--white-20);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.filters__range-fill {
  background: var(--white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.filters__range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  margin: 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}

.filters__range-input::-webkit-slider-runnable-track {
  background: transparent;
}

.filters__range-input::-moz-range-track {
  background: transparent;
  border: none;
}

.filters__range-input::-webkit-slider-thumb {
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 0;
}

.filters__range-input::-moz-range-thumb {
  background: var(--white);
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.filters__range-values {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.filters__range-value {
  font: 10px var(--ff1);
  flex: 1 1 0;
  width: 0;
  color: var(--grey-400);
  background: transparent;
  border: 1px solid var(--white-20);
  padding: 10px 15px;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

.filters__range-value::-webkit-outer-spin-button,
.filters__range-value::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.filters__submit {
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.filters__submit span {
  width: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  transition: color var(--tr);
}

.pagination .page-numbers:hover {
  color: var(--white);
}

.pagination .page-numbers.current {
  background: var(--secondary);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.pagination .page-numbers.dots {
  cursor: default;
}

.pagination .page-numbers.dots:hover {
  color: var(--grey-400);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  color: var(--white);
}

.pagination__arrow {
  background: currentColor;
  display: block;
  width: 30px;
  height: 30px;
  -webkit-mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22cil%3Aarrow-left%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M29.1406%2014.0624H4.69288L10.3176%208.43768L8.99178%207.11188L1.10372%2014.9999L8.99178%2022.888L10.3176%2021.5622L4.69276%2015.9374H29.1406V14.0624Z%22%20fill%3D%22%23949494%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22cil%3Aarrow-left%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M29.1406%2014.0624H4.69288L10.3176%208.43768L8.99178%207.11188L1.10372%2014.9999L8.99178%2022.888L10.3176%2021.5622L4.69276%2015.9374H29.1406V14.0624Z%22%20fill%3D%22%23949494%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
}

.pagination__arrow_next {
  transform: scaleX(-1);
}

.ss-content {
  font: 10px var(--ff1);
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 4px;
}

.ss-content .ss-list {
  max-height: 260px;
}

.ss-content .ss-option {
  color: var(--white);
}

.ss-content .ss-list .ss-option[role=option]:hover,
.ss-content .ss-list .ss-option[role=option].ss-highlighted,
.ss-content .ss-list .ss-option[role=option]:not(.ss-disabled).ss-selected {
  color: var(--white);
}

.ss-content .ss-search input {
  font-family: var(--ff1);
}

.news-archive {
  background: var(--black);
  position: relative;
  padding: 50px 0 var(--sp);
  overflow: hidden;
}

.news-archive:before {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  top: 65%;
  right: 15%;
  width: 170px;
}

.news-archive:after {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  top: 82%;
  left: 5%;
  width: 116px;
}

.news-archive__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.news-archive__filters {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 12px;
  color: var(--grey-400);
}

.news-archive__filter {
  cursor: pointer;
  transition: color var(--tr);
}

.news-archive__filter.is-active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-archive__filter:hover {
  color: var(--white);
}

.news-archive__tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.news-archive__tab {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  color: var(--grey-400);
  border: 1px solid var(--white-20);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tr);
}

.news-archive__tab.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.news-archive__search {
  background: var(--secondary);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
}

.news-archive__search-icon {
  background: currentColor;
  display: block;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  transform: rotate(90deg);
  -webkit-mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2223%22%20height%3D%2222%22%20viewBox%3D%220%200%2023%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22Group%22%3E%0A%3Cpath%20id%3D%22Vector%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.11008%200H2.46605V9.16667H4.11008V0ZM14.1387%209.16667H8.87777L8.22016%208.15833V6.325L8.87777%205.5H14.1387L14.7963%206.41667V8.25L14.1387%209.16667V9.16667ZM5.91851%2014.6667H0.657613L0%2013.75L0%2011.9167L0.657613%2011H5.91851L6.57613%2011.9167V13.75L5.91851%2014.6667ZM12.3302%200H10.6862V3.66667H12.3302V0ZM10.6862%2011H12.3302V22H10.6862V11ZM4.11008%2016.5H2.46605V22H4.11008V16.5ZM17.0979%2016.5H22.3424L23%2015.5833V13.8417L22.3424%2012.925H17.0979L16.4403%2013.8417V15.5833L17.0979%2016.5ZM20.5504%200H18.9064V11H20.5504V0ZM18.9064%2018.3333H20.5504V22H18.9064V18.3333Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%2223%22%20height%3D%2222%22%20viewBox%3D%220%200%2023%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22Group%22%3E%0A%3Cpath%20id%3D%22Vector%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.11008%200H2.46605V9.16667H4.11008V0ZM14.1387%209.16667H8.87777L8.22016%208.15833V6.325L8.87777%205.5H14.1387L14.7963%206.41667V8.25L14.1387%209.16667V9.16667ZM5.91851%2014.6667H0.657613L0%2013.75L0%2011.9167L0.657613%2011H5.91851L6.57613%2011.9167V13.75L5.91851%2014.6667ZM12.3302%200H10.6862V3.66667H12.3302V0ZM10.6862%2011H12.3302V22H10.6862V11ZM4.11008%2016.5H2.46605V22H4.11008V16.5ZM17.0979%2016.5H22.3424L23%2015.5833V13.8417L22.3424%2012.925H17.0979L16.4403%2013.8417V15.5833L17.0979%2016.5ZM20.5504%200H18.9064V11H20.5504V0ZM18.9064%2018.3333H20.5504V22H18.9064V18.3333Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
}

.news-archive__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.news-archive__empty {
  color: var(--grey-400);
}

.news-archive .pagination {
  justify-content: flex-start;
}

.news-archive .news-card__image {
  aspect-ratio: 264/200;
}

.news-archive .news-card__image:before {
  width: 68px;
}

.news-archive .news-card__tag {
  font-size: 8px;
}

.news-archive .news-card__title {
  font-size: 14px;
}

.news-archive .news-card__text {
  font-size: 10px;
  -webkit-line-clamp: 3;
}

.news-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.news-feature__image {
  position: relative;
  aspect-ratio: 558/422;
  overflow: hidden;
}

.news-feature__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news-feature__image:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  width: 68px;
  top: 0;
  right: 0;
  z-index: 1;
}

.news-feature__body {
  background: var(--secondary);
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.news-feature__tag {
  font-size: 14px;
  color: var(--grey-400);
}

.news-feature__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.news-feature__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-400);
}

.news-feature__link {
  margin-top: 10px;
}

.construction-progress {
  background: var(--black);
  position: relative;
  padding-bottom: var(--sp);
}

.construction-progress__head {
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.construction-progress__item {
  display: block;
  position: relative;
}

.construction-progress__image {
  position: relative;
  aspect-ratio: 362/268;
  overflow: hidden;
}

.construction-progress__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.construction-progress__image:after {
  background: rgba(30, 32, 34, 0.2);
  content: "";
  position: absolute;
  inset: 0;
}

.construction-progress__play {
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.75;
  pointer-events: none;
  -webkit-mask: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M60%20120C93.1371%20120%20120%2093.1371%20120%2060C120%2026.8629%2093.1371%200%2060%200C26.8629%200%200%2026.8629%200%2060C0%2093.1371%2026.8629%20120%2060%20120ZM48%2040V80L82%2060L48%2040Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M60%20120C93.1371%20120%20120%2093.1371%20120%2060C120%2026.8629%2093.1371%200%2060%200C26.8629%200%200%2026.8629%200%2060C0%2093.1371%2026.8629%20120%2060%20120ZM48%2040V80L82%2060L48%2040Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
}

.construction-progress__title {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.news-single {
  background: var(--black);
  position: relative;
  padding: 50px 0 var(--sp);
  overflow: hidden;
}

.news-single:before {
  background: var(--primary);
  content: "";
  aspect-ratio: 1/1;
  width: 170px;
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-25%, -50%, 0);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  top: 15%;
  left: 5%;
  width: 170px;
}

.news-single__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.news-single__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-single__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.news-single__image {
  position: relative;
  aspect-ratio: 558/422;
  overflow: hidden;
}

.news-single__image:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  width: 68px;
  top: 0;
  right: 0;
  z-index: 1;
}

.news-single__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news-single__gallery-image {
  position: relative;
  aspect-ratio: 558/380;
  overflow: hidden;
}

.news-single__gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news-single + .news {
  padding-top: 0;
}

.header {
  background: rgba(30, 32, 34, 0.9);
  font-family: var(--ff1);
  line-height: 1.5;
  z-index: 100;
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
}

.header a {
  transition: color var(--tr);
}

.header a:not(li.menu-item-has-children > a):hover {
  color: var(--primary);
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

.header__container:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  top: -10px;
  right: calc(100% - 470px);
}

.header__logo {
  flex: 0 0 auto;
  aspect-ratio: 103/56;
  width: 103px;
  position: relative;
}

.header__logo img {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__menu {
  font-size: 14px;
  white-space: nowrap;
}

.header__menu-inner {
  display: flex;
  gap: 30px;
}

.header__menu-inner .menu-item-has-children {
  position: relative;
}

.header__menu-inner .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__menu-inner .menu-item-has-children > a:after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  line-height: 1;
  font-size: 14px;
}

.header__menu-inner .sub-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header__menu-inner .sub-menu a {
  font: 10px var(--ff1);
  transition: color var(--tr);
}

.header__contacts {
  display: flex;
  flex-direction: column;
}

.header__contacts p {
  font-size: 10px;
  color: var(--grey-400);
  margin-bottom: 4px;
}

.header__contacts a {
  font-weight: 500;
}

.header__contacts._menu {
  display: none;
}

.header__social._mob {
  display: none;
}

.header__burger {
  display: none;
  position: relative;
  width: 27px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
}

.header__burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.header__burger span {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: top var(--trd), transform var(--tr), opacity var(--trd);
}

.header__burger span:nth-child(1) {
  top: 0;
}

.header__burger span:nth-child(2) {
  width: 75%;
  top: 50%;
  left: 12.5%;
  transform: translateY(-50%);
}

.header__burger span:nth-child(3) {
  top: calc(100% - 2px);
}

.header._active .header__burger span {
  transition: top var(--tr), transform var(--trd), opacity var(--tr);
}

.header._active .header__burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header._active .header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.header._active .header__burger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap {
  border-top: 1px solid var(--white-20);
  border-bottom: 1px solid var(--white-20);
  font-size: 12px;
  line-height: 1.6;
}

.header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap .header__container {
  padding-top: 17px;
  padding-bottom: 17px;
}

.header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap .header__container:before {
  content: "";
  display: none;
}

.header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap a {
  color: var(--grey-400);
  transition: var(--tr);
}

.header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap a:hover {
  color: var(--white);
}

.footer {
  background: var(--dark);
  margin-top: auto;
  padding: 80px 0 40px;
  font-family: var(--ff1);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 20px;
  padding-bottom: 60px;
}

.footer__logo {
  flex: 0 0 auto;
  aspect-ratio: 192/104;
  width: 192px;
  position: relative;
}

.footer__logo img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}

.footer__menu-list a:hover {
  color: var(--primary);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer__contacts-title {
  font-size: 14px;
  font-weight: 700;
}

.footer__contacts-item {
  font-size: 12px;
}

.footer__contacts-item p {
  color: var(--grey-400);
  margin-bottom: 5px;
}

.footer__contacts-item a {
  font-weight: 700;
}

.footer__contacts-phones {
  display: flex;
  flex-direction: column;
}

.footer__contacts-phones a {
  line-height: 1.6;
}

.footer__divider {
  background: var(--white-20);
  height: 1px;
  margin-bottom: 30px;
}

.footer__divider_1 {
  display: none;
}

.footer__divider_2 {
  display: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px 30px;
  font-size: 12px;
  color: var(--grey-400);
}

.footer__policy:hover {
  color: var(--white);
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 14px;
  right: 14px;
  cursor: pointer;
}

.modal-overlay .close-button:before,
.modal-overlay .close-button:after {
  background: var(--white);
  content: "";
  height: 2px;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.modal-overlay .close-button:after {
  transform: translateY(-50%) rotate(-45deg);
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#modal-form .modal-content {
  position: relative;
  width: 480px;
  max-width: 90vw;
}

#modal-form .form {
  width: 100%;
}

@media (min-width: 1400px) {
  .estate-archive-hero:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    background-color: var(--primary);
    pointer-events: none;
    width: 50%;
    bottom: 0;
    left: 0;
  }

  .estate-archive__sidebar.modal-overlay {
    display: block;
    position: static;
    background: none;
    z-index: auto;
    padding-top: 0;
    height: 100%;
    overflow: visible;
  }

  .estate-archive__sidebar.modal-overlay .modal-content {
    margin-bottom: 0;
    border-radius: 0;
    height: 100%;
  }

  .estate-archive__sidebar.modal-overlay .close-button,
  .estate-archive__sidebar.modal-overlay .filters__mobile-title {
    display: none;
  }

  .news-feature-cell {
    grid-column: 1/-1;
  }

  .news-feature-cell .news-card {
    display: none;
  }

  .header__menu-inner .menu-item-has-children:hover > a:after,
  .header__menu-inner .menu-item-has-children:focus-within > a:after {
    content: "-";
  }

  .header__menu-inner .menu-item-has-children:hover > .sub-menu,
  .header__menu-inner .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: initial;
    width: 200px;
  }

  .header__menu-inner .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 200px;
    background-color: var(--secondary);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
    transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
    z-index: 10;
    padding: 18px 25px;
  }

  .header__menu-inner .sub-menu:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
  }
}

@media (max-width: 1400px) {
  :root {
    --sp: 75px;
    --container-width: 760px;
  }

  .wrapper:is(.post-type-archive-residential-real-est .wrapper),
  .wrapper:is(.post-type-archive-commercial-real-esta .wrapper),
  .wrapper:is(.post-type-archive-projects .wrapper) {
    overflow: hidden;
  }

  .wrapper:is(:not(.home .wrapper)) {
    padding-top: 130px;
  }

  .head {
    gap: 25px;
  }

  .head__title {
    font-size: 28px;
  }

  .slider {
    padding: 0 20px;
  }

  .slider__btn_prev {
    right: calc(100% - 25px);
    -webkit-mask-size: 30%;
    mask-size: 30%;
  }

  .slider__btn_next {
    left: calc(100% - 25px);
    -webkit-mask-size: 30%;
    mask-size: 30%;
  }

  .form {
    padding: 35px;
    gap: 40px;
  }

  .form__title {
    margin-bottom: 0;
  }

  .form__fields {
    margin-bottom: 0;
  }

  .news-card__body {
    padding: 15px 20px 20px;
  }

  .status-page__digit {
    font-size: 220px;
  }

  .status-page__photo {
    width: 200px;
  }

  .estate-hero._commercial .estate-hero__text {
    padding-bottom: var(--sp);
  }

  .estate-hero._commercial {
    padding-top: 30px;
  }

  .estate-hero__tags {
    margin-bottom: 30px;
  }

  .estate-hero__body {
    flex-direction: column;
  }

  .estate-hero__image {
    flex: 0 0 auto;
    width: 100%;
  }

  .estate-hero__text {
    gap: 30px;
  }

  .estate-hero__div {
    display: none;
  }

  .estate-plan__inner {
    flex-direction: column;
  }

  .estate-plan__inner:before {
    transform: none;
  }

  .estate-plan__inner:after {
    left: 0;
    bottom: 0;
  }

  .estate-plan .head {
    flex: 0 0 auto;
  }

  .estate-plan__image {
    padding: 50px;
  }

  .estate-archive-hero__container {
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .estate-archive-hero__title {
    max-width: none;
    font-size: 28px;
  }

  .estate-archive-hero__text {
    max-width: none;
  }

  .estate-archive__head {
    margin-bottom: 40px;
  }

  .estate-archive__body {
    display: block;
  }

  .estate-archive__sidebar {
    padding-bottom: 0;
  }

  .estate-archive__sidebar:is(.estate-archive:not(:has(+ .news)) .estate-archive__sidebar) {
    padding-bottom: 0px;
  }

  .estate-archive__filters-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 30px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--ff1);
    font-size: 12px;
  }

  .estate-archive__content:is(.estate-archive:not(:has(+ .news)) .estate-archive__content) {
    padding-bottom: 40px;
  }

  .estate-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
  }

  .estate-archive__grid:before {
    display: none;
  }

  .filters {
    position: static;
    padding: 30px 0;
    background-color: initial;
  }

  .filters:before {
    display: none;
  }

  .filters__select-wrap .ss-main {
    padding: 12px 15px;
  }

  #modal-filters {
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }

  #modal-filters .modal-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    min-height: 100%;
    background-color: var(--black);
    padding: 60px 20px 40px;
    overflow-y: auto;
  }

  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .news-feature-cell .news-feature {
    display: none;
  }

  .news-feature__body {
    padding: 25px;
  }

  .news-feature__title {
    font-size: 22px;
  }

  .construction-progress__head {
    margin-bottom: 40px;
  }

  .news-single__body {
    grid-template-columns: 1fr;
  }

  .news-single__title {
    font-size: 22px;
  }

  .news-single__media {
    order: -1;
  }

  .header__container:before {
    right: calc(100% - 306px);
  }

  .header__menu-wrapper {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    transition: background-color var(--tr), transform var(--tr);
    pointer-events: none;
  }

  .header__menu-wrapper:is(.header._active .header__menu-wrapper) {
    pointer-events: initial;
    background-color: rgba(30, 32, 34, 0.5);
    transform: translateX(0%);
  }

  .header__menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 768px;
    height: 100vh;
    background-color: var(--black);
    padding: 80px 0 80px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform var(--tr);
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .header__menu:is(.header._active .header__menu) {
    transform: translateX(0%);
  }

  .header__menu-inner {
    flex-direction: column;
    gap: 20px;
  }

  .header__menu-inner .menu-item-has-children > a {
    display: none;
  }

  .header__menu-inner .sub-menu {
    gap: 20px;
  }

  .header__menu-inner .sub-menu a {
    font-size: 14px;
  }

  .header__contacts {
    display: none;
  }

  .header__contacts._menu {
    display: flex;
  }

  .header__contacts._menu p {
    margin-bottom: 5px;
  }

  .header__contacts._menu a {
    font-size: 12px;
  }

  .header__burger {
    display: block;
  }

  .header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap .header__container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 40px;
    padding-bottom: 40px;
  }

  .footer__logo {
    grid-column: 1/-1;
    width: 160px;
    margin: 0 auto;
  }

  .footer__contacts {
    flex: 0 1 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --sp: 50px;
    --container-width: 360px;
  }

  .wrapper:is(:not(.home .wrapper)) {
    padding-top: 100px;
  }

  .head {
    gap: 10px;
  }

  .head__pretitle {
    font-size: 10px;
  }

  .head__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .head__subtitle {
    font-size: 14px;
  }

  .btn {
    background-color: var(--primary);
    padding: 16px;
  }

  .btn:before,
  .btn:after {
    display: none;
  }

  .btn_outline {
    background: transparent;
    border-color: var(--primary);
  }

  .btn-wrap {
    gap: 0;
  }

  .btn-wrap:before,
  .btn-wrap:after {
    display: none;
  }

  .form {
    padding: 25px 20px;
    gap: 25px;
  }

  .form__title {
    font-size: 20px;
  }

  .apartment-card__plan {
    padding: 20px;
  }

  .apartment-card__plan:before {
    height: 6px;
  }

  .apartment-card__info {
    padding: 20px;
  }

  .list-card {
    padding: 10px 20px 20px;
    gap: 10px;
  }

  .list-card:after {
    height: 6px;
  }

  .list-card:before {
    font-size: 36px;
  }

  .list-card__icon {
    width: 48px;
  }

  .list-card__content h1,
  .list-card__content h2,
  .list-card__content h3,
  .list-card__content h4,
  .list-card__content h5,
  .list-card__content h6 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .news-card__image:before {
    height: 6px;
  }

  .text-content {
    font-size: 12px;
  }

  .text-content h1 {
    font-size: 22px;
    margin-top: 30px;
  }

  .text-content h2 {
    font-size: 18px;
    margin-top: 26px;
  }

  .text-content h3,
  .text-content h4,
  .text-content h5,
  .text-content h6 {
    margin-top: 20px;
  }

  .simple-page {
    padding: 40px 0 var(--sp);
  }

  .simple-page .head {
    margin-bottom: 20px;
  }

  .simple-page .text-content ul,
  .simple-page .text-content ol {
    list-style: none;
    padding-left: 0;
  }

  .status-page {
    padding: 74px 15px 40px;
  }

  .status-page_success {
    padding-top: 94px;
  }

  .status-page:before {
    width: 89px;
    height: 6px;
  }

  .status-page:after {
    width: calc(100% - 89px);
    height: 6px;
  }

  .status-page__blob_a {
    width: 125px;
    top: auto;
    bottom: 60px;
    left: 15px;
  }

  .status-page__blob_b {
    width: 106px;
    top: 25px;
    right: 15px;
  }

  .status-page__digits {
    margin-bottom: 6px;
  }

  .status-page__digit {
    font-size: 135px;
  }

  .status-page__photo {
    width: 102px;
    margin: 0 -8px;
  }

  .status-page__content {
    gap: 15px;
    margin-bottom: 20px;
  }

  .status-page__title {
    font-size: 20px;
  }

  .status-page__title_lg {
    font-size: 26px;
  }

  .status-page__text {
    font-size: 12px;
  }

  .status-page__buttons {
    flex-direction: column-reverse;
    gap: 26px;
  }

  .status-page__buttons .btn {
    width: 100%;
  }

  .estate-hero._commercial .estate-hero__text {
    padding-bottom: 25px;
  }

  .estate-hero__body {
    gap: 25px;
  }

  .estate-hero__text {
    flex-direction: column;
    padding: 25px 0;
  }

  .estate-hero__text:after {
    display: none;
  }

  .estate-hero__col._1 {
    gap: 0;
    padding-bottom: 35px;
    position: relative;
  }

  .estate-hero__col._1:before {
    content: "";
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    background-color: var(--primary);
    pointer-events: none;
    height: 6px;
    bottom: 10px;
    left: 75px;
  }

  .estate-hero__col._1:after {
    content: "";
    display: block;
    background-color: var(--dark);
    height: 10px;
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .estate-hero__col._2 {
    flex: 0 0 auto;
  }

  .estate-hero__title {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .estate-hero__project {
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .estate-hero__project:before {
    width: 32px;
  }

  .estate-hero__props {
    gap: 5px;
    margin-bottom: 25px;
  }

  .estate-hero__props li {
    font-size: 10px;
    gap: 8px;
  }

  .estate-hero__btn {
    min-width: 0;
    width: 100%;
    margin-bottom: 15px;
  }

  .estate-hero__cta {
    font-size: 10px;
  }

  .tags {
    gap: 8px;
  }

  .props li {
    padding: 8px 0;
  }

  .estate-plan__inner {
    gap: 25px;
  }

  .estate-plan__inner:before {
    display: none;
  }

  .estate-plan__inner:after {
    display: none;
  }

  .estate-plan .head {
    text-align: center;
  }

  .estate-plan__image {
    padding: 25px 0;
  }

  .estate-plan__image:before {
    content: "";
    display: block;
    height: 100%;
    width: 100vw;
    background-color: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .estate-archive-hero__image {
    aspect-ratio: 320/186;
  }

  .estate-archive-hero__image:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    background-color: var(--primary);
    pointer-events: none;
    height: 6px;
    width: 72.1875%;
    bottom: 0;
    right: 0;
  }

  .estate-archive-hero__title {
    font-size: 20px;
  }

  .estate-archive-hero__text {
    font-size: 12px;
  }

  .estate-archive__head {
    margin-bottom: 25px;
  }

  .estate-archive__filters-toggle {
    margin-bottom: 25px;
  }

  .estate-archive__content:is(.estate-archive:not(:has(+ .news)) .estate-archive__content) {
    padding-bottom: 25px;
  }

  .estate-archive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }

  .filters {
    padding: 25px 0;
    gap: 25px;
  }

  .filters__title {
    font-size: 20px;
  }

  .filters__select-wrap .ss-main {
    padding: 10px 12px;
  }

  .pagination {
    gap: 20px;
  }

  #modal-filters .modal-content {
    max-width: 100%;
    padding: 0px 15px 30px;
  }

  .news-archive:before,
  .news-archive:after {
    display: none;
  }

  .news-archive__head {
    margin-bottom: 25px;
  }

  .news-archive__filters {
    display: none;
  }

  .news-archive__tabs {
    display: none;
  }

  .news-archive__search {
    display: flex;
  }

  .news-archive__modal {
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }

  .news-archive__modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 320px;
    min-height: 100%;
    background-color: var(--black);
    padding: 0 15px 30px;
    overflow-y: auto;
  }

  .news-archive__modal .news-archive__tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .news-archive__modal .news-archive__filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
  }

  .news-archive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }

  .news-archive .pagination {
    justify-content: center;
  }

  .news-feature__title {
    font-size: 18px;
  }

  .construction-progress__head {
    margin-bottom: 30px;
  }

  .construction-progress__play {
    width: 80px;
    height: 80px;
  }

  .construction-progress__title {
    font-size: 14px;
  }

  .news-single:before {
    display: none;
  }

  .news-single__body {
    margin-bottom: 25px;
  }

  .news-single__title {
    font-size: 16px;
  }

  .news-single__image:before {
    height: 6px;
  }

  .header {
    top: 0px;
  }

  .header__container {
    border-bottom: 1px solid var(--white-20);
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .header__container:before {
    top: 0px;
    width: 100%;
    height: 6px;
    right: calc(100% - 85px);
  }

  .header__logo {
    width: 74px;
  }

  .header__menu {
    min-width: 231px;
    max-width: initial;
  }

  .header__menu-inner {
    gap: 15px;
  }

  .header__menu-inner .sub-menu {
    gap: 15px;
  }

  .header__contacts p {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .header__contacts a {
    font-size: 10px;
  }

  .header__social {
    display: none;
  }

  .header__social._mob {
    display: block;
  }

  .header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap {
    border-top: none;
    border-bottom: none;
    font-size: 8px;
  }

  .header:has(.header__breadcrumbs-wrap) .header__breadcrumbs-wrap .header__container {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: none;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer__top {
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 90px;
    grid-template-areas: "logo logo" "divider1 divider1" "menu1 menu2" "divider2 divider2" "contacts contacts";
    gap: 20px 50px;
  }

  .footer__logo {
    grid-area: logo;
  }

  .footer__menu {
    width: 100%;
    grid-area: menu1;
  }

  .footer__menu._menu1 {
    grid-area: menu1;
  }

  .footer__menu._menu2 {
    grid-area: menu2;
  }

  .footer__menu-list {
    gap: 15px;
  }

  .footer__contacts {
    width: 100%;
    grid-area: contacts;
    display: grid;
    grid-template-areas: "head social" "phones social" "email social";
    align-items: center;
  }

  .footer__contacts-title {
    grid-area: head;
  }

  .footer__social {
    grid-area: social;
  }

  .footer__divider {
    margin-bottom: 20px;
  }

  .footer__divider_1 {
    display: block;
    grid-area: divider1;
    margin-bottom: 0;
  }

  .footer__divider_2 {
    display: block;
    grid-area: divider2;
    margin-bottom: 0;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  #modal-form .form {
    padding-top: 50px;
  }
}