@import url('https://fonts.googleapis.com/css?family=Playfair+Display:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Manrope:300,regular,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:regular&display=swap');

:root {
  /* --font-text: Nunito, Arial, sans-serif; */
  --font-text: Manrope, Arial, sans-serif;
  --font-title: 'Playfair Display', serif;
  /* --font-table: Nunito, Arial, sans-serif; */
  --color-scheme: light;

  --color-primary: #707070;
  --color-secondary: #94a49c;
  --color-third: #093840;
  --color-dark: #233827;
  --color-yellow: #c6aa58;

  --color-primary-rgb: rgb(64, 158, 255);
  --color-success-rgb: rgb(103, 194, 58);
  --color-warning-rgb: rgb(230, 162, 60);
  --color-danger-rgb: rgb(245, 108, 108);
  --color-error-rgb: rgb(245, 108, 108);
  --color-info-rgb: rgb(144, 147, 153);

  --button-color-primary: #c6aa58;
  --button-color-secondary: #233827;

  --font-size-extra-large: 5.5rem;
  --font-size-large: 4rem;
  --font-size-large-medium: 3.5rem;
  --font-size-medium: 2.8rem;
  --font-size-medium-small: 2.2rem;

  --font-size-button: 1.8rem;

  --font-size-base: 1.8rem;
  --font-size-base-small: 1.6rem;
  --font-size-small: 1.3rem;
  --font-size-small-medium: 1.2rem;
  --font-size-small-extra: 0.9rem;
  --font-weight-primary: 400;

  --font-line-height-primary: 2.4rem;

  --index-normal: 1;
  --index-top: 1000;
  --index-popper: 2000;

  --border-radius-base: 0.4rem;
  --border-radius-small: 0.2rem;
  --border-radius-round: 2rem;
  --border-radius-circle: 100%;

  --component-size-large: 4rem;
  --component-size: 32px;
  --component-size-small: 2.4rem;

  --bg-color: #fff;
  --bg-color-page: #f2f3f5;
  --bg-color-overlay: #fff;

  --text-color-primary: #433a35;
  --text-color-regular: #606266;
  --text-color-secondary: #4e4e4e;
  --text-color-placeholder: #a8abb2;
  --text-color-disabled: #c0c4cc;

  --border-color: #dcdfe6;
  --border-color-light: #e4e7ed;
  --border-color-lighter: #ebeef5;
  --border-color-extra-light: #f2f6fc;
  --border-color-dark: #d4d7de;
  --border-color-darker: #cdd0d6;

  --fill-color: #f0f2f5;
  --fill-color-light: #f5f7fa;
  --fill-color-lighter: #fafafa;
  --fill-color-extra-light: #fafcff;
  --fill-color-dark: #ebedf0;
  --fill-color-darker: #e6e8eb;
  --fill-color-blank: #fff;

  --box-shadow: 0px 12px 32px 4px #0000000a, 0px 8px 20px #00000014;
  --box-shadow-light: 0px 0px 12px #0000001f;
  --box-shadow-lighter: 0px 0px 6px #0000001f;
  --box-shadow-dark: 0px 16px 48px 16px #00000014, 0px 12px 32px #0000001f, 0px 8px 16px -8px #00000029;

  --border-width: 1px;
  --border-style: solid;
  --border-color-hover: var(--text-color-disabled);
  --border: var(--border-width) var(--border-style) var(--border-color);

  --transition-duration: 0.3s;
  --transition-duration-fast: 0.2s;
  --transition-function-ease-in-out-bezier: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-function-fast-bezier: cubic-bezier(0.23, 1, 0.32, 1);
  --transition-all: all var(--transition-duration) var(--transition-function-ease-in-out-bezier);
  --transition-fade: opacity var(--transition-duration) var(--transition-function-fast-bezier);
  --transition-md-fade:
    transform var(--transition-duration) var(--transition-function-fast-bezier),
    opacity var(--transition-duration) var(--transition-function-fast-bezier);
  --transition-fade-linear: opacity var(--transition-duration-fast) linear;
  --transition-border: border-color var(--transition-duration-fast) var(--transition-function-ease-in-out-bezier);
  --transition-box-shadow: box-shadow var(--transition-duration-fast) var(--transition-function-ease-in-out-bezier);
  --transition-color: color var(--transition-duration-fast) var(--transition-function-ease-in-out-bezier);

  /* Container max‑width variables */
  --container-max-width: 117rem; /* default (desktop) */
  --container-max-width-lg: 114rem; /* 1200px breakpoint */
  --container-max-width-md: 96rem; /* 992px breakpoint */
  --container-max-width-sm: 72rem; /* 768px breakpoint */
  --container-max-width-xs: 54rem; /* 576px breakpoint */

  --swiper-navigation-sides-offset: 3rem;
}

/* #region initialize */
a {
  text-decoration: none;
}
a.active {
  border-bottom: 8px solid var(--button-color-primary);
  padding-bottom: 0 !important;
}
picture {
  width: 100%;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.center {
  text-align: center;
  margin: 0 auto;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w33 {
  width: 33%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute !important;
}
.m0 {
  margin: 0 !important;
}
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 0.75rem;
}
.container.small {
  max-width: 96.8rem;
}
@media (max-width: 1200px) {
  .container {
    max-width: var(--container-max-width-lg);
  }
}
@media (max-width: 992px) {
  .container {
    max-width: var(--container-max-width-md);
  }
}
@media (max-width: 768px) {
  .container {
    max-width: var(--container-max-width-sm);
  }
}
@media (max-width: 576px) {
  .container {
    max-width: var(--container-max-width-xs);
  }
}
.bold {
  font-weight: 700;
}
h1,
h2,
h3 {
  font-family: var(--font-title);
  color: var(--color-secondary);
  margin: 0;
  font-weight: 300;
}
h1 {
  color: #ede9e4;
  font: normal normal 500 var(--font-size-extra-large) / 1.2 var(--font-title);
}
h2 {
  font-size: var(--font-size-extra-large);
  margin-bottom: 3rem;
}
h3 {
  font-size: var(--font-size-medium);
  color: var(--color-primary);
  margin-bottom: 3rem;
}
p {
  margin: 0;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* #endregion initialize */

/* #region section-login */
.login {
  height: 100vh;
  overflow: hidden;
}
body.login:not(body.index-page.login) main {
    filter: blur(1rem);
}
.section-login,
.login-back {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.login-back {
  background-color: black;
  opacity: 0.8;
  backdrop-filter: blur(8px);
}

.section-login h1 {
  color: black;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.login-body {
  border-radius: 3.2rem;
  background: url('../images/assets/project_bg.jpg') 100% 100% / contain;
  display: flex;
  flex-direction: column;
}
.login-body img {
  margin: 0 auto 4rem;
}
.login-form .col {
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
}
.login-form-row {
  display: flex;
  align-items: center;
  width: 80%;
  gap: 1rem;
}
.login-form .form-label {
  width: 40%;
  color: black;
  font-size: 1.8rem;
  text-wrap: nowrap;
  margin: 0;
}
.login-form .form-control {
  width: 70%;
  border-radius: 2.4rem;
}
.login-form .form-footer .btn {
  margin: 0 auto;
}
.login-form .form-error {
  color: red;
  font-family: var(--font-text);
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 610px) {
  .login-form-row {
    flex-direction: column;
  }
}

/* #endregion section-login */

/* #region section-hero */

.section-hero {
  height: 100vh;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 8.6rem;
  position: relative;
  /* box-shadow: 0px 9px 30px 12px rgba(0, 0, 0, 0.35); */
}

.section-hero.small {
  height: 50vh;
}
.section-hero::before {
  /* content: '';
  position: absolute;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(71, 71, 71, 1) 100%);
  top: 0;
  width: 100%;
  height: 30vh;
  z-index: 1;
  opacity: 0.52; */
}
.section-hero::after {
  content: '';
  position: absolute;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(21, 21, 21, 1) 100%);
  top: 0;
  width: 100%;
  height: 60vh;
  mix-blend-mode: multiply;
  z-index: 1;
  background: transparent linear-gradient(359deg, #ffffff00 0%, #474747 100%) 0% 0% no-repeat padding-box;
  opacity: 0.7;
}
.section-hero.small::after {
  height: 30vh;
}
.section-hero h1 {
  position: absolute;
  top: 17.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  min-width: min(100vw, 120rem);
  text-align: center;
  text-shadow: 3px 3px 6px #00000029;
}
.hero-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.35);
}
.section-hero.small .hero-picture {
  height: 50vh;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 100%;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 37.5rem;
}

/* #endregion section-hero */

/* header */

.header {
  position: absolute;
  top: 0;
  left: clamp(2rem, 10vw, 14rem);
  width: 80vw;
  display: flex;
  justify-content: space-between;

  z-index: 9980;
}

.header-left {
  display: flex;
  margin-top: 6rem;
  width: 100%;
  flex: 1 1 100%;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 11.5rem;
}

.header-left .logo {
  width: 18rem;
}
.header-left .header-menu a,
.header-right .header-menu a {
  /* text-shadow: -0.2rem 0 0.5rem rgba(0, 0, 0, 0.5); */
  text-shadow: 0px 3px 6px #00000029;
  padding-bottom: 8px;
}
/* .header h1 {
  font-size: 5rem;
  color: white;
  font-weight: 400;
  margin-top: 5rem;
  margin-left: 4rem;
} */

.header.scroll {
  width: 100%;
  height: 8.5rem;
  position: sticky;
  top: 0;
  z-index: 9980;
  background-color: rgba(255, 255, 255, 1);
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.35) 50%,
    rgba(248, 250, 252, 0.4)
  );
  backdrop-filter: blur(30px) saturate(200%);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.15),
    0 12px 24px -8px rgba(0, 0, 0, 0.1),
    0 6px 12px -4px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4); */
}

