@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;
  }
}
.hero {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
}
.hero sup {
  font-size: 0.5em;
}
.hero .text {
  padding: 0 50px 75px 5vw;
}
.hero .text .breadcrumbs {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.hero .text .breadcrumbs a {
  font-size: 20px;
  color: #3e3e3e;
}
.hero .text .breadcrumbs a.active {
  text-decoration: none;
  font-weight: 600;
}
.hero .text .breadcrumbs a:hover {
  text-decoration: none;
}
.hero .text .breadcrumbs span {
  color: #3e3e3e;
  font-size: 20px;
}
.hero .text .h2 {
  margin: 30px 0;
}
.hero .text .rows {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.hero .text .rows .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(62, 62, 62, 0.6);
}
.hero .text .rows .row .item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
}
.hero .text .rows .row .item:nth-child(2) {
  align-items: end;
}
.hero .text .rows .row .item label {
  color: #3e3e3e;
  font-size: 22px;
  font-weight: 400;
}
.hero .text .rows .row .item label.small {
  font-size: 16px;
}
.hero .text .rows .row .item h3 {
  font-size: 27px;
  color: #3e3e3e;
}
.hero .text .rows .row .item h3.available {
  text-transform: uppercase;
}
.hero .text .rows .row .item h3.available.free {
  color: #00a37c;
}
.hero .text .rows .row .item h3.available.reserved {
  color: #e79e00;
}
.hero .text .rows .row .item h3.available.sold {
  color: #e70c00;
}
.hero .text .button {
  margin: 25px 0;
}
.hero .text .button .btn a {
  font-size: 22px;
  gap: 10px;
}
.hero .text .files {
  padding-top: 30px;
}
.hero .text .files h3 {
  font-size: 30px;
  color: #3e3e3e;
  font-weight: 400;
  margin-bottom: 5px;
}
.hero .text .files .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(62, 62, 62, 0.6);
}
.hero .text .files .item .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.hero .text .files .item .left svg {
  height: 25px;
  width: 25px;
  color: #3e3e3e;
}
.hero .text .files .item .left span {
  font-size: 20px;
  color: #3e3e3e;
}
.hero .text .files .item a {
  display: flex;
  justify-content: end;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  color: #3e3e3e;
}
.hero .text .files .item a:hover {
  text-decoration: none;
}
.hero .text .files .item a svg {
  height: 23px;
  width: 23px;
}
.hero .flat__card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
}
.hero .flat__card img {
  width: 100%;
}

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

@media only screen and (max-width: 1300px) {
  .hero .text {
    padding: 0 25px 50px 5vw;
  }
  .hero .text .breadcrumbs {
    gap: 15px;
  }
  .hero .text .breadcrumbs a {
    font-size: 16px;
  }
  .hero .text .breadcrumbs span {
    font-size: 16px;
  }
  .hero .text .h2 {
    margin: 15px 0;
  }
  .hero .text .rows .row {
    padding: 10px 0;
  }
  .hero .text .rows .row .item label {
    font-size: 16px;
  }
  .hero .text .rows .row .item label.small {
    font-size: 13px;
  }
  .hero .text .rows .row .item h3 {
    font-size: 20px;
  }
  .hero .text .button {
    margin: 15px 0;
  }
  .hero .text .button .btn a {
    font-size: 16px;
  }
  .hero .text .files {
    padding-top: 15px;
  }
  .hero .text .files h3 {
    font-size: 23px;
  }
  .hero .text .files .item {
    gap: 15px;
  }
  .hero .text .files .item .left {
    display: grid;
    grid-template-columns: 21px 1fr;
  }
  .hero .text .files .item .left svg {
    height: 21px;
    width: 21px;
  }
  .hero .text .files .item .left span {
    font-size: 16px;
  }
  .hero .text .files .item a {
    font-size: 15px;
  }
  .hero .text .files .item a svg {
    height: 17px;
    width: 17px;
  }
  .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;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .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;
  }
}
.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;
  }
}
.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;
  }
}/*# sourceMappingURL=style.css.map */