@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  pointer-events: none; /* volitelně, pokud nechceš, aby šlo číslo kliknout */
}

h2.h2 {
  font-size: 65px;
  color: #3E3E3E;
  font-weight: 400;
  line-height: 1em;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 26px;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 7.5%;
  z-index: 51;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
header .logo {
  font-size: 30px;
  font-weight: 500;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .buttons .flag {
  background: none;
  border: none;
}
header .buttons .flag a {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .buttons .flag a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
header .buttons .btn a {
  font-size: 16px;
}

.offcanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  transform: translateX(120%);
  transition: 0.5s ease-in-out;
  z-index: 51;
  background: #fff;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #3E3E3E;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.2);
  cursor: pointer;
  transition: 0.5s ease;
  font-weight: 500;
}
.offcanvas a:hover {
  border-bottom: 2px solid #3e3e3e;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1550px) {
  header .logo {
    font-size: 27px;
    font-weight: 500;
  }
  header .logo a {
    color: #fff;
    text-decoration: none;
  }
  header .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  header .buttons .btn a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 20px 7.5%;
  }
  header .logo {
    font-size: 24px;
  }
  header .buttons .btn a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 15px 7.5%;
  }
  header .logo {
    font-size: 17px;
    padding-right: 10px;
  }
  header .buttons .flag a {
    height: 41px;
    width: 41px;
  }
  header .buttons .btn.primary {
    display: none;
  }
  header .buttons .btn a {
    font-size: 12px;
  }
  .offcanvas {
    width: 100%;
  }
}
.btn {
  border: none;
  background: none;
  cursor: pointer;
}
.btn:hover a .icon {
  transform: translateX(3px);
}
.btn.primary a {
  background: #A85D7B;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.btn.primary a .icon svg {
  color: #A85D7B;
}
.btn.secondary a {
  background: #A85D7B;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.btn.secondary a .icon svg {
  color: #A85D7B;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0.5em 0.5em 0.5em 1.2em;
  border-radius: 100px;
}
.btn a span {
  font-weight: 500;
  color: #fff;
}
.btn a .icon {
  height: 2.5em;
  width: 2.5em;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease;
}
.btn a .icon svg {
  height: 1.35em;
  width: 1.35em;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
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: 40%;
}
footer .footer__content .left .logo {
  width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
footer .footer__content .left .logo img {
  width: 60%;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p a {
  color: rgba(255, 255, 255, 0.6);
}
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: 35px;
  color: #fff;
  font-weight: 500;
}
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: #AD6280;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left .logo {
    width: 250px;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right h3 {
    font-size: 30px;
  }
  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 p {
    font-size: 0.7em;
  }
  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%;
  }
  footer .footer__content .left .logo {
    width: 200px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
.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;
  background: rgba(255, 234, 231, 0.25);
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.contacts form p {
  font-size: 18px;
  margin-top: 10px;
  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 {
  margin-top: 10px;
}
.contacts form .btn a {
  font-size: 18px;
}
.contacts .details {
  padding: 40px;
  background: #2E2E2E;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  width: 40vw;
  z-index: 2;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.contacts .details .details__text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
}
.contacts .details .details__text h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 500;
}
.contacts .details .details__text .link {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts .details .details__text .link .icon {
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
  padding: 10px;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts .details .details__text .link .icon svg {
  height: 23px;
  width: 23px;
  stroke-width: 2.5;
}
.contacts .details .details__text .link span {
  font-size: 20px;
  font-weight: 400;
}
.contacts .details .logo {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.contacts .details .logo img {
  width: 80%;
}

@media only screen and (max-width: 1550px) {
  .contacts .details {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .contacts .details .logo {
    width: 60%;
    padding: 20px;
  }
  .contacts .details .logo img {
    width: 60%;
  }
}
@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 {
    width: 45vw;
  }
  .contacts .details .details__text h3 {
    font-size: 30px;
  }
  .contacts .details .details__text .link .icon {
    height: 37px;
    width: 37px;
  }
  .contacts .details .details__text .link .icon svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__text .link span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
    row-gap: 75px;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts form .btn a {
    font-size: 15px;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .contacts {
    padding-top: 50px;
  }
  .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;
  }
  .contacts .details .details__text h3 {
    font-size: 20px;
  }
  .contacts .details .details__text .link .icon {
    height: 35px;
    width: 35px;
  }
  .contacts .details .details__text .link .icon svg {
    height: 25px;
    width: 25px;
  }
  .contacts .details .details__text .link span {
    font-size: 13px;
  }
  .contacts .details .logo {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }
  .contacts .details .logo img {
    width: 50%;
  }
}
#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 {
  position: relative;
  width: 100%;
  min-height: 900px;
}
.hero .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.hero .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero .bg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .bg video source {
  height: 100%;
  width: 100%;
}
.hero .text {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-flow: column;
  min-height: 900px;
  padding: 120px 7.5% 100px;
}
.hero .text h2 {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 15px;
}
.hero .text h1 {
  font-size: 75px;
  color: #fff;
  font-weight: 500;
}
.hero .text p {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 900px;
  margin: 15px 0 35px;
  text-align: justify;
}
.hero .text .buttons {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 25px;
}
.hero .text .buttons .btn a {
  font-size: 19px;
}

.benefits {
  padding: 100px 7.5%;
}
.benefits .benefits__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.benefits .benefits__heading .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 15px;
  max-width: 30vw;
}
.benefits .benefits__heading .text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.benefits .benefits__heading .text .btn a {
  font-size: 18px;
}
.benefits .benefits__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px;
  margin-top: 50px;
}
.benefits .benefits__content .item {
  background: #F7F7F7;
  padding: 30px;
  border-radius: 20px;
}
.benefits .benefits__content .item .item__heading {
  display: grid;
  grid-template-columns: 61px 1fr;
  align-items: center;
  gap: 20px;
}
.benefits .benefits__content .item .item__heading .icon {
  height: 61px;
  width: 61px;
  background: #C67B99;
  background: linear-gradient(0deg, rgb(198, 123, 153) 0%, rgb(238, 163, 193) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits .benefits__content .item .item__heading .icon svg {
  height: 27px;
  width: 27px;
  color: #fff;
}
.benefits .benefits__content .item .item__heading h3 {
  font-size: 30px;
  color: #2E2E2E;
  font-weight: 500;
}
.benefits .benefits__content .item p {
  margin-top: 15px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.gallery {
  background: rgba(255, 234, 231, 0.25);
  padding: 100px 7.5%;
}
.gallery .gallery__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery .gallery__heading .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 15px;
  max-width: 35vw;
}
.gallery .gallery__heading .text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.gallery .gallery__heading .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
.gallery .gallery__heading .text .buttons .btn a {
  font-size: 18px;
}
.gallery .gallery__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transition: 0.25s ease;
  margin-top: 50px;
}
.gallery .gallery__content .item {
  width: 100%;
  height: 17vw;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.gallery .gallery__content .item::after {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #A85D7B;
  background: linear-gradient(0deg, rgba(168, 93, 123, 0.5) 0%, rgba(198, 123, 153, 0.5) 100%);
  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;
}

.location {
  padding: 100px 0 0;
}
.location .location__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7.5% 50px;
}
.location .location__heading .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 15px;
  max-width: 35vw;
}
.location .location__heading .text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.location .location__heading .text .btn a {
  font-size: 18px;
}
.location .map {
  width: 100%;
  height: 500px;
}
.location .map #map {
  height: 100%;
  width: 100%;
}

