:root {
  --bg: #f1f1ed;
  --font-color: #6e7a73;
  --link: #555e59;
  --bg-3: #efede7;
  --lines: #b6b9af;
  --dropdown-bg-button: #d4d5cf;
  --bg-2: #8a968f;
  --button-hover-2: #7d8a83;
  --white: white;
  --link-hover: #6c7a72;
  --lines-2: #71847b;
  --button-hover: #c8cabe;
  --field-hover: #3e87e7;
  --font: #0f0e0f;
  --text-white: #e8e9e4;
  --slide-bg: #f7f6f4;
}

body {
  background-color: var(--bg);
  color: var(--font-color);
  letter-spacing: -.5px;
  font-family: Karla, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 38px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

p {
  margin-top: 3px;
  margin-bottom: -10px;
  padding-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

a {
  color: var(--link);
  cursor: pointer;
  text-decoration: underline;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.content---pop-up {
  font-family: Poppins, sans-serif;
}

.preloader-logo {
  display: inline-flex;
  overflow: hidden;
}

.content-section {
  width: 100%;
  max-width: 100%;
  margin-top: 26px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.content-section.inner-pages {
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-section.shadow {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a8a_Shade.avif");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 1291px;
  padding-bottom: 90px;
  overflow: visible;
}

.content-section.double {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 27px;
}

.content-section.colored {
  background-color: var(--bg-3);
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-section.blog-post {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: Poppins, sans-serif;
}

.content-section.blog-page {
  background-color: var(--bg-3);
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-section.top-padding {
  padding-top: 60px;
}

.content-section.blog {
  background-color: var(--bg-3);
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-section.overflow {
  padding-top: 0;
  padding-bottom: 40px;
  overflow: hidden;
}

.content-section.overflow.hero-section {
  background-color: var(--bg);
}

.content-section.bottom-padding {
  padding-bottom: 30px;
}

.content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1225px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  display: block;
  position: relative;
}

.go-up-button {
  z-index: 5;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #6e7a73cc;
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a50_proximo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 13px;
  margin-right: 15px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
}

.go-up-button.w--current {
  z-index: 48;
  justify-content: center;
  align-items: center;
  display: flex;
}

.preloader {
  z-index: 2147483647;
  background-image: linear-gradient(to bottom, var(--bg), var(--bg));
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 14px;
  display: none;
  position: fixed;
  inset: 0;
}

.underline {
  background-color: var(--lines);
  width: 101%;
  height: 1.5px;
}

.nav-menu {
  display: flex;
}

.navbar {
  background-color: var(--bg);
  height: 80px;
  position: fixed;
  inset: 0% 0% auto;
}

.navlink {
  color: var(--link);
  height: 80px;
  margin-right: 20px;
  padding-top: 29px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s;
  overflow: hidden;
}

.navlink:hover {
  text-decoration: none;
}

.navlink.w--current {
  color: var(--font-color);
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.brand {
  justify-content: center;
  align-items: center;
  height: 80px;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.brand:hover {
  opacity: .85;
  transform: scale(1.04);
}

.login-box {
  letter-spacing: -.3px;
  height: 80px;
  margin-right: 20px;
  padding-top: 22px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  transition: color .2s;
  overflow: hidden;
}

.login-box:hover {
  color: #5d6363;
  text-decoration: none;
}

.login-box.w--current {
  color: #98a0a5;
}

.nav-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  padding-left: 25px;
  position: relative;
}

.comedor-edif-a {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.comedor-edif-a.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50% 100%;
}

.comedor-edif-a._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.comedor-edif-a.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.comedor-edif-a.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.comedor-edif-a.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.comedor-edif-a._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.comedor-edif-a.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.comedor-edif-a.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.comedor-edif-a.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.comedor-edif-a.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.comedor-edif-a.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.comedor-edif-a.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.comedor-edif-a.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.comedor-edif-a.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.comedor-edif-a.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.comedor-edif-a.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.comedor-edif-a.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.comedor-edif-a.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.comedor-edif-a.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.comedor-edif-a.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.comedor-edif-a.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.comedor-edif-a.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.comedor-edif-a.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.comedor-edif-a.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.comedor-edif-a.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.comedor-edif-a.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.comedor-edif-a.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  background-position: 45%;
}

.comedor-edif-a._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.comedor-edif-a._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.comedor-edif-a._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.comedor-edif-a._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.comedor-edif-a.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  margin-left: 0;
  padding-right: 0;
}

.comedor-edif-a.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.comedor-edif-a.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.comedor-edif-a.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.comedor-edif-a.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.comedor-edif-a.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.comedor-edif-a.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.comedor-edif-a.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.comedor-edif-a.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca80b6fdfb4395bc695b1b_Landscape%20Edif%20B%20trasfachada.avif");
}

.comedor-edif-a.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.comedor-edif-a.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.comedor-edif-a.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.comedor-edif-a.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.comedor-edif-a.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  background-position: 65%;
}

.comedor-edif-a._3 {
  object-fit: fill;
  background-color: #f1f1ed;
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67004c752b322811997708b6_contain%20fachada%20A.avif");
  background-size: cover;
  height: 100%;
}

.comedor-edif-a.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670fc85cdf0f335523c54881_12.avif");
  background-position: 50%;
}

.comedor-edif-a.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.comedor-edif-a.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.on-scroll-1 {
  background-color: var(--dropdown-bg-button);
  display: none;
  position: absolute;
  inset: 0%;
}

.flex {
  display: flex;
  position: relative;
}

.price {
  color: var(--bg);
  margin-right: 10px;
  font-family: Cormorant Upright, sans-serif;
  font-size: 50px;
  line-height: 50px;
  display: inline-block;
}

.price.green {
  color: var(--font-color);
  margin-bottom: 15px;
  font-family: Tenorsans, sans-serif;
  font-size: 34px;
  line-height: 44px;
}

.currency {
  color: var(--bg);
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 40px;
  display: inline-block;
  position: relative;
  top: -8px;
}

.currency.green {
  color: var(--font-color);
  font-size: 30px;
  font-weight: 200;
  top: 0;
}

.heading-center {
  text-align: center;
  width: 100%;
  max-width: 420px;
  margin: 16px auto 20px;
}

.heading-center.less-margin {
  margin-bottom: 10px;
}

.h2 {
  margin-top: 18px;
  margin-left: -117px;
  margin-right: -117px;
  padding-left: 0;
  padding-right: 0;
  font-family: Tenor Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 42px;
}

.title-all-caps {
  letter-spacing: .5px;
  text-transform: uppercase;
  padding-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  display: inline-block;
}

.title-all-caps.white {
  color: var(--bg);
  font-weight: 400;
}

.column-center-flex {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: relative;
}

.text-column {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.max-410-pixels {
  width: 100%;
  max-width: 410px;
  padding-top: 0;
}

.content-section-colored {
  background-color: var(--bg-2);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.content-section-colored.green {
  background-color: var(--bg-3);
  cursor: pointer;
  background-color: var(--bg-3);
  cursor: pointer;
  display: block;
}

.relative {
  position: relative;
  overflow: hidden;
}

.max-470-pixels {
  background-color: #fff0;
  width: 100%;
  max-width: 470px;
}

.divider-line {
  background-color: var(--bg-2);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.divider-line.top {
  inset: 0% 0% auto;
}

.divider-line.white {
  background-color: var(--bg);
}

.text {
  text-align: center;
  margin-bottom: 5px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.text.small {
  font-size: 24px;
}

.text.big {
  text-align: left;
  text-align: left;
  font-size: 32px;
  line-height: 40px;
}

.image-column {
  background-color: #fff;
  width: 50%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.price-block {
  padding: 10px 20px;
}

.pricing-button {
  background-color: var(--bg-2);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  height: 38.5px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  transition: background-color .2s;
}

.pricing-button:hover {
  background-color: var(--button-hover-2);
}

.pricing-description-wrapper {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.pricing-description-wrapper.no-included {
  cursor: not-allowed;
}

.pricing-description {
  flex: 1;
  font-family: Poppins, sans-serif;
  font-weight: 200;
}

.pricing-table-wrapper {
  background-color: #fff;
  border-radius: 7.5px;
  flex-direction: column;
  width: 30%;
  margin-right: 3%;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.pricing-table-wrapper.third {
  top: -30%;
}

.pricing-table-wrapper.second {
  background-color: var(--white);
  top: -15%;
}

.plan-points-title {
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.checkmark {
  width: 20px;
}

.plan-description {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 200;
}

.plans-inclusions-list {
  padding-left: 20px;
  padding-right: 20px;
}

.separator {
  background-color: #022646;
  width: 100%;
  max-width: 100px;
  height: 1px;
  margin-left: 20px;
  margin-right: 20px;
}

.separator.pricing {
  background-color: var(--bg-2);
  background-color: var(--bg-2);
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.checkmark-wrapper {
  border: 1px solid var(--bg-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: flex;
}

.checkmark-wrapper.dark {
  border-color: var(--bg-2);
}

.pricing-image {
  border-bottom: 1px solid #0003;
  border-radius: 7.5px 7.5px 0 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.points-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
}

.divider-box {
  margin-top: 25px;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.narrow-wrapper {
  max-width: 800px;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.link-block-underline {
  color: var(--link);
  letter-spacing: -.5px;
  margin-bottom: 20px;
  margin-right: 20px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  overflow: hidden;
}

.link-block-underline:hover {
  color: #586063;
  text-decoration: none;
}

.link-block-underline.w--current {
  color: var(--button-hover-2);
  font-weight: 500;
}

.link-block-underline.bold {
  color: var(--bg-2);
  font-weight: 500;
}

.link-block-underline.bold:hover {
  color: var(--link-hover);
}

.social-icon-down {
  width: 35px;
  height: 35px;
  margin-top: 35px;
  position: absolute;
  inset: 0%;
}

.social-icon-down.twitter {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b2a_gorjeo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-down.facebook {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a5f_logo-de-facebook.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-down.instagram {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b28_instagram%20(1).svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.footer-links {
  flex-wrap: wrap;
  margin-top: 10px;
  display: flex;
}

.social-icons-container {
  width: 35px;
  height: 35px;
  position: relative;
}

.social-icon-rounded {
  background-color: var(--bg-2);
  background-color: var(--bg-2);
  border-radius: 50px;
  width: 35px;
  height: 35px;
  margin-right: 7px;
  overflow: hidden;
}

.social-icon-up {
  width: 35px;
  height: 35px;
  position: absolute;
  inset: 0%;
}

.social-icon-up.twitter {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b2a_gorjeo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-up.facebook {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a5f_logo-de-facebook.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.social-icon-up.instagram {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b28_instagram%20(1).svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.footer-logo-link {
  margin-bottom: 20px;
}

.footer-flex {
  justify-content: space-between;
  display: flex;
}

.notice {
  min-height: 50px;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 13px;
}

.hover-insta-overlay {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: auto;
  background-color: #0f0e0f40;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hover-icon {
  color: #69707b;
}

.flex-instagram {
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.insta-pic {
  width: 25%;
  position: relative;
  overflow: hidden;
}

.change-insta-image.insta-4, .change-insta-image.insta, .change-insta-image.insta-2, .change-insta-image.insta-3 {
  background-image: none;
}

.change-insta-image {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.change-insta-image.insta-4, .change-insta-image.insta, .change-insta-image.insta-2, .change-insta-image.insta-3, .change-insta-image.insta-4, .change-insta-image.insta, .change-insta-image.insta-2, .change-insta-image.insta-3 {
  background-image: none;
}

.heading-full {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 44px;
}

.h4.italiced {
  font-family: Tenor Sans, sans-serif;
}

.footer {
  width: 100%;
  max-width: 100%;
  padding-top: 100px;
  position: relative;
}

.hero-section-about {
  background-color: var(--bg);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  min-height: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-wrapper-about {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1210px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: relative;
}

.no-top-margin {
  text-align: left;
  margin-top: 6px;
  font-family: Tenorsans, sans-serif;
  font-size: 28px;
}

.slider {
  height: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.slide-nav-2 {
  height: 20px;
  padding-top: 0;
  font-size: 13px;
  line-height: 13px;
}

.right-arrow {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #6c7a72b3;
  border-top-left-radius: 7.5px;
  border-bottom-left-radius: 7.5px;
  width: 50px;
  height: 94px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 30px;
  transition: background-color .2s;
}

.right-arrow:hover {
  background-color: #6c7a7280;
}

.left-arrow {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #6c7a72b3;
  border-radius: 0 7.5px 7.5px 0;
  width: 50px;
  height: 94px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 30px;
  transition: background-color .2s;
}

.left-arrow:hover {
  background-color: #6c7a7280;
}

.half-bg {
  background-color: var(--bg);
  width: 100%;
  height: 36%;
  position: absolute;
  inset: auto 0% 0%;
}

._50-percent-column {
  width: 50%;
  margin-right: 3%;
  padding-right: 0;
  font-family: Tenorsans, sans-serif;
  position: relative;
  overflow: hidden;
}

.max-412-pixels {
  width: 100%;
  max-width: 412px;
}

.slide-text {
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

.subtitle-box {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
}

.social-icon {
  background-color: var(--bg-2);
  border-radius: 50px;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  overflow: hidden;
}

.social-icon.rounded {
  border-radius: 5px;
}

.map-title {
  margin-right: 10px;
  font-family: Tenor Sans, sans-serif;
}

.flex-wrap {
  display: flex;
}

.grid-container {
  background-color: var(--bg);
  padding: 4%;
}

.h4-regular {
  margin-top: 0;
  font-family: Tenorsans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
}

.h3 {
  margin-top: 10px;
  font-family: Tenor Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.social-container {
  margin-top: 58px;
  display: flex;
}

.location-text {
  margin-bottom: -5px;
  font-family: Poppins, sans-serif;
  font-weight: 200;
  line-height: 20px;
}

.pricing-flex {
  border-radius: 2px;
  margin-top: 30px;
  margin-bottom: 33px;
  display: flex;
}

.cenital-desarrollo {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.cenital-desarrollo.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.cenital-desarrollo._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.cenital-desarrollo.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.cenital-desarrollo.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.cenital-desarrollo.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.cenital-desarrollo._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.cenital-desarrollo.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.cenital-desarrollo.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.cenital-desarrollo.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.cenital-desarrollo.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.cenital-desarrollo.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.cenital-desarrollo.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.cenital-desarrollo.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.cenital-desarrollo.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.cenital-desarrollo.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.cenital-desarrollo.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.cenital-desarrollo.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.cenital-desarrollo.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.cenital-desarrollo.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.cenital-desarrollo.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.cenital-desarrollo.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cenital-desarrollo.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.cenital-desarrollo.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.cenital-desarrollo.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.cenital-desarrollo.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.cenital-desarrollo._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.cenital-desarrollo.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.cenital-desarrollo.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.cenital-desarrollo.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.cenital-desarrollo.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cenital-desarrollo._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6710115be3238b944a376e8c_Amenidades%20listado.avif");
  background-position: 50%;
}

.cenital-desarrollo._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.cenital-desarrollo._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.cenital-desarrollo._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.cenital-desarrollo.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cenital-desarrollo.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.cenital-desarrollo.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.cenital-desarrollo.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.cenital-desarrollo.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.cenital-desarrollo.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.cenital-desarrollo.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.cenital-desarrollo.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.cenital-desarrollo.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.cenital-desarrollo.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.cenital-desarrollo.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.cenital-desarrollo.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.cenital-desarrollo.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.cenital-desarrollo.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.cenital-desarrollo.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
  background-position: 50%;
}

.cuarto-edif-a {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca6da8b14f1d22960f8af4_higlhight%20edificio%20A.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.cuarto-edif-a.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.cuarto-edif-a._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.cuarto-edif-a.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.cuarto-edif-a.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.cuarto-edif-a.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.cuarto-edif-a._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.cuarto-edif-a.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.cuarto-edif-a.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.cuarto-edif-a.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.cuarto-edif-a.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.cuarto-edif-a.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.cuarto-edif-a.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.cuarto-edif-a.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.cuarto-edif-a.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.cuarto-edif-a.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.cuarto-edif-a.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.cuarto-edif-a.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.cuarto-edif-a.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.cuarto-edif-a.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.cuarto-edif-a.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.cuarto-edif-a.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cuarto-edif-a.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.cuarto-edif-a.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.cuarto-edif-a.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.cuarto-edif-a.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.cuarto-edif-a._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.cuarto-edif-a.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.cuarto-edif-a.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.cuarto-edif-a.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cuarto-edif-a._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.cuarto-edif-a._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.cuarto-edif-a._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.cuarto-edif-a._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.cuarto-edif-a.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.cuarto-edif-a.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.cuarto-edif-a.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.cuarto-edif-a.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.cuarto-edif-a.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.cuarto-edif-a.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.cuarto-edif-a.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.cuarto-edif-a.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.cuarto-edif-a.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.cuarto-edif-a.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.cuarto-edif-a.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.cuarto-edif-a.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.cuarto-edif-a.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.cuarto-edif-a.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.cuarto-edif-a.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.cuarto-edif-a.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670fc82f7295c99fcdf8b2f6_6.avif");
  background-size: cover;
  height: auto;
}

.vista-de-ba-o-cuarto-a {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.vista-de-ba-o-cuarto-a.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.vista-de-ba-o-cuarto-a._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.vista-de-ba-o-cuarto-a.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.vista-de-ba-o-cuarto-a.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.vista-de-ba-o-cuarto-a.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.vista-de-ba-o-cuarto-a._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.vista-de-ba-o-cuarto-a.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.vista-de-ba-o-cuarto-a.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.vista-de-ba-o-cuarto-a.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.vista-de-ba-o-cuarto-a.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.vista-de-ba-o-cuarto-a.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.vista-de-ba-o-cuarto-a.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.vista-de-ba-o-cuarto-a.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.vista-de-ba-o-cuarto-a._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.vista-de-ba-o-cuarto-a.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.vista-de-ba-o-cuarto-a.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.vista-de-ba-o-cuarto-a.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.vista-de-ba-o-cuarto-a._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.vista-de-ba-o-cuarto-a._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.vista-de-ba-o-cuarto-a._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.vista-de-ba-o-cuarto-a._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.vista-de-ba-o-cuarto-a.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.vista-de-ba-o-cuarto-a.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.vista-de-ba-o-cuarto-a.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.vista-de-ba-o-cuarto-a.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.vista-de-ba-o-cuarto-a.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.vista-de-ba-o-cuarto-a.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.vista-de-ba-o-cuarto-a.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.vista-de-ba-o-cuarto-a.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.vista-de-ba-o-cuarto-a.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.vista-de-ba-o-cuarto-a.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.vista-de-ba-o-cuarto-a.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.vista-de-ba-o-cuarto-a.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.vista-de-ba-o-cuarto-a.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670fc84307ccd6ecb3cf027d_5.avif");
}

.sala-comedor-edif-a {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.sala-comedor-edif-a.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.sala-comedor-edif-a._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.sala-comedor-edif-a.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.sala-comedor-edif-a.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.sala-comedor-edif-a.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.sala-comedor-edif-a._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.sala-comedor-edif-a.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.sala-comedor-edif-a.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.sala-comedor-edif-a.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.sala-comedor-edif-a.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.sala-comedor-edif-a.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.sala-comedor-edif-a.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.sala-comedor-edif-a.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.sala-comedor-edif-a.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.sala-comedor-edif-a.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.sala-comedor-edif-a.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.sala-comedor-edif-a.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.sala-comedor-edif-a.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.sala-comedor-edif-a.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.sala-comedor-edif-a.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.sala-comedor-edif-a.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.sala-comedor-edif-a.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.sala-comedor-edif-a.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.sala-comedor-edif-a.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.sala-comedor-edif-a.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.sala-comedor-edif-a._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.sala-comedor-edif-a.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.sala-comedor-edif-a.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.sala-comedor-edif-a.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.sala-comedor-edif-a.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.sala-comedor-edif-a._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.sala-comedor-edif-a._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.sala-comedor-edif-a._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.sala-comedor-edif-a._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.sala-comedor-edif-a.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.sala-comedor-edif-a.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.sala-comedor-edif-a.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.sala-comedor-edif-a.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.sala-comedor-edif-a.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.sala-comedor-edif-a.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.sala-comedor-edif-a.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.sala-comedor-edif-a.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.sala-comedor-edif-a.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.sala-comedor-edif-a.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.sala-comedor-edif-a.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.sala-comedor-edif-a.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.sala-comedor-edif-a.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.sala-comedor-edif-a.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.sala-comedor-edif-a.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670fc8783738cf08380ebb03_11.avif");
}

.planta-edificio-a {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.a1-text-select {
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.planta-edificio-a-higlight-a1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a1.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a1.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a1.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a1.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
  overflow: hidden;
}

.planta-edificio-a-higlight-a1.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.a2-text-select, .a3-text-select, .a4-text-select, .a5-text-select {
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.planta-edificio-a-higlight-a2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a55ef411ecb7ded7453_Higlight%20A2.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a2.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a2.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a2.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a2.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a55ef411ecb7ded7453_Higlight%20A2.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a2.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a745e9edb9a36b10c60_Higlight%20A3.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a3.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a3.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a3.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a3.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a745e9edb9a36b10c60_Higlight%20A3.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a3.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7b8db14f1d229619e682_Higlight%20A4.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a4.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a4.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a4.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a4.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7b8db14f1d229619e682_Higlight%20A4.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a4.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7bc64e1edaf3b2a654b7_Higlight%20A5.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a5.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a5.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a5.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a5.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7bc64e1edaf3b2a654b7_Higlight%20A5.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a5.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.paragraph-3 {
  margin-top: 12px;
  font-weight: 300;
}

.flechas-cozumel {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.flechas-cozumel.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.flechas-cozumel._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.flechas-cozumel.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.flechas-cozumel.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.flechas-cozumel.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.flechas-cozumel._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.flechas-cozumel.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.flechas-cozumel.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.flechas-cozumel.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.flechas-cozumel.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.flechas-cozumel.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.flechas-cozumel.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.flechas-cozumel.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.flechas-cozumel.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.flechas-cozumel.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.flechas-cozumel.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.flechas-cozumel.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.flechas-cozumel.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.flechas-cozumel.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.flechas-cozumel.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.flechas-cozumel.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.flechas-cozumel.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.flechas-cozumel.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.flechas-cozumel.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.flechas-cozumel.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.flechas-cozumel._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.flechas-cozumel.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.flechas-cozumel.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.flechas-cozumel.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.flechas-cozumel.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.flechas-cozumel._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.flechas-cozumel._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.flechas-cozumel._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.flechas-cozumel._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.flechas-cozumel.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.flechas-cozumel.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.flechas-cozumel.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.flechas-cozumel.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.flechas-cozumel.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.flechas-cozumel.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.flechas-cozumel.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.flechas-cozumel.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.flechas-cozumel.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.flechas-cozumel.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.flechas-cozumel.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.flechas-cozumel.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.flechas-cozumel.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.flechas-cozumel.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.flechas-cozumel.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cbab01371376df0f12a23d_1020b0ee18af0ba7d46506acc5c12de8.avif");
  background-position: 0%;
}

.texto-plantas-izq {
  color: var(--link);
  background-color: #fff;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding: 7% 3% 19%;
  display: flex;
}

.trasfachada-b {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.trasfachada-b.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.trasfachada-b._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.trasfachada-b.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.trasfachada-b.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.trasfachada-b.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.trasfachada-b._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.trasfachada-b.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.trasfachada-b.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.trasfachada-b.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.trasfachada-b.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.trasfachada-b.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.trasfachada-b.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.trasfachada-b.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.trasfachada-b.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.trasfachada-b.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.trasfachada-b.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.trasfachada-b.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.trasfachada-b.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.trasfachada-b.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.trasfachada-b.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.trasfachada-b.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.trasfachada-b.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.trasfachada-b.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.trasfachada-b.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.trasfachada-b.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.trasfachada-b._3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca2d8eb223b1db95fc6047_Ed%20A%2018x35.png");
}

.trasfachada-b.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.trasfachada-b.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.trasfachada-b.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.trasfachada-b.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.trasfachada-b._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.trasfachada-b._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.trasfachada-b._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.trasfachada-b._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.trasfachada-b.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
}

.trasfachada-b.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.trasfachada-b.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.trasfachada-b.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.trasfachada-b.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.trasfachada-b.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.trasfachada-b.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.trasfachada-b.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.trasfachada-b.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.trasfachada-b.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.trasfachada-b.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.trasfachada-b.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.trasfachada-b.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.trasfachada-b.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.trasfachada-b.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca80b6fdfb4395bc695b1b_Landscape%20Edif%20B%20trasfachada.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  margin-left: 0;
}

.text-block-2, .text-block-5, .text-block-6 {
  font-family: Poppins, sans-serif;
}

.piso-select {
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.paragraph-7 {
  text-align: justify;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  line-height: 30px;
}

.paragraph-8 {
  text-align: justify;
  font-weight: 300;
}

.highlightubicacion-edificios {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0;
}

.highlightubicacion-edificios.hero {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
  background-position: 50%;
}

.highlightubicacion-edificios._1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.highlightubicacion-edificios.amenity {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f93e99e4b00f512d4d54_caseta%2018x35.avif");
}

.highlightubicacion-edificios.amenity-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca38deb4bda118c8ceb598_SENDERO..jpg");
}

.highlightubicacion-edificios.amenity-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fdd572f1594d10bc8b30_VILLA-1080x1920%203.avif");
}

.highlightubicacion-edificios._2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9f9a69d127e2b13f53422_Aereo%20landscape.jpg");
}

.highlightubicacion-edificios.gallery {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.highlightubicacion-edificios.gallery-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.highlightubicacion-edificios.gallery-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.highlightubicacion-edificios.gallery-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a93_mk-s-YXR5xu_2PyU-unsplash%202.avif");
}

.highlightubicacion-edificios.gallery-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.highlightubicacion-edificios.gallery-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a94_mk-s-PXtsR68bbfg-unsplash.avif");
}

.highlightubicacion-edificios.gallery-7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.highlightubicacion-edificios.gallery-8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a98_spacejoy-NpF_OYE301E-unsplash%20(1).avif");
}

.highlightubicacion-edificios.review {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a88_mk-s-J06P-vc1JKk-unsplash.avif");
}

.highlightubicacion-edificios.review-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a95_mk-s-6YFxwg38NLU-unsplash.avif");
}

.highlightubicacion-edificios.review-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ade_mk-s-FGsop9XzVcc-unsplash.avif");
}

.highlightubicacion-edificios.review-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a9b_mk-s-mFH9FNydifw-unsplash.avif");
}

.highlightubicacion-edificios.review-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aa1_spacejoy-g3KbcDWrBUM-unsplash.avif");
}

.highlightubicacion-edificios.review-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a87_mk-s-GYLoKoOn1X4-unsplash.avif");
}

.highlightubicacion-edificios.about-us {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  background-position: 65%;
}

.highlightubicacion-edificios.hero-about-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae9_pexels-thanhhoa-tran-1488327.avif");
  background-size: contain;
}

.highlightubicacion-edificios.about-intro-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5c91af311149db06d89e_higlhight%20edificio%20A.avif");
  background-size: contain;
}

.highlightubicacion-edificios.about-intro {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca597afdfb4395bc4a505c_Landscape%20edif%20A%20trasfachada.jpg");
}

.highlightubicacion-edificios.about-intro-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca598dce6d90d3785b657d_Landscape%20edif%20A%20Fachada.avif");
}

.highlightubicacion-edificios._3 {
  object-fit: fill;
  background-color: #f1f1ed;
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67004c752b322811997708b6_contain%20fachada%20A.avif");
  background-size: cover;
  height: 100%;
}

.highlightubicacion-edificios.slide-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fcfddacbade6b27c5511_EDIF%20A-1080x1920%205.avif");
}

.highlightubicacion-edificios.slide-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5ea865cc558df753fc81_EDIF%20A-1080x1920%206.jpg");
}

.highlightubicacion-edificios.slide-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f02ce6d90d3785fa3e1_EDIF%20A-1080x1920%202.jpg");
  background-position: 50%;
}

.highlightubicacion-edificios.hero-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fb9a8030bc873fa7f41c_Edif%20A%20landscape.jpg");
  background-position: 50%;
}

.highlightubicacion-edificios._4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca027da770b0c319e2d396_zoom%20out%2018x35.jpg");
}

.highlightubicacion-edificios._5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae6_pexels-asad-photo-maldives-14923428.avif");
}

.highlightubicacion-edificios._6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.highlightubicacion-edificios._7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b15_datingscout-JTUmzXLoqHQ-unsplash.avif");
}

.highlightubicacion-edificios.pricing {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
}

.highlightubicacion-edificios.pricing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc1668f8cb7f1c0d6a24_Edif%20B%20landscape.avif");
}

.highlightubicacion-edificios.pricing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.highlightubicacion-edificios.grid-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6af2_pexels-asad-photo-maldives-11434425.avif");
}

.highlightubicacion-edificios.grid-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b11_alex-azabache-V83v-MYB_Z8-unsplash.avif");
}

.highlightubicacion-edificios.side-image {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1c_rayyu-maldives-HSC5IoMxBpg-unsplash.avif");
}

.highlightubicacion-edificios.side-image-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b19_darren-lawrence-VIpDxjeD6xM-unsplash.avif");
}

.highlightubicacion-edificios.side-image-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1b_pexels-yuri-manei-13196944%20(1).avif");
}

.highlightubicacion-edificios.inner-hero {
  background-image: linear-gradient(#00000080, #00000080), url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.highlightubicacion-edificios.hero-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca80b6fdfb4395bc695b1b_Landscape%20Edif%20B%20trasfachada.avif");
}

.highlightubicacion-edificios.hero-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9fc7a1bdaa357117f742e_Nido%20landscape.avif");
}

.highlightubicacion-edificios.palm {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b27_Palm%20(1).avif");
  background-size: cover;
}

.highlightubicacion-edificios.pricing-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca0886fdfb4395bc04db23_villa%20landscape.avif");
}

.highlightubicacion-edificios.slide-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f028376632dccc68134_EDIF%20A-1080X920%201.avif");
}