.header-right .header-menu {
  margin-top: 7.4rem;
}
.header.scroll .header-left,
.header.scroll .header-right {
  display: none;
}
.header-scroll {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  display: none;
  z-index: 9980;
}

.header-scroll .logo {
  width: 16rem;
  /* width: clamp(24rem, 28vw, 28rem); */
  margin-left: 1.5rem;
}

/* .header-scroll h1 {
  font-size: 3rem;
  color: var(--color-primary);
  margin: 0 3.4rem 0 2.65rem;
} */
.header.scroll .header-scroll {
  display: flex;
}
.header-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.header-menu ul {
  display: flex;
  gap: 4rem;
  /* padding-left: 1rem; */
}
.header-scroll ul {
  gap: 0;
}

.header-mobile ul {
  flex-direction: column;
}

.header-menu li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.header-menu li a.contact {
  border: 0.1rem solid #ffffff;
  border-radius: 2.1rem;
  opacity: 0.8;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
}
.header.scroll .header-menu li a.contact {
  background-color: transparent;
  border: 1px solid var(--color-third);
  color: var(--color-third);
  opacity: 0.8;
  font-weight: 600;
  text-align: center;
  padding: 1rem 2rem;
  text-wrap: nowrap;
}
.header-mobile li a.contact {
  padding: 0;
}
.header-menu.right {
  margin-left: 5rem;
}
.header-scroll .header-menu.right ul {
  align-items: center;
  padding-left: 0;
}
.header-scroll .header-menu li {
  list-style-type: none;
  padding: 0 1.5rem;
}
.header-scroll .header-menu li a,
.header-mobile .header-menu li a {
  color: var(--color-third);
  padding-bottom: 8px;
}
.header-scroll .header-menu li a:hover,
.header-mobile .header-menu li a:hover {
  color: var(--color-third);
  padding-bottom: 0;
}
.header-mobile .header-menu li a.brochure {
  border: none;
}
.header-scroll .header-menu.right li a.brochure {
  width: 20rem;
  display: block;
  text-align: center;
  padding: 1rem;
}
.header-scroll .header-menu li:not(li:last-child) {
  border-bottom: none;
  border-right: 1px solid #707070;
}
.header-scroll .header-menu.right li {
  border-bottom: none !important;
  border-right: none !important;
}

.header-menu a {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: 300;
  line-height: var(--font-line-height-primary);
  letter-spacing: 0.036rem;
  color: white;
}
.header-menu a.small {
  font-size: var(--font-size-small);
}

.header-menu a.brochure {
  border: 1px solid var(--color-secondary);
  border-radius: 1rem;
  width: 18rem;
}
.header-menu a.contact {
  min-width: 13rem;
  display: block;
}

.header-menu a:hover {
  border-bottom: 8px solid var(--button-color-primary);
  padding-bottom: 0;
}
.menu-open {
  overflow: hidden;
}
.menu-open .header-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-menu_btn {
  padding: 0;
  width: 3rem;
  transition: all 0.2s linear;
  outline: none;
  border: none;
  background-color: transparent !important;
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: none;
  cursor: pointer;
}
.header-menu_btn i {
  display: block;
  background-color: var(--color-primary);
  width: 100%;
  height: 0.2rem;
  margin: 0.6rem 0;
  transition: all 0.2s linear;
}

.menu-open .header-menu_btn i:first-child {
  transform: rotate(-45deg);
  margin: 0;
  margin-top: 1rem;
  margin-left: 0.5rem;
  position: relative;
  top: 0.2rem;
}
.menu-open .header-menu_btn i:nth-child(2) {
  transform: rotate(45deg);
  margin: 0;
  margin-left: 0.5rem;
  top: 0.7rem;
}
.menu-open .header-menu_btn i:nth-child(3) {
  display: none;
}

.header-hidden {
  height: 12rem;
  top: 12rem;
  z-index: 1000;
  text-align: right;
  position: absolute;
  display: none;
}
.header-hidden nav {
  width: 20rem;
  padding-right: 2rem;
}
.header-hidden ul {
  padding: 0;
}
.header-hidden li {
  list-style-type: none;
  padding: 1.5rem 0;
}
.header-hidden li:not(li:last-child) {
  border-bottom: 1px solid #b6b6b6;
}
.header-hidden a {
  font-family: var(--font-text);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: white;
  text-shadow: -0.2rem 0 0.5rem rgba(0, 0, 0, 0.5);
}

@media (max-width: 1480px) {
  .header-scroll .header-menu.right ul {
    flex-direction: column;
  }
  .header-menu ul {
    gap: 2rem;
  }
  .header.scroll .header-menu li a.contact {
  }
  .header-scroll .header-menu ul {
    gap: 0rem;
  }
}

@media (max-width: 1300px) {
  .header-menu.right {
    margin-left: 1rem;
  }
  .header-menu ul {
    /* gap: 3rem; */
  }
  .header-scroll ul {
    gap: 0;
  }
  .header.scroll .header-menu li a.contact {
    /* padding: 0.5rem; */
  }
  .header-scroll .header-menu.right li a.brochure {
    padding: 0.5rem;
  }
}

@media (max-width: 1200px) {
  .header-menu ul {
    gap: 1rem;
  }
  .header-left {
    gap: 1rem;
  }
}
@media (max-width: 1158px) {
  /* .header-left {
    display: flex;
    flex-direction: column;
    margin-top: 7rem;
  } */
  .header-menu ul {
    /* gap: 1.5rem; */
  }
  /* .header-scroll h1 {
    margin: 0 1rem;
  } */
  .header-menu.right {
    margin-left: 0;
  }
  .header-menu.right li {
    padding: 0;
  }
}

@media (max-width: 1141px) {
  .header-scroll .header-menu li {
    padding: 0 0.5rem;
  }
}
@media (max-width: 1051px) {
  .header {
    width: 100%;
    height: 8.5rem;
    position: sticky;
    top: 0;
    z-index: 9980;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .header-menu,
  .header-left,
  .header-right {
    display: none;
  }
  .header-scroll {
    display: flex;
  }
  .header-mobile .header-menu {
    display: block;
  }
  .header-menu_btn {
    display: block;
  }
  .header-hidden {
    /* display: block; */
  }
  .hero-picture {
    height: calc(100vh - 8.5rem);
  }
  .section-hero {
    height: calc(100vh - 8.5rem);
  }
  .section-hero h1 {
    top: 6rem;
  }
  .hero-picture img {
    object-position: center;
  }
}

@media (max-width: 872px) {
}
@media (max-width: 768px) {
}

@media (max-width: 567px) {
  .header-scroll {
    display: flex;
    justify-content: flex-start;
  }
  .header-scroll .header-menu li {
    padding: 0 0.5rem;
  }
  .section-hero h1 {
    font-size: var(--font-size-large);
  }
}
/* btn */

.btn {
  border: none;
  cursor: pointer;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  opacity: 0.9;
}
.btn-menu {
  background-color: transparent;
}
.scroll .btn-menu {
  width: 100%;
}
.bottom-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.btn-brochure,
.btn-3d {
  border-radius: 2.2rem;
  height: 4.7rem;
  width: 37rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal normal normal var(--font-size-large-medium) / 3.1rem var(--font-text);
  letter-spacing: 0.048rem;
  color: var(--color-third);
  text-shadow: 0px 3px 6px #00000029;
  background-color: #ede9e4;
  transition: var(--transition-all);
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  font: normal normal 500 var(--font-size-base) / var(--font-line-height-primary) var(--font-text);
  letter-spacing: 0.036rem;
  border-radius: 2.4rem;
  width: 29.2rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-primary {
  background-color: var(--button-color-primary);
}
.btn-secondary {
  background-color: var(--button-color-secondary);
}
.btn-3d {
  width: 20rem;
}
.btn-brochure:hover,
.btn-3d:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .logo-right {
    height: 5rem;
  }
  .btn-brochure {
    /* width: auto; */
    padding: 1rem 1rem;
    height: auto;
    max-width: 24rem;
  }
  .btn-brochure img {
    width: 3rem;
  }
}

@media (max-width: 576px) {
  .btn-burger {
    text-align: left;
  }
  .btn-menu {
    width: 70%;
  }
  .logo-right {
    height: 3rem;
    margin: 0 1rem;
  }
  .header-hidden {
    /* display: none; */
  }
}

.btn-map,
.btn-contact {
  max-width: 39rem;
  height: 6.4rem;
  text-align: center;
  font-family: var(--font-text);
  font-size: var(--font-size-button);
  line-height: 3.8rem;
  letter-spacing: 0.07rem;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-transform: uppercase;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 2rem;
  transition: var(--transition-all);
}
.btn-map:hover,
.btn-contact:hover {
  transform: scale(1.05);
}
.btn-documents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 2rem;
  min-width: 50rem;
}
@media (max-width: 678px) {
  .btn-documents {
    min-width: 90%;
  }
}
.btn-map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 2rem;
  border-radius: 2.9rem;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-contact {
  width: 20rem;
  border-radius: 2.9rem;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.header.scroll .btn-brochure {
  position: static;
  transform: translateX(0);
}
.btn-brochure img {
  padding-left: 1.5rem;
  width: 1.85rem;
}

section p,
.text {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  line-height: 2.6rem;
  font-weight: 400;
  color: var(--color-primary);
}

/* #region section-video */

.section-video {
  position: relative;
  margin-bottom: 7rem;
}
.section-video .container {
  margin: 0 auto;
  text-align: center;
  background: url('../images/assets/project_bg.jpg') 100% 100% / contain;
  padding: 4.2rem 0.75rem;
  position: relative;
}
.section-video h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-large) / 1.25 var(--font-title);
  color: var(--color-dark);
  max-width: 73rem;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}
.section-video .btn-offer {
  margin: 0 auto 2rem;
}
.section-video .decor1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
}
.section-video .decor2 {
  position: absolute;
  bottom: -4rem;
  left: -4rem;
}
.section-video video {
  max-width: 83.2rem;
  width: 100%;
  height: 46.9rem;
  margin-bottom: 4.1rem;
}

@media (max-width: 1236px) {
  .section-video .decor1 {
    right: 0rem;
    top: -7rem;
  }
  .section-video .decor2 {
    left: 0rem;
    bottom: -8rem;
  }
}
@media (max-width: 680px) {
  .section-video video {
    width: 100%;
    height: auto;
    margin-bottom: 4.1rem;
  }
}

/* #endregion section-video */

/* #region section-info */

.section-info {
  position: relative;
  margin-bottom: 7rem;
}
.section-info .container {
  margin: 0 auto;
  text-align: center;
  background: url('../images/assets/project_bg.jpg') 100% 100% / contain;
  padding: 4.2rem 0.75rem;
  position: relative;
}
.section-info h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-large) / 1.25 var(--font-title);
  color: var(--color-dark);
  max-width: 73rem;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}
.section-info h2.long {
  max-width: auto;
}
.section-info .btn-offer {
  margin: 0 auto 2rem;
}
.section-info .decor1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
}
.section-info .decor2 {
  position: absolute;
  bottom: -4rem;
  left: -4rem;
}
.section-info svg {
  max-width: 83.2rem;
  width: 100%;
  height: 46.9rem;
  margin-bottom: 4.1rem;
}
.section-info.homsphere .container {
  padding-left: 6rem;
  padding-right: 4rem;
}
.section-info .homsphere {
  max-width: 63rem;
  width: 100%;
}
.section-info.homsphere .row {
  justify-content: space-around;
}
.section-info.homsphere p {
  max-width: 20rem;
  text-align: left;
}
.section-info .info-project-pic {
}
.section-info .info-project-pic img {
  width: 100%;
  max-width: 85.8rem;
}

