@charset "UTF-8";
/* ОБНУЛЕНИЕ */
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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 {
  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;
}

/**
     Упрощаем работу с изображениями
    */
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/**
     Наследуем свойства шрифт для полей ввода
    */
input,
textarea,
select,
button {
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0px;
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Плавный скролл
    */
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

div {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

svg,
svg path,
svg rect,
svg circle,
svg line {
  transition: 0.3s;
}

.icon {
  display: flex;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Старый Edge / IE */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* Для надёжности: */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Light.woff2") format("woff2"), url("../fonts/Helvetica-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-LightOblique.woff2") format("woff2"), url("../fonts/Helvetica-LightOblique.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Oblique.woff2") format("woff2"), url("../fonts/Helvetica-Oblique.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.woff2") format("woff2"), url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-BoldOblique.woff2") format("woff2"), url("../fonts/Helvetica-BoldOblique.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
:root {
  --header-offset: 194px;
}

@media screen and (max-width: 1599px) {
  :root {
    --header-offset: 146px;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --header-offset: 104px;
  }
}
html,
body {
  overflow-x: clip;
}

html {
  scroll-padding-top: var(--header-offset);
}

[id] {
  scroll-margin-top: var(--header-offset);
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  margin-top: 170px;
  overflow-x: clip;
}
@media screen and (max-width: 1599px) {
  main {
    margin-top: 130px;
  }
}
@media screen and (max-width: 1199px) {
  main {
    margin-top: 90px;
  }
}

body {
  display: flex;
  flex-direction: column;
  color: #000;
  font-size: 16px;
  background: #FFF;
  font-weight: 300;
  font-family: "Helvetica", sans-serif;
}
body.menu-open {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-thumb {
  background: #000;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

a {
  text-decoration: none;
}

a:not([class*=_btn]):not([class*=_logo]):not(.swiper-button-prev):not(.swiper-button-next):not(.client_wrap_content_it_link) {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:not([class*=_btn]):not([class*=_logo]):not(.swiper-button-prev):not(.swiper-button-next):not(.client_wrap_content_it_link):hover {
    color: #7A885F;
    text-decoration-color: currentColor;
  }
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, -8.125rem + 9.375vw, 3.125rem);
}
@media screen and (max-width: 1599px) and (min-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    padding: 0 13px;
  }
}

.autoplay-video-passive {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.autoplay-video-passive::-webkit-media-controls,
.autoplay-video-passive::-webkit-media-controls-panel,
.autoplay-video-passive::-webkit-media-controls-play-button,
.autoplay-video-passive::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

.row {
  --bs-gutter-x: 40px;
}
@media screen and (max-width: 1599px) {
  .row {
    --bs-gutter-x: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .row {
    --bs-gutter-x: 7px;
  }
}

.swiper-slide {
  user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
  user-select: none;
  position: unset;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.section-reveal {
  --reveal-distance: 34px;
  --reveal-duration: .9s;
  --reveal-ease: cubic-bezier(.22, 1, .36, 1);
}

.section-reveal-item {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  transition: opacity var(--reveal-duration) ease-out var(--reveal-delay, 0s), transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.section-reveal.is-visible .section-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: transparent;
  transition: 0.4s ease;
}
.header.active, .header.is-menu-open {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 10px 0;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.08);
}
.header.active .header_wrap_left_logo, .header.is-menu-open .header_wrap_left_logo {
  max-height: 56px;
  max-width: 130px;
}
@media screen and (max-width: 1599px) {
  .header.active .header_wrap_left_logo, .header.is-menu-open .header_wrap_left_logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .header.active .header_wrap_left_logo, .header.is-menu-open .header_wrap_left_logo {
    max-height: 40px;
    max-width: 100px;
  }
}
.header.active .header_wrap_left_logo .static, .header.is-menu-open .header_wrap_left_logo .static {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}
.header.active .header_wrap_left_logo .scroll, .header.is-menu-open .header_wrap_left_logo .scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
@media screen and (max-width: 1599px) {
  .header {
    padding: 16px 0;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap_left {
  display: flex;
  align-items: center;
  column-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_left {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_left {
    column-gap: 0;
  }
}
.header_wrap_left_logo {
  display: flex;
  width: 100%;
  max-width: 168px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-height: 72px;
  transition: 0.4s;
}
@media screen and (max-width: 1599px) {
  .header_wrap_left_logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_left_logo {
    max-width: 100px;
  }
}
.header_wrap_left_logo img,
.header_wrap_left_logo svg {
  width: 100%;
  height: auto;
}
.header_wrap_left_logo .static {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
.header_wrap_left_logo .scroll {
  opacity: 0;
  position: absolute;
  width: 70px;
  height: 56px;
  transform: translateY(100%);
  max-height: 100%;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .header_wrap_left_logo .scroll {
    width: 54px;
    width: 40px;
  }
}
.header_wrap_left_text {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .header_wrap_left_text {
    display: none;
  }
}
.header_wrap_left_text a {
  color: inherit;
  text-decoration: none;
}
.header_wrap_left_text p {
  color: inherit;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_left_text p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.header_wrap_left_text p {
  font-weight: 300;
}
.header_wrap_left_text_icon {
  display: flex;
  flex-shrink: 0;
  width: 11px;
  height: 14px;
}
.header_wrap_left_text_icon svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .header_wrap nav {
    display: none;
  }
}
.header_wrap nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .header_wrap nav ul {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap nav ul {
    column-gap: 0;
  }
}
.header_wrap nav ul li {
  display: flex;
}
.header_wrap nav ul li a {
  color: #000;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .header_wrap nav ul li a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.header_wrap nav ul li a {
  font-weight: 300;
  text-transform: uppercase;
}
@media screen and (max-width: 1599px) {
  .header_wrap nav ul li a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.22px;
  }
}
.header_wrap_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 40px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_right {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_right {
    column-gap: 4px;
  }
}
.header_wrap_right_tel {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_right_tel {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_right_tel {
    display: none;
  }
}
.header_wrap_right_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header_wrap_right_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.header_wrap_right_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.header_wrap_right_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_right_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_right_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.header_wrap_right_btn {
  color: #000;
  background: #F7F6EF;
}
.header_wrap_right_burger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header_wrap_right_burger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.header_wrap_right_burger:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.header_wrap_right_burger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .header_wrap_right_burger {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_right_burger {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.header_wrap_right_burger {
  color: #000;
  background: #FE9604;
  display: none;
}
@media screen and (max-width: 1199px) {
  .header_wrap_right_burger {
    display: inline-flex;
  }
}
@media screen and (max-width: 1199px) {
  .header_wrap_nav {
    position: absolute;
  }
}
.header_menu {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header_menu {
    display: block;
    position: fixed;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
}
.header_menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header_menu.is-open .header_menu_panel {
  transform: translateX(0);
}
.header_menu_backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.header_menu_panel {
  position: relative;
  margin-left: auto;
  width: min(100%, 420px);
  height: 100dvh;
  background: #F7F6EF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
}
.header_menu_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  height: 57px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header_menu_title {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .header_menu_title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.header_menu_title {
  font-weight: 400;
  text-transform: uppercase;
}
.header_menu_close {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header_menu_close:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.header_menu_close:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.header_menu_close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .header_menu_close {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .header_menu_close {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.header_menu_close {
  padding-inline: 18px;
  color: #000;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.header_menu_body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 13px;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.header_menu_body::-webkit-scrollbar {
  width: 6px;
}
.header_menu_body::-webkit-scrollbar-thumb {
  background: rgba(52, 52, 67, 0.4);
  border-radius: 999px;
}
.header_menu_nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.header_menu_nav li {
  width: 100%;
}
.header_menu_nav a {
  display: inline-flex;
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
  text-decoration: none;
}
.header_menu_contacts {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.header_menu_contacts_tel {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.08;
  text-decoration: none;
}
.header_menu_contacts_address {
  font-style: normal;
}
.header_menu_contacts_address a {
  color: #000;
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .header_menu_contacts_address a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}

.first_wrap {
  row-gap: 40px;
}
@media screen and (max-width: 1599px) {
  .first_wrap {
    row-gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .first_wrap {
    row-gap: 20px;
  }
}
.first_wrap_title {
  color: #000;
  text-transform: uppercase;
  font-family: "Noto Serif", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 46px;
}
@media screen and (max-width: 1599px) {
  .first_wrap_title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .first_wrap_title {
    font-size: 23px;
    line-height: 28px;
  }
}
.first_wrap_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 34px;
}
@media screen and (max-width: 1599px) {
  .first_wrap_right {
    row-gap: 20px;
  }
}
.first_wrap_right_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .first_wrap_right_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.first_wrap_right_btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1599px) {
  .first_wrap_right_btns {
    gap: 8px;
  }
}
@media screen and (max-width: 1199px) {
  .first_wrap_right_btns {
    gap: 4px;
  }
}
.first_wrap_right_btns_btn {
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .first_wrap_right_btns_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.first_wrap_right_btns_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.first_wrap_right_btns_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .first_wrap_right_btns_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .first_wrap_right_btns_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.first_wrap_right_btns_btn.orange {
  background: #FE9604;
}
.first_wrap_right_btns_btn.gray {
  background: #E4E4E4;
}
.first_wrap_img {
  display: block;
  width: 100%;
  height: auto;
  background: #DEDEDE;
}
@media screen and (max-width: 767px) {
  .first_wrap_img {
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
}
.first_wrap_img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .first_wrap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.residences {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .residences {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .residences {
    margin-top: 64px;
  }
}
.residences_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap {
    row-gap: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap {
    row-gap: 20px;
  }
}
.residences_wrap_header {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header {
    max-width: 900px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header {
    max-width: 700px;
  }
}
.residences_wrap_header > *:first-child {
  margin-top: 0px !important;
}
.residences_wrap_header_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header_icon {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header_icon {
    width: 10px;
    height: 10px;
  }
}
.residences_wrap_header_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.residences_wrap_header_title {
  text-transform: uppercase;
  margin-top: 40px;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header_title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header_title {
    margin-top: 20px;
  }
}
.residences_wrap_header_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.residences_wrap_header_text {
  max-width: 900px;
  text-align: center;
  margin-top: 30px;
  font-weight: 300;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_header_text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_header_text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.residences_wrap_benefits {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_benefits {
    row-gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits {
    row-gap: 12px;
  }
}
.residences_wrap_benefits_title {
  display: flex;
  justify-content: center;
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_benefits_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.residences_wrap_benefits_title {
  font-weight: 300;
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.residences_wrap_benefits_sw {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_sw {
    overflow: visible;
  }
}
.residences_wrap_benefits_sw_it {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_benefits_sw_it {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_sw_it {
    row-gap: 12px;
    max-width: 300px;
  }
}
.residences_wrap_benefits_sw_it:nth-of-type(even) {
  margin-top: 160px;
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_sw_it:nth-of-type(even) {
    margin-top: unset;
  }
}
.residences_wrap_benefits_sw_it_thumb {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  background: #DEDEDE;
}
.residences_wrap_benefits_sw_it_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.residences_wrap_benefits_sw_it_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .residences_wrap_benefits_sw_it_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_wrap_benefits_sw_it_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.residences_wrap_benefits_sw_it_title {
  text-transform: uppercase;
  font-weight: 300;
}

.club {
  margin-top: 210px;
}
@media screen and (max-width: 1599px) {
  .club {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .club {
    margin-top: 64px;
  }
}
.club_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  align-items: center;
}
@media screen and (max-width: 1599px) {
  .club_wrap {
    row-gap: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap {
    row-gap: 24px;
  }
}
.club_wrap_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .club_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.club_wrap_title {
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .club_wrap_title {
    letter-spacing: 0;
  }
}
.club_wrap_slider {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.club_wrap_slider_sw {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: space-between;
    margin: 0 -16px;
    width: auto;
    max-width: unset;
  }
}
.club_wrap_slider_sw_it {
  display: flex;
  flex-direction: column;
  row-gap: 150px;
  height: auto;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_sw_it {
    row-gap: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw_it {
    row-gap: 24px;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    border-top: 1px solid #000;
    padding-top: 16px;
    flex: 1 1 50%;
  }
}
.club_wrap_slider_sw_it:last-child::before {
  display: none !important;
}
.club_wrap_slider_sw_it:nth-of-type(-n + 2) {
  border-top: unset;
  padding-top: unset;
}
.club_wrap_slider_sw_it:nth-of-type(-n + 2)::after {
  top: 0;
  height: 100%;
}
.club_wrap_slider_sw_it::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #0F0F0F;
  position: absolute;
  right: -40px;
  top: 0;
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_sw_it::after {
    right: -30px;
  }
}
@media screen and (max-width: 1399px) {
  .club_wrap_slider_sw_it::after {
    right: -20px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw_it::after {
    right: 0;
    height: calc(100% - 16px);
    top: unset;
    bottom: 0;
  }
}
.club_wrap_slider_sw_it_num {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_sw_it_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw_it_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.club_wrap_slider_sw_it_num {
  font-weight: 300;
}
.club_wrap_slider_sw_it_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_sw_it_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw_it_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.club_wrap_slider_sw_it_title {
  text-transform: uppercase;
  font-weight: 300;
  text-wrap: balance;
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_sw_it_title {
    text-transform: unset;
  }
}
.club_wrap_slider_btns {
  display: inline-flex;
  justify-content: center;
  column-gap: 8px;
}
.club_wrap_slider_btns > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F7F4EC;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .club_wrap_slider_btns > *:hover {
    transform: translateY(-2px);
    background: #F1ECDF;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  .club_wrap_slider_btns > *:hover svg {
    transform: translateX(var(--arrow-shift, 0));
  }
}
.club_wrap_slider_btns > * {
  margin-top: 80px;
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_btns > * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_btns > * {
    margin-top: 24px;
  }
}
.club_wrap_slider_btns > *:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1599px) {
  .club_wrap_slider_btns > * {
    width: 40px;
    height: 40px;
  }
}
.club_wrap_slider_btns > * svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.club_wrap_slider_btns > *.swiper-button-lock {
  display: none;
}
.club_wrap_slider_btns_prev {
  --arrow-shift: -2px;
}
.club_wrap_slider_btns_next {
  --arrow-shift: 2px;
}
@media screen and (max-width: 1199px) {
  .club_wrap_slider_btns {
    display: none;
  }
}

.years {
  margin-top: 120px;
}
@media screen and (max-width: 1599px) {
  .years {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .years {
    margin-top: 64px;
  }
}
.years_wrap {
  border-top: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
  padding: 60px 0;
}
@media screen and (max-width: 1599px) {
  .years_wrap {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1199px) {
  .years_wrap {
    padding: 64px 0;
  }
}
@media screen and (max-width: 1199px) {
  .years_wrap .row {
    row-gap: 12px;
  }
}
.years_wrap_year {
  color: #7A885F;
  font-family: "Noto Serif", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 86px;
  text-transform: uppercase;
  user-select: none;
}
@media screen and (max-width: 1599px) {
  .years_wrap_year {
    font-size: 60px;
    line-height: 66px;
  }
}
@media screen and (max-width: 1199px) {
  .years_wrap_year {
    font-size: 50px;
    font-weight: 300;
    line-height: 67px;
  }
}
.years_wrap_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .years_wrap_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .years_wrap_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}

.cooperation {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .cooperation {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation {
    margin-top: 64px;
  }
}
.cooperation_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.cooperation_wrap_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.cooperation_wrap_title {
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}
.cooperation_wrap_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.cooperation_wrap_text {
  font-weight: 400;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_text {
    margin-top: 12px;
  }
}
.cooperation_wrap_sw {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  margin-top: 40px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw {
    margin-top: 30px;
    overflow: visible;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_sw {
    overflow: visible;
    margin-top: 24px;
  }
}
.cooperation_wrap_sw_it {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  justify-content: space-between;
  height: auto;
  color: #000;
  padding: 40px 30px 30px 30px;
  position: relative;
  min-height: clamp(21.875rem, 3.125rem + 18.75vw, 25.625rem);
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw_it {
    padding: 30px 20px 20px 20px;
    min-height: 350px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .cooperation_wrap_sw_it {
    max-width: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_sw_it {
    max-width: 280px;
    padding: 40px 30px 30px 30px;
    min-height: 330px;
  }
}
.cooperation_wrap_sw_num {
  color: inherit;
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_sw_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.cooperation_wrap_sw_num {
  text-transform: uppercase;
  font-weight: 300;
}
.cooperation_wrap_sw_title {
  color: inherit;
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_sw_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.cooperation_wrap_sw_title {
  text-transform: uppercase;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(100% - 60px);
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw_title {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1199px) {
  .cooperation_wrap_sw_title {
    max-width: calc(100% - 40px);
  }
}
.cooperation_wrap_sw_text {
  color: inherit;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .cooperation_wrap_sw_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.cooperation_wrap_sw_text {
  font-weight: 300;
}

.scheme {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .scheme {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .scheme {
    margin-top: 64px;
  }
}
.scheme_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .scheme_wrap {
    row-gap: 24px;
  }
}
.scheme_wrap_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .scheme_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.scheme_wrap_title {
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.scheme_wrap_content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  padding: 30px;
  min-height: calc((100vw - 100px) * 0.4945);
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_content {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .scheme_wrap_content {
    padding: 0;
    min-height: unset;
  }
}
.scheme_wrap_content_list {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  width: 100%;
  max-width: 425px;
}
@media screen and (max-width: 767px) {
  .scheme_wrap_content_list {
    max-width: 100%;
  }
}
.scheme_wrap_content_list_it {
  display: flex;
  column-gap: 40px;
  padding: 30px;
  background: #F4F1E2;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_content_list_it {
    padding: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .scheme_wrap_content_list_it {
    padding: 16px;
  }
}
.scheme_wrap_content_list_it_num {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 44px;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_content_list_it_num {
    font-size: 24px;
    line-height: 34px;
  }
}
.scheme_wrap_content_list_it_num {
  font-weight: 300;
  text-transform: uppercase;
  min-width: 85px;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_content_list_it_num {
    min-width: 65px;
  }
}
@media screen and (max-width: 1199px) {
  .scheme_wrap_content_list_it_num {
    font-size: 26px;
    font-weight: 300;
    line-height: 32px;
    min-width: 46px;
  }
}
.scheme_wrap_content_list_it_title {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .scheme_wrap_content_list_it_title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.scheme_wrap_content_list_it_title {
  font-weight: 300;
}
.scheme_wrap_content_img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .scheme_wrap_content_img {
    display: none;
  }
}
.scheme_wrap_content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .material {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .material {
    margin-top: 64px;
  }
}
.material_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .material_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap {
    row-gap: 16px;
  }
}
.material_wrap_head {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_head {
    max-width: 900px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap_head {
    max-width: 700px;
    row-gap: 12px;
  }
}
.material_wrap_head_title {
  color: #000;
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_head_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap_head_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.material_wrap_head_title {
  text-transform: uppercase;
  font-weight: 300;
}
.material_wrap_head_text {
  color: #000;
  text-align: center;
  max-width: 720px;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_head_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap_head_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.material_wrap_head_text {
  font-weight: 300;
}
@media screen and (max-width: 1199px) {
  .material_wrap_head_text {
    max-width: 500px;
  }
}
.material_wrap_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 30px;
  width: 100%;
  max-width: 580px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_content {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap_content {
    row-gap: 16px;
  }
}
.material_wrap_content_img {
  display: block;
  width: 100%;
  height: auto;
}
.material_wrap_content_img img {
  width: 100%;
  height: auto;
}
.material_wrap_content_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_content_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.material_wrap_content_text {
  font-weight: 300;
  text-align: center;
  max-width: 420px;
}
@media screen and (max-width: 1199px) {
  .material_wrap_content_text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
  }
}
.material_wrap_content_btn {
  color: #FFF;
  background: #4C463F;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .material_wrap_content_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.material_wrap_content_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.material_wrap_content_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .material_wrap_content_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .material_wrap_content_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}

.footer {
  margin-top: 180px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1599px) {
  .footer {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .footer {
    margin-top: 32px;
    padding-bottom: 32px;
  }
}
.footer_wrap {
  padding-top: 50px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 1599px) {
  .footer_wrap {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap {
    padding-top: 32px;
    padding-left: 11px;
    padding-right: 11px;
  }
}
.footer_wrap .row {
  row-gap: 80px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap .row {
    row-gap: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap .row {
    row-gap: 0;
  }
}
.footer_wrap_links {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .footer_wrap_links {
    align-items: center;
    margin-top: 32px;
  }
}
.footer_wrap_links > *:first-child {
  margin-top: 0px !important;
}
.footer_wrap_links_it {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_links_it {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_links_it {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.footer_wrap_links_it {
  letter-spacing: 0;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 14px;
}
.footer_wrap_links_adress {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_links_adress {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.footer_wrap_links_adress {
  font-weight: 300;
  margin-top: 30px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_links_adress {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_links_adress {
    margin-top: 30px;
    text-align: center;
  }
}
.footer_wrap_logo {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  max-width: 350px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_logo {
    max-width: 250px;
  }
}
.footer_wrap_logo img,
.footer_wrap_logo svg {
  width: 100%;
  height: auto;
}
.footer_wrap_call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  row-gap: 30px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_call {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_call {
    align-items: center;
    justify-content: center;
    row-gap: 16px;
    margin-top: 32px;
  }
}
.footer_wrap_call_tel {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_call_tel {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_call_tel {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.footer_wrap_call_tel {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0px;
}
.footer_wrap_call_btn {
  color: #FFF;
  background: #4C463F;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer_wrap_call_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.footer_wrap_call_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.footer_wrap_call_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_call_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap_call_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.footer_wrap_bottom_it {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .footer_wrap_bottom_it {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.footer_wrap_bottom_it {
  font-weight: 300;
}
@media screen and (max-width: 1199px) {
  .footer_wrap_bottom_it {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
  }
}
.footer_wrap_bottom_it.center {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .footer_wrap_bottom_it.center {
    justify-content: center;
    align-items: center;
  }
}
.footer_wrap_bottom_it.right {
  text-align: right;
}
.footer_wrap_bottom_it.right a {
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .footer_wrap_bottom_it.right {
    display: block !important;
    text-align: center;
  }
}
.footer_wrap_bottom_it a {
  color: inherit;
}
@media screen and (max-width: 1199px) {
  .footer_wrap .first_bottom_it {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_wrap .first_bottom_it .footer_wrap_bottom_it {
    margin-top: 0px;
  }
}

.client {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .client {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .client {
    margin-top: 64px;
  }
}
.client_wrap_tabs {
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 1199px) {
  .client_wrap_tabs {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    margin-bottom: 4px;
    column-gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 13px;
    margin-left: -13px;
    margin-right: -13px;
  }
  .client_wrap_tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
.client_wrap_tabs_tab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  background: #F4F1E2;
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .client_wrap_tabs_tab {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .client_wrap_tabs_tab {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.client_wrap_tabs_tab {
  font-weight: 300;
  cursor: pointer;
}
@media screen and (max-width: 1599px) {
  .client_wrap_tabs_tab {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .client_wrap_tabs_tab {
    flex: 0 0 auto;
    padding: 10px 24px;
    white-space: nowrap;
  }
}
.client_wrap_tabs_tab.is-active {
  background: #FE9604;
}
.client_wrap_content_it {
  display: flex;
  min-height: calc((100vw - 100px) * 0.3626);
}
@media screen and (max-width: 767px) {
  .client_wrap_content_it {
    flex-direction: column;
    min-height: unset;
  }
}
.client_wrap_content_it.is-hidden {
  display: none;
}
.client_wrap_content_it_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 50%;
  background: #FE9604;
  padding: 60px;
  row-gap: 30px;
}
@media screen and (max-width: 1599px) {
  .client_wrap_content_it_text {
    padding: 40px;
    row-gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .client_wrap_content_it_text {
    padding: 16px;
    max-width: 100%;
  }
}
.client_wrap_content_it_text p {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .client_wrap_content_it_text p {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .client_wrap_content_it_text p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.client_wrap_content_it_text p {
  font-weight: 300;
}
.client_wrap_content_it_text a {
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .client_wrap_content_it_text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.client_wrap_content_it_text a:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.client_wrap_content_it_text a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .client_wrap_content_it_text a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .client_wrap_content_it_text a {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.client_wrap_content_it_text a {
  background: #FFF;
  text-decoration: unset !important;
  transition: 0.4s !important;
}
.client_wrap_content_it_img {
  width: 100%;
  max-width: 50%;
  background: #DEDEDE;
}
@media screen and (max-width: 1199px) {
  .client_wrap_content_it_img {
    max-width: 100%;
  }
}
.client_wrap_content_it_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-6 {
  order: 6 !important;
}

.body-scroll-lock {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-banner {
  position: fixed;
  left: clamp(1.25rem, -8.125rem + 9.375vw, 3.125rem);
  bottom: 24px;
  z-index: 110;
  width: min(100% - 48px, 420px);
  padding: 24px;
  background: rgba(247, 242, 226, 0.96);
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 1599px) {
  .cookie-banner {
    left: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .cookie-banner {
    left: 13px;
    right: 11px;
    bottom: 13px;
    width: auto;
    padding: 18px 16px 16px;
    max-width: 400px;
  }
}
.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.cookie-banner__title {
  margin: 0;
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .cookie-banner__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .cookie-banner__title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.cookie-banner__title {
  text-transform: uppercase;
  font-weight: 300;
}
.cookie-banner__text {
  margin-top: 12px;
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .cookie-banner__text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.cookie-banner__text {
  font-weight: 300;
}
.cookie-banner__text a {
  color: inherit;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.cookie-banner__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cookie-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.cookie-banner__button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.cookie-banner__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .cookie-banner__button {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .cookie-banner__button {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.cookie-banner__button {
  border: 1px solid transparent;
}
.cookie-banner__button--accept {
  color: #000;
  background: #FE9604;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .modal {
    padding: 12px;
  }
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-open .modal__dialog {
  transform: translateY(0);
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.32);
}
.modal__dialog {
  position: relative;
  width: min(100%, 812px);
  max-height: min(100%, 90vh);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #4C463F rgba(76, 70, 63, 0.12);
  background: #F7F2E2;
  border-radius: 0;
  padding: 96px 40px 64px;
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.18);
  transform: translateY(24px);
  transition: transform 0.4s ease;
}
.modal__dialog::-webkit-scrollbar {
  width: 6px;
}
.modal__dialog::-webkit-scrollbar-thumb {
  background: #4C463F;
  border-radius: 999px;
}
.modal__dialog::-webkit-scrollbar-track {
  background: rgba(76, 70, 63, 0.12);
}
@media screen and (max-width: 1599px) {
  .modal__dialog {
    width: min(100%, 760px);
    padding: 88px 32px 56px;
  }
}
@media screen and (max-width: 1199px) {
  .modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 72px 18px 24px;
  }
}
@media screen and (max-width: 767px) {
  .modal__dialog {
    max-height: calc(100dvh - 16px);
    padding: 64px 14px 18px;
  }
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}
@media (hover: hover) {
  .modal__close:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .modal__close:active {
    opacity: 0.7;
  }
}
.modal__close span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: #000;
}
.modal__close span:first-child {
  transform: rotate(45deg);
}
.modal__close span:last-child {
  transform: rotate(-45deg);
}
.modal__title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 1199px) {
  .modal__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
  }
}
.modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 286px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .modal__form {
    max-width: 100%;
    gap: 16px;
  }
}
.modal__field {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal input,
.modal textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(78, 72, 62, 0.35);
  background: transparent;
  color: #000;
  padding: 0 18px;
  height: 48px;
  font-family: "Helvetica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .modal input,
  .modal textarea {
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
    line-height: 46px;
  }
}
.modal input::placeholder,
.modal textarea::placeholder {
  color: rgba(111, 106, 97, 0.55);
}
.modal input[aria-invalid=true],
.modal textarea[aria-invalid=true] {
  border-color: #B63B21;
}
.modal__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  background: transparent;
  border: 1px solid #000;
  border-radius: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .modal__submit:hover {
    background: #000;
    color: #F7F2E2;
  }
}
@media (hover: none) {
  .modal__submit:active {
    background: #000;
    color: #F7F2E2;
  }
}
.modal__status {
  min-height: 18px;
  color: #7A885F;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .modal__status {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.modal__status {
  font-weight: 300;
}
.modal__status.is-error {
  color: #B63B21;
}
.modal__status.is-success {
  color: #7A885F;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .modal,
  .modal__dialog,
  .modal__close,
  .modal input,
  .modal textarea,
  .cookie-banner,
  .cookie-banner__button {
    transition: none;
  }
}
.home_hero_wrap_header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 -20px;
  padding-top: 42px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header {
    margin: 0 -15px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header {
    padding-top: 0;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: unset;
  }
}
.home_hero_wrap_header_left {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_left {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.home_hero_wrap_header_left {
  color: #000;
  width: 100%;
  max-width: 40.8571%;
  padding: 0 20px;
  font-weight: 400;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_left {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header_left {
    max-width: 100%;
    display: none;
    padding: unset;
  }
}
.home_hero_wrap_header_left p {
  max-width: 270px;
  text-wrap: balance;
}
.home_hero_wrap_header_right {
  display: flex;
  flex-direction: column;
  row-gap: 34px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 59.1428%;
  padding: 0 20px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_right {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header_right {
    row-gap: 12px;
    max-width: 100%;
    padding: unset;
  }
}
.home_hero_wrap_header_right_text {
  display: none;
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header_right_text {
    display: block;
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.32px;
    color: #000;
    font-weight: 400;
  }
}
@media screen and (max-width: 1199px) and (max-width: 1599px) {
  .home_hero_wrap_header_right_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.home_hero_wrap_header_right_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 46px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_right_title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header_right_title {
    font-size: 23px;
    line-height: 28px;
  }
}
.home_hero_wrap_header_right_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_right_title {
    max-width: 900px;
  }
}
.home_hero_wrap_header_right_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .home_hero_wrap_header_right_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.home_hero_wrap_header_right_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.home_hero_wrap_header_right_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_header_right_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_header_right_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.home_hero_wrap_header_right_btn {
  background: #FE9604;
  color: #000;
}
.home_hero_wrap_img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 30px;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .home_hero_wrap_img {
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
}
.home_hero_wrap_img img,
.home_hero_wrap_img video {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .home_hero_wrap_img img,
  .home_hero_wrap_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.home_hero_wrap_right {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 49/60;
}
@media screen and (max-width: 1599px) {
  .home_hero_wrap_right {
    aspect-ratio: 632/737;
  }
}
@media screen and (max-width: 1199px) {
  .home_hero_wrap_right {
    display: none;
  }
}
.home_hero_wrap_right img,
.home_hero_wrap_right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .close_club_items {
    row-gap: 7px;
  }
}
.close_club_items_it {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 40px 75px;
  min-height: 37.4dvw;
}
@media screen and (max-width: 1599px) {
  .close_club_items_it {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .close_club_items_it {
    min-height: 25dvw;
    padding: 20px;
    row-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .close_club_items_it {
    min-height: unset;
  }
}
.close_club_items_it_num {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .close_club_items_it_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .close_club_items_it_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.close_club_items_it_num {
  color: inherit;
  text-transform: uppercase;
  text-align: center;
}
.close_club_items_it_title {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .close_club_items_it_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .close_club_items_it_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.close_club_items_it_title {
  color: inherit;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .close_club_items_it_title {
    text-wrap: balance;
    max-width: 550px;
  }
}
@media screen and (max-width: 767px) {
  .close_club_items_it_title {
    max-width: 400px;
    text-wrap: balance;
  }
}

.trend {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .trend {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .trend {
    margin-top: 64px;
  }
}
.trend_swiper {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .trend_swiper {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper {
    margin-top: 24px;
  }
}
.trend_swiper_it {
  display: flex;
  flex-wrap: nowrap;
  height: auto;
}
@media screen and (max-width: 767px) {
  .trend_swiper_it {
    flex-direction: column;
  }
}
.trend_swiper_it_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 50%;
  background: #FE9604;
  padding: 60px;
  row-gap: 20px;
}
@media screen and (max-width: 1599px) {
  .trend_swiper_it_content {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_it_content {
    padding: 20px;
    row-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .trend_swiper_it_content {
    max-width: 100%;
    align-items: flex-start;
    min-height: 240px;
  }
}
.trend_swiper_it_content_num {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .trend_swiper_it_content_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_it_content_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.trend_swiper_it_content_num {
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trend_swiper_it_content_num {
    text-align: left;
  }
}
.trend_swiper_it_content_title {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 46px;
}
@media screen and (max-width: 1599px) {
  .trend_swiper_it_content_title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_it_content_title {
    font-size: 23px;
    line-height: 28px;
  }
}
.trend_swiper_it_content_title {
  text-align: center;
  text-transform: uppercase;
  max-width: 550px;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .trend_swiper_it_content_title {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.trend_swiper_it_content_text {
  color: #000;
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .trend_swiper_it_content_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_it_content_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.trend_swiper_it_content_text {
  text-align: center;
  max-width: 630px;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .trend_swiper_it_content_text {
    text-align: left;
  }
}
.trend_swiper_it_img {
  display: block;
  width: 100%;
  max-width: 50%;
  background: #C4C4C4;
}
@media screen and (max-width: 767px) {
  .trend_swiper_it_img {
    max-width: 100%;
    aspect-ratio: 15/14;
    max-height: 450px;
  }
}
.trend_swiper_it_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trend_swiper_btns {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  right: 50px;
  bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .trend_swiper_btns {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_btns {
    gap: 6px;
    right: 13px;
    bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .trend_swiper_btns {
    bottom: unset;
    top: 16px;
  }
}
.trend_swiper_btns > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: unset;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .trend_swiper_btns > button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 1599px) {
  .trend_swiper_btns > button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_swiper_btns > button {
    width: 30px;
    height: 30px;
  }
}
.trend_swiper_btns > button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.trend_swiper_btns > button svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.trend_swiper_btns > button.swiper-button-disabled {
  opacity: 1;
  cursor: default;
}
.trend_swiper_btns > button.swiper-button-disabled path {
  opacity: 0.3;
}
.trend_btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1599px) {
  .trend_btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_btn {
    margin-top: 20px;
  }
}
.trend_btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .trend_btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.trend_btn a:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.trend_btn a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .trend_btn a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .trend_btn a {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.trend_btn a {
  color: #F4F1E2 !important;
  background: #4C463F;
  text-decoration: unset !important;
  transition: 0.4s !important;
}

.residences_home_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap {
    row-gap: 24px;
  }
}
.residences_home_wrap_title {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.residences_home_wrap_title {
  text-transform: uppercase;
  text-align: center;
  max-width: 1200px;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_title {
    max-width: 900px;
  }
}
.residences_home_wrap_list {
  row-gap: 7px;
}
.residences_home_wrap_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  row-gap: 20px;
  height: 100%;
  min-height: 25.521dvw;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_list_item {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list_item {
    padding: 20px;
  }
}
.residences_home_wrap_list_item_subtitle {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_list_item_subtitle {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list_item_subtitle {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.residences_home_wrap_list_item_subtitle {
  color: #4C463F;
  text-align: center;
}
.residences_home_wrap_list_item_title {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_list_item_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list_item_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.residences_home_wrap_list_item_title {
  color: #4C463F;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list_item_title {
    max-width: 550px;
  }
}
@media screen and (max-width: 767px) {
  .residences_home_wrap_list_item_title {
    max-width: 400px;
  }
}
.residences_home_wrap_list_item_circle {
  display: block;
  width: 20px;
  height: 20px;
  background: #4C463F;
  border-radius: 50%;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_list_item_circle {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list_item_circle {
    width: 10px;
    height: 10px;
  }
}
.residences_home_wrap_list .col-12 {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_list .col-12 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_list .col-12 {
    margin-top: 20px;
  }
}
.residences_home_wrap_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .residences_home_wrap_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.residences_home_wrap_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.residences_home_wrap_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .residences_home_wrap_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .residences_home_wrap_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.residences_home_wrap_btn {
  color: #F4F1E2;
  background: #4C463F;
}

.client_home .client_wrap_content_it_text {
  justify-content: flex-start;
  row-gap: 30px;
}
@media screen and (max-width: 1599px) {
  .client_home .client_wrap_content_it_text {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .client_home .client_wrap_content_it_text {
    row-gap: 12px;
  }
}
@media screen and (max-width: 1599px) {
  .client_home .client_wrap_content_it_text a {
    margin-top: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .client_home .client_wrap_content_it_text a {
    margin-top: 20px;
  }
}
.client_home .client_wrap_content_it_text_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .client_home .client_wrap_content_it_text_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .client_home .client_wrap_content_it_text_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.client_home .client_wrap_content_it_text_title {
  text-transform: uppercase;
}
.client_home p {
  display: flex;
  flex: 1 1 auto;
}

.economy {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .economy {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .economy {
    margin-top: 64px;
  }
}
.economy_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap {
    row-gap: 24px;
  }
}
.economy_wrap_title {
  color: #000;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.economy_wrap_title {
  text-transform: uppercase;
  text-align: center;
  max-width: 900px;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}
.economy_wrap_swiper {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  min-width: 0px;
  overflow: visible;
}
.economy_wrap_swiper_it > *:first-child {
  margin-top: 0px !important;
}
.economy_wrap_swiper_it > *:last-child {
  margin-bottom: 0px !important;
}
.economy_wrap_swiper_it_num {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_it_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.economy_wrap_swiper_it_num {
  color: #000;
  text-align: center;
}
.economy_wrap_swiper_it_img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_it_img {
    margin-top: 12px;
  }
}
.economy_wrap_swiper_it_img img {
  width: 100%;
  height: auto;
}
.economy_wrap_swiper_it_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 44px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_title {
    font-size: 24px;
    line-height: 34px;
  }
}
.economy_wrap_swiper_it_title {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  margin-top: 30px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_it_title {
    margin-top: 12px;
  }
}
.economy_wrap_swiper_it_text {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.economy_wrap_swiper_it_text {
  color: #000;
  text-align: center;
  text-wrap: balance;
  margin-top: 16px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_it_text {
    margin-top: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_it_text {
    margin-top: 10px;
  }
}
.economy_wrap_swiper_btns {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_btns {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_btns {
    gap: 6px;
  }
}
.economy_wrap_swiper_btns > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: unset;
  position: static;
  margin: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .economy_wrap_swiper_btns > button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
.economy_wrap_swiper_btns > button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.economy_wrap_swiper_btns > button svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.economy_wrap_swiper_btns > button.swiper-button-disabled {
  opacity: 1;
  cursor: default;
}
.economy_wrap_swiper_btns > button.swiper-button-disabled path {
  opacity: 0.3;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_swiper_btns > button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_swiper_btns > button {
    width: 30px;
    height: 30px;
  }
}
.economy_wrap_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .economy_wrap_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.economy_wrap_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.economy_wrap_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .economy_wrap_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .economy_wrap_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.economy_wrap_btn {
  background: #F4F1E2;
  color: #000;
  margin-top: -16px;
}
@media screen and (max-width: 1199px) {
  .economy_wrap_btn {
    margin-top: -6px;
  }
}
@media (hover: hover) {
  .economy_wrap_btn:hover {
    transform: translateY(-3px) !important;
  }
}
@media (hover: none) {
  .economy_wrap_btn:active {
    transform: translateY(-3px) !important;
  }
}

.exclusive {
  margin-top: 180px;
  background: #4C463F;
}
@media screen and (max-width: 1599px) {
  .exclusive {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive {
    margin-top: 64px;
  }
}
.exclusive_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 140px;
  padding-bottom: 50px;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap {
    row-gap: 40px;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap {
    row-gap: 24px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.exclusive_wrap_head {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.exclusive_wrap_head_title {
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_head_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_head_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.exclusive_wrap_head_title {
  color: #FFF;
  text-transform: uppercase;
  text-wrap: balance;
}
.exclusive_wrap_head_text {
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_head_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_head_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.exclusive_wrap_head_text {
  color: #FFF;
  text-wrap: balance;
  text-align: center;
}
.exclusive_wrap_content {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.exclusive_wrap_content_stage {
  width: 100%;
  position: relative;
}
.exclusive_wrap_content_points {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.exclusive_wrap_content_point {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(1);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
  pointer-events: auto;
  transition: 0.4s;
}
.exclusive_wrap_content_point::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(244, 241, 226, 0.65);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
@media (hover: hover) {
  .exclusive_wrap_content_point:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
  .exclusive_wrap_content_point:hover .exclusive_wrap_content_point_icon .left {
    transform: translate(-1px, 1px);
  }
  .exclusive_wrap_content_point:hover .exclusive_wrap_content_point_icon .right {
    transform: translate(1px, -1px);
  }
}
@media (hover: none) {
  .exclusive_wrap_content_point:active {
    transform: translate(-50%, -50%) scale(1.05);
  }
  .exclusive_wrap_content_point:active .exclusive_wrap_content_point_icon .left {
    transform: translate(-1px, 1px);
  }
  .exclusive_wrap_content_point:active .exclusive_wrap_content_point_icon .right {
    transform: translate(1px, -1px);
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_point {
    width: 44px;
    height: 44px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.72);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }
}
.exclusive_wrap_content_point_icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_point_icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_point_icon {
    width: 24px;
    height: 24px;
  }
}
.exclusive_wrap_content_point_icon svg {
  width: 100%;
  height: 100%;
}
.exclusive_wrap_content_point_icon svg .left {
  transform-origin: center center;
}
.exclusive_wrap_content_point_icon svg .right {
  transform-origin: center center;
}
.exclusive_wrap_content_point.is-active {
  transform: translate(-50%, -50%) scale(1.05);
}
.exclusive_wrap_content_point.is-active .exclusive_wrap_content_point_icon .left {
  transform: translate(-1px, 1px);
}
.exclusive_wrap_content_point.is-active .exclusive_wrap_content_point_icon .right {
  transform: translate(1px, -1px);
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_point.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
}
.exclusive_wrap_content_popup {
  display: flex;
  column-gap: 20px;
  width: 100%;
  max-width: 425px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px;
  background: #F7F6EF;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup {
    max-width: 375px;
    padding: 10px;
    column-gap: 14px;
  }
}
.exclusive_wrap_content_popup::after {
  content: "";
  position: absolute;
  left: var(--exclusive-popup-arrow-left, 50%);
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: #F7F6EF;
  border-radius: 3px;
  transform: translate(-50%, 0) rotate(45deg);
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup::after {
    width: 14px;
    height: 14px;
    bottom: -7px;
  }
}
.exclusive_wrap_content_popup[data-direction=bottom]::after {
  top: -9px;
  bottom: auto;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup[data-direction=bottom]::after {
    top: -7px;
  }
}
.exclusive_wrap_content_popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup.is-open {
    transform: translate3d(0, 10px, 0);
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_popup {
    display: none;
  }
}
.exclusive_wrap_content_popup_media {
  display: block;
  width: 100%;
  max-width: 120px;
  height: 80px;
  background: #D6D0C6;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_media {
    width: 110px;
    height: 70px;
  }
}
.exclusive_wrap_content_popup_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exclusive_wrap_content_popup_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.exclusive_wrap_content_popup_body > *:first-child {
  margin-top: 0px !important;
}
.exclusive_wrap_content_popup_body > *:last-child {
  margin-bottom: 0px !important;
}
.exclusive_wrap_content_popup_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_popup_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.exclusive_wrap_content_popup_title {
  color: #000;
  text-transform: uppercase;
}
.exclusive_wrap_content_popup_text {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.exclusive_wrap_content_popup_text {
  color: #000;
  margin-top: 10px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_text {
    margin-top: 4px;
  }
}
.exclusive_wrap_content_popup_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .exclusive_wrap_content_popup_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.exclusive_wrap_content_popup_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.exclusive_wrap_content_popup_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_popup_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.exclusive_wrap_content_popup_btn {
  background: #4C463F;
  color: #F4F1E2;
  margin-top: 16px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_popup_btn {
    margin-top: 10px;
  }
}
.exclusive_wrap_content_img {
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.exclusive_wrap_content_img img {
  width: 100%;
  height: auto;
}
.exclusive_wrap_content_mobile {
  display: none;
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_mobile {
    display: block;
    margin-top: 24px;
  }
}
.exclusive_wrap_content_mobile_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 10px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .exclusive_wrap_content_mobile_top {
    align-items: flex-start;
    flex-direction: column;
  }
}
.exclusive_wrap_content_mobile_hint {
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.exclusive_wrap_content_mobile_counter {
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: #F4F1E2;
}
.exclusive_wrap_content_mobile_swiper {
  overflow: visible;
}
.exclusive_wrap_content_mobile_slide {
  height: auto;
}
.exclusive_wrap_content_mobile_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 24px;
  background: #F7F6EF;
}
@media screen and (max-width: 767px) {
  .exclusive_wrap_content_mobile_card {
    padding: 20px 18px;
  }
}
.exclusive_wrap_content_mobile_meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.exclusive_wrap_content_mobile_number {
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: rgba(76, 70, 63, 0.7);
}
.exclusive_wrap_content_mobile_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_mobile_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_mobile_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.exclusive_wrap_content_mobile_title {
  color: #000;
  text-transform: uppercase;
  margin-top: 12px;
}
.exclusive_wrap_content_mobile_text {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_mobile_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.exclusive_wrap_content_mobile_text {
  color: #000;
  margin-top: 10px;
  max-width: 30ch;
}
.exclusive_wrap_content_mobile_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .exclusive_wrap_content_mobile_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.exclusive_wrap_content_mobile_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.exclusive_wrap_content_mobile_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .exclusive_wrap_content_mobile_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .exclusive_wrap_content_mobile_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.exclusive_wrap_content_mobile_btn {
  min-height: 44px;
  padding: 11px 18px;
  margin-top: 20px;
  background: #4C463F;
  color: #F4F1E2;
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .exclusive_wrap_content_point,
  .exclusive_wrap_content_popup {
    transition: none;
  }
  .exclusive_wrap_content_point::after {
    transition: none;
  }
}
.architect {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .architect {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .architect {
    margin-top: 64px;
  }
}
.architect_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap {
    row-gap: 24px;
  }
}
.architect_wrap_title {
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.architect_wrap_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: clamp(56.25rem, -37.5rem + 93.75vw, 75rem);
}
@media screen and (max-width: 1599px) {
  .architect_wrap_title {
    max-width: 900px;
  }
}
.architect_wrap_swiper {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  position: relative;
}
.architect_wrap_swiper_btns {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  right: clamp(1.25rem, -1.875rem + 3.125vw, 1.875rem);
  bottom: clamp(1.25rem, -1.875rem + 3.125vw, 1.875rem);
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_btns {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_btns {
    bottom: unset;
    right: 20px;
    top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_btns {
    gap: 6px;
  }
}
.architect_wrap_swiper_btns > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 0rem + 2.5vw, 3rem);
  height: clamp(2.5rem, 0rem + 2.5vw, 3rem);
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: unset;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .architect_wrap_swiper_btns > button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
.architect_wrap_swiper_btns > button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.architect_wrap_swiper_btns > button svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.architect_wrap_swiper_btns > button.swiper-button-disabled {
  opacity: 1;
  cursor: default;
}
.architect_wrap_swiper_btns > button.swiper-button-disabled path {
  opacity: 0.3;
}
.architect_wrap_swiper_btns > button.swiper-button-lock {
  display: none;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_btns > button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_btns > button {
    width: 30px;
    height: 30px;
  }
}
.architect_wrap_swiper_it {
  aspect-ratio: 182/71;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it {
    aspect-ratio: 182/80;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it {
    aspect-ratio: unset;
  }
}
.architect_wrap_swiper_it .row {
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it .row {
    flex-direction: column-reverse;
    row-gap: 7px;
  }
}
.architect_wrap_swiper_it .col-xl-9,
.architect_wrap_swiper_it .col-xl-3 {
  height: 100%;
}
.architect_wrap_swiper_it_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_img {
    aspect-ratio: 12/7;
    max-height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .architect_wrap_swiper_it_img {
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
}
.architect_wrap_swiper_it_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.architect_wrap_swiper_it .col-xl-3 {
  max-height: 100%;
  min-height: 0;
}
.architect_wrap_swiper_it_content {
  display: flex;
  flex-direction: column;
  background: #E4E4E4;
  height: 100%;
  padding: clamp(1.25rem, -1.875rem + 3.125vw, 1.875rem);
  max-height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content {
    padding: 20px;
  }
}
.architect_wrap_swiper_it_content::-webkit-scrollbar {
  width: 4px;
}
.architect_wrap_swiper_it_content::-webkit-scrollbar-thumb {
  background: #000;
}
.architect_wrap_swiper_it_content_head {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.architect_wrap_swiper_it_content_head > *:first-child {
  margin-top: 0px !important;
}
.architect_wrap_swiper_it_content_head > *:last-child {
  margin-bottom: 0px !important;
}
.architect_wrap_swiper_it_content_head_num {
  color: #000;
  font-family: "Noto Serif";
  font-size: clamp(0.875rem, 0.25rem + 0.625vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: clamp(1.25rem, 0.625rem + 0.625vw, 1.375rem);
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_head_num {
    font-size: 14px;
    line-height: 20px;
  }
}
.architect_wrap_swiper_it_content_head_title {
  margin-top: clamp(1rem, -2.125rem + 3.125vw, 1.625rem);
  font-family: "Noto Serif", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 46px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_head_title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_head_title {
    font-size: 23px;
    line-height: 28px;
  }
}
.architect_wrap_swiper_it_content_head_title {
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_head_title {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_head_title {
    margin-top: 12px;
  }
}
.architect_wrap_swiper_it_content_head_text {
  margin-top: clamp(1rem, -0.25rem + 1.25vw, 1.25rem);
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_head_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.architect_wrap_swiper_it_content_head_text {
  color: #000;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_head_text {
    margin-top: 10px;
  }
}
.architect_wrap_swiper_it_content_info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-top: clamp(1rem, -0.25rem + 1.25vw, 1.25rem);
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_info {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_info {
    margin-top: 12px;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 10px;
  }
}
.architect_wrap_swiper_it_content_info_it {
  display: flex;
  align-items: center;
  column-gap: clamp(1.25rem, -3.4375rem + 4.6875vw, 2.1875rem);
  padding: clamp(0.75rem, -0.5rem + 1.25vw, 1rem) 0;
  border-top: 1px solid #CECECE;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_info_it {
    column-gap: 20px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 1440px) {
  .architect_wrap_swiper_it_content_info_it {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 8px 0;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_info_it {
    border-bottom: 1px solid #CECECE;
    margin-top: -1px;
    flex: 1 1 calc(50% - 5px);
  }
}
.architect_wrap_swiper_it_content_info_it:last-child {
  border-bottom: 1px solid #CECECE;
}
.architect_wrap_swiper_it_content_info_it_num {
  font-family: "Noto Serif", sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 44px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_info_it_num {
    font-size: 24px;
    line-height: 34px;
  }
}
.architect_wrap_swiper_it_content_info_it_num {
  color: #000;
  text-transform: uppercase;
  min-width: clamp(8.4375rem, -5.625rem + 14.0625vw, 11.25rem);
  font-size: clamp(1.5rem, -1.625rem + 3.125vw, 2.125rem);
  line-height: clamp(2.125rem, -1rem + 3.125vw, 2.75rem);
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_info_it_num {
    min-width: 135px;
  }
}
.architect_wrap_swiper_it_content_info_it_title {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_info_it_title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.architect_wrap_swiper_it_content_info_it_title {
  color: #000;
}
.architect_wrap_swiper_it_content_btn {
  width: max-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .architect_wrap_swiper_it_content_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.architect_wrap_swiper_it_content_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.architect_wrap_swiper_it_content_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.architect_wrap_swiper_it_content_btn {
  color: #F4F1E2;
  background: #4C463F;
  margin-top: clamp(1.875rem, -1.25rem + 3.125vw, 2.5rem);
  flex-shrink: 0;
}
@media screen and (max-width: 1599px) {
  .architect_wrap_swiper_it_content_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .architect_wrap_swiper_it_content_btn {
    margin-top: 20px;
  }
}

.interier {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .interier {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .interier {
    margin-top: 64px;
  }
}
.interier_wrap_swiper {
  width: 100%;
  max-width: 100%;
  margin-top: 60px;
  position: relative;
  aspect-ratio: 32/15;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper {
    margin-top: 20px;
    aspect-ratio: 12/7;
    max-height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .interier_wrap_swiper {
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
}
.interier_wrap_swiper_it .container {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.interier_wrap_swiper_it_img {
  width: 100%;
  height: 100%;
}
.interier_wrap_swiper_it_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interier_wrap_swiper_it_num {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper_it_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.interier_wrap_swiper_it_num {
  color: #FFF;
  position: absolute;
  top: 30px;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_num {
    top: 20px;
  }
}
.interier_wrap_swiper_it_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .interier_wrap_swiper_it_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.interier_wrap_swiper_it_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.interier_wrap_swiper_it_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper_it_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.interier_wrap_swiper_it_btn {
  background: #FFF;
  color: #000;
  position: absolute;
  bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_btn {
    bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper_it_btn {
    bottom: 10px;
  }
}
.interier_wrap_swiper_it_btns {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  right: 0;
  bottom: 30px;
  right: 50px;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_btns {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper_it_btns {
    right: 13px;
    bottom: 10px;
    gap: 6px;
  }
}
.interier_wrap_swiper_it_btns > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: unset;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .interier_wrap_swiper_it_btns > button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 1599px) {
  .interier_wrap_swiper_it_btns > button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .interier_wrap_swiper_it_btns > button {
    width: 30px;
    height: 30px;
  }
}
.interier_wrap_swiper_it_btns > button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.interier_wrap_swiper_it_btns > button svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.interier_wrap_swiper_it_btns > button.swiper-button-disabled {
  opacity: 1;
  cursor: default;
}
.interier_wrap_swiper_it_btns > button.swiper-button-disabled path {
  opacity: 0.3;
}

.philosophy {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .philosophy {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy {
    margin-top: 64px;
  }
}
.philosophy_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  display: none;
}
@media screen and (max-width: 1599px) {
  .philosophy_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy_wrap {
    row-gap: 24px;
  }
}
.philosophy_wrap_title {
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .philosophy_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.philosophy_wrap_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 1200px;
}
.philosophy_wrap_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(0px - var(--bs-gutter-x));
}
.philosophy_wrap_list .col {
  display: block;
  width: 100%;
  max-width: 20%;
  padding: 0 calc(0px + var(--bs-gutter-x));
}
.philosophy_wrap_list_it_head {
  display: flex;
  flex-direction: column;
}
.philosophy .philosophy_slider_it_head {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_slider_it_head {
    row-gap: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy .philosophy_slider_it_head {
    row-gap: 12px;
  }
}
.philosophy .philosophy_slider_it_head_num {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_slider_it_head_num {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy .philosophy_slider_it_head_num {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.philosophy .philosophy_slider_it_head_num {
  color: #000;
  text-transform: uppercase;
}
.philosophy .philosophy_slider_it_head_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_slider_it_head_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy .philosophy_slider_it_head_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.philosophy .philosophy_slider_it_head_title {
  color: #000;
  text-transform: uppercase;
}
.philosophy .philosophy_slider_it_text {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_slider_it_text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.philosophy .philosophy_slider_it_text {
  color: #000;
}
.philosophy .philosophy_img {
  width: 100%;
  height: auto;
  aspect-ratio: 12/5;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy .philosophy_img {
    margin-top: 20px;
    aspect-ratio: 12/7;
    max-height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy .philosophy_img {
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
  .philosophy .philosophy_img::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.philosophy .philosophy_img img,
.philosophy .philosophy_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.philosophy .philosophy_img_text {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 100%;
  max-width: 365px;
  color: #FFF;
  font-family: "Noto Serif";
  font-size: 28px;
  font-weight: 300;
  line-height: 36px;
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .philosophy .philosophy_img_text {
    font-size: 24px;
    line-height: 32px;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
  }
}
@media screen and (max-width: 1199px) {
  .philosophy .philosophy_img_text {
    bottom: 10px;
    left: 13px;
    right: unset;
    font-size: 20px;
    line-height: 28px;
    max-width: 365px;
  }
}

.technologies {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .technologies {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies {
    margin-top: 64px;
  }
}
.technologies_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap {
    row-gap: 24px;
  }
}
.technologies_wrap_title {
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.technologies_wrap_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 1200px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_title {
    max-width: 900px;
  }
}
.technologies_wrap_content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  background: #F7F6EF;
  padding: 50px;
  column-gap: 40px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content {
    padding: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content {
    padding: 20px 20px 20px 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content {
    flex-direction: column;
    padding: 0px 20px 20px 20px;
    row-gap: 18px;
  }
}
.technologies_wrap_content_list {
  width: 100%;
  max-width: 580px;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list {
    display: flex;
    column-gap: 7px;
    width: unset;
    max-width: unset;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    margin-bottom: 16px;
    background: #FFF;
  }
  .technologies_wrap_content_list::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.technologies_wrap_content_list_it {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #B1B1B1;
  border-bottom: 1px solid #B1B1B1;
  column-gap: 20px;
  padding: 18px 0;
  margin-top: -1px;
  cursor: pointer;
  transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_list_it {
    padding: 14px 0;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it {
    padding: 10px 0;
    max-width: max-content;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it {
    border: unset !important;
    background: #F7F6EF;
    padding: 10px 14px;
    border-radius: 999px;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}
.technologies_wrap_content_list_it:first-child {
  margin-top: 0px !important;
}
@media (hover: hover) and (pointer: fine) {
  .technologies_wrap_content_list_it:hover {
    background: rgba(0, 0, 0, 0.03);
    border-top-color: rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(0, 0, 0, 0.7);
  }
}
.technologies_wrap_content_list_it:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}
.technologies_wrap_content_list_it span {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_list_it span {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it span {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.technologies_wrap_content_list_it span {
  color: #B1B1B1;
  text-transform: uppercase;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it span {
    width: max-content;
  }
}
.technologies_wrap_content_list_it_icon {
  display: flex;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  transition: 0.4s;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_list_it_icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it_icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it_icon {
    display: none;
  }
}
.technologies_wrap_content_list_it_icon svg {
  width: 100%;
  height: 100%;
}
.technologies_wrap_content_list_it.active {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it.active {
    background: #000;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }
}
.technologies_wrap_content_list_it.active span {
  color: #000;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_list_it.active span {
    color: #F7F6EF;
  }
}
.technologies_wrap_content_list_it.active .technologies_wrap_content_list_it_icon {
  transform: rotate(135deg);
}
.technologies_wrap_content_list_it.active .technologies_wrap_content_list_it_icon svg path {
  fill: #000;
}
.technologies_wrap_content_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  max-width: 750px;
  padding-right: 100px;
  text-wrap: balance;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info {
    padding-right: 0;
    max-width: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info {
    max-width: 100%;
    min-height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .technologies_wrap_content_info {
    min-height: 220px;
  }
}
.technologies_wrap_content_info > *:first-child {
  margin-top: 0px !important;
  padding-top: 0px !important;
  border-top: unset;
}
.technologies_wrap_content_info_it {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.technologies_wrap_content_info_it.active {
  display: flex;
}
.technologies_wrap_content_info_it.active.is-revealed {
  animation: technologiesPanelReveal 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_text,
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_video,
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_btn {
  animation: technologiesTextReveal 0.44s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_text:nth-of-type(2) {
  animation-delay: 0.06s;
}
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_video,
.technologies_wrap_content_info_it.active.is-revealed .technologies_wrap_content_info_btn {
  animation-delay: 0.1s;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_it {
    justify-content: flex-start;
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .technologies_wrap_content_info_it {
    gap: 16px;
    padding-top: 14px;
  }
}
.technologies_wrap_content_info_text {
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.technologies_wrap_content_info_text {
  color: #000;
  text-wrap: balance;
  font-weight: 300;
}
.technologies_wrap_content_info_text + .technologies_wrap_content_info_text {
  margin-top: 16px;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_text {
    max-width: 700px;
    text-wrap: pretty;
  }
}
.technologies_wrap_content_info_video {
  padding-top: 30px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #000;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info_video {
    padding-top: 20px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_video {
    padding-top: 12px;
    margin-top: 12px;
  }
}
.technologies_wrap_content_info_btn {
  display: flex;
  align-items: center;
}
.technologies_wrap_content_info_btn_thumb {
  display: block;
  width: 100%;
  max-width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 20px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info_btn_thumb {
    height: 50px;
    max-width: 50px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_btn_thumb {
    margin-right: 10px;
    width: 40px;
    height: 40px;
  }
}
.technologies_wrap_content_info_btn_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technologies_wrap_content_info_btn span {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info_btn span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.technologies_wrap_content_info_btn span {
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_btn span {
    font-size: 12px;
    line-height: 18px;
  }
}
.technologies_wrap_content_info_btn_icon {
  display: flex;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-left: 6px;
}
@media screen and (max-width: 1599px) {
  .technologies_wrap_content_info_btn_icon {
    width: 24px;
    height: 24px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 1199px) {
  .technologies_wrap_content_info_btn_icon {
    width: 20px;
    height: 20px;
    margin-left: 2px;
  }
}
.technologies_wrap_content_info_btn_icon svg {
  width: 100%;
  height: 100%;
}

@keyframes technologiesPanelReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes technologiesTextReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .technologies_wrap_content_info {
    transition: none;
  }
  .technologies_wrap_content_info_it {
    animation: none !important;
  }
  .technologies_wrap_content_info_it .technologies_wrap_content_info_text,
  .technologies_wrap_content_info_it .technologies_wrap_content_info_video,
  .technologies_wrap_content_info_it .technologies_wrap_content_info_btn {
    animation: none !important;
    transform: none !important;
  }
  .technologies_wrap_content_list_it {
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
  }
  .technologies_wrap_content_list_it:hover, .technologies_wrap_content_list_it.active {
    transform: none !important;
  }
}
.location {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .location {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .location {
    margin-top: 64px;
  }
}
.location_wrap_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
@media screen and (max-width: 1199px) {
  .location_wrap_head {
    max-width: 550px;
  }
}
.location_wrap_head > *:first-child {
  margin-top: 0px !important;
}
.location_wrap_head_img {
  display: block;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 1599px) {
  .location_wrap_head_img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .location_wrap_head_img {
    width: 80px;
    height: 80px;
  }
}
.location_wrap_head_title {
  text-align: center;
  font-family: "Noto Serif", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
}
@media screen and (max-width: 1599px) {
  .location_wrap_head_title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .location_wrap_head_title {
    font-size: 28px;
    line-height: 34px;
  }
}
.location_wrap_head_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
  margin-top: 40px;
}
@media screen and (max-width: 1599px) {
  .location_wrap_head_title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .location_wrap_head_title {
    margin-top: 20px;
  }
}
.location_wrap_head_text {
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .location_wrap_head_text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .location_wrap_head_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }
}
.location_wrap_head_text {
  color: #000;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 1599px) {
  .location_wrap_head_text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .location_wrap_head_text {
    margin-top: 12px;
  }
}
.location_content {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .location_content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .location_content {
    margin-top: 20px;
  }
}
.location_content_video {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 32/15;
}
@media screen and (max-width: 767px) {
  .location_content_video {
    height: 100%;
    aspect-ratio: 1/0.91405;
    max-height: 450px;
  }
}
.location_content_video img,
.location_content_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location_content_map {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  transition: 0.4s;
}
.location_content_map.active {
  opacity: 1;
  visibility: visible;
}
.location_content_map iframe {
  width: 100%;
  height: 100%;
}
.location_content .container {
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.location_content_switch {
  display: flex;
  position: absolute;
  align-items: center;
  column-gap: 20px;
  bottom: 30px;
  left: 50px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 6px 20px 6px 6px;
  background: rgba(247, 246, 239, 0.04);
  backdrop-filter: blur(25px);
  z-index: 2;
}
@media screen and (max-width: 1599px) {
  .location_content_switch {
    left: 20px;
    bottom: 20px;
    column-gap: 16px;
    padding: 5px 16px 5px 5px;
  }
}
@media screen and (max-width: 1199px) {
  .location_content_switch {
    left: 13px;
    bottom: 10px;
    column-gap: 10px;
    padding: 4px 10px 4px 4px;
  }
}
.location_content_switch_img {
  display: block;
  width: 100%;
  max-width: 50px;
  height: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 1599px) {
  .location_content_switch_img {
    max-width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .location_content_switch_img {
    width: 30px;
    height: 30px;
  }
}
.location_content_switch_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location_content_switch span {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 1599px) {
  .location_content_switch span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
}
.location_content_switch span {
  color: #FFF;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .location_content_switch span {
    font-size: 12px;
    line-height: 18px;
  }
}
.location_content_control {
  display: flex;
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 50px;
  flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 1599px) {
  .location_content_control {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .location_content_control {
    right: 13px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
}
.location_content_control svg {
  width: 100%;
  height: 100%;
}
.location_content_control .pause {
  display: flex;
}
.location_content_control .play {
  display: none;
}
.location_content_control.active .pause {
  display: none;
}
.location_content_control.active .play {
  display: flex;
}
.location .residences_wrap_benefits_sw {
  margin-top: 120px;
}
@media screen and (max-width: 1599px) {
  .location .residences_wrap_benefits_sw {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .location .residences_wrap_benefits_sw {
    margin-top: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .location .residences_wrap_benefits_sw_it:hover .residences_wrap_benefits_sw_it_thumb::after, .location .residences_wrap_benefits_sw_it:focus-within .residences_wrap_benefits_sw_it_thumb::after {
    opacity: 1;
  }
  .location .residences_wrap_benefits_sw_it:hover .residences_wrap_benefits_sw_it_thumb img, .location .residences_wrap_benefits_sw_it:focus-within .residences_wrap_benefits_sw_it_thumb img {
    transform: scale(1.04);
  }
  .location .residences_wrap_benefits_sw_it:hover .residences_wrap_benefits_sw_it_action, .location .residences_wrap_benefits_sw_it:focus-within .residences_wrap_benefits_sw_it_action {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.location .residences_wrap_benefits_sw_it_thumb {
  position: relative;
  isolation: isolate;
}
.location .residences_wrap_benefits_sw_it_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 35%, rgba(15, 15, 15, 0.64) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.location .residences_wrap_benefits_sw_it_thumb img {
  transition: transform 0.55s ease;
}
.location .residences_wrap_benefits_sw_it_action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .location .residences_wrap_benefits_sw_it_action {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }
}
@media screen and (max-width: 1599px) {
  .location .residences_wrap_benefits_sw_it_action {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .location .residences_wrap_benefits_sw_it_action {
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
  }
}
.location .residences_wrap_benefits_sw_it_action svg {
  display: block;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 1199px) {
  .home_club_sw {
    overflow: visible;
  }
}
@media screen and (max-width: 1199px) {
  .home_club_sw .swiper-wrapper {
    flex-wrap: nowrap;
    margin: unset;
    row-gap: 0px;
    justify-content: unset;
    align-items: unset;
  }
}
@media screen and (max-width: 1199px) {
  .home_club_sw .swiper-wrapper .swiper-slide {
    max-width: 300px;
    width: 100%;
    padding-left: 0px;
    border-top: unset !important;
    flex: 0 0 auto;
    height: auto;
  }
}

.building {
  margin-top: 180px;
}
@media screen and (max-width: 1599px) {
  .building {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .building {
    margin-top: 64px;
  }
}
.building_wrap_btns {
  display: inline-flex;
  justify-content: center;
  column-gap: 8px;
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 1599px) {
  .building_wrap_btns {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_btns {
    column-gap: 6px;
    margin-top: 20px;
  }
}
.building_wrap_btns > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F7F4EC;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .building_wrap_btns > *:hover {
    transform: translateY(-2px);
    background: #F1ECDF;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  .building_wrap_btns > *:hover svg {
    transform: translateX(var(--arrow-shift, 0));
  }
}
.building_wrap_btns > *:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1599px) {
  .building_wrap_btns > * {
    width: 40px;
    height: 40px;
  }
}
.building_wrap_btns > * svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.building_wrap_btns > *.swiper-button-lock {
  display: none;
}
.building_wrap_btns_prev {
  --arrow-shift: -2px;
}
.building_wrap_btns_next {
  --arrow-shift: 2px;
}
.building_wrap_sw {
  margin-top: 80px;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw {
    margin-top: 20px;
    overflow: visible;
  }
}
.building_wrap_sw_it {
  display: flex;
  column-gap: 40px;
  position: relative;
  padding-right: 40px;
  border-right: 1px solid #000;
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it {
    column-gap: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it {
    column-gap: 20px;
    padding-right: 8px;
    max-width: 450px;
  }
}
.building_wrap_sw_it:last-child {
  border-right: unset !important;
}
@media (hover: hover) {
  .building_wrap_sw_it:hover .building_wrap_sw_it_content_btn {
    margin-bottom: 0;
  }
}
@media (hover: none) {
  .building_wrap_sw_it:active .building_wrap_sw_it_content_btn {
    margin-bottom: 0;
  }
}
.building_wrap_sw_it_img {
  display: block;
  width: 100%;
  max-width: 115px;
  height: 200px;
  height: 100%;
  flex-shrink: 0;
}
.building_wrap_sw_it_img img,
.building_wrap_sw_it_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.building_wrap_sw_it_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it_content {
    row-gap: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it_content {
    row-gap: 12px;
  }
}
.building_wrap_sw_it_content_date {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it_content_date {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it_content_date {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.building_wrap_sw_it_content_date {
  color: #000;
  text-transform: uppercase;
  flex: 1 1 auto;
}
.building_wrap_sw_it_content_title {
  font-family: "Noto Serif", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it_content_title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it_content_title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }
}
.building_wrap_sw_it_content_title {
  color: #000;
  text-transform: uppercase;
  text-wrap: balance;
}
.building_wrap_sw_it_content_btn {
  margin-bottom: -64px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px 12px 20px;
  border-radius: 50px;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .building_wrap_sw_it_content_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.building_wrap_sw_it_content_btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.building_wrap_sw_it_content_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it_content_btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    padding: 8px 16px 10px 16px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it_content_btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding: 6px 14px 6px 14px;
  }
}
.building_wrap_sw_it_content_btn {
  color: #000;
  background: #F7F6EF;
  transition: 0.4s;
  box-shadow: unset !important;
}
@media screen and (max-width: 1599px) {
  .building_wrap_sw_it_content_btn {
    margin-bottom: -56px;
  }
}
@media screen and (max-width: 1199px) {
  .building_wrap_sw_it_content_btn {
    margin-bottom: 0px;
  }
}

.modal--building {
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .modal--building {
    padding: 8px;
  }
}
.modal--building .modal__dialog {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
  gap: 0;
  width: min(100%, 980px);
  height: min(720px, 100dvh - 24px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .modal--building .modal__dialog {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: min(100%, 900px);
  }
}
@media screen and (max-width: 1199px) {
  .modal--building .modal__dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 24px);
  }
}
@media screen and (max-width: 767px) {
  .modal--building .modal__dialog {
    max-height: calc(100dvh - 16px);
  }
}
.modal--building .modal__close {
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: rgba(247, 242, 226, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .modal--building .modal__close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .modal--building .modal__close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}

.building-fancybox-shell .fancybox__content {
  padding: 0;
  background: transparent;
  width: min(100vw - 24px, 1120px);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .building-fancybox-shell .fancybox__content {
    width: calc(100vw - 16px);
  }
}
.building-fancybox-shell .carousel__button.is-close {
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  color: #000;
  background: rgba(247, 242, 226, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .building-fancybox-shell .carousel__button.is-close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .building-fancybox-shell .carousel__button.is-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}

.building-fancybox {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
  width: min(100%, 980px);
  min-height: min(720px, 100dvh - 24px);
  background: #F7F6EF;
  color: #000;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (max-width: 1599px) {
  .building-fancybox {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: min(100%, 900px);
  }
}
@media screen and (max-width: 1199px) {
  .building-fancybox {
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-height: calc(100dvh - 24px);
  }
}
@media screen and (max-width: 767px) {
  .building-fancybox {
    border-radius: 18px;
    max-height: calc(100dvh - 16px);
  }
}
.building-fancybox__media {
  background: #000;
  min-height: 320px;
}
@media screen and (max-width: 1199px) {
  .building-fancybox__media {
    min-height: 240px;
  }
}
.building-fancybox__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.building-fancybox__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 32px;
  overflow-y: auto;
}
@media screen and (max-width: 1199px) {
  .building-fancybox__body {
    padding: 28px 24px;
  }
}
@media screen and (max-width: 767px) {
  .building-fancybox__body {
    gap: 12px;
    padding: 22px 16px 18px;
  }
}

.building-modal__date {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.56);
}

.building-modal__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}
@media screen and (max-width: 1199px) {
  .building-modal__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .building-modal__title {
    font-size: 22px;
  }
}

.building-modal__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.78);
}
@media screen and (max-width: 767px) {
  .building-modal__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.f-caption .building-fancybox-caption {
  display: grid;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.building-fancybox-shell .fancybox__slide.has-iframe,
.building-fancybox-shell .fancybox__slide.has-html5video {
  padding: 0;
}
.building-fancybox-shell .has-html5video .f-html,
.building-fancybox-shell .has-iframe .f-html {
  padding: 0;
  width: min(100vw - 48px, 1120px);
  margin: 0 auto;
  min-height: 0;
  height: auto;
  max-height: min(68dvh, 700px);
  aspect-ratio: 16/9;
  background: #050505;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .building-fancybox-shell .has-html5video .f-html,
  .building-fancybox-shell .has-iframe .f-html {
    width: calc(100vw - 20px);
    max-height: min(46dvh, 420px);
    border-radius: 10px;
  }
}
.building-fancybox-shell .has-html5video .f-html5video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}
.building-fancybox-shell .has-iframe .f-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}
.building-fancybox-shell .f-caption {
  width: min(100vw - 48px, 1120px);
  max-width: 1120px;
  max-height: min(28dvh, 260px);
  margin: 14px auto 0;
  padding: 0 2px 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 242, 226, 0.56) rgba(255, 255, 255, 0.08);
}
.building-fancybox-shell .f-caption::-webkit-scrollbar {
  width: 10px;
}
.building-fancybox-shell .f-caption::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.building-fancybox-shell .f-caption::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(247, 242, 226, 0.82), rgba(205, 198, 177, 0.58));
  border: 2px solid rgba(17, 17, 17, 0.4);
  border-radius: 999px;
}
@media screen and (max-width: 1199px) {
  .building-fancybox-shell .f-caption {
    max-height: min(26dvh, 220px);
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .building-fancybox-shell .f-caption {
    width: calc(100vw - 20px);
    max-height: min(30dvh, 200px);
    margin-top: 10px;
    padding: 0 2px 6px;
  }
  .building-fancybox-shell .f-caption::-webkit-scrollbar {
    width: 8px;
  }
}

.f-caption .building-fancybox-caption__date {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.f-caption .building-fancybox-caption__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  color: #FFF;
}
@media screen and (max-width: 1199px) {
  .f-caption .building-fancybox-caption__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .f-caption .building-fancybox-caption__title {
    font-size: 20px;
  }
}

.f-caption .building-fancybox-caption__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}
@media screen and (max-width: 767px) {
  .f-caption .building-fancybox-caption__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

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