@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

* {
  -webkit-touch-callout: none;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background: #F6F1EB;
}

h2.h2 {
  font-size: 65px;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 1.1em;
  letter-spacing: -2%;
  font-family: "Montserrat", sans-serif;
}
h2.h2.center {
  text-align: center;
}

@media only screen and (max-width: 1650px) {
  h2.h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 27px;
  }
}
header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo a {
  color: #3E3E3E;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #3E3E3E;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #3E3E3E;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 401;
  background: rgba(62, 62, 62, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    gap: 30px;
  }
  header nav a {
    font-size: 16px;
  }
  header .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 5%;
    height: 70px;
  }
  header .logo a {
    font-size: 20px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.secondary a {
  background: transparent;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}
.btn.secondary:hover a {
  outline: 1px solid #3E3E3E;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  border-radius: 200px;
  text-decoration: none;
  padding: 0.65em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #B8B9A5;
  outline: 1px solid transparent;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
}
.btn:hover a {
  outline: 1px solid #B8B9A5;
}

footer {
  padding: 5rem 5%;
  background: #3E3E3E;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 55%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}
footer .footer__content .left p, footer .footer__content .left a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p {
  max-width: 500px;
}
footer .footer__content .left img {
  height: 250px;
}
footer .footer__content .left a {
  text-decoration: none;
}
footer .footer__content .left a[href^=tel] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-weight: 400;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #B8B9A5;
  stroke-width: 3;
}

@media only screen and (max-width: 1550px) {
  footer .footer__content .left {
    width: 60%;
    gap: 25px;
  }
  footer .footer__content .left img {
    height: 200px;
  }
  footer .footer__content .left p {
    max-width: 400px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left img {
    height: 175px;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right h3 {
    font-size: 2em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
    flex-flow: column;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
  footer .footer__content .left p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #B8B9A5;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(62, 62, 62, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #3E3E3E;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #3E3E3E;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #EBE6E0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 0.75fr 0.25fr;
  gap: 10px;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details .details__content {
  display: flex;
  justify-items: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
}
.contacts .details .details__content h3 {
  font-size: 40px;
  color: #3E3E3E;
  font-weight: 500;
}
.contacts .details .details__content .link {
  color: #3E3E3E;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.contacts .details .details__content .link svg {
  height: 31px;
  width: 31px;
  stroke-width: 1.75;
}
.contacts .details .details__content .link span {
  font-size: 27px;
  font-weight: 300;
}
.contacts .details .photo {
  width: 100%;
}
.contacts .details .photo img {
  width: 100%;
  border-radius: 10px;
}
.contacts .details .photo p {
  font-size: 18px;
  color: #3E3E3E;
}

@media only screen and (max-width: 1550px) {
  .contacts .details {
    width: 45vw;
    padding: 30px;
  }
  .contacts .details .details__content h3 {
    font-size: 35px;
  }
  .contacts .details .details__content .link svg {
    height: 27px;
    width: 27px;
  }
  .contacts .details .photo p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details .details__content h3 {
    font-size: 25px;
  }
  .contacts .details .details__content .link {
    gap: 10px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 17px;
  }
  .contacts .details .photo img {
    width: 100%;
  }
  .contacts .details .photo p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .contacts .details .photo img {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 5px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
    grid-template-columns: 1fr;
  }
  .contacts .details .details__content h3 {
    font-size: 20px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 15px;
  }
}
.hero {
  padding: 0 5%;
  display: flex;
  justify-content: end;
  align-items: start;
  position: relative;
  margin-bottom: 100px;
}
.hero .image {
  width: 82.5%;
  position: relative;
}
.hero .image .transition {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F6F1EB;
  z-index: 2;
  opacity: 0;
  transition: 0.35s ease;
}
.hero .image img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .image #hero-scroll-down {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25px, 25px);
  height: 101px;
  width: 101px;
  border-radius: 15px;
  border: none;
  background: rgba(184, 185, 165, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: 0.25s ease;
  cursor: pointer;
  z-index: 3;
}
.hero .image #hero-scroll-down:hover {
  transform: scale(1.05) translate(25px, 25px);
  background: rgba(184, 185, 165, 0.7);
}
.hero .image #hero-scroll-down svg {
  height: 51px;
  width: 51px;
  color: #fff;
  stroke-width: 1.5;
}
.hero .text {
  padding: 80px 50px 80px 0;
  background: rgba(246, 241, 235, 0.5);
  -webkit-backdrop-filter: blur(63px);
          backdrop-filter: blur(63px);
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 5;
}
.hero .text .dots {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(50px, -60%);
}
.hero .text h1 {
  color: #3E3E3E;
  font-size: 75px;
  line-height: 1.15em;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.hero .text p {
  font-size: 18px;
  font-weight: 200px;
  color: rgba(0, 0, 0, 0.4);
  margin: 20px 0 40px;
  max-width: 550px;
  line-height: 1.65em;
}
.hero .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
.hero .text .buttons .btn a {
  font-size: 20px;
}
.hero .navigation {
  width: 5vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: column;
}
.hero .navigation .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 35px;
}
.hero .navigation .buttons button {
  border: none;
  background: none;
  cursor: pointer;
}
.hero .navigation .buttons button:hover {
  transform: scale(1.05);
}
.hero .navigation .buttons button svg {
  height: 41px;
  width: 41px;
  color: #3E3E3E;
  stroke-width: 1.5;
}
.hero .navigation .slide__progression {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 25px;
}
.hero .navigation .slide__progression b {
  font-size: 25px;
  font-weight: 500;
  color: #3E3E3E;
}
.hero .navigation .slide__progression .bar {
  height: 100px;
  width: 4px;
  background: #d9d9d9;
}

.video {
  width: 100%;
  height: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #3E3E3E;
}

.benefits {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 150px;
  background: #EBE6E0;
  padding: 100px 5%;
}
.benefits .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 30px;
}
.benefits .text p {
  font-size: 18px;
  color: rgba(62, 62, 62, 0.6);
  line-height: 1.5em;
}
.benefits .text .btn a {
  font-size: 20px;
}
.benefits .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}
.benefits .content .item {
  width: 100%;
  background: #fff;
  padding: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  border-radius: 25px;
  position: relative;
  z-index: 2;
}
.benefits .content .item .icon {
  height: 71px;
  width: 71px;
  margin-bottom: 20px;
}
.benefits .content .item .icon img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.benefits .content .item h3 {
  font-size: 40px;
  color: #3E3E3E;
  font-weight: 400;
  margin-bottom: 10px;
}
.benefits .content .item p {
  text-align: center;
  color: rgba(62, 62, 62, 0.6);
  font-size: 18px;
}
.benefits .content .dot {
  height: 100px;
  position: absolute;
  top: 50%;
}
.benefits .content .dot.dot1 {
  left: 33%;
  transform: translate(-50%, -50%);
}
.benefits .content .dot.dot2 {
  left: 66%;
  transform: translate(-50%, -50%);
}

.offer {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: minmax(375px, 1fr) minmax(600px, 2fr);
  gap: 150px;
  min-width: 0;
}
.offer .left #offer-mobile-select {
  display: none;
  padding: 10px 25px;
  font-size: 18px;
  margin-top: 15px;
}
.offer .left #offer-flats-mobile {
  display: none;
}
.offer .left .building {
  margin-top: 50px;
  position: relative;
}
.offer .left .building .building__img {
  height: 376px;
}
.offer .left .building .dots {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.offer .left .building .dots img {
  height: 90px;
}
.offer .left .building .buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  width: 100%;
}
.offer .left .building .buttons button {
  height: 94px;
  width: 100%;
  background: #d9d9d9;
  border: none;
  clip-path: polygon(90% 0, 100% 46%, 90% 100%, 0 100%, 0 0);
  opacity: 0;
  transition: 0.25s ease;
  cursor: pointer;
}
.offer .left .building .buttons button.active, .offer .left .building .buttons button:hover {
  opacity: 1;
}
.offer .left .building .buttons button.active {
  background: #B8B9A5;
}
.offer .left .building .buttons button.active span {
  color: #fff;
}
.offer .left .building .buttons button#floor-btn-1 {
  height: 94px;
}
.offer .left .building .buttons button span {
  font-size: 30px;
  color: #3E3E3E;
}
.offer .right {
  background: #EBE6E0;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1fr;
  gap: 75px;
  padding: 50px;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
}
.offer .right.floor1 .floor__plan .floor__plan__image .flat1 {
  position: absolute;
  top: 0;
  left: 1vw;
  z-index: 2;
}
.offer .right.floor1 .floor__plan .floor__plan__image .flat1 img {
  height: 26vw;
}
.offer .right.floor1 .floor__plan .floor__plan__image .flat2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: none;
}
.offer .right.floor1 .floor__plan .floor__plan__image .flat3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: none;
}
.offer .right.floor1 .floor__plan .floor__plan__image .flat1 span, .offer .right.floor1 .floor__plan .floor__plan__image .flat2 span, .offer .right.floor1 .floor__plan .floor__plan__image .flat3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.offer .right .floor__plan {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.offer .right .floor__plan .floor__plan__image {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.offer .right .floor__plan .floor__plan__image svg {
  width: 100%;
  display: none;
}
.offer .right .floor__plan .floor__plan__image svg.active {
  display: block;
}
.offer .right .floor__plan .floor__plan__image svg g {
  opacity: 0;
  transition: 0.25s ease;
  cursor: pointer;
}
.offer .right .floor__plan .floor__plan__image svg g.active, .offer .right .floor__plan .floor__plan__image svg g:hover {
  opacity: 0.8;
}
.offer .right .description {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 30px;
}
.offer .right .description img {
  width: 100%;
  border-radius: 15px;
}
.offer .right .description .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  width: 100%;
}
.offer .right .description .row h3 {
  font-size: 45px;
  font-weight: 400;
  color: #3E3E3E;
}
.offer .right .description .row .status {
  padding: 10px 25px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.offer .right .description .row .status span {
  font-size: 20px;
  color: #3E3E3E;
}
.offer .right .description .row .value__parent {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.offer .right .description .row .value__parent .value__label {
  font-size: 20px;
  color: rgba(62, 62, 62, 0.6);
}
.offer .right .description .row .value__parent .value {
  font-size: 40px;
  letter-spacing: -5%;
  color: #3E3E3E;
  font-weight: 500;
}
.offer .right .description .row .value__parent .value sup {
  font-size: 0.5em;
}
.offer .right .description .btn a {
  font-size: 20px;
}
.offer .right .mobile-navigation {
  display: none;
}

.gallery {
  background: #EBE6E0;
  padding: 100px 5%;
}
.gallery .gallery__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.gallery .gallery__heading .buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
.gallery .gallery__heading .buttons button {
  font-size: 19px;
  background: #666666;
  padding: 10px 35px;
  border-radius: 100px;
  color: #fff;
  border: none;
  opacity: 0.5;
  transition: 0.25s ease;
  cursor: pointer;
}
.gallery .gallery__heading .buttons button.active {
  opacity: 1;
}
.gallery .gallery__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transition: 0.25s ease;
  display: none;
}
.gallery .gallery__content.active {
  display: grid;
}
.gallery .gallery__content .item {
  width: 100%;
  height: 20vw;
  position: relative;
  cursor: pointer;
}
.gallery .gallery__content .item::after {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 185, 165, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: 0.25s ease;
}
.gallery .gallery__content .item:hover::after {
  opacity: 1;
}
.gallery .gallery__content .item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .button__parent {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .button__parent .btn a {
  font-size: 22px;
}

.timeline {
  padding: 100px 0;
}
.timeline h2.h2 {
  text-align: center;
}
.timeline .timeline__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.timeline .timeline__content .item .heading {
  display: grid;
  grid-template-columns: 81px 1fr;
  align-items: end;
  height: 300px;
}
.timeline .timeline__content .item .heading .icon__parent {
  display: flex;
  justify-content: start;
  align-items: end;
}
.timeline .timeline__content .item .heading .icon__parent .icon {
  height: 81px;
  width: 100%;
  background: #B8B9A5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline .timeline__content .item .heading .icon__parent .icon img {
  height: 41px;
  width: 41px;
  color: #fff;
}
.timeline .timeline__content .item .heading .text b {
  font-size: 75px;
  color: #B8B9A5;
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.timeline .timeline__content .item .heading .text h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 15px;
  padding-left: 35px;
  color: #3E3E3E;
}
.timeline .timeline__content .item .heading .text p {
  padding-left: 35px;
  color: rgba(62, 62, 62, 0.6);
  font-weight: 400;
  font-size: 19px;
  padding-right: 50px;
  height: 6em;
}
.timeline .timeline__content .item .image {
  width: 100%;
  height: 350px;
}
.timeline .timeline__content .item .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline .timeline__content .item .date {
  width: 81px;
  height: 35px;
  background: #B8B9A5;
  position: relative;
}
.timeline .timeline__content .item .date p {
  font-size: 26px;
  font-weight: 500;
  position: absolute;
  top: 35px;
  left: 60%;
  transform: translate(0, -50%);
  width: 300px;
  color: #3E3E3E;
}

.funding {
  padding: 100px 5%;
  background: #EBE6E0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 200px;
}
.funding .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 10px;
}
.funding .text p {
  font-size: 20px;
  color: rgba(62, 62, 62, 0.6);
}
.funding .text .btn {
  margin-top: 20px;
}
.funding .text .btn a {
  font-size: 20px;
}
.funding .image {
  position: relative;
}
.funding .image .bg {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.funding .image .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 185, 165, 0.5);
}
.funding .image .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.funding .image .main-img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-5%, -5%);
  border-radius: 25px;
  overflow: hidden;
}
.funding .image .main-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.standards {
  padding: 5rem 10%;
}
.standards .title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.standards .title .btn {
  margin-top: 10px;
}
.standards .title .btn a {
  font-size: 22px;
}
.standards .title .buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.standards .title .buttons button {
  height: 51px;
  width: 51px;
  border: none;
  border-radius: 50%;
  background: #c7c7c7;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DA3332;
  transition: 0.25s ease;
  cursor: pointer;
}
.standards .title .buttons button:hover {
  transform: scale(1.05);
}
.standards .title .buttons button svg {
  height: 31px;
  width: 31px;
  color: #fff;
}
.standards .standards__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 2.5rem;
  transition: 0.25s ease;
}
.standards .standards__content .image {
  width: 100%;
}
.standards .standards__content .image img {
  height: 650px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.standards .standards__content .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  row-gap: 5px;
}
.standards .standards__content .text details {
  width: 100%;
  background: #EBE6E0;
  cursor: pointer;
}
.standards .standards__content .text details summary {
  font-size: 22px;
  color: #3E3E3E;
  font-weight: 500;
  padding: 25px;
}
.standards .standards__content .text details ul {
  padding-left: 20px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
  padding: 0 45px 25px;
}
.standards .standards__content .text details ul li {
  color: #3E3E3E;
  font-weight: 500;
}

