/*
Theme Name: WP Default Theme
Theme URI: https://albertodorta.io
Author: Alberto Dorta
Author URI: https://albertodorta.io
Text Domain: alberto-wp
Description: Custom theme: Alberto, developed by Alberto Dorta
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/
/*--------------------------------------------------------------
# abstracts      - Variables & Mixins
# base           - Reset and Base styles
# components     - Buttons, form fields, inputs ... etc
# layout         - Sections, Nav, Footer ... etc
# pages          - Page templates: home, contact ... etc
# vendors        - External Libraries


/*--------------------------------------------------------------
# External Libraries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables & Mixins
--------------------------------------------------------------*/
.font-title {
  font-family: "Poppins", serif;
}

.font-body {
  font-family: "Inter";
}

/*--------------------------------------------------------------
# Reset and Base styles
--------------------------------------------------------------*/
/* RESET ------ Start */
*, *::after, *::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding: 6rem;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter";
  font-size: 1rem;
  overflow-x: hidden;
  color: #131720;
}

/* RESET ------ End */
/* Materical Icons ------ Start */
/* Materical Icons ------ End */
/* FontAwesome Icons ------ Start */
/* FontAwesome Icons ------ End */
/*--------------------------------------------------------------
# Buttons, form fields, inputs ... etc
--------------------------------------------------------------*/
.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  color: #131720;
  text-decoration: none;
  height: inherit !important;
  overflow: hidden;
  -webkit-box-shadow: 2px 4px 10px rgba(122, 122, 122, 0.5019607843);
  box-shadow: 2px 4px 10px rgba(122, 122, 122, 0.5019607843);
}
@media screen and (min-width: 768px) {
  .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.product-card__img {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .product-card__img {
    position: static;
    width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .product-card__img {
    width: 37%;
  }
}
.product-card__img .pr-img {
  aspect-ratio: 4/5;
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 470px;
}
@media screen and (min-width: 992px) {
  .product-card__img .pr-img {
    aspect-ratio: 16/9;
    min-height: 470px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-height: none;
    min-height: auto;
  }
}
.product-card__img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131720;
  opacity: 0;
}
.product-card__content {
  background-color: #FFFFFF;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 15px, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 15px, 100% 100%, 0% 100%);
}
@media screen and (min-width: 576px) {
  .product-card__content {
    padding: 2rem 2rem 1.5rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .product-card__content {
    position: static;
    background-color: rgba(255, 255, 255, 0.8117647059);
    margin-left: auto;
    padding: 2rem 3rem;
    width: 80%;
    -webkit-clip-path: polygon(25px 0%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(25px 0%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1200px) {
  .product-card__content {
    width: 63%;
  }
}
@media screen and (min-width: 1400px) {
  .product-card__content {
    width: 57%;
  }
}
.product-card__content h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .product-card__content h2 {
    font-size: 1.4rem;
  }
}
.product-card__content .post-excerpt {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
}
@media screen and (min-width: 576px) {
  .product-card__content .post-excerpt {
    font-size: 1rem;
  }
}
.product-card__content .post-features {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
@media screen and (min-width: 576px) {
  .product-card__content .post-features {
    font-size: 1rem;
    gap: 1rem;
  }
}
.product-card__content .post-features__ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-card__content .post-features__ft img {
  width: 22px;
  height: 22px;
}
@media screen and (min-width: 576px) {
  .product-card__content .post-features__ft img {
    width: 24px;
    height: 24px;
  }
}

.spinner {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.spinner div {
  -webkit-transform-origin: 35px 35px;
  transform-origin: 35px 35px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
  animation: lds-spinner 1.2s linear infinite;
}
.spinner div::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 32px;
  width: 5px;
  height: 16px;
  border-radius: 20%;
  background: #FFFFFF;
}
.spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections, Nav, Footer ... etc
--------------------------------------------------------------*/
.footer {
  background-color: #131720;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2078431373);
}
.footer__wrapper {
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 576px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .footer__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__wrapper {
    padding-top: 0;
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__wrapper--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  gap: 0.8rem;
}
.footer__wrapper--logo .logo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #FFFFFF;
  font-size: 1.1rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 600;
}
.footer__wrapper--logo .logo-content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  line-height: 1;
}
.footer__wrapper--logo .logo-content__title::after {
  content: "";
  background-color: #FFFFFF;
  height: 2px;
  width: 2.3rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 576px) {
  .footer__wrapper--logo {
    grid-column: span 2;
  }
}
@media screen and (min-width: 992px) {
  .footer__wrapper--logo {
    grid-column: span 3;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__wrapper--logo {
    padding-bottom: 0;
    grid-column: auto;
  }
}
.footer__wrapper .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #FFFFFF;
  gap: 0.6rem;
}
.footer__wrapper .columns .font-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 1;
}
@media screen and (min-width: 576px) {
  .footer__wrapper .columns .font-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}
.footer__wrapper .columns p, .footer__wrapper .columns a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.55;
  font-size: 1rem;
}
.footer__wrapper .columns .dev {
  margin-top: 0.3rem;
}
.footer__wrapper .columns .dev a {
  font-size: 0.875rem;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__wrapper .columns .dev a img {
  margin-right: 5px;
}

.container {
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.navigation {
  padding: 0.8rem 0;
  position: fixed;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2078431373);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: transparent;
}
.navigation.light {
  background-color: #FFFFFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: 0px 3px 9px rgba(14, 17, 17, 0.7098039216);
  box-shadow: 0px 3px 9px rgba(14, 17, 17, 0.7098039216);
}
.navigation.light .logo-image .nav-logo__dark {
  display: block;
}
.navigation.light .logo-image .nav-logo__white {
  display: none;
}
.navigation.light .logo-content {
  color: #131720;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navigation.light .logo-content__title::after {
  content: "";
  background-color: #131720;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .navigation.light .nav-items .menu-wrapper .menu-item a {
    color: #131720;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
@media screen and (max-width: 992px) {
  .navigation.light .nav-burger-menu__main {
    background-color: #131720;
  }
  .navigation.light .nav-burger-menu__main::before, .navigation.light .nav-burger-menu__main::after {
    background-color: #131720;
  }
}
.navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.4rem !important;
  padding-left: 1.4rem !important;
}
@media screen and (max-width: 992px) {
  .navigation__wrapper {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .navigation__wrapper {
    max-width: 1370px;
  }
}
@media (min-width: 1600px) {
  .navigation__wrapper {
    max-width: 1450px;
  }
}
.navigation__wrapper--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .navigation__wrapper--logo {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .navigation__wrapper--logo .logo-image img {
    width: 45px;
    height: 45px;
  }
}
.navigation__wrapper--logo .logo-image .nav-logo__dark {
  display: none;
}
.navigation__wrapper--logo .logo-image .nav-logo__white {
  display: block;
}
.navigation__wrapper--logo .logo-content {
  display: none;
}
@media screen and (min-width: 576px) {
  .navigation__wrapper--logo .logo-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #FFFFFF;
    font-size: 1rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .navigation__wrapper--logo .logo-content {
    font-size: 1.1rem;
  }
}
.navigation__wrapper--logo .logo-content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  line-height: 1;
}
.navigation__wrapper--logo .logo-content__title::after {
  content: "";
  background-color: #FFFFFF;
  height: 2px;
  width: 2.3rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navigation__wrapper .nav-items {
  position: absolute;
  right: 0;
  top: 71.59px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  height: calc(100vh - 71.59px);
  width: 85%;
  background-color: rgba(255, 255, 255, 0.7215686275);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 4rem 0;
}
.navigation__wrapper .nav-items.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .navigation__wrapper .nav-items {
    top: 81.59px;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-items {
    margin-left: 6rem;
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    height: auto;
    background-color: transparent;
    width: auto;
    padding: 0;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
.navigation__wrapper .nav-items .menu-wrapper {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-items .menu-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-items .menu-wrapper .menu-item.lang-item {
    margin-left: 1rem;
  }
}
.navigation__wrapper .nav-items .menu-wrapper .menu-item a {
  text-decoration: none;
  color: #131720;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-items .menu-wrapper .menu-item a {
    font-size: 1rem;
    color: #FFFFFF;
  }
}
.navigation__wrapper .nav-items .menu-wrapper .menu-item__logo {
  margin-top: auto;
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-items .menu-wrapper .menu-item__logo {
    display: none;
  }
}
.navigation__wrapper .nav-cta {
  margin-left: auto;
  background-color: #d1af7a;
  -webkit-box-shadow: 0px 3px 6px rgba(14, 17, 17, 0.7098039216);
  box-shadow: 0px 3px 6px rgba(14, 17, 17, 0.7098039216);
}
.navigation__wrapper .nav-cta .cta-btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
@media screen and (min-width: 768px) {
  .navigation__wrapper .nav-cta .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}
.navigation__wrapper .nav-burger-menu {
  width: 2rem;
  height: 35px;
  margin-left: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .navigation__wrapper .nav-burger-menu {
    display: none;
  }
}
.navigation__wrapper .nav-burger-menu__main {
  height: 3px;
  background-color: #FFFFFF;
  position: relative;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.navigation__wrapper .nav-burger-menu__main::before, .navigation__wrapper .nav-burger-menu__main::after {
  content: "";
  background-color: #FFFFFF;
  height: 3px;
  left: 0;
  display: block;
  position: absolute;
  width: 100%;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.navigation__wrapper .nav-burger-menu__main::before {
  top: -10px;
}
.navigation__wrapper .nav-burger-menu__main::after {
  top: 10px;
}
.navigation__wrapper .nav-burger-menu.active .nav-burger-menu__main {
  background-color: transparent;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.navigation__wrapper .nav-burger-menu.active .nav-burger-menu__main::before, .navigation__wrapper .nav-burger-menu.active .nav-burger-menu__main::after {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.navigation__wrapper .nav-burger-menu.active .nav-burger-menu__main::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation__wrapper .nav-burger-menu.active .nav-burger-menu__main::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
# Page templates: home, contact ... etc
--------------------------------------------------------------*/
.load-posts {
  padding: 7rem 0;
  background-color: #131720;
  position: relative;
}
.load-posts #ap-map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.35;
  overflow: hidden;
}
.load-posts #ap-map .mapboxgl-control-container {
  display: none;
}
.load-posts .spinner {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.load-posts.completed .load-posts__master .apartments-archive {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  min-height: auto;
}
.load-posts.completed .spinner {
  display: none;
}
.load-posts__master {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .load-posts__master {
    margin-top: 3rem;
  }
}
.load-posts__master h1 {
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.4rem;
  width: 80%;
  margin-bottom: 3rem;
}
@media screen and (min-width: 576px) {
  .load-posts__master h1 {
    font-size: 1.6rem;
    width: 100%;
  }
}
.load-posts__master .apartments-archive {
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  min-height: 100vh;
  position: relative;
}
@media screen and (min-width: 992px) {
  .load-posts__master .apartments-archive {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.load-posts__master .apartments-archive .product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  color: #131720;
  text-decoration: none;
  height: inherit !important;
  overflow: hidden;
  -webkit-box-shadow: 2px 4px 10px rgba(122, 122, 122, 0.5019607843);
  box-shadow: 2px 4px 10px rgba(122, 122, 122, 0.5019607843);
  color: #FFFFFF;
  -webkit-box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.0901960784);
  box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.0901960784);
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.load-posts__master .apartments-archive .product-card__img {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card__img {
    position: static;
    width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .load-posts__master .apartments-archive .product-card__img {
    width: 37%;
  }
}
.load-posts__master .apartments-archive .product-card__img .pr-img {
  aspect-ratio: 4/5;
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 470px;
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card__img .pr-img {
    aspect-ratio: 16/9;
    min-height: 470px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-height: none;
    min-height: auto;
  }
}
.load-posts__master .apartments-archive .product-card__img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131720;
  opacity: 0;
}
.load-posts__master .apartments-archive .product-card__content {
  background-color: #FFFFFF;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 15px, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 15px, 100% 100%, 0% 100%);
}
@media screen and (min-width: 576px) {
  .load-posts__master .apartments-archive .product-card__content {
    padding: 2rem 2rem 1.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card__content {
    position: static;
    background-color: rgba(255, 255, 255, 0.8117647059);
    margin-left: auto;
    padding: 2rem 3rem;
    width: 80%;
    -webkit-clip-path: polygon(25px 0%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(25px 0%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1200px) {
  .load-posts__master .apartments-archive .product-card__content {
    width: 63%;
  }
}
@media screen and (min-width: 1400px) {
  .load-posts__master .apartments-archive .product-card__content {
    width: 57%;
  }
}
.load-posts__master .apartments-archive .product-card__content h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .load-posts__master .apartments-archive .product-card__content h2 {
    font-size: 1.4rem;
  }
}
.load-posts__master .apartments-archive .product-card__content .post-excerpt {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
}
@media screen and (min-width: 576px) {
  .load-posts__master .apartments-archive .product-card__content .post-excerpt {
    font-size: 1rem;
  }
}
.load-posts__master .apartments-archive .product-card__content .post-features {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
@media screen and (min-width: 576px) {
  .load-posts__master .apartments-archive .product-card__content .post-features {
    font-size: 1rem;
    gap: 1rem;
  }
}
.load-posts__master .apartments-archive .product-card__content .post-features__ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.load-posts__master .apartments-archive .product-card__content .post-features__ft img {
  width: 22px;
  height: 22px;
}
@media screen and (min-width: 576px) {
  .load-posts__master .apartments-archive .product-card__content .post-features__ft img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.load-posts__master .apartments-archive .product-card__content {
  background-color: #131720;
}
@media screen and (min-width: 768px) {
  .load-posts__master .apartments-archive .product-card__content {
    margin-top: -1px;
    margin-right: -1px;
    background-color: rgba(19, 23, 32, 0.768627451);
  }
}
.load-posts__master .apartments-archive .product-card__content .font-title {
  font-weight: 600;
}
.load-posts__master .apartments-archive .product-card__content .post-excerpt {
  font-weight: 500;
}
.load-posts__master .apartments-archive .product-card__content .post-features {
  font-weight: 500;
}
.load-posts__master .apartments-archive .product-card__content .post-features__ft .pr-img {
  -webkit-filter: invert(1) brightness(1);
  filter: invert(1) brightness(1);
}

@media screen and (min-width: 992px) {
  .post-hero {
    min-height: 700px;
    height: 78vh;
  }
}
.post-hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.post-hero__wrapper--img {
  overflow: hidden;
  position: relative;
  margin-top: -4rem;
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--img {
    margin-top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
  }
}
.post-hero__wrapper--img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #131720;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.post-hero__wrapper--img .hero-img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  min-height: 38vh;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--img .hero-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-height: 100%;
    min-height: auto;
    z-index: -1;
  }
}
.post-hero__wrapper--img .post-elements {
  width: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-top: 2px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .post-hero__wrapper--img .post-elements {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--img .post-elements {
    padding: 1.5rem 0;
    width: 46%;
  }
}
@media screen and (min-width: 1400px) {
  .post-hero__wrapper--img .post-elements {
    width: 51%;
  }
}
.post-hero__wrapper--img .post-elements__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 0 1.5rem;
  cursor: pointer;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .post-hero__wrapper--img .post-elements__item {
    padding: 0 2rem;
  }
}
.post-hero__wrapper--img .post-elements__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3607843137);
}
.post-hero__wrapper--img .post-elements__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3607843137);
}
.post-hero__wrapper--img .post-elements__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3607843137);
}
@media screen and (max-width: 1200px) {
  .post-hero__wrapper--img .post-elements__item--icon {
    width: 55px;
    height: 55px;
  }
}
.post-hero__wrapper--img .post-elements__item--label {
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 1200px) {
  .post-hero__wrapper--img .post-elements__item--label {
    font-size: 1.1rem;
  }
}
.post-hero__wrapper--content {
  position: relative;
  z-index: 2;
  background-color: #131720;
  width: 100%;
  padding-top: calc(71.79px + 2rem);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .post-hero__wrapper--content {
    padding-top: calc(81.59px + 2rem);
  }
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--content {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin-left: auto;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    background-color: rgba(19, 23, 32, 0.768627451);
    width: 55%;
  }
}
@media screen and (min-width: 1400px) {
  .post-hero__wrapper--content {
    width: 50%;
  }
}
.post-hero__wrapper--content .post-hero-text {
  width: 100%;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--content .post-hero-text {
    padding-right: 0;
    padding-left: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 55%;
  }
}
@media screen and (min-width: 1200px) {
  .post-hero__wrapper--content .post-hero-text {
    font-size: 1.1rem;
  }
}
.post-hero__wrapper--content .post-hero-text h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .post-hero__wrapper--content .post-hero-text h1 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .post-hero__wrapper--content .post-hero-text h1 {
    font-size: 2rem;
  }
}
.post-hero__wrapper--content .post-hero-text .post-excerpt {
  line-height: 1.6;
}
@media screen and (min-width: 576px) {
  .post-hero__wrapper--content .post-hero-text .post-excerpt {
    max-width: 28rem;
  }
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--content .post-hero-text .post-excerpt {
    max-width: 25rem;
  }
}
.post-hero__wrapper--content .post-hero-text .post-features {
  display: none;
}
@media screen and (min-width: 576px) {
  .post-hero__wrapper--content .post-hero-text .post-features {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .post-hero__wrapper--content .post-hero-text .post-features {
    margin-top: 2.5rem;
    gap: 1.3rem;
  }
}
.post-hero__wrapper--content .post-hero-text .post-features__ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-hero__wrapper--content .post-hero-text .post-features__ft .pr-img {
  -webkit-filter: invert(1) sepia(7%) saturate(478%) brightness(0.7);
  filter: invert(1) sepia(7%) saturate(478%) brightness(0.7);
}
@media screen and (max-width: 1200px) {
  .post-hero__wrapper--content .post-hero-text .post-features__ft .pr-img {
    width: 27px;
    height: 27px;
  }
}
.post-hero__wrapper--content .booking-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 576px) {
  .post-hero__wrapper--content .booking-btns {
    gap: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.post-hero__wrapper--content .booking-btns .b-btn {
  background-color: #131720;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 175px;
}
@media screen and (min-width: 576px) {
  .post-hero__wrapper--content .booking-btns .b-btn {
    width: auto;
  }
}
.post-hero__wrapper--content .booking-btns .b-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .post-hero__wrapper--content .booking-btns .b-btn a img {
    width: 19px;
    height: 19px;
  }
}
.post-hero__wrapper--content .booking-btns .b-btn {
  -webkit-box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.0784313725);
  box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.0784313725);
  border: 1px solid rgba(255, 255, 255, 0.2078431373);
}
@media screen and (min-width: 992px) {
  .post-hero__wrapper--content .booking-btns .b-btn {
    background-color: rgba(19, 23, 32, 0.7098039216);
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.post-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 6;
  background-color: rgba(19, 23, 32, 0.768627451);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s 0.2s;
  transition: all 0.2s 0.2s;
}
.post-popup.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.32s;
  transition: all 0.32s;
}
.post-popup__element {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.post-popup__element.pop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s 0.2s;
  transition: all 0.4s 0.2s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.post-popup__close {
  background-image: url("../img/close.svg");
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  right: 0;
  top: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .post-popup__close {
    width: 4rem;
    height: 4rem;
    right: 2rem;
  }
}
.post-popup .post-gallery {
  width: 90%;
  max-width: 1200px;
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .post-popup .post-gallery {
    width: 85%;
    height: 90vh;
    gap: 2rem;
  }
}
.post-popup .post-gallery__slider {
  width: 100%;
  height: 63%;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .post-popup .post-gallery__slider {
    height: 85%;
  }
}
.post-popup .post-gallery__slider--cont {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.post-popup .post-gallery__slider--cont .img-caption {
  display: none;
}
@media screen and (min-width: 576px) {
  .post-popup .post-gallery__slider--cont .img-caption {
    background-color: #FFFFFF;
    color: #131720;
    padding: 0.2rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.post-popup .post-gallery__slider--cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.post-popup .post-gallery__slider .slick-list {
  height: 100%;
  width: 100%;
}
.post-popup .post-gallery__slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.post-popup .post-gallery__nav {
  width: 100%;
  height: 12%;
  position: relative;
}
@media screen and (min-width: 576px) {
  .post-popup .post-gallery__nav {
    height: 15%;
  }
}
.post-popup .post-gallery__nav--cont {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  opacity: 0.7;
  cursor: pointer;
}
.post-popup .post-gallery__nav--cont.slick-current {
  border: 3px solid #FFFFFF;
  opacity: 1;
}
.post-popup .post-gallery__nav--cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.post-popup .post-gallery__nav .slick-list {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.post-popup .post-gallery__nav .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 0.8rem;
}
@media screen and (min-width: 576px) {
  .post-popup .post-gallery__nav .slick-list .slick-track {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .post-popup .post-gallery__nav .slick-list .slick-track {
    gap: 2rem;
  }
}
.post-popup .post-gallery__nav .slick-arrow {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .post-popup .post-gallery__nav .slick-arrow {
    display: block !important;
    width: 3rem;
    height: 3rem;
    border: 0;
    outline: 0;
    cursor: pointer;
    background-color: transparent;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .post-popup .post-gallery__nav .slick-arrow.slick-disabled {
    display: none !important;
  }
  .post-popup .post-gallery__nav .slick-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Material Icons Outlined";
    font-size: 2rem;
    line-height: 1;
    color: #FFFFFF;
    font-weight: 500;
    content: "\e5e0";
  }
  .post-popup .post-gallery__nav .slick-arrow.prev {
    left: -3.5rem;
  }
  .post-popup .post-gallery__nav .slick-arrow.prev::after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  .post-popup .post-gallery__nav .slick-arrow.next {
    right: -3.5rem;
  }
  .post-popup .post-gallery__nav .slick-arrow.next::after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.post-popup .post-map {
  width: 90%;
  max-width: 1250px;
  height: 85vh;
  position: relative;
}
@media screen and (min-width: 576px) {
  .post-popup .post-map {
    height: 87vh;
    width: 85%;
  }
}
.post-popup .post-map__wrapper {
  overflow: auto;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .post-popup .post-map__wrapper {
    overflow: inherit;
    display: grid;
    grid-template-areas: "desc map" "desc map" "img img" "img img";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.post-popup .post-map__wrapper--description {
  color: #FFFFFF;
  background-color: rgba(19, 23, 32, 0.768627451);
  padding: 2rem 1.6rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.post-popup .post-map__wrapper--description h2 {
  margin-bottom: 1.5rem;
  line-height: 1;
  color: #d1af7a;
  font-weight: 500;
}
.post-popup .post-map__wrapper--description p {
  line-height: 1.5;
}
@media screen and (min-width: 576px) {
  .post-popup .post-map__wrapper--description {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .post-popup .post-map__wrapper--description {
    margin-bottom: 0;
    grid-area: desc;
  }
}
@media screen and (min-width: 1400px) {
  .post-popup .post-map__wrapper--description {
    padding: 3rem;
  }
  .post-popup .post-map__wrapper--description p {
    font-size: 1.1rem;
  }
}
.post-popup .post-map__wrapper--gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.post-popup .post-map__wrapper--gallery .map-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .post-popup .post-map__wrapper--gallery {
    margin-bottom: 0;
    grid-area: img;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .post-popup .post-map__wrapper--gallery .map-img {
    aspect-ratio: initial;
  }
}
.post-popup .post-map__wrapper .map-container {
  position: relative;
  height: 20rem;
}
@media screen and (min-width: 1200px) {
  .post-popup .post-map__wrapper .map-container {
    grid-area: map;
    height: auto;
  }
}
.post-popup .post-map__wrapper .map-container .address {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  color: #131720;
  z-index: 1;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-box-shadow: 0px 3px 9px rgba(14, 17, 17, 0.431372549);
  box-shadow: 0px 3px 9px rgba(14, 17, 17, 0.431372549);
  width: 80%;
}
@media screen and (min-width: 576px) {
  .post-popup .post-map__wrapper .map-container .address {
    font-size: 0.875rem;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .post-popup .post-map__wrapper .map-container .address {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
  }
}
.post-popup .post-map__wrapper .map-container #post-map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.post-popup .post-map__wrapper .map-container #post-map .mapboxgl-control-container .mapboxgl-ctrl-bottom-right, .post-popup .post-map__wrapper .map-container #post-map .mapboxgl-control-container .mapboxgl-ctrl-bottom-left {
  display: none;
}
.post-popup .post-map__wrapper .map-container #post-map .marker-map {
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../img/pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body[data-page=terms-cons] {
  background-color: #131720;
}
body[data-page=terms-cons] main .container {
  color: #FFFFFF;
  padding-top: calc(71.59px + 3rem);
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  body[data-page=terms-cons] main .container {
    padding-top: calc(81.59px + 4rem);
  }
}
@media screen and (min-width: 1200px) {
  body[data-page=terms-cons] main .container {
    max-width: 1010px;
  }
}
body[data-page=terms-cons] main .container h1, body[data-page=terms-cons] main .container h2 {
  margin-bottom: 1.2rem;
}
body[data-page=terms-cons] main .container a {
  text-decoration: none;
  color: #d1af7a;
}
body[data-page=terms-cons] main .container p, body[data-page=terms-cons] main .container ul {
  line-height: 1.5;
  padding-bottom: 1.5rem;
}
body[data-page=terms-cons] main .container ul {
  padding-left: 20px;
}
body[data-page=terms-cons] main .container ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
/*# sourceMappingURL=frontend.css.map */