.highlightubicacion-edificios.slide-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca5f03d64a9db9e40da840_EDIF%20A-1080x1920%204.avif");
}

.highlightubicacion-edificios.highlighedif {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
  background-position: 65%;
  width: 80%;
  height: 700px;
  margin-left: 126px;
}

.nivel1-a1-location-text, .nivel1-a3-location-text, .nivel-1-a4-location-text, .nivel1-a5-location-text {
  margin-bottom: -5px;
  font-family: Poppins, sans-serif;
  font-weight: 200;
  line-height: 20px;
}

.content-section-colored-edifa-nivel-2 {
  background-color: var(--bg-2);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.content-section-colored-edifa-nivel-2.green {
  background-color: var(--bg-3);
  cursor: pointer;
  background-color: var(--bg-3);
  cursor: pointer;
  display: none;
  overflow: hidden;
}

.content-section-colored-edifa-nivel3 {
  background-color: var(--bg-2);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.content-section-colored-edifa-nivel3.green {
  background-color: var(--bg-3);
  cursor: pointer;
  background-color: var(--bg-3);
  cursor: pointer;
  display: none;
  overflow: hidden;
}

.content-section-nivelesedifa {
  width: 100%;
  max-width: 100%;
  padding-top: 100px;
  position: relative;
}

.content-section-nivelesedifa.inner-pages {
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-section-nivelesedifa.shadow {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6a8a_Shade.avif");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 1291px;
  padding-bottom: 90px;
  overflow: visible;
}

.content-section-nivelesedifa.double {
  margin-top: -62px;
  padding-bottom: 100px;
}

.content-section-nivelesedifa.colored {
  background-color: var(--bg-3);
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-section-nivelesedifa.bottom-padding {
  padding-bottom: 30px;
}

.content-section-nivelesedifa.blog-post {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-section-nivelesedifa.blog-page {
  background-color: var(--bg-3);
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-section-nivelesedifa.top-padding {
  padding-top: 60px;
}

.content-section-nivelesedifa.blog {
  background-color: var(--bg-3);
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-section-nivelesedifa.overflow {
  cursor: pointer;
  padding-top: 47px;
  padding-bottom: 0;
  overflow: hidden;
}

.a6-text-select, .a7-text-select, .a8-text-select, .a9-text-select, .a10-text-select, .a11-text-select, .a12-text-select, .a13-text-select, .a14-text-select, .a15-text-select {
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nivel2-a1-location-text, .nivel2-a7-location-text, .nivel2-a8-location-text, .nivel2-a9-location-text, .nivel2-a10-location-text, .nivel3-a11-location-text, .nivel3-a12-location-text, .nivel3-a13-location-text, .nivel3-a14-location-text, .nivel-1-a2-location-text-copy, .nivel3-a15-location-text {
  margin-bottom: -5px;
  font-family: Poppins, sans-serif;
  font-weight: 200;
  line-height: 20px;
}

.planta-edificio-a-higlight-a6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3fea5e5ee34deb34a01_Planta%20N6.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a6.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a6.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a6.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a6.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
  overflow: hidden;
}

.planta-edificio-a-higlight-a6.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a7 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3fea5e5ee34deb349e8_Planta%20N7.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a7.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a7.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a7.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a7.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a55ef411ecb7ded7453_Higlight%20A2.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a7.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a8 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff6644b5d89dcdff26_Plantas%20N8.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a8.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a8.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a8.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a8.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a745e9edb9a36b10c60_Higlight%20A3.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a8.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a9 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff0de0c693933459d6_Plantas%20N9.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a9.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a9.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a9.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a9.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7b8db14f1d229619e682_Higlight%20A4.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a9.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a10 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff5ebcffcb90bbb739_Plantas%20N10.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a10.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a10.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a10.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a10.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7bc64e1edaf3b2a654b7_Higlight%20A5.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a10.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a11 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff0de0c693933459db_Plantas%20N11.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a11.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a11.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a11.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a11.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
  overflow: hidden;
}

.planta-edificio-a-higlight-a11.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a12 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ffa5e5ee34deb34a25_Plantas%20N12.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a12.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a12.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a12.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a12.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a55ef411ecb7ded7453_Higlight%20A2.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a12.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a13 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff2c114bb2be578986_Plantas%20N13.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a13.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a13.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a13.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a13.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7a745e9edb9a36b10c60_Higlight%20A3.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a13.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a14 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3fff0e7dfd6e6763f2c_Plantas%20N14.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a14.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a14.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a14.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a14.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7b8db14f1d229619e682_Higlight%20A4.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a14.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-edificio-a-higlight-a15 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701e3ff9cd0171905888cd9_Plantas%20N15.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-edificio-a-higlight-a15.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a15.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-edificio-a-higlight-a15.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-edificio-a-higlight-a15.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7bc64e1edaf3b2a654b7_Higlight%20A5.avif");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-edificio-a-higlight-a15.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.map-title-nivel1, .map-titlenivel2, .map-titlenivel3 {
  margin-right: 10px;
  font-family: Tenor Sans, sans-serif;
}

.planta-nivel-2-edificio-a {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701efa20ecec562036b213d_Planta%20edificio%20A%20Nivel%202.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-nivel-2-edificio-a.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-nivel-2-edificio-a.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-nivel-2-edificio-a.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-nivel-2-edificio-a.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-nivel-2-edificio-a.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-nivel-2-edificio-a.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.planta-nivel-3-edificio-a {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6701efa2f0e7dfd6e67e98ec_Planta%20edificio%20A%20Nivel%203.avif");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planta-nivel-3-edificio-a.licensing-1 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ada_Insta-1.avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-nivel-3-edificio-a.licensing-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
  background-position: 50%;
  background-size: cover;
}

.planta-nivel-3-edificio-a.licensing-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b1e_alona-gross-kN0PaaDkzQ8-unsplash%20(1).avif");
  background-position: 0 0;
  background-size: cover;
}

.planta-nivel-3-edificio-a.team-4 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae5_Team-4.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.team-3 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae0_Team-3.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.team-6 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aee_Team-6.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.team {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aeb_Team.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.team-5 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6ae7_Team-5.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.team-2 {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6aef_Team-2.avif");
  background-size: cover;
}

.planta-nivel-3-edificio-a.map {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  background-position: 50% 0;
  margin-top: 21px;
  padding-top: 0;
}

.planta-nivel-3-edificio-a.login-page {
  background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66c9e45f487a5761abca6b17_Copia%20de%20vertical-shot-apartment-beach-shore-beautiful-sky-great-background%20(1).avif");
}

.button-fill-inv {
  border: 1px solid var(--bg);
  background-color: var(--font-color);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 19px;
  height: 38.5px;
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  transition: color .2s, background-color .2s;
}

.button-fill-inv:hover {
  border-width: 2px;
  border-color: var(--button-hover-2);
  color: var(--button-hover-2);
  background-color: #0000;
}

.paragraph-3-landing {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.x-block-brochure {
  cursor: pointer;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 5%;
  right: 5%;
}

.code-embed {
  z-index: 1000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: -16px;
  display: flex;
  position: absolute;
  top: 10%;
  right: 10%;
}

.agendar_llamada {
  border: 1px solid var(--bg);
  background-color: var(--field-hover);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 19px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 38.5px;
  margin-top: 14px;
  padding: 25px 0;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.agendar_llamada:hover {
  border-width: 2px;
  border-color: var(--button-hover-2);
  color: var(--button-hover-2);
  background-color: #0000;
}

.agendar_llamada-prop {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 0px solid var(--bg);
  background-color: var(--field-hover);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  -webkit-text-stroke-color: var(--field-hover);
  text-transform: uppercase;
  border-radius: 19px;
  justify-content: center;
  align-items: center;
  height: 35px;
  margin-top: 28px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 10px 40px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.agendar_llamada-prop:hover {
  border-width: 2px;
  border-color: var(--button-hover-2);
  color: var(--button-hover-2);
  background-color: #0000;
}

.div-block-folleto {
  background-color: #fff;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 950px;
  margin-top: 164px;
  margin-bottom: 115px;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 6px 3px 5px #0003;
}

.section-2 {
  margin-top: 34px;
}

.grid-3 {
  flex-flow: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pop-up-oferta {
  z-index: 999;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  object-fit: fill;
  background-color: #00000087;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.container {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.text-block-7 {
  text-align: center;
  font-family: Poppins, sans-serif;
}

.heading-3 {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
  font-family: Tenorsans, sans-serif;
  font-size: 32px;
  display: flex;
}

.container-2 {
  margin-top: 14px;
  display: flex;
}

.container-11 {
  margin-top: 20px;
}

.button-25 {
  z-index: 1000;
  background-color: #de6c33;
  border-radius: 7px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-bottom: 45px;
  margin-left: 30px;
  font-size: 16px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1280px) {
  .title-small {
    color: #69707b;
  }

  .content-section.bottom-padding {
    text-align: justify;
    text-align: justify;
  }

  .inner-hero-section {
    max-width: 100%;
  }

  .hero-inner-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section {
    max-width: 100%;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .hero-item-2, .hero-item {
    width: 26%;
  }

  .heading-center {
    margin-bottom: 41px;
    padding-top: 0;
  }

  .h2 {
    font-weight: 400;
  }

  .text.big {
    line-height: 40px;
  }

  .plan-description {
    font-size: 18px;
  }

  .divider-box {
    background-color: #fff0;
    margin-bottom: 1px;
    padding-bottom: 9px;
  }

  .hero-section-about {
    background-color: var(--bg);
    max-width: 100%;
  }

  .no-top-margin {
    text-align: left;
  }

  .question {
    transition: color .2s;
  }

  .question:hover, .accordion-item-trigger:hover {
    color: #060606;
  }

  .hero-text {
    font-size: 46px;
    line-height: 50px;
  }

  .amenidades-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fef093738d6e0993d18944_volley%201.avif");
  }

  .cuarto-edif-a.slide-1 {
    background-size: cover;
  }

  .fachada-edif-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66feee02d33e0d8b4feeb78c_edif%20b%203.jpg");
    background-position: 50%;
  }

  .piso-select {
    justify-content: center;
    align-items: center;
  }

  .paragraph-7 {
    text-align: justify;
  }

  .image {
    margin-top: -49px;
    margin-bottom: -73px;
    margin-left: -541px;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .link-2 {
    font-family: Tenorsans, sans-serif;
    font-size: 26px;
  }

  .zonanorte-aereo-render._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .paragraph-16 {
    text-align: justify;
  }

  .paragraph-22 {
    font-weight: 300;
  }

  .hero-section-about-b {
    background-color: var(--bg);
    max-width: 100%;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios-b.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios-nido.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .el-nido-int2.slide-2el-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e8260fc5bfe413275b1_2.png");
    background-position: 50% 100%;
  }

  .el-nido-int3.slide-3-int {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e82c19563e1dd86cd68_4.avif");
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 60%;
  }

  .highlightubicacion-villas.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    background-position: 60%;
    width: 80%;
    height: auto;
    margin-left: 131px;
  }

  .content-section-nivelesedifa.bottom-padding {
    text-align: justify;
    text-align: justify;
  }

  .invierte-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
  }

  .t5-landing {
    text-align: left;
  }

  .text-1-landing.big {
    line-height: 40px;
  }

  .paragraph-2-landing {
    text-align: justify;
  }

  .paragraph-3-landing {
    text-align: center;
    display: block;
  }

  .div-block-3 {
    z-index: 999;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: #0000005e;
    background-image: linear-gradient(#00000080, #00000080);
    width: 100vw;
    height: 100vh;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .x-block-brochure {
    z-index: 1000;
    cursor: pointer;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    top: 10%;
    right: 10%;
  }

  .code-embed {
    top: -154%;
    right: 5%;
  }

  .div-block-3-brochure {
    z-index: 999;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: #0000005e;
    background-image: linear-gradient(#00000080, #00000080);
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .text-justify.big, .text-justify-copy.big, .text-justify-copy.big {
    line-height: 40px;
  }

  .paragraph-2-subt-copy {
    text-align: justify;
  }

  .pop-up-oferta {
    z-index: 999;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: #0000005e;
    background-image: linear-gradient(#00000080, #00000080);
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }
}

@media screen and (min-width: 1440px) {
  .comedor-edif-a.hero {
    background-position: 50% 100%;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .on-scroll-1 {
    background-color: #e0e7e9;
  }

  .divider-box {
    background-color: #fff0;
  }

  .social-icon-rounded {
    background-color: var(--bg-2);
  }

  .footer-logo-link {
    transition: opacity .2s, transform .2s;
  }

  .footer-logo-link:hover {
    opacity: .9;
    transform: scale(1.04);
  }

  .hero-section-about {
    background-color: var(--bg);
  }

  .no-top-margin {
    text-align: left;
    margin-top: 0;
  }

  .hover-bg {
    display: flex;
  }

  .input {
    transition: opacity .2s;
  }

  .login-right {
    justify-content: flex-start;
  }

  .amenidades-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fef093738d6e0993d18944_volley%201.avif");
  }

  .fachada-edif-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66feee02d33e0d8b4feeb78c_edif%20b%203.jpg");
    background-position: 50% 0;
  }

  .el-nido-fachada.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecbff7686593b505bb6ff_nido%20horizontal%20movil.avif");
  }

  .planta-edificio-a.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .a1-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .planta-edificio-a-higlight-a1.map, .planta-edificio-a-higlight-a2.map, .planta-edificio-a-higlight-a2.map, .planta-edificio-a-higlight-a3.map, .planta-edificio-a-higlight-a3.map, .planta-edificio-a-higlight-a4.map, .planta-edificio-a-higlight-a4.map, .planta-edificio-a-higlight-a5.map, .planta-edificio-a-higlight-a5.map, .hoghlight-highlight-2.map, .hoghlight-highlight-2.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .planta-edificio-b.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .planta-edificio-b-higlight-b1.map, .planta-edificio-b-higlight-b2.map, .planta-edificio-b-higlight-b2.map, .planta-edificio-b-higlight-b3.map, .planta-edificio-b-higlight-b3.map, .planta-edificio-b-higlight-b4.map, .planta-edificio-b-higlight-b4.map, .planta-edificio-b-higlight-b5.map, .planta-edificio-b-higlight-b5.map, .planta-edificio-b-higlight-b6.map, .planta-edificio-b-higlight-b6.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .planta-edificio-c.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .planta-edificio-c-higlight-n1---n4.map, .planta-edificio-c-higlight-n2---n5.map, .planta-edificio-c-higlight-n2---n5.map, .planta-edificio-c-higlight-n3---n6.map, .planta-edificio-c-higlight-n3---n6.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .planta-villa-a.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .planta-villa-b.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .piso-select {
    justify-content: center;
    align-items: center;
  }

  .image {
    margin-top: -61px;
    margin-bottom: -102px;
    margin-left: -367px;
  }

  .highlightubicacion-edificios.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .highlightubicacion-edificios.highlighedif {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .paragraph-9 {
    text-align: justify;
  }

  .zonanorte-aereo-render.hero {
    background-position: 50% 100%;
  }

  .zonanorte-aereo-render._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
    background-size: cover;
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .paragraph-11, .paragraph-12, .paragraph-13, .paragraph-14, .paragraph-15, .paragraph-16 {
    text-align: justify;
  }

  .paragraph-22 {
    font-size: 18px;
    font-weight: 300;
  }

  .hero-section-about-b {
    background-color: var(--bg);
  }

  .highlightubicacion-edificios-b.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .highlightubicacion-edificios-b.highlighedif {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .highlightubicacion-edificios-nido.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .highlightubicacion-edificios-nido.highlighedif {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .el-nido-int2.slide-2el-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e8260fc5bfe413275b1_2.png");
  }

  .el-nido-int3.slide-3-int {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e82c19563e1dd86cd68_4.avif");
  }

  .highlightubicacion-villas.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 50%;
    width: 100%;
    height: 120%;
  }

  .highlightubicacion-villas.highlighedif {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    aspect-ratio: auto;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    background-position: 50%;
    background-size: contain;
    width: 60%;
    height: auto;
    margin-left: 324px;
  }

  .a6-text-select, .a11-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .planta-edificio-a-higlight-a6.map, .planta-edificio-a-higlight-a7.map, .planta-edificio-a-higlight-a7.map, .planta-edificio-a-higlight-a8.map, .planta-edificio-a-higlight-a8.map, .planta-edificio-a-higlight-a9.map, .planta-edificio-a-higlight-a9.map, .planta-edificio-a-higlight-a10.map, .planta-edificio-a-higlight-a10.map, .planta-edificio-a-higlight-a11.map, .planta-edificio-a-higlight-a11.map, .planta-edificio-a-higlight-a12.map, .planta-edificio-a-higlight-a12.map, .planta-edificio-a-higlight-a13.map, .planta-edificio-a-higlight-a13.map, .planta-edificio-a-higlight-a14.map, .planta-edificio-a-higlight-a14.map, .planta-edificio-a-higlight-a15.map, .planta-edificio-a-higlight-a15.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .planta-nivel-2-edificio-a.map, .planta-nivel-3-edificio-a.map, .planta-nivel-3-edificio-a.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .planta-edificio-b3-y-b4.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca7929b170c5ecce1fbcd8_A1%20nivel%201.avif");
  }

  .planta-edificio-b5yb6.map, .planta-edificio-c-n3.map, .planta-edificio-c-n3.map {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb43718408c438e51e1589_Planta%20Edif%20A.jpg");
  }

  .invierte-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
  }

  .t5-landing {
    text-align: left;
    margin-top: 0;
  }

  .paragraph-2-landing {
    text-align: justify;
  }

  .paragraph-3-landing {
    text-align: center;
  }

  .div-block-3 {
    display: none;
  }

  .paragraph-2-subt-copy {
    text-align: justify;
  }

  .pop-up-oferta {
    display: flex;
  }
}

@media screen and (min-width: 1920px) {
  .content-section.overflow {
    margin-top: 23px;
  }

  .content-section.blog-post, .content-wrapper {
    font-family: Poppins, sans-serif;
  }

  .comedor-edif-a.hero {
    background-position: 50% 100%;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .hero-mini-text {
    font-size: 20px;
  }

  .text.big {
    font-family: Tenorsans, sans-serif;
    font-weight: 400;
  }

  .divider-box {
    background-color: #fff0;
  }

  .no-top-margin {
    text-align: left;
    margin-top: 9px;
  }

  .h5 {
    font-family: Tenorsans, sans-serif;
  }

  .amenidades-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fef093738d6e0993d18944_volley%201.avif");
  }

  .fachada-edif-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66feedafa79e1478e4768703_edif%20b%202.jpg");
    background-position: 50% 45%;
    background-size: cover;
  }

  .el-nido-fachada.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecbff7686593b505bb6ff_nido%20horizontal%20movil.avif");
  }

  .a1-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .flechas-cozumel.grid-2 {
    height: 100%;
  }

  .piso-select {
    justify-content: center;
    align-items: center;
  }

  .image {
    margin: -64px 69px -99px -368px;
    padding-top: 0;
  }

  .highlightubicacion-edificios.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .highlightubicacion-edificios.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    margin-left: 419px;
  }

  .paragraph-9 {
    font-weight: 400;
  }

  .paragraph-10 {
    font-size: 18px;
  }

  .zonanorte-aereo-render.hero {
    background-position: 50% 100%;
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .paragraph-18 {
    font-size: 18px;
  }

  .paragraph-22 {
    font-size: 18px;
    font-weight: 300;
  }

  .highlightubicacion-edificios-b.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .highlightubicacion-edificios-b.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    margin-left: 419px;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    margin-left: 419px;
  }

  .highlightubicacion-edificios-nido.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .highlightubicacion-edificios-nido.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    margin-left: 419px;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    margin-left: 419px;
  }

  .el-nido-int2.slide-2el-nido, .el-nido-int3.slide-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e82c19563e1dd86cd68_4.avif");
  }

  .el-nido-int3.slide-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e82c19563e1dd86cd68_4.avif");
  }

  .el-nido-int3.slide-3-int {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67006e8260fc5bfe413275b1_2.png");
    background-position: 50% 100%;
  }

  .highlightubicacion-villas.hero {
    background-position: 50% 100%;
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
  }

  .highlightubicacion-villas.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    margin-left: 419px;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    margin-left: 419px;
  }

  .rich-text-block, .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.blog-post {
    font-family: Poppins, sans-serif;
  }

  .a6-text-select, .a11-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .invierte-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
  }

  .t5-landing {
    text-align: left;
    margin-top: 9px;
  }

  .text-1-landing.big {
    font-family: Tenorsans, sans-serif;
    font-weight: 400;
  }

  .paragraph-3-landing {
    text-align: center;
  }

  .div-block-3 {
    display: flex;
  }

  .div-block-brochure {
    position: relative;
    box-shadow: 6px 3px 30px #ffffff36;
  }

  .submit-button-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .field-label-3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .x-block-brochure {
    position: absolute;
    inset: 10% 10% 30px auto;
  }

  .submit-button-forms {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .div-block-3-brochure {
    display: flex;
  }

  .div-block-folleto {
    position: relative;
    box-shadow: 6px 3px 30px #ffffff36;
  }

  .text-justify.big {
    font-family: Tenorsans, sans-serif;
    font-weight: 400;
  }

  .field-label-3-copy {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .text-justify-copy.big {
    font-family: Tenorsans, sans-serif;
    font-weight: 400;
  }

  .pop-up-oferta {
    display: none;
  }

  .submit-button-oferta {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .div-block-folleto-brochure {
    position: relative;
    box-shadow: 6px 3px 30px #ffffff36;
  }

  .button-3-exp-2 {
    margin-left: 0;
  }

  .content-wrapper-cat {
    font-family: Poppins, sans-serif;
  }

  .fuera-presupuesto {
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .social-links-mobile {
    justify-content: flex-start;
    margin-top: 15px;
    display: block;
  }

  .hero-inner-padding {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .title-small.regular {
    font-size: 13px;
    line-height: 15px;
  }

  .content-section {
    padding-top: 0;
  }

  .content-section.blog-post, .content-section.top-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section.inner-pages {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section.shadow {
    padding-bottom: 80px;
  }

  .content-section.double {
    margin-top: -2px;
    padding-bottom: 80px;
  }

  .content-section.colored {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .content-section.blog-post, .content-section.top-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section.blog {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .go-up-button {
    background-size: 20px;
    width: 45px;
    height: 45px;
  }

  .hero-inner-text {
    margin-bottom: 0;
    font-size: 42px;
    line-height: 50px;
  }

  .social-mini-icon {
    background-color: #0f0f0f;
    margin-bottom: 5px;
    margin-right: 7px;
  }

  .social-mini-icon:hover {
    background-color: #2c2c2c;
  }

  .social-mini-icon.instagram:hover, .social-mini-icon.linkedin:hover, .social-mini-icon.twittter:hover {
    background-color: #2c2c2c;
  }

  .social-mini-icon.instagram {
    margin-right: 0;
  }

  .social-mini-icon.instagram:hover, .social-mini-icon.linkedin:hover, .social-mini-icon.twittter:hover {
    background-color: #2c2c2c;
  }

  .social-mini-icon.facebook {
    background-color: #3880da;
  }

  .social-mini-icon.facebook:hover {
    background-color: #2c2c2c;
  }

  .inner-hero-section {
    max-width: 100%;
    min-height: 300px;
  }

  .hero-inner-box {
    max-width: 100%;
    padding-bottom: 30px;
  }

  .menu-button {
    color: var(--font-color);
    height: 80px;
    padding-top: 30px;
  }

  .menu-button.w--open {
    color: var(--font-color);
    background-color: #fff;
  }

  .underline {
    display: none;
  }

  .nav-menu {
    text-align: center;
    background-color: #fff;
    height: 100vh;
    padding-bottom: 140px;
    overflow: auto;
  }

  .phone {
    top: 7px;
  }

  .call-us {
    width: 100%;
    height: 50px;
    padding-left: 20px;
    display: block;
  }

  .navlink {
    text-align: left;
    width: 100%;
    height: 50px;
    padding-top: 15px;
    padding-bottom: 4px;
    padding-left: 20px;
    display: block;
  }

  .navlink:hover {
    background-color: #e6ebef;
  }

  .login-box {
    color: #0f0f0f;
    text-align: left;
    align-items: center;
    width: 100%;
    height: 65px;
    margin-right: 0;
    padding-top: 0;
    padding-left: 20px;
    font-size: 16px;
    transition: background-color .2s;
    display: flex;
  }

  .login-box.w--current {
    color: #98a0a5;
  }

  .login {
    padding-top: 1px;
  }

  .nav-dropdown {
    width: 100%;
    height: 60px;
    margin-right: 0;
  }

  .dropdown-toggle {
    justify-content: flex-start;
    width: 100%;
    height: 60px;
    padding-top: 16px;
    padding-bottom: 0;
    padding-left: 20px;
  }

  .mini-arrow {
    margin-top: 20px;
  }

  .dropdown-list, .dropdown-list.w--open {
    background-color: #d4e0e9;
  }

  .dropdown-link {
    padding-left: 30px;
  }

  .nav-content-wrapper, .hero-section {
    max-width: 100%;
  }

  .hero-slider {
    height: 600px;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67004c752b322811997708b6_contain%20fachada%20A.avif");
    background-position: 60%;
    background-size: cover;
  }

  .hero-wrapper {
    max-width: 100%;
  }

  .hero-flex {
    width: 100%;
  }

  .hero-title {
    font-size: 46px;
    line-height: 54px;
  }

  .price {
    font-size: 46px;
    line-height: 46px;
  }

  .price.green {
    font-size: 40px;
    line-height: 40px;
  }

  .currency {
    font-size: 37px;
    line-height: 37px;
  }

  .currency.green {
    font-size: 34px;
    line-height: 34px;
  }

  .hero-item-2, .hero-item-3, .hero-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .title-big {
    font-size: 28px;
    line-height: 28px;
  }

  .button {
    height: 37px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 11px;
  }

  .h2 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 36px;
  }

  .title-all-caps.white {
    font-size: 13px;
    line-height: 16px;
  }

  .picture-frame-3 {
    height: 200px;
  }

  .picture-2-container {
    max-width: 310px;
    height: 200px;
  }

  .picture-frame-2 {
    height: 200px;
  }

  .picture-frame-1 {
    max-width: 310px;
    height: 200px;
  }

  .text-column {
    padding-left: 3%;
  }

  .text-column-padding {
    padding-right: 3%;
  }

  .text-white.les-top-margin {
    font-size: 30px;
    line-height: 34px;
  }

  .unit-title {
    font-size: 36px;
    line-height: 40px;
  }

  .text {
    font-size: 24px;
    line-height: 30px;
  }

  .text.big {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }

  .pricing-description {
    font-size: 14px;
  }

  .pricing-table-wrapper.third, .pricing-table-wrapper.second, .pricing-table-wrapper.third, .pricing-table-wrapper.second {
    top: 0%;
  }

  .preview-link {
    font-size: 18px;
    line-height: 24px;
  }

  .link-block-underline {
    transition: background-color .2s;
    display: flex;
  }

  .social-icons {
    margin-top: 20px;
  }

  .footer-left {
    width: 82%;
  }

  .footer-logo-link {
    margin-bottom: 30px;
  }

  .heading-full {
    margin-bottom: 10px;
  }

  .h4 {
    font-size: 40px;
    line-height: 40px;
  }

  .insta-handle {
    margin-bottom: 5px;
  }

  .logos-left-box {
    padding-left: 2%;
  }

  .logo-item {
    padding: 3% 6%;
  }

  .footer {
    padding-top: 80px;
  }

  .hero-section-about {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-wrapper-about {
    max-width: 100%;
  }

  .hero-form {
    width: 45%;
  }

  .hero-about-title {
    font-size: 30px;
    line-height: 32px;
  }

  .intro-image {
    width: 480px;
  }

  .no-top-margin {
    font-size: 30px;
    line-height: 34px;
  }

  .h5 {
    font-family: Tenorsans, sans-serif;
    font-size: 27px;
    line-height: 30px;
  }

  .social-icons-team {
    margin-top: 20px;
  }

  .team-item {
    margin-bottom: 30px;
  }

  .team-name {
    font-size: 22px;
    line-height: 24px;
  }

  .frame {
    max-width: 310px;
  }

  .play {
    background-size: 19px;
    width: 80px;
    height: 55px;
  }

  .map-title {
    font-size: 26px;
    line-height: 30px;
  }

  .item-left {
    width: 16%;
  }

  .title {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 16px;
  }

  .h4-regular {
    font-size: 20px;
    line-height: 40px;
  }

  .hero-preview-link {
    font-size: 18px;
    line-height: 24px;
  }

  .preview-box-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .h3 {
    font-size: 34px;
    line-height: 40px;
  }

  .post-hero {
    height: 450px;
  }

  .h1 {
    font-family: Tenorsans, sans-serif;
    font-size: 34px;
    line-height: 40px;
  }

  .social-container {
    margin-top: 20px;
  }

  .right-sticky-item {
    margin-bottom: 60px;
  }

  .sticky-content {
    margin-bottom: 50px;
  }

  .full-heading {
    padding-bottom: 0;
  }

  .accordion-wrapper {
    margin-bottom: 15px;
    padding-bottom: 5px;
    padding-left: 10px;
  }

  .faq-left {
    width: 56%;
  }

  .title-faq {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 36px;
  }

  .amenity-text {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-price {
    font-size: 46px;
    line-height: 46px;
  }

  .heading {
    font-size: 32px;
    line-height: 36px;
  }

  .dot {
    width: 37px;
    height: 37px;
  }

  .scroll-down {
    margin-right: 2%;
  }

  .hero-text {
    margin-bottom: 5px;
    font-size: 5vw;
    line-height: 5.5vw;
  }

  .hero-text.log-in {
    font-size: 36px;
    line-height: 36px;
  }

  .login-left {
    min-height: 500px;
  }

  .login-right {
    padding: 70px 5%;
  }

  .hero-post-text {
    font-size: 14px;
    line-height: 22px;
  }

  .cuarto-edif-a.slide-1 {
    background-size: cover;
  }

  .el-nido-fachada.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecbff7686593b505bb6ff_nido%20horizontal%20movil.avif");
  }

  .paragraph-3 {
    font-weight: 300;
  }

  .paragraph-6 {
    font-size: 14px;
    line-height: 22px;
  }

  .image {
    margin-left: -387px;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3bf9bbdc68611e5d289_minimizada%20la%20imagen%20para%20sitio%20web.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios.highlighedif {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .paragraph-10 {
    font-weight: 300;
  }

  .zonanorte-aereo-render._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005facfc56deb015d064c0_cuadrada.avif");
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67004c752b322811997708b6_contain%20fachada%20A.avif");
    background-position: 60%;
    background-size: cover;
  }

  .paragraph-16 {
    text-align: justify;
  }

  .paragraph-17 {
    font-size: 14px;
  }

  .paragraph-18 {
    font-weight: 300;
  }

  .bold-text-2 {
    font-weight: 600;
  }

  .paragraph-22 {
    text-align: justify;
  }

  .hero-section-about-b {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3bf9bbdc68611e5d289_minimizada%20la%20imagen%20para%20sitio%20web.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios-b.highlighedif {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3bf9bbdc68611e5d289_minimizada%20la%20imagen%20para%20sitio%20web.avif");
    background-position: 60%;
  }

  .highlightubicacion-edificios-nido.highlighedif {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .paragraph-24 {
    text-align: justify;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
  }

  .paragraph-25 {
    text-align: justify;
    font-size: 12px;
    line-height: 22px;
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3bf9bbdc68611e5d289_minimizada%20la%20imagen%20para%20sitio%20web.avif");
    background-position: 60%;
  }

  .highlightubicacion-villas.highlighedif {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    aspect-ratio: 3 / 2;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    background-position: 60%;
    width: 100%;
    height: auto;
    margin-top: 3px;
    margin-left: 0;
  }

  .content-section-nivelesedifa {
    padding-top: 0;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.top-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section-nivelesedifa.inner-pages {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section-nivelesedifa.shadow {
    padding-bottom: 80px;
  }

  .content-section-nivelesedifa.double {
    margin-top: -2px;
    padding-bottom: 80px;
  }

  .content-section-nivelesedifa.colored {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.top-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section-nivelesedifa.blog {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .map-title-nivel1, .map-titlenivel2, .map-titlenivel3, .map-title-nivel1b, .map-titlenivel2b, .map-titlenivel3b, .map-titlenivel2c, .map-titlenivel3c {
    font-size: 26px;
    line-height: 30px;
  }

  .t5-landing {
    font-size: 30px;
    line-height: 34px;
  }

  .text-1-landing {
    font-size: 24px;
    line-height: 30px;
  }

  .text-1-landing.big {
    margin-left: 25px;
    margin-right: 20px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }

  .paragraph-2-landing {
    text-align: justify;
    margin-left: 25px;
    margin-right: 20px;
  }

  .dowload-brochure-button {
    margin-left: 25px;
  }

  .paragraph-3-landing {
    text-align: justify;
    margin-top: 31px;
  }

  .descarga-el-bochure-tarjeta {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-brochure {
    height: 850px;
  }

  .x-block-brochure {
    top: 2%;
  }

  .hero-title-landing {
    font-size: 46px;
    line-height: 54px;
  }

  .agendar_llamada, .agendar_llamada-prop {
    margin-left: 25px;
  }

  .text-justify {
    font-size: 24px;
    line-height: 30px;
  }

  .text-justify.big {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }

  .hero-title-landing-form {
    font-size: 46px;
    line-height: 54px;
  }

  .text-justify-copy {
    font-size: 24px;
    line-height: 30px;
  }

  .text-justify-copy.big {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }

  .agendar_llamada-brochure, .agendar_llamada-prop-amenidades {
    margin-left: 25px;
  }

  .paragraph-2-subt-copy {
    text-align: justify;
    margin-left: 25px;
    margin-right: 20px;
  }

  .pricing-table-wrapper-landing.third, .pricing-table-wrapper-landing.second, .pricing-table-wrapper-landing.third, .pricing-table-wrapper-landing.second {
    top: 0%;
  }

  .agendar_llamada-prop-copy, .agendar_llamada-brochure-copy, .agendar_llamada-brochure-orange {
    margin-left: 25px;
  }

  .subtts {
    font-size: 46px;
    line-height: 54px;
  }

  .container-7 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .content-wrapper-cat {
    max-width: 100%;
  }

  .cat-link {
    margin-left: 25px;
  }
}

@media screen and (max-width: 767px) {
  .hero-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-inner-padding {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .title-small {
    font-size: 14px;
    line-height: 14px;
  }

  .content-section {
    padding-top: 73px;
  }

  .content-section.shadow, .content-section.double {
    padding-bottom: 50px;
  }

  .content-section.blog-post, .content-section.top-padding {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section.inner-pages {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section.shadow, .content-section.double {
    padding-bottom: 50px;
  }

  .content-section.colored {
    padding-top: 49px;
    padding-bottom: 49px;
  }

  .content-section.overflow {
    padding-bottom: 0;
  }

  .content-section.blog-post, .content-section.top-padding {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section.blog {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .go-up-button {
    background-size: 18px;
    width: 40px;
    height: 40px;
  }

  .hero-inner-text {
    font-size: 40px;
    line-height: 48px;
  }

  .social-mini-icon {
    width: 25px;
    height: 25px;
  }

  .inner-hero-section {
    background-color: var(--bg);
    min-height: 280px;
    padding-top: 100px;
    position: relative;
  }

  .hero-inner-box {
    padding-bottom: 50px;
  }

  .nav-dropdown {
    transition: background-color .2s;
  }

  .nav-dropdown:hover {
    background-color: #e6e3d9;
  }

  .dropdown-list.w--open, .dropdown-link {
    width: 100%;
  }

  .hero-section {
    position: relative;
  }

  .hero-slider {
    height: 550px;
  }

  .comedor-edif-a.hero {
    background-position: 50%;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .hero-title {
    font-size: 44px;
    line-height: 52px;
  }

  .price.green {
    font-size: 32px;
  }

  .currency.green {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-item-2, .hero-item-3, .hero-item {
    flex-direction: column;
  }

  .title-big {
    font-size: 18px;
    line-height: 27px;
  }

  .button-box._15-pixels {
    margin-top: 15px;
  }

  .h2 {
    font-size: 22px;
    line-height: 34px;
  }

  .title-all-caps {
    font-size: 12px;
  }

  .column-center-flex {
    width: 100%;
  }

  .pictures-frame-container {
    margin-top: 0;
    padding-top: 0;
  }

  .picture-3-container {
    width: 100%;
    max-width: 300px;
    height: 240px;
  }

  .picture-2-container {
    width: 100%;
    height: 230px;
    left: 26%;
  }

  .picture-frame-1 {
    max-width: 310px;
    margin-top: 12px;
    margin-left: 35px;
    left: 39px;
  }

  .text-column {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0%;
  }

  .text-column.left-padding {
    padding-left: 3%;
  }

  .text-column-padding {
    width: 77%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 3%;
  }

  .text-white {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .text-white.les-top-margin {
    text-align: justify;
    font-size: 24px;
  }

  .text-white.small {
    font-size: 12px;
  }

  .text-column-center {
    width: 77%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .unit-title {
    font-size: 32px;
    line-height: 36px;
  }

  .text {
    font-size: 22px;
    line-height: 28px;
  }

  .text.big {
    font-size: 22px;
  }

  .amenity-text-container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .amenity-image {
    width: 38px;
    margin-bottom: 3px;
  }

  .text-column-right {
    width: 77%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-description-wrapper {
    padding-bottom: 0;
  }

  .pricing-description {
    font-size: 12px;
    line-height: 20px;
  }

  .pricing-table-wrapper {
    width: 32%;
    margin-right: 2%;
  }

  .plan-description {
    line-height: 20px;
  }

  .plans-inclusions-list {
    padding-left: 10px;
    padding-right: 10px;
  }

  .points-title {
    line-height: 20px;
  }

  .review-icons-container {
    flex-wrap: wrap;
    padding-top: 8px;
  }

  .review-icon-left {
    border-bottom: 1px solid var(--bg-2);
    border-right-style: none;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .review-icon-box {
    width: 100%;
    margin-top: 6px;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .preview-link {
    font-size: 14px;
    line-height: 20px;
  }

  .preview-link-box {
    text-align: justify;
  }

  .footer-left {
    flex: 1;
  }

  .footer-links {
    margin-top: 0;
  }

  .social-icon-rounded.twittter {
    background-size: 12px;
  }

  .notice {
    margin-top: 0;
  }

  .hover-icon {
    width: 30px;
  }

  .h4 {
    font-size: 38px;
    line-height: 38px;
  }

  .footer {
    padding-top: 60px;
  }

  .hero-section-about {
    min-height: 280px;
    padding-top: 120px;
    position: relative;
  }

  .hero-form {
    width: 55%;
    margin-right: 0%;
  }

  .hero-about-title {
    font-size: 28px;
    line-height: 30px;
  }

  .intro-image {
    width: 340px;
  }

  .no-top-margin {
    font-size: 18px;
    line-height: 22px;
  }

  .feature {
    padding-left: 3%;
    padding-right: 3%;
  }

  .h5 {
    font-family: Tenorsans, sans-serif;
    font-size: 26px;
    line-height: 29px;
  }

  .feature-3, .feature-2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .social-icon.facebook, .social-icon.twittter, .social-icon.facebook, .social-icon.twittter {
    background-size: 12px;
  }

  .team-item {
    width: 46%;
  }

  .team-item._4 {
    margin-right: 0%;
  }

  .team-item._2, .team-item._4 {
    margin-right: 0%;
  }

  .team-item._3 {
    margin-right: 4%;
  }

  .team-item._2 {
    margin-right: 0%;
  }

  .frame {
    border-width: 13px;
    max-width: 310px;
    margin-top: 12px;
  }

  .text-align-left, .text-align-right {
    width: 77%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .play {
    width: 95px;
    height: 60px;
  }

  .map-icon {
    margin-right: 10px;
  }

  .map-title {
    font-size: 18px;
  }

  .close-contact-form {
    right: -1px;
  }

  .link {
    min-width: 80px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 23px;
  }

  .item-left {
    width: 21%;
  }

  .h4-regular {
    text-align: justify;
    font-size: 22px;
    line-height: 36px;
  }

  .hero-preview-link {
    font-size: 14px;
    line-height: 22px;
  }

  .h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .post-hero {
    height: 350px;
  }

  .h1 {
    font-family: Tenorsans, sans-serif;
    font-size: 30px;
    line-height: 36px;
  }

  .right-sticky-item {
    margin-bottom: 40px;
  }

  .contact-details-box {
    margin-top: 10px;
  }

  .faq-arrow {
    top: -4px;
  }

  .accordion-wrapper {
    margin-bottom: 20px;
  }

  .faq-left {
    width: 100%;
  }

  .flex-faq {
    flex-wrap: wrap;
  }

  .title-faq {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 34px;
  }

  .hero-right-arrow, .hero-left-arrow {
    width: 44px;
  }

  .location-text {
    font-size: 12px;
    line-height: 15px;
  }

  .hero-icons {
    margin-bottom: 5px;
  }

  .flex-copy {
    flex-wrap: wrap;
  }

  .amenity-text {
    font-size: 18px;
    line-height: 22px;
  }

  .heading {
    font-size: 30px;
    line-height: 34px;
  }

  .column-left-align {
    width: 100%;
  }

  .scroll-down {
    z-index: 2;
  }

  .hero-text {
    font-size: 5.8vw;
    line-height: 7vw;
  }

  .hero-text.log-in {
    font-size: 34px;
    line-height: 34px;
  }

  .hero-post-text {
    font-size: 12px;
    line-height: 20px;
  }

  .amenidades-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fef0ef9ecbb64fabf0ed89_volley%202.avif");
    background-position: 50% 90%;
  }

  .cuarto-edif-a.slide-1 {
    background-size: cover;
  }

  .fachada-edif-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66feeeb960d7fa16f5704960_edif%20b%204.avif");
    background-position: 50%;
  }

  .el-nido-fachada.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecc308f2ae943795c29df_nido%20horizontal%20movil.avif");
    background-position: 50% 30%;
  }

  .paragraph-3 {
    font-weight: 300;
  }

  .paragraph-4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .fachada-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecd17758c780402c739d4_villa%20aerea%20horizontal%20movil.avif");
    background-position: 50%;
  }

  .highlightubicacion-edificios.hero {
    background-position: 50%;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .highlightubicacion-edificios.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50% 140%;
  }

  .bold-text {
    text-align: justify;
  }

  .paragraph-10 {
    font-weight: 300;
    line-height: 22px;
  }

  .zonanorte-aereo-render.hero {
    background-position: 50%;
  }

  .zonanorte-aereo-render._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e397f7679fbc1883eab_aereo%20zom%20out%20pco.avif");
    overflow: visible;
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .paragraph-16, .paragraph-17 {
    text-align: justify;
  }

  .paragraph-18 {
    font-weight: 300;
    line-height: 22px;
  }

  .bold-text-2 {
    font-weight: 500;
  }

  .paragraph-19, .paragraph-20, .paragraph-21, .paragraph-22, .paragraph-23 {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .hero-section-about-b {
    min-height: 280px;
    padding-top: 120px;
    position: relative;
  }

  .highlightubicacion-edificios-b.hero {
    background-position: 50%;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .highlightubicacion-edificios-b.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50% 140%;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    background-position: 50% 140%;
  }

  .highlightubicacion-edificios-nido.hero {
    background-position: 50%;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .highlightubicacion-edificios-nido.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50% 140%;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    background-position: 50% 140%;
  }

  .paragraph-24 {
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
  }

  .paragraph-25 {
    font-size: 12px;
    line-height: 22px;
  }

  .highlightubicacion-villas.hero {
    background-position: 50%;
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee1a77a83b5fc863016b3_Sin%20ti%CC%81tulo-1.avif");
    background-position: 65%;
  }

  .highlightubicacion-villas.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 50% 140%;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    background-position: 50% 140%;
  }

  .nivel1-a1-location-text, .nivel-1-a2-location-text, .nivel1-a3-location-text, .nivel-1-a4-location-text, .nivel1-a5-location-text, .nivel-1-b1-location-text, .nivel-1-b2-location-text, .nivel-2-b3-location-text, .nivel-2-b4-location-text, .nivel-3-b5-location-text, .nivel-3-b6-location-text, .nivel2-n1-location-text, .nivel2-n2-location-text, .nivel2-n3-location-text, .nivel3-n4-location-text, .nivel3-n5-location-text, .nivel3-n6-location-text {
    font-size: 12px;
    line-height: 15px;
  }

  .content-section-nivelesedifa {
    padding-top: 73px;
  }

  .content-section-nivelesedifa.shadow, .content-section-nivelesedifa.double {
    padding-bottom: 50px;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.top-padding {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section-nivelesedifa.inner-pages {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section-nivelesedifa.shadow, .content-section-nivelesedifa.double {
    padding-bottom: 50px;
  }

  .content-section-nivelesedifa.colored {
    padding-top: 49px;
    padding-bottom: 49px;
  }

  .content-section-nivelesedifa.overflow {
    padding-bottom: 0;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.top-padding {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section-nivelesedifa.blog {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nivel2-a1-location-text, .nivel2-a7-location-text, .nivel2-a3-location-text, .nivel2-a8-location-text, .nivel2-a9-location-text, .nivel2-a10-location-text, .nivel3-a11-location-text, .nivel3-a12-location-text, .nivel3-a13-location-text, .nivel3-a14-location-text, .nivel-1-a2-location-text-copy, .nivel3-a15-location-text {
    font-size: 12px;
    line-height: 15px;
  }

  .map-title-nivel1, .map-titlenivel2, .map-titlenivel3, .map-title-nivel1b, .map-titlenivel2b, .map-titlenivel3b, .map-titlenivel2c, .map-titlenivel3c {
    font-size: 18px;
  }

  .invierte-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005e7a3b4dba2b1678d35b_aereo%20zoom%20out%20m.avif");
    background-position: 50% 90%;
  }

  .t5-landing {
    font-size: 18px;
    line-height: 22px;
  }

  .text-1-landing {
    font-size: 22px;
    line-height: 28px;
  }

  .text-1-landing.big {
    font-size: 22px;
  }

  .paragraph-2-landing {
    text-align: justify;
  }

  .dowload-brochure-button {
    margin-left: 10px;
  }

  .paragraph-3-landing {
    text-align: justify;
  }

  .descarga-el-bochure-tarjeta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title-landing {
    font-size: 44px;
    line-height: 52px;
  }

  .agendar_llamada, .agendar_llamada-prop {
    margin-left: 10px;
  }

  .text-justify {
    font-size: 22px;
    line-height: 28px;
  }

  .text-justify.big {
    font-size: 22px;
  }

  .hero-title-landing-form {
    font-size: 44px;
    line-height: 52px;
  }

  .text-justify-copy {
    font-size: 22px;
    line-height: 28px;
  }

  .text-justify-copy.big {
    font-size: 22px;
  }

  .agendar_llamada-brochure, .agendar_llamada-prop-amenidades {
    margin-left: 10px;
  }

  .paragraph-2-subt-copy {
    text-align: justify;
  }

  .pricing-table-wrapper-landing {
    width: 32%;
    margin-right: 2%;
  }

  .agendar_llamada-prop-copy, .agendar_llamada-brochure-copy, .agendar_llamada-brochure-orange {
    margin-left: 10px;
  }

  .subtts {
    font-size: 44px;
    line-height: 52px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .cat-link {
    margin-left: 10px;
  }

  .button-15 {
    text-align: center;
    background-color: #de6c33;
    width: 100%;
    margin-top: 10px;
  }

  .button-16 {
    text-align: center;
    background-color: #585a71;
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .hero-subtitle {
    margin-top: 5px;
    font-size: 17px;
  }

  .hero-inner-padding {
    margin-top: 30px;
  }

  .title-small {
    font-size: 13px;
    line-height: 13px;
  }

  .content---pop-up {
    display: block;
  }

  .content-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .content-section.blog-post, .content-section.blog-page, .content-section.top-padding {
    padding-bottom: 20px;
  }

  .content-section.inner-pages {
    padding-bottom: 20px;
  }

  .content-section.double {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .content-section.overflow {
    margin-top: 0;
    margin-bottom: 0;
  }

  .content-section.bottom-padding {
    margin-top: 0;
    padding-top: 0;
  }

  .content-section.blog-post, .content-section.blog-page, .content-section.top-padding {
    padding-bottom: 20px;
  }

  .content-section.blog {
    padding-bottom: 10px;
  }

  .content-wrapper {
    background-color: #f1f1ed00;
    margin-top: 0;
    margin-bottom: 6px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .go-up-button {
    background-size: 16px, auto;
  }

  .go-up-button.w--current {
    z-index: 8;
  }

  .hero-inner-text {
    font-size: 38px;
    line-height: 46px;
  }

  .social-mini-icon {
    width: 30px;
    height: 30px;
  }

  .inner-hero-section {
    background-color: var(--bg);
  }

  .hero-inner-box {
    padding-left: 3%;
    padding-right: 3%;
  }

  .login-box {
    color: #0f0f0f;
  }

  .mini-arrow {
    display: inline-block;
  }

  .hero-slider {
    height: 600px;
  }

  .comedor-edif-a.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .comedor-edif-a._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 0;
  }

  .comedor-edif-a.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .comedor-edif-a.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .comedor-edif-a.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .comedor-edif-a.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .comedor-edif-a.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .circle-green {
    top: 11%;
  }

  .hero-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-title {
    font-size: 35px;
    line-height: 40px;
  }

  .currency {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
  }

  .hero-item-2 {
    width: 33.333%;
    margin-right: 0;
    padding-left: 4%;
    padding-right: 5px;
  }

  .hero-mini-text {
    flex: 1;
    font-size: 14px;
    line-height: 16px;
  }

  .hero-icon {
    flex: 1;
    margin-right: 5px;
  }

  .hero-item-3 {
    width: 33.333%;
    padding-left: 4%;
    padding-right: 0;
  }

  .hero-item {
    width: 33.33%;
    margin-right: 0;
    padding-right: 5px;
  }

  .hero-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .circle-green-3 {
    top: 36%;
  }

  .circle-green-3.mobile {
    display: block;
  }

  .circle-green-2 {
    top: 58%;
  }

  .intro-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .title-big {
    font-size: 26px;
    line-height: 26px;
  }

  .button-box._15-pixels {
    margin-top: 12px;
  }

  .h2 {
    margin-top: 19px;
    margin-left: -9px;
    margin-right: -9px;
    font-size: 22px;
    line-height: 24px;
  }

  .title-all-caps {
    margin-left: 3%;
    margin-right: 3%;
  }

  .column-center-flex {
    width: 100%;
  }

  .pictures-frame-container {
    text-align: center;
    position: relative;
  }

  .picture-frame-3 {
    width: 90%;
    height: 180px;
    left: -11%;
  }

  .picture-2-container {
    width: 90%;
    height: 180px;
    left: 14%;
  }

  .picture-frame-1 {
    width: 90%;
    height: 180px;
    margin-top: 30px;
    margin-left: auto;
    left: 0;
  }

  .text-column {
    width: 100%;
  }

  .content-section-colored {
    overflow: hidden;
  }

  .text-column-padding {
    width: 100%;
    padding-top: 13%;
    padding-bottom: 13%;
    padding-left: 3%;
  }

  .text-white {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .text-white.les-top-margin {
    text-align: left;
    text-align: left;
    font-size: 23px;
  }

  .divider-line {
    margin-top: 0;
  }

  .text-column-center {
    width: 100%;
  }

  .text {
    font-size: 15px;
    line-height: 22px;
  }

  .text.big {
    text-align: left;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .unit-row {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .amenity-box {
    width: 100%;
  }

  .amenity-image {
    width: 44px;
    margin-bottom: 5px;
  }

  .image-column {
    width: 100%;
    min-height: 350px;
    padding-bottom: 0;
  }

  .text-column-right {
    width: 100%;
    margin-top: 0;
    padding-top: 13%;
    padding-bottom: 13%;
  }

  .icon-box {
    border-bottom: 1px solid var(--bg);
    border-right-style: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .icon-box.last {
    border-bottom-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .icons-flex {
    flex-wrap: wrap;
  }

  .gallery-column {
    width: 48%;
    margin-right: 3%;
  }

  .gallery-column._2 {
    margin-right: 0%;
  }

  .gallery-column-4 {
    width: 48%;
  }

  .price-block {
    padding: 10px 20px;
  }

  .pricing-button {
    margin-left: 20px;
    margin-right: 20px;
  }

  .pricing-table-wrapper {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0%;
  }

  .pricing-table-wrapper.third {
    margin-bottom: 0;
  }

  .plan-description {
    font-size: 18px;
  }

  .plans-inclusions-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .separator {
    max-width: 80px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .pricing-image {
    padding: 20px;
  }

  .slide {
    width: 100%;
    padding: 5%;
  }

  .collection-item {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0%;
  }

  .preview-link-box {
    font-family: Tenorsans, sans-serif;
    font-size: 16px;
    line-height: 22px;
  }

  .divider-box {
    margin-bottom: 0;
  }

  .narrow-wrapper {
    padding-bottom: 0;
  }

  .link-block-underline {
    margin-bottom: 10px;
    margin-right: 15px;
  }

  .link-block-underline.w--current {
    font-weight: 500;
  }

  .social-icons.flex {
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-left: 0%;
  }

  .footer-left {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 29px;
    display: flex;
  }

  .footer-links {
    margin-bottom: 0;
  }

  .footer-logo-link {
    margin-bottom: 20px;
  }

  .footer-flex {
    flex-flow: column;
    margin-left: -4px;
  }

  .notice-text {
    line-height: 30px;
  }

  .insta-pic {
    width: 50%;
  }

  .heading-full {
    flex-direction: row;
    align-items: flex-end;
  }

  .h4 {
    font-size: 34px;
    line-height: 34px;
  }

  .insta-handle {
    margin-bottom: 0;
  }

  .flex-logos {
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .logos-left-box {
    width: 100%;
    margin-bottom: 10px;
  }

  .logos-flex {
    flex-wrap: wrap;
    flex: 0 auto;
    width: 100%;
  }

  .logo-item {
    width: 100%;
    min-height: 70px;
    margin-bottom: 10px;
    padding-left: 31%;
    padding-right: 31%;
  }

  .logo-item.last {
    margin-bottom: 0;
  }

  .collection-item-grid {
    width: 100%;
    margin-right: 0%;
  }

  .footer {
    padding-top: 60px;
    overflow: hidden;
  }

  .hero-section-about {
    min-height: 298px;
  }

  .hero-form {
    width: 100%;
    padding: 4%;
  }

  .intro-image {
    width: 230px;
  }

  .no-top-margin {
    font-size: 19px;
  }

  .right-arrow, .left-arrow {
    width: 25px;
    height: 35px;
  }

  ._50-percent-column {
    width: 100%;
    margin-bottom: 18px;
  }

  .max-412-pixels {
    text-align: justify;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
  }

  .slide-text {
    width: 100%;
    margin-top: 10px;
  }

  .feature {
    border-right-style: none;
    width: 100%;
  }

  .h5 {
    font-family: Tenorsans, sans-serif;
    font-size: 25px;
    line-height: 27px;
  }

  .feature-3 {
    width: 1003%;
  }

  .feature-6 {
    width: 100%;
  }

  .feature-4, .feature-5 {
    border-bottom: 1px solid var(--bg-2);
    border-right-style: none;
    width: 100%;
  }

  .text-column-left {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .feature-2 {
    border-right-style: none;
    width: 100%;
  }

  .team-item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    margin-right: 0%;
  }

  .team-item._5, .team-item._4 {
    margin-bottom: 30px;
  }

  .team-item._5, .team-item._4 {
    margin-bottom: 30px;
  }

  .team-item._3 {
    margin-right: 0%;
  }

  .frame {
    width: 90%;
    left: 0;
  }

  .text-align-left {
    width: 100%;
  }

  .flex-row {
    flex-wrap: wrap;
  }

  .flex-row.mobile-reverse {
    flex-wrap: wrap-reverse;
  }

  .text-align-right {
    width: 100%;
  }

  .play {
    background-size: 18px;
    width: 80px;
    height: 50px;
  }

  .map-title {
    font-size: 15px;
  }

  .item-right {
    width: 100%;
  }

  .flex-wrap {
    flex-wrap: wrap;
    margin-top: -4px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .item-left {
    flex: 0 auto;
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0%;
  }

  .h4-regular {
    text-align: left;
    font-size: 20px;
    line-height: 24px;
  }

  .hero-preview-link {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .hidden {
    display: inline;
  }

  .max-450-pixels {
    background-color: #f1f1ed;
  }

  .preview-box-item {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0%;
  }

  .newsletter-flex {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .h3 {
    font-size: 20px;
    line-height: 34px;
  }

  .form {
    max-width: 350px;
  }

  .hero-post-section {
    overflow: hidden;
  }

  .h1 {
    font-family: Tenorsans, sans-serif;
    font-size: 26px;
    line-height: 32px;
  }

  .sitcky-menu {
    width: 100%;
    margin-bottom: 30px;
  }

  .sticky-content.mobile-no-margin {
    margin-bottom: 0;
  }

  .sticky-right {
    width: 100%;
    margin-top: 20px;
    margin-right: 0%;
  }

  .contact-right-side {
    flex: 0 auto;
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0%;
  }

  .contact-details-box {
    margin-top: 0;
  }

  .contact-right {
    width: 100%;
  }

  .checkbox-field {
    margin-right: 25px;
  }

  .faq-arrow {
    margin-top: 10px;
  }

  .accordion-wrapper {
    margin-bottom: 20px;
    padding-bottom: 5px;
    padding-right: 15px;
  }

  .faq-left {
    width: 100%;
    margin-bottom: 30px;
  }

  .open-close-box {
    height: 100%;
  }

  .title-faq {
    margin-bottom: 37px;
    font-size: 28px;
    line-height: 32px;
  }

  .hero-right-arrow {
    display: none;
  }

  .hero-pricing-subtitle {
    font-size: 12px;
  }

  .hero-left-arrow {
    display: none;
  }

  .location-text {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 18px;
  }

  .hero-icons {
    width: 40px;
    margin-bottom: 8px;
  }

  .amenity-text {
    font-size: 24px;
    line-height: 28px;
  }

  .intro-wrap {
    flex-wrap: wrap;
  }

  .hero-price {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .pricing-flex {
    flex-wrap: wrap;
    display: flex;
  }

  .heading {
    font-size: 28px;
    line-height: 32px;
  }

  .column-left-align {
    justify-content: flex-start;
    width: 100%;
  }

  .flex-main-post {
    flex-wrap: wrap;
  }

  .blog-left, .palm-container {
    width: 100%;
  }

  .display-none-copy {
    height: 30px;
    font-size: 10px;
    display: block;
  }

  .scroll-down {
    display: none;
  }

  .scroll-arrow {
    width: 18px;
  }

  .sign-in {
    padding-left: 7%;
    padding-right: 7%;
  }

  .flex-login {
    flex-wrap: wrap-reverse;
  }

  .hero-text {
    font-size: 11vw;
    line-height: 12.3vw;
  }

  .hero-text.log-in {
    font-size: 32px;
    line-height: 32px;
  }

  .login-left {
    width: 100%;
    min-height: 100px;
  }

  .login-right {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .hero-post-text {
    text-align: justify;
    font-size: 12px;
    line-height: 20px;
  }

  .amenidades-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fef093738d6e0993d18944_volley%201.avif");
    background-position: 50%;
  }

  .amenidades-banner-bg.palm, .carrusel-centro-amenidades.palm, .carrusel-centro-amenidades.palm, .izq-carrusel-amenidades.palm, .izq-carrusel-amenidades.palm, .derecha-carrusel-amenidades.palm, .derecha-carrusel-amenidades.palm, .amenidades-tu-vida.palm, .amenidades-tu-vida.palm, .volley-landscpae.palm, .volley-landscpae.palm, .playa-landscape.palm, .playa-landscape.palm, .fogata-landscape.palm, .fogata-landscape.palm, .nido-landscape.palm, .nido-landscape.palm, .senderos-landscape.palm, .senderos-landscape.palm, .caseta-seguridad.palm, .caseta-seguridad.palm, .padel-landscape.palm, .padel-landscape.palm, .cenital-desarrollo.palm, .cenital-desarrollo.palm, .highlight-edificio-a.palm, .highlight-edificio-a.palm, .fachada-edifcio-a.palm, .fachada-edifcio-a.palm, .trasfachada-edif-a.palm, .trasfachada-edif-a.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .cuarto-edif-a.slide-1 {
    background-size: cover;
  }

  .cuarto-edif-a.palm, .vista-de-ba-o-cuarto-a.palm, .vista-de-ba-o-cuarto-a.palm, .sala-comedor-edif-a.palm, .sala-comedor-edif-a.palm, .balcon-edif-a.palm, .balcon-edif-a.palm, .edif-a-1.palm, .edif-a-1.palm, .edif-a-2.palm, .edif-a-2.palm, .edif-a-3.palm, .edif-a-3.palm, .edif-a-245.palm, .edif-a-245.palm, .edif-a-6.palm, .edif-a-6.palm, .edif-a-7.palm, .edif-a-7.palm, .edif-a-8.palm, .edif-a-8.palm, .edif-b4.palm, .edif-b4.palm, .a1.palm, .a1.palm, .a2.palm, .a2.palm, .a3.palm, .a3.palm, .a4.palm, .a4.palm, .a5.palm, .a5.palm, .a6.palm, .a6.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .fachada-edif-b.about-us {
    object-fit: fill;
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecb67ca291697dfe7acc5_edif%20B%20mo%CC%81vil.avif");
    background-position: 50%;
    background-size: cover;
  }

  .fachada-edif-b.palm, .highlight-edificio-b.palm, .highlight-edificio-b.palm, .fachada-edifcio-b.palm, .fachada-edifcio-b.palm, .trasfachada-edif-b.palm, .trasfachada-edif-b.palm, .trasfachada-fachada-edif-b-vertical.palm, .trasfachada-fachada-edif-b-vertical.palm, .edif-b-sala.palm, .edif-b-sala.palm, .cocina-edif-b.palm, .cocina-edif-b.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .el-nido-fachada.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecc308f2ae943795c29df_nido%20horizontal%20movil.avif");
    background-position: 50% 100%;
  }

  .el-nido-fachada.palm, .highlight-el-nido.palm, .highlight-el-nido.palm, .el-nido-c-izq.palm, .el-nido-c-izq.palm, .el-nido-fachada-vertical.palm, .el-nido-fachada-vertical.palm, .el-nido-cocina.palm, .el-nido-cocina.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .planta-edificio-a.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .a1-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .planta-edificio-a-higlight-a1.map, .planta-edificio-a-higlight-a2.map, .planta-edificio-a-higlight-a2.map, .planta-edificio-a-higlight-a3.map, .planta-edificio-a-higlight-a3.map, .planta-edificio-a-higlight-a4.map, .planta-edificio-a-higlight-a4.map, .planta-edificio-a-higlight-a5.map, .planta-edificio-a-higlight-a5.map, .hoghlight-highlight-2.map, .hoghlight-highlight-2.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .planta-edificio-b {
    margin-top: -46px;
    padding-top: 0;
  }

  .planta-edificio-b.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .paragraph-3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }

  .flechas-cozumel.grid-2 {
    height: 100%;
  }

  .flechas-cozumel.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .texto-plantas-izq {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .edif-b-1.palm, .edif-b-2.palm, .edif-b-3.palm, .edif-b5.palm, .edif-b7.palm, .edif-b8.palm, .edif-b9.palm {
    inset: 0% 0% auto auto;
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .b1-text-select, .b2-text-select, .b3-text-select, .b4-text-select, .b5-text-select {
    margin-bottom: 15px;
    padding-bottom: 5px;
  }

  .b6-text-select {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .planta-edificio-b-higlight-b1.map, .planta-edificio-b-higlight-b2.map, .planta-edificio-b-higlight-b2.map, .planta-edificio-b-higlight-b3.map, .planta-edificio-b-higlight-b3.map, .planta-edificio-b-higlight-b4.map, .planta-edificio-b-higlight-b4.map, .planta-edificio-b-higlight-b5.map, .planta-edificio-b-higlight-b5.map, .planta-edificio-b-higlight-b6.map, .planta-edificio-b-higlight-b6.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .nido-1.palm, .nido-2.palm, .nido-3.palm, .nido-4.palm, .nido-5.palm, .nido-6.palm, .nido-7.palm, .nido-8.palm {
    inset: 0% 0% auto auto;
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .planta-edificio-c.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .planta-edificio-c-higlight-n1---n4.map, .planta-edificio-c-higlight-n2---n5.map, .planta-edificio-c-higlight-n2---n5.map, .planta-edificio-c-higlight-n3---n6.map, .planta-edificio-c-higlight-n3---n6.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .trasfachada-b.palm {
    inset: 0% 0% auto auto;
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .amenidades-1a.about-intro {
    overflow: hidden;
  }

  .amenidades-1a.palm, .amenidades-2a.palm, .amenidades-2a.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .amenidades3a.about-intro-3 {
    overflow: hidden;
  }

  .amenidades3a.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .fachada-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fecd17758c780402c739d4_villa%20aerea%20horizontal%20movil.avif");
    background-position: 50% 0;
  }

  .fachada-villas.palm, .fachada-villas-1.palm, .fachada-villas-1.palm, .villa-2f.palm, .villa-2f.palm, .villas-side-image.palm, .villas-side-image.palm, .villa-render-1.palm, .villa-render-1.palm, .interior-villa-2.palm, .interior-villa-2.palm, .interior-villa-3.palm, .interior-villa-3.palm, .interior-villa-4.palm, .interior-villa-4.palm, .villa-ext.palm, .villa-ext.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .planta-villa-a.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .planta-villa-b.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .highlight-villas.palm {
    inset: 0% 0% auto auto;
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .piso-select {
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .paragraph-7 {
    margin-bottom: 16px;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 14px;
    line-height: 22px;
  }

  .paragraph-8 {
    font-size: 14px;
    line-height: 22px;
  }

  .highlightubicacion-edificios.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .highlightubicacion-edificios._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 0;
  }

  .highlightubicacion-edificios.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .highlightubicacion-edificios.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .highlightubicacion-edificios.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .highlightubicacion-edificios.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .highlightubicacion-edificios.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .highlightubicacion-edificios.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 40%;
  }

  .paragraph-10 {
    font-size: 14px;
    font-weight: 300;
  }

  .zonanorte-aereo-render.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .zonanorte-aereo-render._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/67005facfc56deb015d064c0_cuadrada.avif");
    background-position: 50%;
    background-size: contain;
    margin-top: -54px;
    margin-bottom: -54px;
    padding-bottom: 0;
    overflow: visible;
  }

  .zonanorte-aereo-render.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .zonanorte-aereo-render.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .zonanorte-aereo-render.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .zonanorte-aereo-render.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .zonanorte-aereo-render.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .paragraph-16 {
    text-align: justify;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .paragraph-17 {
    text-align: justify;
    margin-bottom: 17px;
    font-weight: 300;
    line-height: 22px;
  }

  .paragraph-18 {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .bold-text-2 {
    font-weight: 600;
  }

  .bold-text-3 {
    font-family: Tenorsans, sans-serif;
    font-weight: 600;
  }

  .bold-text-4 {
    font-family: Tenorsans, sans-serif;
  }

  .paragraph-19 {
    margin-left: 3%;
    margin-right: 3%;
    font-size: 15px;
    line-height: 22px;
    display: block;
  }

  .paragraph-22, .paragraph-23 {
    text-align: justify;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
  }

  .bold-text-5 {
    font-weight: 500;
  }

  .hero-section-about-b {
    min-height: 298px;
  }

  .highlightubicacion-edificios-b.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .highlightubicacion-edificios-b._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 0;
  }

  .highlightubicacion-edificios-b.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .highlightubicacion-edificios-b.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .highlightubicacion-edificios-b.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .highlightubicacion-edificios-b.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .highlightubicacion-edificios-b.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .highlightubicacion-edificios-b.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 40%;
  }

  .highlightubicacion-edificios-b.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca801b9fe972e6fa7255a7_higlhight%20edificio%20B.avif");
    background-position: 40%;
  }

  .highlightubicacion-edificios-nido.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .highlightubicacion-edificios-nido._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 0;
  }

  .highlightubicacion-edificios-nido.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .highlightubicacion-edificios-nido.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .highlightubicacion-edificios-nido.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .highlightubicacion-edificios-nido.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .highlightubicacion-edificios-nido.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .highlightubicacion-edificios-nido.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 40%;
  }

  .highlightubicacion-edificios-nido.highlighedif-nido {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66cb3d7099671458cfc217d5_higlhight%20El%20nido.jpg");
    background-position: 40%;
  }

  .el-nido-int2.palm, .el-nido-int3.palm {
    inset: 0% 0% auto auto;
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .paragraph-24 {
    text-align: justify;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
  }

  .bold-text-6 {
    font-size: 14px;
    line-height: 22px;
  }

  .paragraph-25 {
    font-size: 12px;
    line-height: 22px;
  }

  .highlightubicacion-villas.hero {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 100%;
    background-size: cover;
  }

  .highlightubicacion-villas._2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fec53ba5abd0f50a6c3a24_aereo.avif");
    background-position: 50% 0;
  }

  .highlightubicacion-villas.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
    background-position: 40%;
  }

  .highlightubicacion-villas.hero-2 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66fee3e87f9a31c4670c431e_minimizada%20la%20imagen%20para%20sitio%20web%202.avif");
  }

  .highlightubicacion-villas.hero-3 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ccbc545f8df5221b56c376_1.avif");
  }

  .highlightubicacion-villas.hero-4 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca49d5a84a018f51358234_NIDO.avif");
  }

  .highlightubicacion-villas.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .highlightubicacion-villas.highlighedif {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/670052bdeed47b38b59d09d1_66ca6da8b14f1d22960f8af4_hig.jpg");
    background-position: 40%;
  }

  .highlightubicacion-villas.highlighedif-bsub {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66edc508325d8d5fa7a50233_villas%20highlight.avif");
    background-position: 40%;
  }

  .paragraph-26 {
    font-weight: 300;
  }

  .nivel1-a1-location-text, .nivel-1-a2-location-text, .nivel1-a3-location-text, .nivel-1-a4-location-text, .nivel1-a5-location-text, .nivel-1-b1-location-text, .nivel-1-b2-location-text, .nivel-2-b3-location-text, .nivel-2-b4-location-text, .nivel-3-b5-location-text, .nivel-3-b6-location-text, .nivel2-n1-location-text, .nivel2-n2-location-text, .nivel2-n3-location-text, .nivel3-n4-location-text, .nivel3-n5-location-text, .nivel3-n6-location-text {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 18px;
  }

  .content-section-colored-edifa-nivel-2, .content-section-colored-edifa-nivel3 {
    overflow: hidden;
  }

  .content-section-nivelesedifa {
    margin-top: 13px;
    margin-bottom: -4px;
    padding-top: 41px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.blog-page, .content-section-nivelesedifa.top-padding {
    padding-bottom: 20px;
  }

  .content-section-nivelesedifa.inner-pages {
    padding-bottom: 20px;
  }

  .content-section-nivelesedifa.double {
    margin-top: -40px;
  }

  .content-section-nivelesedifa.overflow {
    margin-top: -23px;
  }

  .content-section-nivelesedifa.blog-post, .content-section-nivelesedifa.blog-page, .content-section-nivelesedifa.top-padding {
    padding-bottom: 20px;
  }

  .content-section-nivelesedifa.blog {
    padding-bottom: 10px;
  }

  .a6-text-select, .a11-text-select {
    justify-content: flex-start;
    align-items: center;
  }

  .nivel2-a1-location-text, .nivel2-a7-location-text, .nivel2-a3-location-text, .nivel2-a8-location-text, .nivel2-a9-location-text, .nivel2-a10-location-text, .nivel3-a11-location-text, .nivel3-a12-location-text, .nivel3-a13-location-text, .nivel3-a14-location-text, .nivel-1-a2-location-text-copy, .nivel3-a15-location-text {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 18px;
  }

  .planta-edificio-a-higlight-a6.map, .planta-edificio-a-higlight-a7.map, .planta-edificio-a-higlight-a7.map, .planta-edificio-a-higlight-a8.map, .planta-edificio-a-higlight-a8.map, .planta-edificio-a-higlight-a9.map, .planta-edificio-a-higlight-a9.map, .planta-edificio-a-higlight-a10.map, .planta-edificio-a-higlight-a10.map, .planta-edificio-a-higlight-a11.map, .planta-edificio-a-higlight-a11.map, .planta-edificio-a-higlight-a12.map, .planta-edificio-a-higlight-a12.map, .planta-edificio-a-higlight-a13.map, .planta-edificio-a-higlight-a13.map, .planta-edificio-a-higlight-a14.map, .planta-edificio-a-higlight-a14.map, .planta-edificio-a-higlight-a15.map, .planta-edificio-a-higlight-a15.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .map-title-nivel1, .map-titlenivel2, .map-titlenivel3 {
    font-size: 15px;
  }

  .planta-nivel-2-edificio-a.map, .planta-nivel-3-edificio-a.map, .planta-nivel-3-edificio-a.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .hero-pricing-subtitle-copy {
    text-align: left;
    padding-right: 0;
    font-size: 12px;
  }

  .map-title-nivel1b, .map-titlenivel2b, .map-titlenivel3b {
    font-size: 15px;
  }

  .content-section-coloredn2b, .content-section-coloredn3b {
    overflow: hidden;
  }

  .planta-edificio-b3-y-b4.map {
    margin-top: -79px;
    margin-bottom: -13px;
  }

  .planta-edificio-b5yb6 {
    margin-top: -46px;
    padding-top: 0;
  }

  .planta-edificio-b5yb6.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .map-titlenivel2c, .map-titlenivel3c {
    font-size: 15px;
  }

  .content-section-coloredn3-c {
    overflow: hidden;
  }

  .planta-edificio-c-n3.map {
    margin-top: -79px;
    margin-bottom: -13px;
    padding-bottom: 0;
  }

  .invierte-banner-bg.about-us {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/66ca3517b170c5eccee8e68d_landscape%20zoom%20out.avif");
    background-position: 50%;
  }

  .invierte-banner-bg.palm, .img-1-landing.palm, .img-1-landing.palm {
    background-size: cover;
    inset: 0% 0% auto auto;
  }

  .t5-landing {
    font-size: 19px;
  }

  .text-1-landing {
    font-size: 18px;
    line-height: 29px;
  }

  .text-1-landing.big {
    text-align: left;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .paragraph-2-landing {
    text-align: justify;
    margin-left: 12px;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    display: none;
  }

  .dowload-brochure-button {
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-left: 0;
    padding-top: 8px;
    padding-bottom: 15px;
    display: flex;
  }

  .paragraph-3-landing {
    text-align: justify;
    margin-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
  }

  .descarga-el-bochure-tarjeta {
    margin-left: 20px;
    margin-right: 20px;
  }

  .section {
    margin-top: 0;
    margin-bottom: 57px;
    padding-top: 0;
  }

  .div-block-3 {
    display: none;
  }

  .div-block-brochure {
    width: 300px;
    height: 800px;
  }

  .form-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-field-2 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 0;
  }

  .submit-button-2 {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .field-label-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .code-embed {
    margin-top: 22px;
  }

  .hero-title-landing {
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 8px;
    font-size: 35px;
    line-height: 40px;
    display: flex;
  }

  .column {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
    margin-bottom: 18px;
    display: flex;
  }

  .column-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .agendar_llamada {
    justify-content: center;
    align-items: center;
    margin: 17px 0 35px 10px;
    padding: 15px;
    display: flex;
  }

  .right-arrow-small, .left-arrow-small {
    width: 30px;
    height: 40px;
  }

  .agendar_llamada-prop {
    justify-content: center;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 13px;
    margin-right: 10px;
    padding: 8px 10px 15px;
    display: flex;
  }

  .submit-button-forms {
    background-color: #3e87e7;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .form-brochure {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-folleto {
    width: 300px;
    height: 750px;
    margin-top: 209px;
    margin-bottom: 159px;
    padding-top: 46px;
    padding-bottom: 82px;
  }

  .text-justify {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .text-justify.big {
    text-align: left;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .hero-title-landing-form {
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 8px;
    font-size: 35px;
    line-height: 40px;
    display: flex;
  }

  .field-label-3-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .text-justify-copy {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .text-justify-copy.big {
    text-align: left;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .form-brochure-form-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .agendar_llamada-brochure {
    justify-content: center;
    align-items: center;
    height: 45px;
    margin: 12px 5px 3px;
    padding: 11px 15px;
    display: flex;
  }

  .agendar_llamada-prop-amenidades {
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 13px;
    margin-right: 10px;
    padding: 8px 10px 15px;
    display: flex;
  }

  .image-6 {
    margin-left: 0;
  }

  .paragraph-2-subt-copy {
    text-align: justify;
    margin-left: 12px;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
  }

  .bold-text-8 {
    margin-left: 0;
    margin-right: 0;
  }

  .bold-text-9 {
    margin-top: 11px;
  }

  .pricing-table-wrapper-landing {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0%;
  }

  .pricing-table-wrapper-landing.third {
    margin-bottom: 0;
  }

  .agendar_llamada-prop-copy {
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 13px;
    margin-right: 10px;
    padding: 8px 10px 15px;
    display: flex;
  }

  .agendar_llamada-brochure-copy, .agendar_llamada-brochure-orange {
    justify-content: center;
    align-items: center;
    margin: 12px 5px 3px;
    padding: 15px 15px 11px;
    display: flex;
  }

  .pop-up-oferta {
    display: none;
  }

  .text-block-7 {
    font-size: 15px;
    line-height: 20px;
  }

  .heading-3 {
    font-size: 25px;
  }

  .submit-button-oferta {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .form-oferta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-folleto-brochure {
    width: 300px;
    height: 400px;
  }

  .subtts {
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 8px;
    font-size: 35px;
    line-height: 40px;
    display: flex;
  }

  .section-3 {
    margin-left: 3%;
    margin-right: 3%;
  }

  .link-3 {
    color: var(--field-hover);
  }

  .brochure-thank-you {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-4 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .section-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-31 {
    text-align: center;
    font-family: Poppins, sans-serif;
    font-weight: 200;
  }

  .container-5 {
    width: 90%;
    margin-left: 56px;
    margin-right: 59px;
    padding: 0 0 10px;
    display: block;
  }

  .container-6 {
    width: 90%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .bold-text-11 {
    font-size: 30px;
  }

  .paragraph-32 {
    margin-top: 15px;
  }

  .heading-5 {
    text-align: center;
    line-height: 30px;
  }

  .paragraph-33, .paragraph-34 {
    margin-top: 0;
  }

  .paragraph-35 {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
  }

  .heading-6 {
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 35px;
    font-weight: 500;
  }

  .image-8 {
    aspect-ratio: auto;
    object-fit: cover;
    position: static;
  }

  .slider-2 {
    height: 300px;
  }

  .navbar-logo-center-container.shadow-three {
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-7 {
    max-width: none;
  }

  .navbar-wrapper-three {
    justify-content: center;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .section-7 {
    margin-bottom: 13px;
    padding: 50px 20px 10px;
  }

  .bold-text-15 {
    color: var(--font-color);
    font-size: 25px;
    line-height: 10px;
  }

  .paragraph-37 {
    margin-bottom: 14px;
    padding-bottom: 15px;
  }

  .heading-7 {
    color: var(--font-color);
    line-height: 30px;
  }

  .bold-text-16 {
    display: none;
  }

  .submit-button-3 {
    display: block;
  }

  .form-9-meses {
    margin-top: 15px;
    margin-bottom: 109px;
    display: none;
  }

  .background-video {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-8 {
    background-size: cover;
  }

  .slide-14 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/68251360c08e598d060e668b_ALBERCA.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .slide-15 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/6825138e54e5689f98983f7b_CANCHA%20PADEL.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .slide-16 {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/682513f4a1c1bf88f6e7df06_FOGATA.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .button-6 {
    text-align: center;
    background-color: #a1af2f;
    width: 100%;
    margin-bottom: 10px;
  }

  .button-7 {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .button-8 {
    text-align: center;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 10px;
  }

  .button-9 {
    text-align: center;
    width: 100%;
  }

  .label-name-form, .text-field-8, .field-label-8, .text-field-9, .field-label-9, .text-field-10 {
    display: block;
  }

  .heading-8 {
    margin: 0;
    line-height: 34px;
  }

  .button-3-exp {
    width: 100%;
    display: block;
  }

  .button-3-exp-2 {
    width: 100%;
    margin-top: 10px;
  }

  .container-8 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
  }

  .text-block-10 {
    color: var(--white);
    text-align: center;
    margin-top: 28px;
  }

  .form-4 {
    margin-bottom: 7px;
  }

  .text-block-11 {
    text-align: center;
    margin-top: 8px;
  }

  .quick-stack {
    padding-left: 2%;
    padding-right: 2%;
  }

  .select-field-5, .select-field-6 {
    display: block;
  }

  .field-label-hide {
    display: none;
  }

  .input-enganche-field {
    display: block;
  }

  .alert {
    text-align: center;
    line-height: 18px;
    display: block;
  }

  .label-field-enganche, .field-label-plazos {
    display: block;
  }

  .campo-hide-select {
    display: none;
  }

  .label-phone-form, .input-name-form, .input-phone-form, .label-mail-form, .input-mail-form, .input-plazoz-field-form, .label-plazoz-field-form {
    display: block;
  }

  .alert-form {
    text-align: center;
    line-height: 18px;
    display: block;
  }

  .form-4-copy {
    margin-bottom: -50px;
  }

  .section-but {
    background-color: #b6b9af;
    margin-bottom: -49px;
    padding: 41px 20px 103px;
  }

  .content-wrapper-cat {
    background-color: #f1f1ed00;
    margin: 0 5% 6px;
    padding: 0 2%;
  }

  .cat-link {
    justify-content: center;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 13px;
    margin-right: 10px;
    padding: 8px 10px 15px;
    display: flex;
  }

  .edificiob {
    margin-bottom: 13px;
    padding: 50px 20px 10px;
  }

  .slide-8-edificio-a {
    background-size: cover;
  }

  .slide-14-edificioa {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/682e21693176a2b61c742461_EDIF%20A-1080x1920%204.jpg");
    background-position: 50% 65%;
    background-size: cover;
  }

  .slide-15-edificio-a {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/682e218939967f1d636af9a7_EDIF%20A-1280X1920%201.jpg");
    background-position: 50%;
    background-size: cover;
  }

  .slide-14-copy {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/682e2401d6daf064445d2604_EDIF%20B-1080x1920%205.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .slide-15-copy {
    background-image: url("https://cdn.prod.website-files.com/66c9e45f487a5761abca6939/682e241adf94e1251a513464_EDIF%20B-1080x1920%201.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .text-block-10-copy {
    color: var(--font-color);
    text-align: center;
  }

  .image-11 {
    margin-left: 0%;
  }

  .form-opciones-pago {
    display: none;
  }

  .form-9-meses-q, .form-planes-q {
    margin-bottom: 7px;
  }

  .bold-text-15-copy {
    color: var(--white);
    font-size: 25px;
    line-height: 10px;
  }

  .dentro-presupuesto {
    width: 100%;
    margin-top: -2px;
    display: block;
  }

  .fuera-presupuesto {
    width: 100%;
    margin-top: 10px;
  }

  .container-10 {
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .button-11 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .button-12 {
    width: 100%;
    margin-bottom: 10px;
  }

  .button-13 {
    text-align: center;
    background-color: #de6c33;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .button-14 {
    text-align: center;
    background-color: #585a71;
    width: 100%;
    margin-bottom: 10px;
  }

  .button-15 {
    margin-top: 20px;
  }

  .button-16 {
    margin-bottom: 20px;
  }

  .bold-text-134, .bold-text-135 {
    font-family: Poppins, sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 35px;
  }

  .heading-9 {
    font-size: 32px;
  }

  .section-10 {
    padding: 20px 10px;
  }

  .button-21 {
    margin-top: 10px;
  }

  .button-25 {
    width: 180px;
    margin-bottom: 14px;
    margin-left: 13px;
    font-size: 14px;
    line-height: 16px;
  }

  .image-12 {
    margin-top: -12px;
  }
}