@media (max-width: 1236px) {
  .section-info .decor1 {
    right: 0rem;
    top: -7rem;
    width: unset;
  }
  .section-info .decor2 {
    left: 0rem;
    bottom: -8rem;
    width: unset;
  }
}
@media (max-width: 920px) {
  .section-info.homsphere .row {
    flex-direction: column;
  }
  .section-info.homsphere p {
    max-width: 100%;
  }
  .section-info .homsphere {
    margin: 0 auto;
  }
}
@media (max-width: 680px) {
  .section-info img {
    width: 100%;
    height: auto;
    margin-bottom: 4.1rem;
  }
  .section-info svg {
    max-width: 83.2rem;
    width: 100%;
    height: auto;
    margin-bottom: 4.1rem;
  }
}
@media (max-width: 630px) {
  .section-info .decor1 {
    width: 8rem;
    top: -5rem;
  }
  .section-info .decor2 {
    width: 7rem;
    bottom: -7rem;
  }
}
/* #endregion section-info */

/* #region section-documents */

.section-documents {
  margin-bottom: 6rem;
}
.section-documents .container {
}
.section-documents h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-medium) / 3rem var(--font-title);
  color: var(--color-dark);
  width: 27.8rem;
  height: 9.8rem;
  margin: 0 auto;
  margin-bottom: 2.7rem;
}
.section-documents .row {
  flex-wrap: wrap;
  justify-content: center;
}
.section-documents .row.long-gap {
  gap: 6.4rem;
}
.documents-wrapper {
  display: flex;
  flex-direction: column;
}
.documents-item {
  position: relative;
  margin-bottom: 2.7rem;
}

.documents-item .btn-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.section-documents .btn-secondary {
  width: 100%;
}

/* #endregion section-documents */

/* #region section-project */

.section-project {
  position: relative;
  margin-bottom: 14.2rem;
}

.section-project h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-large) / 1.25 var(--font-title);
  color: var(--color-dark);
  max-width: 77.4rem;
  margin: 0 auto;
  margin-bottom: 4.3rem;
}
.section-project h2.small {
  font-family: var(--font-text);
  font-size: var(--font-size-medium-small);
}

.section-project h3 {
  color: var(--color-primary);
  font: normal normal 400 var(--font-size-medium-small) / 3rem var(--font-text);
  text-align: center;
}

.section-project .row {
  gap: 0;
}
.info-1 {
  margin-bottom: 4.1rem;
}
.info-1 .col {
  flex: 0 1 33%;
  width: 33%;
  align-items: center;
  position: relative;
}
.info-1 .col:not(:last-child)::before {
  content: '';
  display: block;
  background-color: #d3d3d3;
  width: 0.1rem;
  height: 23rem;
  position: absolute;
  top: 70%;
  transform: translateY(-70%);
  right: -1.9rem;
}
.section-project .btn-offer {
  margin: 0 auto;
}
.info-1 p {
  text-align: center;
  color: var(--color-primary);
  font: normal normal 400 var(--font-size-base) / 2.4rem var(--font-text);
}

.info-picture {
  width: auto;
  height: 6.4rem;
  margin-bottom: 2.8rem;
}
.info-picture img {
  width: auto;
  height: 100%;
}
.info-2 {
  margin-bottom: 7rem;
}
.info-2 .col {
  flex: 1 1 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.info-2 .col:not(:last-child)::before {
  content: '';
  display: block;
  background-color: var(--color-secondary);
  width: 0.1rem;
  height: 12rem;
  position: absolute;
  top: 6rem;
  transform: translateY(-50%);
  right: 0;
}
.info-2 .col.col1::before {
  right: -3rem;
}
.info-2 .col.col2::before {
  right: 3rem;
}
.info-2 .col.col3::before {
  right: -2rem;
}
@media (max-width: 1051px) {
  .info-2 .col:not(:last-child)::before {
    display: none;
  }
}
.section-project .info-2 h3 {
  color: var(--color-third);
  font: normal normal 300 26px/30px Alan Sans;
  margin: 0;
  text-align: center;
}
.section-project .info-2 p {
  text-align: center;
  color: var(--color-secondary);
  font: normal normal bold 40px/42px Alan Sans;
}

.section-project .col-1 {
  flex: 0 1 65%;
}
.section-project .col-2 {
  flex: 0 1 27%;
}
.section-project .main .col-2 {
  flex: 0 1 35%;
  padding: 0 5rem 0 9rem;
}

.section-project .main img {
  margin-bottom: 6rem;
}
.section-project .info-1 {
  gap: 5rem;
}

.section-project .row.items {
}
.section-project .row.items p {
  height: 12.5rem;
}
.section-project .row.items span {
  font-weight: 700;
}

.project-picture img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.section-project .deco_6 {
  margin-bottom: 1rem;
}
.section-project .deco_7 {
  margin-bottom: 1rem;
  display: none;
}
.section-project .border {
  display: none;
  width: 4.4rem;
  padding: 2px;
  background-color: #c6aa58;
  margin: 0.5rem auto 0;
}
.section-project .row.items .active .deco_6 {
  display: none;
}
.section-project .row.items .active .deco_7 {
  display: block;
}
.section-project .row.items .active .border {
  display: block;
}

@media (max-width: 968px) {
  .section-project .row {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .section-project .col-1,
  .section-project .col-2 {
    flex: 0 1 100%;
    padding: 0;
  }
  .section-project .info-1 .col:not(:last-child)::before {
    display: none;
  }
  .section-project h2 {
    margin: 3rem 0;
  }
  .section-project .row.items p {
    height: 7rem;
  }
}
@media (max-width: 768px) {
  .section-project .row.info-1 {
    gap: 0;
  }
  .info-1 p {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
}

/* #endregion section-project */

/* #region section-team */

.section-team {
  background-color: var(--color-dark);
  padding: 6.5rem 0 4.8rem;
}
.section-team h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-large) / 1 var(--font-title);
  color: #ede9e4;
  margin: 0 auto;
  margin-bottom: 4.2rem;
}
.section-team .container {
  position: relative;
}
.section-team .decor3 {
  position: absolute;
  top: -11rem;
  left: 20rem;
}
.section-team .logo {
  margin: 0 auto 5.8rem;
}
.section-team .logo.type2 {
  margin: 4rem auto 0;
}
.section-team .row {
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.team-member {
  text-align: center;
  max-width: 18rem;
}
.team-member img {
  max-width: 18rem;
  margin-bottom: 2.5rem;
}
.section-team .btn-offer {
  margin: 4.8rem auto 0;
}
.team-name {
  font: normal normal 400 var(--font-size-medium-small) / 2.4rem var(--font-text);
  color: white;
  margin-bottom: 0.5rem;
}
.team-position {
  font: normal normal 700 var(--font-size-base) / 2.4rem var(--font-text);
  letter-spacing: -0.5px;
  color: white;
  height: 5rem;
  margin-bottom: 1rem;
}
.btn-linkedin {
}
.btn-linkedin img {
  width: 4.1rem;
  height: 4.1rem;
}
#teams .popup path ~ g {
  display: none;
}
#teams .popup path.active ~ g {
  display: block;
}
#popup-info .info-popup .info-btn ~ g {
  display: none;
}
#popup-info .info-popup .info-btn.active ~ g {
  display: block;
}

@media (max-width: 1146px) {
  .section-team .decor3.type2 {
    left: 0rem;
  }
}
@media (max-width: 967px) {
  .section-team .decor3 {
    left: 0rem;
  }
}
@media (max-width: 707px) {
  .section-team .decor3.type2 {
    top: -17rem;
  }
}
@media (max-width: 575px) {
  .section-team .decor3 {
    top: -17rem;
  }
}
@media (max-width: 425px) {
  .section-team {
    padding: 6.5rem 0 12rem;
  }
}

/* #endregion section-team */

/* #region section-financement */
.section-financement iframe {
  display: flex;
  width: 100%;
  min-height: 95rem;
}
@media (max-width: 638px) {
  .section-financement iframe {
    min-height: 110rem;
  }
}

/* #endregion section- */

/* region section-prix */

.section-prix .decor1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
}
@media (max-width: 1236px) {
  .section-prix .decor1 {
    right: 0rem;
    top: -7rem;
    width: unset;
  }
}
@media (max-width: 630px) {
  .section-prix .decor1 {
    width: 8rem;
    top: -4rem;
  }
}
.section-prix .row {
  justify-content: center;
  gap: 6rem;
  margin-bottom: 4rem;
}

.section-prix h2,
.section-prix p {
  text-align: center;
}
.section-prix h3 {
  text-transform: uppercase;
  font-size: var(--font-size-large);
}
.section-prix li {
  font-family: var(--font-title);
  font-size: 2.2rem;
  line-height: 3.6rem;
  color: var(--color-primary);
}
.section-prix p {
  margin-bottom: 4rem;
}
.section-prix p.prix-info {
  font: normal normal normal 14px/1.2 var(--font-text);
  letter-spacing: 0.42px;
  color: #433a35;
  margin-bottom: 5rem;
}

/* svg */

.popup-building {
  opacity: 0;
  cursor: pointer;
}
.popup-building.active {
  opacity: 1;
}
.popup-building:not(.popup-building.active):hover {
  opacity: 0.8;
}

.svg_lot {
  cursor: pointer;
}

.svg_lot circle.available,
.svg_lot .circle.available,
.svg_lot.available:hover .hover {
  fill: #46ce86;
}
.svg_lot circle.reserved,
.svg_lot .circle.reserved,
.svg_lot.reserved:hover .hover {
  fill: #ff9800;
}
.svg_lot circle.sold,
.svg_lot .circle.sold,
.svg_lot.sold:hover .hover {
  fill: #e5421e;
}

/* table */

.table {
  margin-bottom: 3rem;
  position: relative;
}
.table .building-list {
  display: flex;
  flex-wrap: wrap;
}
.building-list .btn {
  text-align: center;
  font: normal normal 400 2.4rem/1.8rem var(--font-title);
  letter-spacing: 0.72px;
  color: #bebebe;
  box-shadow: unset;
  flex: 1 0;
  background: unset;
  margin: 5rem 0 2.9rem;
  padding-bottom: 2.1rem;
}
@media (max-width: 830px) {
  .table {
    margin-bottom: 1rem;
  }
  .building-list .btn {
    margin: 1rem 0;
  }
}
.building-list .btn.active {
  color: var(--button-color-secondary);
  border-bottom: 4px solid var(--color-yellow);
  padding-bottom: 1.7rem;
}
/* .table .title {
  text-align: center;
  font-family: "Playfair+Display", Georgia, "Times New Roman", Times, serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.13rem;
  color: #001f46;
  margin-top: 6rem;
  margin-bottom: 1rem;
}
.table .text {
  text-align: center;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  color: #656565;
  margin-top: 0;
  margin-bottom: 5.6rem;
} */

table {
  border-collapse: separate;
  border-spacing: 0;
  color: #000;
  font-size: 1.8rem;
  table-layout: fixed;
}
table th {
  background-color: #f1f1f1;
  height: 6.9rem;
  text-align: center;
  font: normal normal normal 1.4rem/1.8rem var(--font-text);
  font-weight: 400;
  letter-spacing: 0.042rem;
  color: #4e4e4e;
}
table td {
}
table th:first-child {
  border-top-left-radius: 1.6rem;
}
table th:last-child {
  border-top-right-radius: 1.6rem;
}

@media screen and (max-width: 991px) {
  table th {
    font-size: 1.4rem;
    padding-left: 1.5rem;
    height: 5.2rem;
  }
}

table td a {
  color: #707070;
  text-decoration: underline;
  display: flex;
  justify-content: center;
}
table td {
  border-bottom: 0.1rem solid #c5bfbb;
  /* height: 5.2rem; */
  /* padding-left: 2.5rem; */
  text-align: center;
  font: normal normal normal 1.4rem/5rem var(--font-text);
  font-weight: 400;
  /* line-height: 5rem; */
  letter-spacing: 0.042rem;
  color: #433a35;
}
table tr.hover.available,
table tr:hover[data-status='available1'] {
  background-color: rgba(70, 206, 134, 0.3);
}
table tr.hover.reserved,
table tr:hover[data-status='reserved1'] {
  background-color: rgba(255, 152, 0, 0.3);
}
table tr.hover.sold,
table tr:hover[data-status='sold1'] {
  background-color: rgba(229, 66, 30, 0.3);
}
table tr.hover td.sticky,
table tr:hover td.sticky {
  background-color: unset;
}

@media screen and (max-width: 991px) {
  table td {
    font-size: 1.4rem;
  }
}
.status {
  display: block;
  position: relative;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}
.status span {
  border-radius: 100%;
  width: 0.8rem;
  height: 0.8rem;
  margin: 1rem;
}
.status span.available {
  background-color: #46ce86;
}
.status span.reserved {
  background-color: #ff9800;
}
.status span.sold {
  background-color: #e5421e;
}
table td .btn {
  font-size: 1.8rem;
  max-width: 14.1rem;
  height: 4.8rem;
}
table td.sticky,
table th.sticky {
  position: sticky;
  left: 0;
  z-index: 2;
}
table td.sticky {
  background-color: white;
}
table td.sticky a {
  margin: 0 0.25em;
}
@media screen and (max-width: 991px) {
  table td .btn {
    font-size: 1.4rem;
    height: 3.4rem;
    max-width: 11rem;
  }
}
table td .open-row img {
  width: auto;
  height: 1rem;
  transform: none;
  transition: all 0.2s linear;
}
table .row-hidden td {
  padding-left: 0;
}
table .row-hidden td .picture {
  background-color: #e8e3e0;
  width: 116.3rem;
  height: 56rem;
  margin: 3.5rem auto 6rem;
}
@media screen and (max-width: 991px) {
  table .row-hidden td .picture {
    height: 38rem;
    margin: 2rem auto 3rem;
  }
}
table .active td {
  border-bottom: none;
}
table .active td .open-row img {
  transform: rotate(180deg);
}

.table .table-scroll {
  max-width: 146.2rem;
  margin: 0 auto;
  position: relative;
}
.table .table-scroll table {
  min-width: 100rem;
}

/* gallery */
.section-gallery {
  margin-bottom: 8rem;
}
.section-gallery h2 {
  text-align: center;
}

.section-finishes {
  margin-bottom: 7rem;
}
.section-finishes h2 {
  margin-bottom: 3.5rem;
}
.section-finishes h3 {
  color: var(--color-secondary);
  /* margin-bottom: 3.5rem;
  font-size: var(--font-size-medium-small);
  line-height: 1.38; */
}

.section-finishes .row {
  gap: 8rem;
  max-width: 96rem;
  margin: 0 auto;
  margin-bottom: 7rem;
}
.section-finishes .col-1 {
  flex: 0 1 60%;
}
.section-finishes .col-2 {
  flex: 0 1 40%;
}
.section-finishes ul {
  padding-left: 2rem;
  /* margin: 0 0 3rem; */
}
.section-finishes span {
  font: normal normal bold 15px/25px Alan Sans;
}
.section-finishes .col-2 li {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  color: #7d7d7d;
  /* border-bottom: 1px solid var(--color-secondary); */
  margin-bottom: 2.5rem;
}
.section-finishes .sub-list {
  margin-bottom: 0;
}
.section-finishes .sub-list li {
  border-bottom: 0;
}
.finishes-picture {
  width: 100%;
}
.finishes-picture img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.section-location .bus,
.section-location .car,
.section-location .person {
  order: 4;
  padding-left: 1rem;
  width: 2.3rem;
  margin-top: -0.9rem;
}
.section-location .person {
  width: 1.2rem;
}

/* section-equipment */

.section-equipment {
  margin-bottom: 7rem;
}
.section-equipment h2 {
  margin-bottom: 3.5rem;
}
.section-equipment h3 {
  color: var(--color-primary);
  margin-bottom: 3.5rem;
  font-size: var(--font-size-medium-small);
  line-height: 1.38;
}

.section-equipment .row {
  max-width: 96rem;
  margin: 0 auto;
  justify-content: space-between;
}
.section-equipment .col-1 {
  flex: 0 1 50%;
}
.section-equipment .col-2 {
  flex: 0 1 30%;
}

/* section-location */

.section-location {
  position: relative;
  margin-bottom: 9rem;
}
.section-location .container {
}
.section-location .row {
  position: relative;
  gap: 3rem;
  justify-content: space-between;
}
.section-location .col {
}
.section-location .decor1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
}
.section-location .decor2 {
  position: absolute;
  bottom: -4rem;
  left: -4rem;
}
@media (max-width: 1236px) {
  .section-location .decor1 {
    right: 0rem;
    top: -7rem;
    width: unset;
  }
  .section-location .decor2 {
    position: absolute;
    bottom: -4rem;
    left: 0rem;
  }
}
@media (max-width: 630px) {
  .section-location .decor1 {
    width: 8rem;
    top: -4rem;
  }
  .section-location .decor2 {
    bottom: -4rem;
    width: 9rem;
  }
}
@media (max-width: 630px) {
  .section-location .decor2 {
    bottom: -3rem;
    width: 7rem;
  }
  .section-location .decor2 {
    bottom: -4rem;
    width: 7rem;
  }
}
.section-location picture img {
  width: 100%;
}
.section-location h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-medium-small) / 1.25 var(--font-text);
  color: var(--color-dark);
  max-width: 77.4rem;
  margin: 0 auto;
  margin-bottom: 4.3rem;
}
.section-location .title {
  font: normal normal 300 35px/45px Alan Sans;
  color: var(--color-third);
}

.section-location h3 {
  color: var(--color-secondary);
  font: normal normal 300 2rem / 3rem Alan Sans;
}
.row.location-info {
  gap: 10rem;
  margin-bottom: 7rem;
  justify-content: space-between;
}
.location-info-1 {
  flex: 0 1 28%;
}
.location-info-2 {
  flex: 0 1 65%;
}
.location-info-2 img {
  width: 100%;
  /* max-width: 59.6rem;
  max-height: 49.1rem; */
}
.map-item {
  display: flex;
  align-items: center;
  width: 50rem;
  justify-content: center;
}

.map-item::before {
  border-bottom: 1px dotted #e0e0e0;
  content: '';
  height: 1em;
  order: 2;
  flex: 1 1 0%;
  transform: translate3d(0px, 3px, 0px);
}
.map-item figure {
  margin: 0px 1.6rem 0px 0px;
  padding: 0.2em;
  position: relative;
  width: 5rem;
  text-align: center;
}
.map-item p {
  order: 1;
  font: normal normal 400 1.8rem/5rem var(--font-text);
  color: var(--color-primary);
  padding-right: 0.5rem;
  margin: 0;
}
.map-item span {
  order: 2;
  font-family: var(--font-text);
  color: var(--color-primary);
  font-size: var(--font-size-base);
  padding-left: 0.5rem;
}
.location-picture {
  flex: 0 1 68%;
  /* max-height: 55rem;
  max-width: 57rem; */
}
.location-picture img {
  width: 100%;
  height: auto;
}
.section-location .col-2 {
  flex: 0 0 32%;
  gap: 1rem;
  justify-content: space-between;
  /* padding-left: 10rem; */
}
.section-location .project-main {
  margin-top: 5rem;
}
.section-location .project-main .col-1 {
  padding: 4rem 5rem 0;
}
.section-location .project-main .text {
  max-width: 33rem;
  text-align: left;
}

@media (max-width: 1475px) {
  .section-location .col-2 {
    flex: 0 1 40%;
  }
}

@media (max-width: 1280px) {
  /* .map-item p {
    font: normal normal 400 1.7rem/5rem var(--font-text);
  }
  .map-item span {
    font: normal normal 400 1.7rem/5rem var(--font-text);
  } */
}

@media (max-width: 1024px) {
  .section-location .project-main .col-1 {
    padding: 0;
  }
  .section-location .col {
    padding: 1rem;
  }
  .section-location .project-main .col-2 {
    padding: 0;
  }
  .section-location .row {
    gap: 1rem;
  }
  .section-location .col-2 {
    flex: 0 1 49%;
  }
  /* .map-item p {
    font: normal normal 400 1.4rem/5rem var(--font-text);
  }
  .map-item span {
    font: normal normal 400 1.4rem/5rem var(--font-text);
  } */
}
@media (max-width: 968px) {
  .location-info {
    flex-direction: column;
  }
}
@media (max-width: 877px) {
  .section-location .col-2 {
    flex: 0 1 100%;
  }
  .section-location .row {
    flex-direction: column;
  }
  .section-location .project-main {
    flex-direction: row;
  }
  .location-picture {
    max-height: unset;
    max-width: unset;
  }

  .section-location .project-main {
    flex-direction: column;
  }
  .section-location .project-main .col {
    width: 100%;
  }
  .section-location .project-main .text {
    max-width: unset;
  }
}

@media (max-width: 567px) {
  .map-item p {
    font: normal normal 400 1.3rem/4rem var(--font-text);
  }
  .map-item span {
    font: normal normal 400 1.3rem/4rem var(--font-text);
  }
  .section-location .project-picture {
    height: unset;
  }
  .map-item {
    width: 100%;
  }
}

/* section-developers  */

.section-developers {
  margin-bottom: 7rem;
}

.section-developers .row {
  gap: 7rem;
  margin-top: 6rem;
  justify-content: center;
  max-width: 96.4rem;

  margin: 0 auto;
}
.section-developers .col-1 {
  align-items: center;
}
.section-developers .col-2 {
  flex: 0 1 50%;
  padding-bottom: 5rem;
  position: relative;
}
.section-developers h2 {
  text-align: center;
}
.developer-logo {
  margin-bottom: 3rem;
}

.dev-picture {
  max-width: 31.7rem;
}
.dev-picture img {
  width: 100%;
}

@media (max-width: 1023.9px) {
  .section-developers {
    background-position: center;
  }
}

@media (max-width: 678px) {
  .dev-picture {
    width: 100%;
  }
}
@media (max-width: 567px) {
}

/* section-contact */