.property {
  padding: 100px 7.5%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
}
.property .image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.property .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.property .text {
  position: relative;
}
.property .text p {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin: 10px 0 20px;
}
.property .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.property .text .buttons .btn a {
  font-size: 18px;
}
.property .text .property__details {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  margin-top: 50px;
  width: 100%;
}
.property .text .property__details .item {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.property .text .property__details .item.price .icon svg {
  stroke-width: 2;
}
.property .text .property__details .item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.property .text .property__details .item .icon svg {
  height: 37px;
  width: 37px;
  stroke-width: 1.5;
}
.property .text .property__details .item span {
  font-size: 29px;
}
.property .text .decor {
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  width: 60vw;
}

@media only screen and (max-width: 1550px) {
  .hero {
    min-height: 750px;
  }
  .hero .text {
    min-height: 750px;
  }
  .hero .text h2 {
    font-size: 27px;
  }
  .hero .text h1 {
    font-size: 65px;
  }
  .hero .text p {
    font-size: 18px;
    max-width: 700px;
  }
  .hero .text .buttons .btn a {
    font-size: 18px;
  }
  .benefits {
    padding: 80px 7.5%;
  }
  .benefits .benefits__heading .text p {
    font-size: 17px;
  }
  .benefits .benefits__heading .text .btn a {
    font-size: 17px;
  }
  .benefits .benefits__content {
    gap: 35px;
  }
  .benefits .benefits__content .item {
    padding: 25px;
  }
  .benefits .benefits__content .item .item__heading {
    grid-template-columns: 53px 1fr;
  }
  .benefits .benefits__content .item .item__heading .icon {
    height: 53px;
    width: 53px;
  }
  .benefits .benefits__content .item .item__heading .icon svg {
    height: 25px;
    width: 25px;
  }
  .benefits .benefits__content .item .item__heading h3 {
    font-size: 27px;
  }
  .gallery {
    padding: 80px 7.5%;
  }
  .gallery .gallery__heading .text {
    max-width: 40vw;
  }
  .gallery .gallery__heading .text p {
    font-size: 17px;
  }
  .gallery .gallery__heading .text .buttons .btn a {
    font-size: 17px;
  }
  .location {
    padding: 80px 0 0;
  }
  .location .location__heading .text {
    max-width: 40vw;
  }
  .location .location__heading .text p {
    font-size: 17px;
  }
  .location .location__heading .text .btn a {
    font-size: 17px;
  }
  .property {
    padding: 80px 7.5%;
    gap: 100px;
  }
  .property .text p {
    font-size: 18px;
  }
  .property .text .buttons .btn a {
    font-size: 17px;
  }
  .property .text .property__details .item {
    grid-template-columns: 33px 1fr;
  }
  .property .text .property__details .item .icon svg {
    height: 33px;
    width: 33px;
  }
  .property .text .property__details .item span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    min-height: 600px;
  }
  .hero .text {
    min-height: 600px;
    padding: 120px 7.5% 50px;
  }
  .hero .text h2 {
    font-size: 22px;
  }
  .hero .text h1 {
    font-size: 50px;
  }
  .hero .text p {
    font-size: 16px;
    max-width: 550px;
  }
  .hero .text .buttons .btn a {
    font-size: 16px;
  }
  .benefits .benefits__heading {
    flex-flow: column;
    align-items: start;
  }
  .benefits .benefits__heading h2 br {
    display: none;
  }
  .benefits .benefits__heading .text {
    max-width: none;
    margin-top: 10px;
  }
  .benefits .benefits__heading .text p {
    font-size: 15px;
  }
  .benefits .benefits__heading .text .btn a {
    font-size: 14px;
  }
  .benefits .benefits__content {
    gap: 15px;
  }
  .benefits .benefits__content .item .item__heading {
    grid-template-columns: 41px 1fr;
    gap: 10px;
  }
  .benefits .benefits__content .item .item__heading .icon {
    height: 41px;
    width: 41px;
  }
  .benefits .benefits__content .item .item__heading .icon svg {
    height: 21px;
    width: 21px;
  }
  .benefits .benefits__content .item .item__heading h3 {
    font-size: 23px;
  }
  .benefits .benefits__content .item p {
    font-size: 15px;
  }
  .gallery .gallery__heading {
    flex-flow: column;
    align-items: start;
  }
  .gallery .gallery__heading h2 br {
    display: none;
  }
  .gallery .gallery__heading .text {
    max-width: none;
    margin-top: 10px;
  }
  .gallery .gallery__heading .text p {
    font-size: 16px;
  }
  .gallery .gallery__heading .text .buttons .btn a {
    font-size: 15px;
  }
  .gallery .gallery__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery .gallery__content .item {
    height: 20vw;
  }
  .location .location__heading {
    flex-flow: column;
    align-items: start;
  }
  .location .location__heading h2 br {
    display: none;
  }
  .location .location__heading .text {
    margin-top: 10px;
    max-width: none;
  }
  .location .location__heading .text p {
    font-size: 16px;
  }
  .location .location__heading .text .btn a {
    font-size: 14px;
  }
  .location .map {
    height: 350px;
  }
  .property {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .property .image {
    order: 2;
  }
  .property .text {
    order: 1;
  }
  .property .text p {
    font-size: 16px;
  }
  .property .text .buttons .btn a {
    font-size: 15px;
  }
  .property .text .property__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .property .text .property__details .item {
    grid-template-columns: 29px 1fr;
  }
  .property .text .property__details .item .icon svg {
    height: 29px;
    width: 29px;
  }
  .property .text .property__details .item span {
    font-size: 20px;
  }
  .property .text .decor {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    min-height: 550px;
  }
  .hero .text {
    min-height: 550px;
  }
  .hero .text h2 {
    font-size: 18px;
  }
  .hero .text h1 {
    font-size: 40px;
  }
  .hero .text p {
    font-size: 15px;
    max-width: 100%;
    margin: 10px 0 20px;
  }
  .hero .text .buttons .btn a {
    font-size: 15px;
  }
  .benefits {
    padding: 50px 7.5%;
  }
  .benefits .benefits__heading .text p {
    font-size: 14px;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
  }
  .gallery {
    padding: 50px 7.5%;
  }
  .gallery .gallery__heading .text p {
    font-size: 14px;
  }
  .gallery .gallery__heading .text .buttons .btn a {
    font-size: 14px;
  }
  .gallery .gallery__content {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .gallery__content .item {
    height: 25vw;
  }
  .location {
    padding: 50px 0 0;
  }
  .location .location__heading .text p {
    font-size: 14px;
  }
  .location .location__heading .text .btn a {
    font-size: 14px;
  }
  .property {
    padding: 50px 7.5%;
  }
  .property .text p {
    font-size: 14px;
  }
  .property .text .buttons .btn a {
    font-size: 14px;
  }
  .property .text .property__details .item {
    grid-template-columns: 25px 1fr;
  }
  .property .text .property__details .item .icon svg {
    height: 25px;
    width: 25px;
  }
  .property .text .property__details .item span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    min-height: 450px;
  }
  .hero .text {
    min-height: 450px;
  }
  .hero .text h2 {
    font-size: 16px;
  }
  .hero .text h1 {
    font-size: 28px;
  }
  .hero .text p {
    font-size: 13px;
  }
  .hero .text .buttons .btn a {
    font-size: 12px;
  }
  .benefits .benefits__heading .text p {
    font-size: 13px;
  }
  .benefits .benefits__heading .text .btn a {
    font-size: 12px;
  }
  .benefits .benefits__content .item .item__heading {
    grid-template-columns: 35px 1fr;
  }
  .benefits .benefits__content .item .item__heading .icon {
    height: 35px;
    width: 35px;
  }
  .benefits .benefits__content .item .item__heading .icon svg {
    height: 19px;
    width: 19px;
  }
  .benefits .benefits__content .item .item__heading h3 {
    font-size: 20px;
  }
  .benefits .benefits__content .item p {
    font-size: 13px;
  }
  .gallery .gallery__heading .text p {
    font-size: 13px;
  }
  .gallery .gallery__heading .text .buttons .btn a {
    font-size: 12px;
  }
  .gallery .gallery__content {
    grid-template-columns: 1fr;
  }
  .gallery .gallery__content .item {
    height: 60vw;
  }
  .location .location__heading .text p {
    font-size: 13px;
  }
  .location .location__heading .text .btn a {
    font-size: 12px;
  }
  .property .text p {
    font-size: 13px;
  }
  .property .text .buttons {
    gap: 10px;
  }
  .property .text .buttons .btn a {
    font-size: 12px;
  }
  .property .text .property__details {
    grid-template-columns: 1fr;
  }
  .property .text .property__details .item {
    grid-template-columns: 27px 1fr;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  .property .text .property__details .item .icon svg {
    height: 27px;
    width: 27px;
  }
  .property .text .property__details .item span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .hero .text .buttons {
    flex-flow: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
  .gallery .gallery__heading .text .buttons {
    flex-flow: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
  .property .text .buttons {
    flex-flow: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */