* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.h1 {
  letter-spacing: -0.03em;
  line-height: 110%;
  font-size: 64px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 42px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h1 {
    font-size: 42px;
  }
}

.h1--primary {
  color: #ffffff;
}

.h1--secondary {
  color: #333;
}

.nav-link {
  letter-spacing: 0.05em;
  line-height: 140%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

.text--sm {
  font-size: 10px;
}
.text--md {
  font-size: 14px;
}
.text--tertiary {
  color: #888;
}
.text--secondary {
  color: #333;
}
.text--primary {
  color: #ffffff;
}

.weight--600 {
  font-weight: 600;
}
.weight--400 {
  font-weight: 400;
}

.item-title {
  font-size: 20px;
  font-weight: 600;
}
.item-title--14 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.item-title--26 {
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 767px) {
  .item-title--26 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-title--26 {
    font-size: 20px;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  text-decoration: none;
}

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;
}

.btn {
  padding: 16px 28px;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  transition: background-color 0.3s ease-in-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.btn--filled {
  background-color: #ffffff;
  color: #333;
}
.btn--filled:hover {
  background-color: #000;
  color: #ffffff;
}
.btn--filled-secondary {
  background-color: #000;
  color: #ffffff;
}
.btn--no-padding {
  padding: 0;
}
.btn--dark {
  background-color: #333;
  color: #eaeaea;
  width: fit-content;
  white-space: nowrap;
  padding: 16px 40px;
}
.btn--dark:hover {
  background-color: rgb(45, 45, 45);
}
.btn--lined {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.form__control:not(:first-child) {
  margin-top: 1.3rem;
}
.form__input {
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(136, 136, 136, 0.5);
  width: 100%;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 15px;
  font-weight: 400;
}
.form__input:focus {
  border-color: #333;
}
.form__input::placeholder {
  color: rgba(136, 136, 136, 0.8);
}

.section {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1350px;
  height: auto;
}
.section--full-vh {
  height: 100vh;
}
@media (max-width: 767px) {
  .section--full-vh {
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section--full-vh {
    height: auto;
  }
}

.nav__wrapper {
  width: 100%;
  position: fixed;
  padding: 0.2rem 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 50;
  transition: all 0.2s ease;
  font-family: "Montserrat";
}
.nav__wrapper.transparent {
  background-color: transparent;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}
.nav__wrapper.hide {
  transform: translateY(-100%);
}
@media (max-width: 767px) {
  .nav__wrapper {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__wrapper {
    display: none;
  }
}

.nav {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
}

.nav__logo {
  height: 43px;
}
.nav__logo > img {
  height: 100%;
}

.nav__links {
  display: flex;
}
.nav__links:first-child {
  margin-left: auto;
}
.nav__links:last-child {
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 10px;
  height: 43px;
}

.btn__icon {
  margin-left: 10px;
}

.language-switcher {
  position: relative;
}
.language-switcher__btn {
  font-size: 10px;
  text-transform: uppercase;
  height: 38px;
  width: 38px;
  border-radius: 50%;
}
.language-switcher__btns {
  position: absolute;
  background-color: #ffffff;
  width: 10rem;
  transform: translateY(10%);
  padding: 1rem;
  border-radius: 0.75rem;
}
.language-switcher__btns.hide {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .language-switcher__btns {
    right: 0;
  }
}
@media (max-width: 767px) {
  .language-switcher__btns {
    right: 0;
  }
}

.mobile-nav {
  position: fixed;
  z-index: 50;
  width: 100%;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__main {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 1rem;
  max-width: 1350px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
.mobile-nav__main.transparent {
  background-color: transparent;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}
.mobile-nav__main.hide {
  transform: translateY(-100%);
}
.mobile-nav__popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.mobile-nav__popup::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.mobile-nav__popup.hide {
  transform: translate(0, 0);
}
.mobile-nav__btns {
  display: flex;
  justify-content: space-between;
}
.mobile-nav__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav__link {
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-size: 28px;
  font-weight: 600;
  font-family: Montserrat;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eaeaea;
}
.mobile-nav__link > a {
  color: #333;
}
.mobile-nav__contact {
  display: flex;
  margin-top: 3rem;
  gap: 20px;
}
.mobile-nav__contact-btn {
  width: 100%;
}
.mobile-nav__contact-btn > * {
  padding-top: 0;
  padding-bottom: 0;
}
.mobile-nav__contact-btn--rounded {
  border-radius: 50%;
  width: 43px;
  height: 43px;
}
.mobile-nav__contact-btn--rounded > * {
  width: 16px;
  height: 16px;
}
.mobile-nav__contact-btns {
  display: flex;
  gap: 10px;
}

.popup__close-btn {
  width: 38px;
  height: 38px;
}

.location__wrapper {
  position: relative;
  background-color: #0f0f0f;
  font-family: "Montserrat";
}
.location__header {
  color: #ffffff;
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .location__header {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__header {
    padding-top: 100px;
  }
}
.location__header > hr {
  width: calc(50% - 30px);
  margin-left: 0;
  margin-top: 1.5rem;
  display: block;
  border: none;
  border-bottom: 1px solid #333;
}
@media (max-width: 767px) {
  .location__header > hr {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__header > hr {
    display: none;
  }
}
.location__content {
  color: #ffffff;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .location__content {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.location__lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 2.5rem;
  width: 50%;
}
@media (max-width: 767px) {
  .location__lists {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__lists {
    width: 100%;
  }
}
.location__nearby {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 50%;
  gap: 10px;
  padding-right: 4rem;
  padding-top: 1rem;
  margin-right: auto;
}
@media (max-width: 767px) {
  .location__nearby {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__nearby {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }
}
.location__map {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .location__map {
    position: unset;
    width: 100%;
    margin-top: 6rem;
    height: 50vh;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location__map {
    position: unset;
    width: 100%;
    margin-top: 6rem;
    height: 50vh;
  }
}

.nearby__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .nearby__content {
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nearby__content {
    gap: 0;
  }
}
.nearby__content-number {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.technology__wrapper {
  background-color: #eaeaea;
  padding: 6rem 0;
  font-family: "Montserrat";
}
.technology__header {
  color: #333;
}
.technology__header > hr {
  margin-top: 1.5rem;
  border: none;
  border-bottom: 1px solid #333;
}
@media (max-width: 767px) {
  .technology__header > hr {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .technology__header > hr {
    display: none;
  }
}
.technology__lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .technology__lists {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .technology__lists {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}
.technology__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 33.3333333333%;
  padding-right: 4rem;
  padding-top: 3rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  .technology__item {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .technology__item {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
  }
}

.main-footer {
  background-color: #0f0f0f;
  color: #fff;
  font-family: "Montserrat";
}

.footer {
  padding: 3rem 1rem 1rem;
  height: 100%;
  width: 100%;
}
.footer__header {
  display: flex;
  justify-content: space-between;
}
.footer .footer__icons {
  display: flex;
  color: #eaeaea;
  gap: 1rem;
  font-size: 16px;
}
.footer .footer__icons .footer__icon {
  height: 2.7rem;
  width: 2.7rem;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer .footer__icons .footer__icon:hover {
  background-color: #eaeaea;
  color: #000;
}
.footer__left {
  display: flex;
  justify-content: space-between;
  width: 55%;
}
@media (max-width: 767px) {
  .footer__left {
    flex-direction: column;
    width: auto;
    gap: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__left {
    flex-direction: column;
    width: auto;
    gap: 3rem;
  }
}
.footer .copyright,
.footer .create-by {
  font-size: 13px;
  font-weight: 300;
  color: #eaeaea;
}
.footer .create-by p {
  margin-bottom: 0.6rem;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav ul li {
  list-style: none;
}
.footer__nav ul li a {
  text-transform: uppercase;
  color: #eaeaea;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.footer__footer {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guideline {
  color: #ffffff;
  position: relative;
  z-index: 10;
  font-family: "Montserrat";
}
.guideline__wrapper {
  background-image: url("../../images/guideline.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .guideline__wrapper {
    background-attachment: scroll;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .guideline__wrapper {
    background-attachment: scroll;
  }
}
.guideline__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.guideline__header {
  color: #ffffff;
}
.guideline__header > hr {
  margin-top: 1.5rem;
  border: none;
  border-bottom: 1px solid #888;
}
@media (max-width: 767px) {
  .guideline__header > hr {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .guideline__header > hr {
    display: none;
  }
}
.guideline__content {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}
@media (max-width: 767px) {
  .guideline__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 2rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .guideline__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 2rem 1rem;
  }
}
.guideline__content-wrapper {
  width: 33.3333%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .guideline__content-wrapper {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .guideline__content-wrapper {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
.guideline__content-step {
  font-size: 70px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .guideline__content-step {
    font-size: 2.625rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .guideline__content-step {
    font-size: 2.625rem;
  }
}
.guideline__content-desc {
  font-size: 1rem;
  max-width: 200px;
  color: #eaeaea;
}

.other-projects {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
}
@media (max-width: 767px) {
  .other-projects {
    flex-direction: column;
    align-items: start;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .other-projects {
    flex-direction: column;
    align-items: start;
  }
}
.other-projects__wrapper {
  background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./../../images/realizations_desktop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .other-projects__wrapper {
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./../../images/realizations_mobile.jpg);
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .other-projects__wrapper {
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./../../images/realizations_mobile.jpg);
    height: auto;
  }
}
.other-projects__header {
  width: 66.6667%;
}
.other-projects__header h1 {
  width: 32rem;
}
@media (max-width: 767px) {
  .other-projects__header {
    width: 100%;
  }
  .other-projects__header h1 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .other-projects__header {
    width: 100%;
  }
  .other-projects__header h1 {
    width: 100%;
  }
}
.other-projects .other-project {
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .other-projects .other-project {
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .other-projects .other-project {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.other-projects .other-project p {
  max-width: 200px;
  margin-top: -0.4rem;
}
@media (max-width: 767px) {
  .other-projects .other-project p {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .other-projects .other-project p {
    max-width: 100%;
  }
}

.contact__wrapper {
  padding: 6rem 0;
  background-color: #eaeaea;
  font-family: "Montserrat";
}
.contact__content {
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .contact__content {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact__content {
    flex-direction: column;
    gap: 0;
  }
}
.contact__header {
  margin-bottom: 3rem;
}
.contact__left {
  width: 49vw;
}
@media (max-width: 767px) {
  .contact__left {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact__left {
    width: 100%;
  }
}
.contact__form--header {
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 600;
}
.contact__form--footer {
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .contact__form--footer {
    flex-direction: column;
  }
  .contact__form--footer .btn--dark {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact__form--footer {
    flex-direction: column;
  }
  .contact__form--footer .btn--dark {
    width: 100%;
  }
}
.contact__form--footer p {
  letter-spacing: -0.3px;
  line-height: 14px;
}
.contact__right {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .contact__right {
    border-left: 1px solid rgba(15, 15, 15, 0.4);
    height: fit-content;
    padding-left: 1.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact__right {
    border-left: 1px solid rgba(15, 15, 15, 0.4);
    height: fit-content;
    padding-left: 1.4rem;
  }
}
.contact__info:not(:last-child) {
  margin-bottom: 1.2rem;
}
.contact__info p:first-child {
  letter-spacing: 0.7px;
  margin-bottom: 1rem;
}

#app {
  position: relative;
  font-family: "Montserrat";
}

.img_hover, .houses__draw-hover:nth-child(7), .houses__draw-hover:nth-child(6), .houses__draw-hover:nth-child(5), .houses__draw-hover:nth-child(4), .houses__draw-hover:nth-child(3), .houses__draw-hover:nth-child(2) {
  width: 5.9rem;
  height: 6.5rem;
  opacity: 0;
}
.img_hover:hover, .houses__draw-hover:hover:nth-child(7), .houses__draw-hover:hover:nth-child(6), .houses__draw-hover:hover:nth-child(5), .houses__draw-hover:hover:nth-child(4), .houses__draw-hover:hover:nth-child(3), .houses__draw-hover:hover:nth-child(2) {
  opacity: 1;
}

.intro {
  position: absolute;
  color: white;
  width: 100%;
  top: 30%;
  height: 100%;
}
@media (max-width: 767px) {
  .intro {
    padding: 3%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro {
    padding: 3%;
  }
}
.intro__one {
  font-weight: 700;
  font-size: 4.5rem;
  text-align: center;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .intro__one {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro__one {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.intro__two {
  margin-left: 10%;
  width: 50%;
}
@media (max-width: 767px) {
  .intro__two {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro__two {
    width: 100%;
    margin: 0;
  }
}
.intro__two h1 {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .intro__two h1 {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro__two h1 {
    font-size: 2.3rem;
  }
}
.intro__two p {
  margin-bottom: 1rem;
  width: 50%;
  line-height: 1.2rem;
}
@media (max-width: 767px) {
  .intro__two p {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro__two p {
    width: 60%;
  }
}
.intro__two-flex {
  display: flex;
  margin-top: 1.5rem;
}
.intro__two-item h3 {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .intro__two-item h3 {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .intro__two-item h3 {
    font-size: 1.2rem;
  }
}
.intro__two-item p {
  width: 6rem;
}
.intro__two-item:not(:last-child) {
  margin-right: 20px;
}

.hero {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 50vh;
  }
}
.hero__video-container {
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}
.hero__video {
  width: 100vw;
  object-fit: cover;
  height: 100vh;
}
@media (max-width: 767px) {
  .hero__video {
    height: 50vh;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__video {
    height: 50vh;
  }
}
.hero__video-trans {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}
.hero__video-trans video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero__video-trans video {
    height: 50vh;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__video-trans video {
    height: 50vh;
  }
}

.title {
  padding: 1rem;
  max-width: 40rem;
  position: absolute;
  top: 6rem;
  left: 5rem;
}
@media screen and (max-width: 1500px) {
  .title {
    top: 3rem;
    left: 5rem;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .title {
    position: relative;
    top: 0;
    left: 0;
    background-color: #000;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .title {
    position: relative;
    top: 0;
    left: 0;
    background-color: #000;
  }
}
.title h1 {
  font-size: 4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 2rem;
  width: 40rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .title h1 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .title h1 {
    display: none;
  }
}

.houses {
  color: white;
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .houses {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .houses {
    display: block;
  }
}
.houses__draw {
  padding-top: 0.6rem;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  margin-left: 1.2rem;
  position: relative;
}
.houses__draw img {
  width: 6.5rem;
  height: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .houses__draw {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .houses__draw {
    display: none;
  }
}
.houses__draw-hover {
  position: absolute;
}
.houses__draw-hover:nth-child(2) {
  top: 17px;
  left: 13px;
}
.houses__draw-hover:nth-child(3) {
  top: 122px;
  left: 13px;
}
.houses__draw-hover:nth-child(4) {
  top: 208px;
  left: 13px;
}
.houses__draw-hover:nth-child(5) {
  top: 281px;
  left: 13px;
}
.houses__draw-hover:nth-child(6) {
  bottom: 54px;
  left: 13px;
}
.houses__draw-hover:nth-child(7) {
  bottom: -8px;
  left: 13px;
}
.houses__item {
  display: flex;
  padding: 1.5rem 1.5rem;
  border: 1px solid #333;
  border-radius: 0.5rem;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.houses__item:not(:last-child) {
  margin-bottom: 0.3rem;
}
.houses__item:hover {
  background-color: rgb(238, 238, 238) !important;
  color: #000000;
}
@media (max-width: 767px) {
  .houses__item {
    justify-content: space-between;
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .houses__item {
    justify-content: space-between;
    padding: 1rem;
  }
}
.houses__item-section:not(:last-child) {
  margin-right: 1.8rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .houses__item-section:not(:last-child) {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .houses__item-section:not(:last-child) {
    margin: 0;
  }
}
.houses__item-section p {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
}
@media (max-width: 767px) {
  .houses__item-section p {
    color: #888;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .houses__item-section p {
    color: #888;
  }
}

.house__details {
    width: 26rem;
    color: white;
    position: absolute;
    top: 6%;
    left: 1%;
    z-index: 51;
}
@media screen and (max-width: 1500px) {
  .house__details {
    top: 5rem;
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .house__details {
    position: relative;
    top: 0;
    left: 0;
    background: #000;
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__details {
    position: relative;
    top: 0;
    left: 0;
    background: #000;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .house__details {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__details {
    padding: 1rem 25%;
  }
}
.house__detail-left {
  margin-bottom: 0.5rem;
}
.house__detail-left .houses__item-section:not(:first-child) p {
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .house__detail-left .houses__item-section:not(:first-child) p {
    font-size: 0.7rem;
    color: #888;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__detail-left .houses__item-section:not(:first-child) p {
    font-size: 0.7rem;
    color: #888;
  }
}
.house__square {
  padding: 1.2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__square {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .house__square {
    padding: 0;
  }
}
.house__square-container {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__square-container {
    display: block;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .house__square-container {
    display: block;
    margin-right: 20px;
  }
}
.house__sqLeft {
  margin-right: 1.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__sqLeft {
    display: none;
  }
}
@media (max-width: 767px) {
  .house__sqLeft {
    display: none;
  }
}
.house__sqLeft .houses__item-section p {
  margin-bottom: 0.7rem;
}
.house__sqLeft .houses__item-section h4 {
  font-size: 1.3rem;
}
.house__sqRight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__sqRight {
    text-align: right;
    grid-gap: 1.2rem 0;
  }
}
@media (max-width: 767px) {
  .house__sqRight {
    text-align: right;
    grid-gap: 1.2rem 0;
  }
}
.house__doc {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__doc {
    display: block;
  }
}
@media (max-width: 767px) {
  .house__doc {
    display: block;
  }
}
.house__doc-left h4 {
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__doc-left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .house__doc-left {
    width: 100%;
  }
}
.house__cta {
  padding: 0.8rem 2.5rem;
  background-color: white;
  color: #000000;
  text-transform: uppercase;
  border-radius: 200px;
  cursor: pointer;
  border: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house__cta {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .house__cta {
    width: 100%;
    margin-top: 20px;
  }
}
.house__title {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
}
.house__title-back-btn {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  margin-right: 0.7rem;
  transition: all 0.3s;
}
.house__title-back-btn:hover {
  transform: scale(1.1);
}
.house__title img {
  height: 1rem;
  width: 1rem;
}
.house__title h3 {
  text-transform: uppercase;
  font-weight: 700;
}

#house-nav {
  width: fit-content;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  color: white;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  height: fit-content;
  top: 80vh;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #house-nav {
    top: 40vh;
  }
}
@media (max-width: 767px) {
  #house-nav {
    top: 40vh;
  }
}

.house-nav__ext {
  margin-right: 2rem;
}
.house-nav__dot {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
@media (max-width: 767px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
.house-nav__img {
  height: 4rem;
  width: 4rem;
  border-radius: 0.3rem;
  cursor: pointer;
}
.house-nav__img--focus {
  border: 2px solid white;
}
.house-nav__img:not(:last-child) {
  margin-right: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__img {
    display: none;
  }
}
@media (max-width: 767px) {
  .house-nav__img {
    display: none;
  }
}
.house-nav__ext--heading {
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
    user-select: none;
  }
}
@media (max-width: 767px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
  }
}
.house-nav__left, .house-nav__right {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid white;
  margin-top: 0.5rem;
  margin: 0 1rem;
  cursor: pointer;
}
.house-nav__left img, .house-nav__right img {
  height: 0.7rem;
  width: 0.7rem;
}

.v-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  height: 2.5rem;
  padding-right: 1.8rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

/*# sourceMappingURL=style.css.map */
#house-nav {
  width: fit-content;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  color: white;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  height: fit-content;
  top: 80vh;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #house-nav {
    top: 40vh;
  }
}
@media (max-width: 767px) {
  #house-nav {
    top: 40vh;
  }
}

.house-nav__ext {
  margin-right: 2rem;
}
.house-nav__dot {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
@media (max-width: 767px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
.house-nav__img {
  height: 4rem;
  width: 4rem;
  border-radius: 0.3rem;
  cursor: pointer;
}
.house-nav__img--focus {
  border: 2px solid white;
}
.house-nav__img:not(:last-child) {
  margin-right: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__img {
    display: none;
  }
}
@media (max-width: 767px) {
  .house-nav__img {
    display: none;
  }
}
.house-nav__ext--heading {
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
  }
}
.house-nav__left, .house-nav__right {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid white;
  margin-top: 0.5rem;
  margin: 0 1rem;
  cursor: pointer;
}
.house-nav__left img, .house-nav__right img {
  height: 0.7rem;
  width: 0.7rem;
}

.v-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  height: 2.5rem;
  padding-right: 1.8rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

/*# sourceMappingURL=style.css.map */
#house-nav {
  width: fit-content;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  color: white;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  height: fit-content;
  top: 80vh;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #house-nav {
    top: 40vh;
  }
}
@media (max-width: 767px) {
  #house-nav {
    top: 40vh;
  }
}

.house-nav__ext {
  margin-right: 2rem;
}
.house-nav__dot {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
@media (max-width: 767px) {
  .house-nav__dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    margin: 2px;
    cursor: pointer;
  }
  .house-nav__dot:hover {
    background: #eaeaea;
  }
}
.house-nav__img {
  height: 4rem;
  width: 4rem;
  border-radius: 0.3rem;
  cursor: pointer;
}
.house-nav__img--focus {
  border: 2px solid white;
}
.house-nav__img:not(:last-child) {
  margin-right: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__img {
    display: none;
  }
}
@media (max-width: 767px) {
  .house-nav__img {
    display: none;
  }
}
.house-nav__ext--heading {
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .house-nav__ext--images {
    display: flex;
    width: 100%;
  }
}
.house-nav__left, .house-nav__right {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid white;
  margin-top: 0.5rem;
  margin: 0 1rem;
  cursor: pointer;
}
.house-nav__left img, .house-nav__right img {
  height: 0.7rem;
  width: 0.7rem;
}

.v-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  height: 2.5rem;
  padding-right: 1.8rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
 #video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

       
#fullscreen-video {
            width: 100%;
            height: 100%;
            object-fit: cover; 
        }
/*# sourceMappingURL=style.css.map */
    body {
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

#video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    pointer-events: block;
    transition: background-color 0.3s ease, z-index 0.3s ease; 
}

#video-container.active {
    background-color: rgba(0, 0, 0, 0.8); 
}
    #my-video {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -99;
    }

 /*   .pin-marker {
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: red;
      border-radius: 50%;
      pointer-events: block;
      display: none;
      z-index: 2;
    }*/
    .pin-marker {
  position: absolute;
  pointer-events: block;
  display: none;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
  
  &::after {
    content: "\e0c8"; 
    font-family: 'Material Icons'; 
    font-size: 45px; 
    color: white; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
  }
}
.pin-marker:hover {
  transform: scale(1.2) translateY(-10px); 
}



  #video-container iframe {
     width: 70%;
    height: 70%;
    border: 0;
    position: absolute;
    pointer-events: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 99999999;

  }
  .house-nav__img:hover {
  transform: scale(1.1); 
}
.house-nav__ext--imagess {
  display: flex;
  
}

.house-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0px; 
  margin-bottom: 0px; 
}

.house-nav__text {
  opacity: 0;
  transition: opacity 0.3s ease-in-out; 
  margin-top: 5px !important;
}

.house-nav__item:hover .house-nav__text {
  opacity: 1; 
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #fff; 
  font-weight: 400; 
  font-style: normal;
}

.houses__info-left {
    width: 30%; 
    float: left; 
    padding-right: 10px; /
}


.houses__info-right {
    width: 70%; 
    float: left; 
}


.houses__info-row {
    margin-bottom: 10px; 
}


.texttieude {
    font-weight: bold; 
    margin-right: 10px;
}



.houses__item {
    display: flex;
    padding: 1.5rem 1.5rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
@media (max-width: 1600px) {
.houses__item {
    display: flex;
    padding: 1.5rem 1.5rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
}
@media (max-width: 1600px) {
.house__details {
    width: 22rem;
}

.houses__item::after {
    content: "";
    display: table;
    clear: both;
}
.texttieude{
  font-weight: 300px;
}