.contact-open {
  height: 100vh;
  overflow: hidden;
}
.section-contact {
  position: fixed;
  width: 60rem;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 9990;
  background: white;
  margin: 0;
  flex-direction: column;
  transition: transform 0.4s ease-in-out;
  transform: translateX(60rem);
  max-width: 60rem;
  overflow: auto;
}
.section-contact.active {
  transform: translateX(0);
}

.section-contact .row {
  gap: 0;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}
.brokers {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.broker-info {
  text-align: center;
  margin-bottom: 1.7rem;
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  color: var(--color-primary);
  letter-spacing: 0.06rem;
  line-height: 3rem;
}
.broker-picture img {
  margin-bottom: 3.5rem;
  width: 100%;
  max-width: 24rem;
}
.broker-name {
  font-size: var(--font-size-medium);
  letter-spacing: 0.06rem;
  line-height: 3rem;
}
.broker-position {
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 3rem;
}
.broker-phone a {
  font-weight: 700;
  color: var(--color-primary);
}
.broker-email a {
  color: var(--color-primary);
}

.section-contact h2 {
  text-align: center;
  font: normal normal 500 var(--font-size-large) / 1.25 var(--font-title);
  color: var(--color-dark);
  margin: 4rem auto 2rem;
}

.form-contact {
  width: 100%;
  max-width: 96.4rem;
  margin: 0 auto;
}
#modal-brochure .form-contact {
  padding: 0;
}
.form-col {
  display: flex;
  flex-direction: column;
}
.form-col {
  flex: 0 0 45%;
  width: 45%;
  /* padding: 0 1.6rem; */
}
#modal-brochure .form-col {
  margin-bottom: 1rem;
}
#modal-brochure .form-label {
  text-align: left;
}
#modal-floorplan .form-col {
  margin-bottom: 1rem;
}
#modal-floorplan .form-label {
  text-align: left;
}

input.form-control {
  height: 4.4rem;
  background: #f2f2f2;
  border: 0.1rem solid #f2f2f2;
  appearance: none;
  outline: none !important;
  box-shadow: none;
  max-width: 47.4rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 0 0 1rem;
  min-width: 20rem;
}

.form-label {
  font-family: var(--font-text);
  font-size: var(--font-size-small);
  letter-spacing: 0.05rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
#modal-brochure .form-label {
  text-align: left;
}
#modal-brochure .row {
  margin-bottom: 1rem;
  justify-content: space-between;
}

@media (max-width: 768px) {
  #modal-brochure .row {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 575px) {
  .section-contact .container {
    position: relative;
  }
}
.form-textarea {
  background: #f2f2f2;
  border: 0.1rem solid #f2f2f2;
  appearance: none;
  outline: none !important;
  box-shadow: none;
  height: 20rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 1rem 0 1rem 2rem;
}

.form-footer {
  width: 100%;
  text-align: center;
  margin: 3.2rem 0;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
input[type='checkbox'] {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 1024px) {
  .contact-detail {
    flex-direction: column;
    padding: 1.5rem;
  }
  .form-contact {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .section-contact {
    width: 100%;
  }
  .section-contact .row {
    flex-direction: column;
    margin-bottom: 0;
  }
  .form-col {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2rem;
  }
  input.form-control {
    max-width: 100%;
  }
}
@media (max-width: 567px) {
}

.footer {
  position: relative;
  margin: 0 auto;
  z-index: 0;
  background-color: var(--color-dark);
}
.footer-decor {
  position: relative;
  top: -10rem;
  left: 100%;
  transform: translateX(-100%);
}
.footer-wrp {
}
.footer-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('../images/assets/deco_5.svg') 80% 100% no-repeat;
}
.footer-partners {
  background:
    url('../images/assets/partners.webp') 0 100% / cover no-repeat,
    url('../images/assets/partners_bg.jpg') 0% 0% / contain;
  /* background-position: center;
  background-size: contain; */
  min-height: 71rem;
}
.footer-partners.small {
  background:
    url('../images/assets/footer_bg_public.png') 0 100% / 40% no-repeat,
    url('../images/assets/partners_bg.jpg') 0% 0% / contain;
  min-height: 51rem;
}
.footer-team {
}
.footer-partners p,
.footer-partner-item p {
  font: normal normal 400 var(--font-size-medium-small) / 3rem var(--font-text);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3.1rem;
}
.footer-partners-logo {
  padding-bottom: 7rem;
}
@media (max-width: 1210px) {
  .footer-partners-logo {
    padding-bottom: 10rem;
  }
}
.footer-partners-title .contact-block {
  font: normal normal 400 var(--font-size-medium-small) / 3rem var(--font-text);
  color: var(--color-primary);
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 4rem;
}
.footer-partners-title .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575px) {
  .footer-partners-title .contact-block {
    flex-direction: column;
    gap: 0;
  }
  .footer-partners-title .contact-item {
    margin-top: 2rem;
    justify-content: center;
  }
}
.footer-partners-title a {
  text-decoration: none;
  color: var(--color-primary);
}
.footer-partners-title a:hover {
  text-decoration: underline;
}
.footer-team p {
  font: normal normal 400 var(--font-size-medium-small) / 3rem var(--font-text);
  line-height: 3rem;
  text-align: center;
  color: var(--color-dark);
}
.footer-team-picture img {
  width: 18.2rem;
  height: 24.9rem;
}

.footer-info {
  display: flex;
  margin: 0 0 5rem;
}
.footer-info-text {
  font: normal normal normal 0.9rem/1.2rem Lato;
  letter-spacing: -0.009rem;
  color: #ffffff;
  flex: 0 1 50%;
}
.footer-partners-info {
}

.footer-partners-title {
  position: relative;
  background: url('../images/assets/partners_bg.jpg') 0% 0% / contain;
}
.footer-partners-title h2 {
  /* text-align: center; */
  font: normal normal 500 4rem/4rem var(--font-title);
  color: var(--color-dark);
  max-width: 73rem;
  /* margin: 0 auto; */
  background: url('../images/assets/partners_bg.jpg') 0% 0% / contain;
  /* margin-top: -6rem; */
  margin: 0;
}
.footer-partners .row {
  padding-top: 3rem;
}

.footer-partners img {
  margin: 0 auto;
}
.footer-partners-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 60%;
}
.footer-partners-list.small {
  flex: 1 1 40%;
}
.footer-partner-item {
  padding-left: 9rem;
}
p.footer-partners-descr {
  font: normal normal 400 var(--font-size-small) / 1.38 var(--font-text);
  padding-top: 3.1rem;
}
.footer-title {
}
.footer-logo {
  margin: 5rem 0 3rem;
}
.footer-logo img {
  width: 100%;
  max-width: 17.6rem;
}
.footer-privacy {
  flex: 0 1 50%;
  display: flex;
  align-items: flex-end;
}
.privacy-body {
  font: normal normal normal 12px/16px Lato;
  letter-spacing: 0.42px;
  color: #ffffff;
}
.privacy-link {
  color: #ffffff;
}
.privacy-link:hover {
  text-decoration: underline;
}
.privacy-body img {
  width: 6.8rem;
  transform: translateY(0.1rem);
}
.privacy-content {
}
.privacy-title {
}
@media (max-width: 1863px) {
  .footer-partners {
    background-size: contain, contain;
  }
}
@media (max-width: 1670px) {
  .footer-partners {
    background-size: contain, contain;
  }
}
@media (max-width: 1350px) {
  .footer-partners {
    /* min-height: 52rem; */
  }
  .footer-partners .row {
    /* padding-top: 3.3rem; */
  }
}