@media only screen and (max-width: 1650px) {
  .hero .image img {
    height: 650px;
  }
  .hero .image #hero-scroll-down {
    height: 85px;
    width: 85px;
  }
  .hero .image #hero-scroll-down svg {
    height: 45px;
    width: 45px;
  }
  .hero .text .dots {
    width: 75px;
  }
  .hero .text h1 {
    font-size: 55px;
  }
  .hero .navigation .buttons {
    gap: 15px;
  }
  .hero .navigation .buttons button svg {
    height: 35px;
    width: 35px;
  }
  .hero .navigation .slide__progression {
    gap: 15px;
  }
  .hero .navigation .slide__progression b {
    font-size: 20px;
  }
  .benefits {
    gap: 100px;
  }
  .benefits .content {
    gap: 25px;
  }
  .benefits .content .item {
    padding: 35px;
  }
  .benefits .content .item .icon {
    height: 63px;
    width: 63px;
  }
  .benefits .content .item h3 {
    font-size: 33px;
  }
  .benefits .content .item p {
    font-size: 17px;
  }
  .offer {
    gap: 50px;
  }
  .offer .left .building .building__img {
    height: 325px;
  }
  .offer .left .building .buttons button {
    height: 81px;
  }
  .offer .right {
    gap: 50px;
    padding: 35px;
  }
  .offer .right .description .row {
    gap: 15px;
  }
  .offer .right .description .row h3 {
    font-size: 35px;
  }
  .offer .right .description .row .status span {
    font-size: 16px;
  }
  .offer .right .description .row .value__parent {
    min-width: 100px;
  }
  .offer .right .description .row .value__parent .value {
    font-size: 30px;
  }
  .offer .right .description .btn a {
    font-size: 18px;
  }
  .timeline .timeline__content .item .heading .text b {
    font-size: 65px;
  }
  .timeline .timeline__content .item .heading .text h3 {
    font-size: 30px;
    padding-left: 20px;
  }
  .timeline .timeline__content .item .heading .text p {
    font-size: 17px;
    padding-left: 20px;
    height: 7em;
    padding-right: 40px;
  }
  .timeline .timeline__content .item .image {
    height: 300px;
  }
  .timeline .timeline__content .item .date p {
    font-size: 23px;
  }
  .funding .text p {
    font-size: 18px;
  }
  .funding .text .btn a {
    font-size: 18px;
  }
  .standards .standards__content .text details summary {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    padding: 0 7.5%;
  }
  .hero .image img {
    height: 500px;
  }
  .hero .image #hero-scroll-down {
    height: 61px;
    width: 61px;
  }
  .hero .image #hero-scroll-down svg {
    height: 31px;
    width: 31px;
  }
  .hero .text {
    padding: 50px 30px 50px 0;
    left: 7.5%;
  }
  .hero .text .dots {
    width: 60px;
    transform: translate(30px, -60%);
  }
  .hero .text h1 {
    font-size: 40px;
  }
  .hero .text p {
    max-width: 400px;
    font-size: 16px;
    margin: 15px 0 30px;
  }
  .hero .text .buttons .btn a {
    font-size: 16px;
  }
  .hero .navigation {
    width: 7.5vw;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 7.5%;
  }
  .benefits .text {
    gap: 10px;
  }
  .benefits .text p {
    font-size: 16px;
  }
  .benefits .text .btn {
    margin-top: 10px;
  }
  .benefits .text .btn a {
    font-size: 16px;
  }
  .benefits .content .item .icon {
    height: 51px;
    width: 51px;
  }
  .benefits .content .item h3 {
    font-size: 26px;
  }
  .offer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 50px 7.5%;
  }
  .offer .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .offer .left .building {
    display: none;
  }
  .offer .left #offer-mobile-select {
    display: block;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    background: #3E3E3E;
    color: #fff;
    min-width: 300px;
  }
  .offer .right {
    grid-template-columns: 1fr;
    position: relative;
  }
  .offer .right .floor__plan {
    display: none;
  }
  .offer .right .mobile-navigation {
    position: absolute;
    top: 50%;
    height: 61px;
    width: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #3E3E3E;
    border: none;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.2);
  }
  .offer .right .mobile-navigation svg {
    height: 31px;
    width: 31px;
    color: #fff;
  }
  .offer .right .mobile-navigation#offer-mobile-left {
    left: -2.5vw;
    transform: translateX(-50%);
  }
  .offer .right .mobile-navigation#offer-mobile-right {
    right: -2.5vw;
    transform: translateX(50%);
  }
  .gallery {
    padding: 50px 7.5%;
  }
  .gallery .gallery__heading .buttons button {
    font-size: 15px;
  }
  .gallery .gallery__content .item {
    height: 150px;
  }
  .gallery .button__parent {
    margin-top: 25px;
  }
  .gallery .button__parent .btn a {
    font-size: 18px;
  }
  .timeline {
    padding: 50px 0;
  }
  .timeline .timeline__content .item .heading {
    grid-template-columns: 61px 1fr;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon {
    height: 61px;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon img {
    height: 31px;
    width: 31px;
  }
  .timeline .timeline__content .item .heading .text b {
    font-size: 50px;
  }
  .timeline .timeline__content .item .heading .text h3 {
    font-size: 26px;
    padding-left: 20px;
    margin-bottom: 10px;
    padding-right: 25px;
  }
  .timeline .timeline__content .item .heading .text p {
    font-size: 15px;
    padding-left: 20px;
    height: 10em;
    padding-right: 25px;
  }
  .timeline .timeline__content .item .image {
    height: 250px;
  }
  .timeline .timeline__content .item .date {
    width: 61px;
  }
  .timeline .timeline__content .item .date p {
    font-size: 21px;
  }
  .funding {
    padding: 50px 7.5%;
    gap: 100px;
  }
  .funding .text p {
    font-size: 16px;
  }
  .funding .text .btn {
    margin-top: 10px;
  }
  .funding .text .btn a {
    font-size: 17px;
  }
  .standards {
    padding: 50px 7.5%;
  }
  .standards .title .btn a {
    font-size: 18px;
  }
  .standards .standards__content {
    gap: 50px;
  }
  .standards .standards__content .image img {
    height: 500px;
  }
  .standards .standards__content .text details summary {
    padding: 20px;
    font-size: 18px;
  }
  .standards .standards__content .text details ul li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .hero .text .dots {
    width: 50px;
  }
  .hero .text h1 {
    font-size: 37px;
  }
  .hero .text p {
    font-size: 15px;
    margin: 10px 0 20px;
  }
  .hero .text .buttons .btn a {
    font-size: 15px;
  }
  .hero .navigation .buttons {
    gap: 5px;
  }
  .hero .navigation .buttons button svg {
    height: 31px;
    width: 31px;
  }
  .hero .navigation .slide__progression b {
    font-size: 17px;
  }
  .hero .navigation .slide__progression .bar {
    height: 65px;
  }
  .benefits {
    gap: 40px;
  }
  .benefits .text {
    gap: 5px;
  }
  .benefits .text .btn a {
    font-size: 15px;
  }
  .benefits .content .item {
    padding: 25px;
  }
  .benefits .content .item .icon {
    height: 41px;
    width: 41px;
    margin-bottom: 10px;
  }
  .benefits .content .item h3 {
    font-size: 23px;
    margin-bottom: 5px;
  }
  .benefits .content .item p {
    font-size: 14px;
  }
  .benefits .content .dot {
    height: 50px;
  }
  .offer {
    padding: 50px 10%;
  }
  .offer .left {
    flex-flow: column;
    align-items: start;
  }
  .offer .left #offer-mobile-select {
    min-width: auto;
    width: 100%;
  }
  .offer .left #offer-flats-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .offer .left #offer-flats-mobile button {
    padding: 7px 25px;
    border-radius: 100px;
    border: none;
    background: none;
    border: 2px solid #3E3E3E;
    color: #3E3E3E;
    font-weight: 600;
  }
  .offer .left #offer-flats-mobile button.active {
    background: #3E3E3E;
    color: #fff;
  }
  .offer .right {
    grid-template-columns: 1fr;
  }
  .offer .right .floor__plan {
    display: none;
  }
  .gallery .gallery__heading .buttons button {
    padding: 7px 20px;
    font-size: 15px;
  }
  .gallery .gallery__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery .button__parent .btn a {
    font-size: 16px;
  }
  .timeline {
    padding: 50px 0;
  }
  .timeline .timeline__content .item .heading {
    grid-template-columns: 45px 1fr;
    height: 275px;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon {
    height: 45px;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon img {
    height: 23px;
    width: 23px;
  }
  .timeline .timeline__content .item .heading .text b {
    font-size: 40px;
  }
  .timeline .timeline__content .item .heading .text h3 {
    font-size: 22px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .timeline .timeline__content .item .heading .text p {
    font-size: 13px;
    padding-left: 20px;
    height: 10.5em;
    padding-right: 20px;
  }
  .timeline .timeline__content .item .image {
    height: 175px;
  }
  .timeline .timeline__content .item .date {
    width: 45px;
    height: 30px;
  }
  .timeline .timeline__content .item .date p {
    font-size: 17px;
    top: 30px;
  }
  .funding {
    gap: 50px;
  }
  .funding .text p {
    font-size: 13px;
  }
  .funding .text .btn a {
    font-size: 15px;
  }
  .standards .title {
    flex-flow: column;
    align-items: start;
  }
  .standards .title .btn a {
    font-size: 15px;
  }
  .standards .standards__content {
    grid-template-columns: 1fr;
  }
  .standards .standards__content .image {
    display: none;
  }
  .standards .standards__content .text details summary {
    font-size: 16px;
  }
  .standards .standards__content .text details ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    padding: 0;
  }
  .hero .image {
    width: 75%;
  }
  .hero .image #hero-scroll-down {
    transform: none;
    bottom: 20px;
    right: 20px;
    height: 51px;
    width: 51px;
  }
  .hero .image #hero-scroll-down svg {
    height: 27px;
    width: 27px;
  }
  .hero .text {
    padding: 40px 25px;
    left: 0;
  }
  .hero .text h1 {
    font-size: 30px;
  }
  .hero .text p {
    font-size: 13px;
    max-width: 200px;
  }
  .hero .text .buttons {
    gap: 10px;
    flex-flow: column;
    align-items: start;
  }
  .hero .text .buttons .btn {
    min-width: 60%;
  }
  .hero .text .buttons .btn a {
    font-size: 14px;
  }
  .hero .navigation {
    height: 75px;
    width: 100%;
    top: initial;
    bottom: 0;
    transform: translateY(100%);
    flex-flow: row;
  }
  .hero .navigation .buttons {
    flex-flow: row;
  }
  .hero .navigation .buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero .navigation .buttons button svg {
    height: 31px;
    width: 31px;
    transform: rotate(-90deg);
  }
  .hero .navigation .slide__progression {
    flex-flow: row;
  }
  .hero .navigation .slide__progression b {
    font-size: 16px;
  }
  .hero .navigation .slide__progression .bar {
    height: 3px;
    width: 35px;
  }
  .benefits .content {
    grid-template-columns: 1fr;
  }
  .offer .left #offer-flats-mobile {
    justify-content: start;
    flex-flow: row wrap;
    gap: 10px;
  }
  .offer .right {
    padding: 20px;
    position: relative;
  }
  .offer .right .description .row h3 {
    font-size: 23px;
  }
  .offer .right .description .row .status span {
    font-size: 13px;
    font-weight: 600;
  }
  .offer .right .description .row .value__parent .value__label {
    font-size: 16px;
  }
  .offer .right .description .row .value__parent .value {
    font-size: 20px;
  }
  .offer .right .description .btn a {
    font-size: 15px;
  }
  .offer .right .mobile-navigation {
    position: absolute;
    top: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #3E3E3E;
    border: none;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.2);
  }
  .offer .right .mobile-navigation svg {
    height: 23px;
    width: 23px;
    color: #fff;
  }
  .offer .right .mobile-navigation#offer-mobile-left {
    left: -2.5vw;
    transform: translateX(-50%);
  }
  .offer .right .mobile-navigation#offer-mobile-right {
    right: -2.5vw;
    transform: translateX(50%);
  }
  .gallery .gallery__heading {
    flex-flow: column;
    align-items: start;
  }
  .gallery .gallery__heading .buttons {
    gap: 10px;
    margin-top: 10px;
  }
  .gallery .gallery__content {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .button__parent .btn a {
    font-size: 14px;
  }
  .timeline {
    padding: 50px 0;
  }
  .timeline .timeline__content {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .timeline .timeline__content .item .heading {
    grid-template-columns: 45px 1fr;
    height: auto;
    margin-top: 20px;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon {
    height: 45px;
  }
  .timeline .timeline__content .item .heading .icon__parent .icon img {
    height: 23px;
    width: 23px;
  }
  .timeline .timeline__content .item .heading .text b {
    font-size: 35px;
  }
  .timeline .timeline__content .item .heading .text h3 {
    font-size: 22px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .timeline .timeline__content .item .heading .text p {
    font-size: 13px;
    padding-left: 20px;
    height: auto;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .timeline .timeline__content .item .image {
    height: 175px;
  }
  .timeline .timeline__content .item .date {
    width: 45px;
    height: 30px;
  }
  .timeline .timeline__content .item .date p {
    font-size: 17px;
    top: 30px;
  }
  .funding {
    grid-template-columns: 1fr;
  }
  .funding .text .btn a {
    font-size: 14px;
  }
  .funding .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .funding .image .bg {
    width: 80%;
  }
  .funding .image .main-img {
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -55%);
  }
  .standards .title .btn a {
    font-size: 14px;
  }
  .standards .standards__content {
    margin-top: 20px;
  }
  .standards .standards__content .text details summary {
    font-size: 15px;
    padding: 15px;
  }
  .standards .standards__content .text details ul {
    padding: 0 25px 15px;
  }
  .standards .standards__content .text details ul li {
    font-size: 13px;
  }
}
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.image-popup .popup-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.image-popup .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.image-popup .close-btn:hover {
  opacity: 0.7;
}
.image-popup .close-btn svg {
  height: 41px;
  width: 41px;
}
.image-popup .popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.image-popup .popup-nav.left {
  left: 2rem;
}
.image-popup .popup-nav.right {
  right: 2rem;
}
.image-popup .popup-nav:hover {
  opacity: 0.7;
}
.image-popup .popup-nav svg {
  height: 71px;
  width: 71px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

@media only screen and (max-width: 1300px) {
  .gallery {
    padding: 3.5rem 10%;
  }
  .gallery .gallery__content {
    margin-top: 1.5rem;
    gap: 10px;
  }
  .gallery .gallery__content .image {
    height: 15rem;
  }
  .gallery .button__parent .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .gallery .gallery__content .image {
    height: 10rem;
  }
  .gallery .button__parent {
    padding-top: 1rem;
  }
  .gallery .button__parent .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 700px) {
  .gallery .gallery__content {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .gallery__content .image {
    height: 7.5rem;
  }
  .gallery .button__parent .btn a {
    font-size: 15px;
  }
  .image-popup .popup-nav {
    top: initial;
    bottom: 0;
  }
  .image-popup .popup-nav.left {
    left: 35vw;
  }
  .image-popup .popup-nav.right {
    right: 35vw;
  }
  .image-popup .popup-nav svg {
    height: 45px;
    width: 45px;
  }
}/*# sourceMappingURL=style.css.map */