@import url("https://fonts.googleapis.com/css?family=Raleway:100,200,300,regular,500,600,700,300italic,italic,700italic&display=swap");

body {
  font-family: Raleway, Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
}
picture {
  width: 100%;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 10rem;
  justify-content: center;
}
.col {
  display: flex;
  flex-direction: column;
}
.w33 {
  width: 33%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.container {
  max-width: 132rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero__body {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 76.8rem;
  transform: translateY(-8rem);
}
.hero__content {
  text-align: center;
}
.hero__content h2 {
  color: white;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: 8.5rem;
  font-weight: 400;
  margin: 0;
}
.hero__logo {
  max-width: 33.4rem;
  margin: 0 auto;
}
.hero__logo img {
  width: 100%;
}
.hero__cta a {
  background-color: rgb(9, 141, 182);
  border-radius: 2.6rem;
  width: 21rem;
  height: 5.7rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* z-index: 1; */
  height: 76.8rem;
}
.hero__background img,
.hero__background video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section__project {
  background: rgb(9, 141, 182);
}
.section__project .container {
  display: flex;
}

.project aside {
  color: white;
}
.project__body {
  display: flex;
}
.project__body .col:first-child {
  align-self: flex-end;
  margin-bottom: 3rem;
}
.project__body .col {
  flex: 0 1 25%;
  width: 25%;
}
.project__body .col.gray {
  background-color: rgb(231, 233, 236);
  padding: 6rem 3rem;
  gap: 4rem;
}
.project h2,
.project .sub-title {
  margin: 0;
  font-weight: 700;
  font-style: italic;
  font-size: 4.6rem;
  line-height: 1;
  color: white;
}
.project .sub-title {
  margin-bottom: 2rem;
  font-weight: 400;
}
.project .text,
.project .info {
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.9rem;
  color: white;
}
.project .info {
  color: black;
  font-weight: 400;
}
.project picture {
  position: relative;
}
.project figcaption {
  position: absolute;
  bottom: 1rem;
  left: 61%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  color: rgb(255, 255, 255);
  text-shadow: -0.2rem 0 0.5rem rgba(0, 0, 0, 0.5);
}
.project img {
  width: 100%;
}

@media (max-width: 1300px) {
  .project__body {
    justify-content: center;
    flex-wrap: wrap;
  }
  .project__body .col.gray {
  }
  .project__body aside.col {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  /* .project__body {
    justify-content: center;
  } */
  .project__body .col.gray {
    width: 40%;
    flex: 0 0 40%;
  }
  /* .project__body aside.col {
    width: 100%;
    flex: 0 0 100%;
  } */
}
@media (max-width: 678px) {
  .project__body .col.gray {
    width: 90%;
    flex: 0 0 90%;
  }
}

.apartments .container {
  /* height: 100vh; */
  padding-bottom: 6rem;
}
.apartments .col {
  flex: 0 1 50%;
  width: 50%;
  justify-content: center;
}
.apartments h2 {
  font-size: 6.4rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: rgb(20, 96, 141);
}
.apartments h2 span {
  font-weight: 700;
}
.apartments__body {
  display: flex;
}
.apartments .title,
.apartments .text {
  font-size: 2.7rem;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  font-kerning: none;
  text-decoration: none;
  text-align: center;
}
.apartments .text {
  font-weight: 400;
}
.apartments .price {
  font-weight: 700;
  color: rgb(20, 96, 141);
  margin-bottom: 5rem;
  text-align: center;
  font-size: 4rem;
}
.apartments picture {
  text-align: center;
}
.apartments picture img {
  width: 100%;
  max-width: 51rem;
}

.apartments a {
  background-color: rgb(9, 141, 182);
  border-radius: 2.6rem;
  width: 21rem;
  height: 5.7rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 4rem;
}
.apartments.gray {
  background-color: rgb(231, 233, 236);
  padding-top: 6rem;
}

@media (max-width: 678px) {
  .apartments__body {
    flex-direction: column;
  }

  .apartments .col {
    flex: 0 1 100%;
    width: 100%;
  }
}
.features {
}
.features .container {
}
.features__body {
  display: flex;
}
.features__body .col:first-child {
  padding-top: 10rem;
}
.features__body .col {
  flex: 0 1 50%;
  width: 50%;
  position: relative;
}
.features__body .col picture {
}
.features__body .col picture img {
  max-width: 36rem;
  width: 100%;
  height: auto;
}
.features__body .col picture.second {
  position: absolute;
  bottom: 17rem;
  right: -18rem;
}
.features h2 {
  font-size: 6.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgb(20, 96, 141);
}
.features h2 span {
  font-weight: 700;
}
.features ul {
  font-size: 2.6rem;
  line-height: 6.6rem;
  font-weight: 400;
  font-style: normal;
  color: rgb(0, 0, 0);
}

@media (max-width: 1150px) {
  .features__body {
    flex-direction: column;
  }
  .features__body .col {
    flex: 0 1 100%;
    width: 100%;
    position: static;
  }
  .features__body .col picture.second {
    position: static;
  }
  .features__body .col:first-child {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }
}

.section__contact {
  background-color: rgb(231, 233, 236);
}

.contact .row {
  gap: 0;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.contact__header {
}
.contact__header picture {
}
.contact__header img {
  max-height: 56rem;
  width: 100%;
  object-fit: cover;
}
.contact__footer img {
  /* max-height: 56rem; */
  width: 100%;
  object-fit: cover;
}
.contact__body {
  text-align: center;
}
.contact h2 {
  font-size: 6.4rem;
  font-weight: 700;
  font-style: normal;
  color: rgb(20, 96, 141);
}
.contact .logo {
  width: 22rem;
  margin-bottom: 4rem;
}
.contact .title,
.contact .text {
  font-size: 2.7rem;
  line-height: 1.5;
  font-weight: 700;
  color: rgb(0, 0, 0);
}
.contact .text {
  font-weight: 400;
}

.footer__body {
  padding: 6rem 0;
}
.footer__logos {
  display: flex;
  justify-content: space-around;
}
.footer__logo {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: normal;
  color: rgb(52, 57, 53);
}

.footer__logo img,
.footer__logo span {
  margin: 5rem;
}
.footer__info {
  display: flex;
}

.footer__info--item {
  flex: 0 0 50%;
}
.footer__info--item a {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(52, 57, 53);
}
/* btn */

.btn {
  border: none;
  cursor: pointer;
  background-color: #d8ad77;
}
.btn:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .footer__logos {
    flex-wrap: wrap;
  }
  .footer__logo {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 567px) {
  .footer__logo {
    flex: 0 0 95%;
    width: 95%;
  }
  .footer__info {
    flex-direction: column;
    gap: 5rem;
  }
}

.btn-contact {
  font-family: Raleway, Arial, Helvetica, sans-serif;
  max-width: 39rem;
  height: 6.4rem;
  text-align: center;
  letter-spacing: -0.24px;
  color: #ffffff;
  border-radius: 18px;
  background-color: rgb(9, 141, 182);
  border-radius: 2.6rem;
  width: 21rem;
  height: 5.7rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 4rem;
}
.btn-contact {
  width: 20rem;
}

.form-contact {
  width: 100%;
  max-width: 80rem;
  padding: 6rem 10rem 0;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.form-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 40%;
  width: 40%;
}

input.form-control {
  height: 4rem;
  background-color: rgb(231, 233, 236);
  border: unset;
  border-bottom: 2px solid black;
  appearance: none;
  outline: none !important;
  box-shadow: none;
  width: 100%;
  font-size: 2rem;
  font-weight: 300;

  /* padding: 0 0 0 2rem; */
}

.form-label {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
}
.form-textarea {
  background-color: rgb(231, 233, 236);
  border: unset;
  border-bottom: 2px solid black;
  appearance: none;
  outline: none !important;
  box-shadow: none;
  width: 100%;
  height: 4rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 3.8rem;
  /* padding: 1rem 0 1rem 2rem; */
}

.form-footer {
  width: 100%;
  text-align: center;
  margin-top: 3.2rem;
}
.contact-detail {
  display: flex;
}
@media (max-width: 1024px) {
  .form-contact {
    margin-top: 5rem;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .form-contact .row {
    flex-direction: column;
  }
  .form-col {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 567px) {
}

.loader-wrapper {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  background-color: black;
  opacity: 0.3;
}
.loader {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
}
@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff,
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
      1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
.d-none {
  display: none;
}

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