@media (max-width: 1024px) {
  .footer {
    height: auto;
  }
  .footer-wrp {
    height: auto;
  }
  .footer-body {
    flex-direction: column;
  }
  .footer-info {
  }
  .footer-title {
  }
  .footer-privacy {
    width: 100%;
  }
  .privacy-content,
  .privacy-title {
  }
}

@media (max-width: 860px) {
  .footer-partners-list {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    flex: 1 1 100%;
  }
  .footer-partners-list.small {
    flex: 1 1 0;
  }
  .footer-partners-logo {
    flex-wrap: wrap;
  }
  .footer-partners p,
  .footer-partner-item p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 679px) {
  .footer-partners-list .row {
    flex-direction: column;
    padding-top: 0rem;
  }
  .footer-partners-title .row {
    flex-direction: column;
  }
  .footer-partner-item {
    padding-left: 0rem;
  }
  .footer-partners-list .w50 {
    padding-top: 3rem;
    width: 100%;
  }
  p.footer-partners-descr {
    padding-bottom: 25rem;
  }
  .footer-info {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-partners.small .footer-partners-logo {
    padding-bottom: 20rem;
  }
  .footer-partners.small {
    background-size: 100%, contain;
  }
  .footer-partners.small .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 638px) {
  .footer-decor {
    top: -7rem;
    width: 5rem;
  }
}
@media (max-width: 525px) {
  .footer-partners.small .w33 {
    width: 100%;
  }
}
@media (max-width: 475px) {
  p.footer-partners-descr {
    padding-bottom: 14rem;
  }
  .footer-logo {
    margin: 2rem auto 1rem;
  }
  .footer-info {
    margin: 0 0 1rem;
  }
}
.swiper {
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}
.gallerySwiper .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.previewSwiper .swiper-slide img {
  display: block;
  width: 100%;
  max-height: 18.8rem;
}
.gallerySwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  width: 5.5rem;
  height: 5.5rem;
  --swiper-navigation-color: #af9886;
  --swiper-navigation-size: 32px;
  border: 2px solid var(--swiper-navigation-color);
}
.gallerySwiper .swiper-button-next:after {
  transform: translateX(5px);
}
.gallerySwiper .swiper-slide {
  height: 54rem;
}
.previewSwiper {
  padding-top: 0;
}

@media (max-width: 992px) {
  .gallerySwiper .swiper-slide {
    height: 50vh;
  }
  .previewSwiper .swiper-slide {
    height: 14.5rem;
  }
}

@media (max-width: 768px) {
  .gallerySwiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
}

.previewSwiper .swiper-slide {
  opacity: 0.4;
}
.previewSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.loader:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.loader {
  position: relative;
}
.loader:before {
  background-color: rgba(0, 0, 0, 0);
  z-index: 5;
}
.loader:after {
  animation: spin 1s linear infinite;
  border: 0.5rem solid var(--color-primary);
  border-top: 0.5rem solid white;
  border-radius: 50%;
  content: '';
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transition:
    opacity var(--transition-duration),
    visibility 0s linear var(--transition-duration);
  visibility: hidden;
  z-index: 6;
  height: 3rem;
  width: 3rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader.load {
  opacity: 0.5;
}
.loader.load:before {
  content: '';
}
.loader.load:after,
.loader.load .loader-msg {
  opacity: 0.8;
  transition:
    opacity var(--time),
    visibility var(--time) linear 0s;
  visibility: visible;
}
.d-none {
  display: none;
}

.iziModal {
  z-index: 9998 !important;
}
.iziModal-overlay {
  z-index: 9997 !important;
}
.modal {
  padding: 5rem;
  text-align: center;
  width: 100%;
  max-width: 60rem;
  position: relative;
}
@media screen and (max-width: 575px) {
  .modal {
    padding: 3rem 2rem;
  }
}
.modal-title {
  font-size: 6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  .modal-title {
    font-size: 3.5rem;
  }
}
.modal-subtitle {
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.modal-text {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  /* text-transform: uppercase; */
}
@media screen and (max-width: 575px) {
  .modal-subtitle {
    font-size: 1.8rem;
  }
  .modal-text {
    font-size: 1.6rem;
  }
}
.modal-close {
  position: absolute;
  background-color: transparent;
  top: 2rem;
  right: 2rem;
  padding: 0;
  width: 2rem;
  transition: all 0.2s linear;
  border: none;
  outline: none;
  cursor: pointer;
}
.modal-close i {
  display: block;
  background-color: #000;
  width: 100%;
  height: 0.2rem;
  margin: 0.1rem 0;
  transition: all 0.2s linear;
}
.modal-close i:first-child {
  transform: rotate(45deg);
}
.modal-close i:last-child {
  transform: rotate(-45deg);
  margin-top: -0.3rem;
}

@media (max-width: 1023px) {
  .section-developers .row {
    flex-direction: column;
    align-items: center;
  }
  .section-developers .col-1,
  .section-developers .col-2 {
    flex: 0 1 100%;
  }
  .section-developers .col-1 img {
    width: 100%;
  }
  .section-developers h3 {
    text-align: center;
  }
  .section-developers .col-2::after {
    width: 100%;
  }
}

@media (max-width: 968px) {
  .section-finishes .row,
  .section-equipment .row {
    flex-direction: column;
    align-items: center;
  }
  .section-finishes .col-1,
  .section-finishes .col-2,
  .section-equipment .col-1,
  .section-equipment .col-2 {
    flex: 0 1 100%;
  }
  .equipment-picture img {
    width: 100%;
    max-height: 47rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: var(--font-size-large);
    text-align: center;
  }
  h3 {
    font-size: var(--font-size-medium-small);
    margin-bottom: 1.5rem;
  }
  .section-prix h3 {
    font-size: var(--font-size-medium);
  }
  .section-project .info-1 {
    flex-direction: column;
    margin: 2rem 0;
  }
  .section-project .info-1 .col {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section-project .info-1 .col .info-picture {
    margin-bottom: 0;
  }

  .section-project-1 .row {
    flex-direction: column;
  }
  .section-prix .row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .section-finishes .row {
    flex-direction: column;
    gap: 3rem;
  }
  .ord1 {
    order: 1;
  }
  .ord2 {
    order: 2;
  }

  .section-project-1 .col-1,
  .section-project-1 .col-2 {
    width: 100%;
  }
  .section-project-1 .title {
    font: normal normal 300 3rem / 4.5rem;
  }

  :root {
    --swiper-navigation-size: 1.5rem;
    --swiper-navigation-sides-offset: 1rem;
  }
  .gallerySwiper .swiper-button-prev,
  .gallerySwiper .swiper-button-next {
    width: 3rem;
    height: 3rem;
    --swiper-navigation-size: 18px;
  }
  .gallerySwiper .swiper-button-next:after {
    transform: translateX(2px);
  }
}

@media (max-width: 567px) {
  .table .title {
    font: normal normal 300 3rem/4.5rem;
  }
  .table .text {
    font: normal normal 300 2rem/3rem;
  }
  .hero-bottom {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .hero-logo {
    max-width: 100%;
  }
}
