@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 5vw;
  background-color: #eeeeee;
  font-size: 14pt;
  color: #3a3a3a;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.4vw;
  }
}

body.openNav {
  overflow: hidden;
}

ul {
  margin: 0;
}

h1, h2, h3, h4 {
  line-height: 110%;
}

h2 {
  margin: 0;
  font-size: 160%;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 280%;
  }
}

h3 {
  margin: 0;
  font-size: 120%;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 200%;
  }
}

h4 {
  margin: 0;
}

#masthead {
  width: 100%;
  height: 4rem;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  #masthead {
    height: 4rem;
    padding: 2rem 0;
  }
}

#logo {
  margin: 0.5rem 1rem;
}
#logo img {
  object-fit: contain;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 3rem;
}

#navBar {
  display: flex;
  justify-content: flex-end;
}
#navBar.open #mainMenu {
  display: flex;
}

#menuToggle {
  flex-basis: auto;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 1.5rem 1rem;
  line-height: 1rem;
  color: black;
  font-weight: bold;
  transition: margin-right 400ms ease-in-out, padding 200ms ease;
}
@media only screen and (min-width: 768px) {
  #menuToggle {
    display: none;
  }
}

#mainMenu {
  display: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  position: fixed;
  z-index: 9000;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  padding: 3rem 0;
  list-style-type: none;
  background-color: #ddd;
}
@media only screen and (min-width: 768px) {
  #mainMenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: auto;
    padding: 0;
    position: initial;
    width: auto;
    background-color: transparent;
  }
}
#mainMenu li {
  padding: 1rem 0;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #mainMenu li {
    width: auto;
    padding: 1rem;
  }
}
#mainMenu a {
  color: #3a3a3a;
  text-decoration: none;
  transition: color 300ms;
}
#mainMenu a.active {
  color: #0097db;
}
#mainMenu a:hover {
  color: #0097db;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
#banner {
  margin: 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #banner {
    margin: 0;
  }
}
#banner .slider.flickity-enabled .item:nth-child(n+2) {
  display: flex;
}
#banner .slider.flickity-enabled .item .text {
  animation: fadeInAnimation 1s linear forwards;
}
#banner .slider .item {
  width: 100%;
  height: 50vh;
  display: flex;
}
@media only screen and (min-width: 768px) {
  #banner .slider .item {
    height: 45vw;
  }
}
#banner .slider .item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#banner .slider .item .text {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem 1rem;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(24, 24, 24) 100%);
}
@media only screen and (min-width: 768px) {
  #banner .slider .item .text {
    justify-content: center;
    width: calc(100% - 8rem);
    height: calc(100% - 8rem);
    padding: 4rem;
  }
}
#banner .slider .item .text .title {
  margin: 0 0 1rem;
  font-size: 120%;
  color: white;
}
@media only screen and (min-width: 768px) {
  #banner .slider .item .text .title {
    margin: 0 0 2rem;
    font-size: 240%;
    width: 45%;
  }
}

#intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 5vw 0;
}
@media only screen and (min-width: 768px) {
  #intro {
    flex-wrap: nowrap;
  }
}
#intro .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  font-size: 90%;
}
@media only screen and (min-width: 768px) {
  #intro .list {
    width: 50%;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1400px) {
  #intro .list header .txt {
    font-size: 120%;
  }
}
#intro .list .features {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
  font-size: 80%;
}
#intro .list .features li {
  display: flex;
  align-items: center;
  flex: 1 40%;
  width: 30%;
  padding: 1rem;
  background-color: #3a3a3a;
  color: white;
  border-radius: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #intro .list .features li {
    width: 42%;
    padding: 1.5rem 1rem;
  }
}
#intro .list .features li .icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin-right: 2rem;
}
#intro .list .features li .label {
  margin: 0;
  text-align: center;
}
#intro .slider {
  width: 100%;
  background-color: #ddd;
  color: white;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  #intro .slider {
    flex: 1;
    padding: 2rem;
  }
}
#intro .slider .item {
  border-radius: 0.5rem;
  overflow: hidden;
}
#intro .slider .item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  #intro .slider .flickity-page-dots {
    width: calc(100% - 4rem);
  }
}

#porque .reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 2rem 1rem 3rem;
  background-color: #ddd;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  #porque .reasons {
    gap: 0;
  }
}
#porque .reasons li {
  padding: 0;
  margin: 0.5rem 0;
  width: 100%;
  list-style-type: none;
  cursor: pointer;
}
#porque .reasons li::before {
  float: left;
  content: "❯";
  margin-left: -1.5rem;
  color: #0097db;
  font-size: 80%;
  text-align: center;
  vertical-align: middle;
  transform-origin: center center;
  transition: transform 0.5s;
}
#porque .reasons li.open::before {
  transform: rotate(90deg);
}
#porque .reasons li.open .reason {
  display: block;
  max-height: 10rem;
}
#porque .reasons h4 {
  margin: 0;
  padding: 0;
}
#porque .reasons .reason {
  margin: 0.5rem 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

#departamentos {
  text-align: center;
  padding: 2rem 0;
}
#departamentos h3 {
  padding: 1rem 0;
  text-transform: none;
}
#departamentos h3 span {
  display: block;
  color: #0097db;
}
#departamentos .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #departamentos .grid {
    flex-wrap: nowrap;
    padding: 0 5rem;
  }
}
#departamentos .grid li {
  width: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  #departamentos .grid li {
    width: 33.3%;
  }
}
#departamentos .grid .planta {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#departamentos .grid .title {
  font-style: italic;
  margin: 0;
}
#departamentos .grid .precio {
  color: #0097db;
  margin: 0.5rem 0;
}
#departamentos .subtxt {
  margin: 0;
  font-style: italic;
  padding: 2rem 0;
  font-size: 90%;
}

#amenities {
  display: flex;
  padding: 4rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  #amenities {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
#amenities .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  font-size: 90%;
}
@media only screen and (min-width: 768px) {
  #amenities .list {
    width: 50%;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  #amenities .list header h3 {
    margin-bottom: 1rem;
  }
}
#amenities .list header .bajada {
  margin: 0 0 2rem;
  padding: 0;
}
@media only screen and (min-width: 1400px) {
  #amenities .list header .bajada {
    font-size: 120%;
  }
}
#amenities .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 1rem;
  padding: 0;
  list-style: none;
}
#amenities .list ul li {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  width: 40%;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #amenities .list ul li {
    width: 22%;
  }
}
#amenities .list ul li .icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-basis: 100%;
}
#amenities .list ul li .label {
  text-align: center;
  margin: 0;
  padding: 0;
}
#amenities .slider {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  #amenities .slider {
    width: 50%;
    padding: 2rem;
  }
}
#amenities .slider .item {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #amenities .slider .item {
    height: auto;
  }
}
#amenities .slider .item img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  #amenities .slider .flickity-page-dots {
    width: calc(100% - 4rem);
  }
}

#ubicacion {
  margin-top: 2rem;
  padding: 2rem 0;
  border-radius: 1rem;
  background-color: #3a3a3a;
  color: white;
}
#ubicacion header {
  text-align: center;
}
#ubicacion header .address {
  font-style: italic;
}
#ubicacion .map {
  height: 450px;
}
#ubicacion .contacto {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #ubicacion .contacto {
    flex-wrap: nowrap;
  }
}
#ubicacion .contacto h4 {
  font-size: 120%;
  margin-bottom: 1rem;
}
#ubicacion .contacto div {
  width: 100%;
  margin: 0 0 1rem;
}
@media only screen and (min-width: 768px) {
  #ubicacion .contacto div {
    width: 33.3%;
    margin: 0;
  }
}
#ubicacion .contacto div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 0 1rem;
  font-weight: 400;
  font-size: 100%;
}
#ubicacion .contacto div .icon {
  width: 2rem;
  height: 2rem;
  margin: 1rem 0.5rem;
}
#ubicacion .contacto div p {
  line-height: 2rem;
  margin: 0;
}

#requisitos {
  padding: 5rem 0;
}
@media only screen and (min-width: 768px) {
  #requisitos {
    flex-wrap: nowrap;
  }
}
#requisitos .list {
  margin: 0;
  padding: 1rem 2rem 1rem 3rem;
  background-color: #ddd;
  border-radius: 1rem;
}
#requisitos .list li {
  line-height: 2rem;
  margin: 0 0 1rem;
}
#requisitos .list li::marker {
  color: #0097db;
}

#footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
}
@media only screen and (min-width: 768px) {
  #footer {
    padding: 0 5rem 3rem;
  }
}
#footer .legal {
  width: 100%;
  text-align: center;
  font-size: 90%;
  margin: 0;
  padding: 2rem 0;
}
#footer .plug {
  width: 100%;
}
#footer .plug img {
  margin: 0 auto;
  display: block;
  max-width: 12rem;
  height: auto;
}

#cotizador {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(221, 221, 221, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s, height 0.5s;
}
#cotizador.open {
  display: block;
  opacity: 1;
  height: 100vh;
  overflow: auto;
}
#cotizador .content {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 1rem 10rem;
  color: black;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  #cotizador .content {
    flex-wrap: nowrap;
    width: calc(100% - 10rem);
    padding: 5rem;
  }
}
#cotizador .content a {
  color: black;
}
#cotizador .content h2 {
  margin-bottom: 1rem;
}
#cotizador .content h3 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  #cotizador .txt {
    width: 40%;
  }
}
#cotizador .form {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #cotizador .form {
    width: 60%;
  }
}
#cotizador label {
  display: block;
  text-align: left;
}
#cotizador input, #cotizador select {
  padding: 0.5rem;
}
#cotizador button[type=submit] {
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 85%;
  background-color: #0097db;
  color: white;
  border: none;
  border-radius: 2rem;
}
#cotizador button[type=submit]:hover {
  background-color: #007cb1;
}
#cotizador .closer {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  #cotizador .closer {
    top: 2rem;
    right: 2rem;
  }
}
#cotizador .closer button {
  background-color: transparent;
  border: 0;
  font-size: 150%;
  color: black;
  cursor: pointer;
}
#cotizador .closer button:hover {
  color: #ddd;
}

.cotizar, .pill {
  padding: 1rem 2rem;
  border: 0;
  border-radius: 2rem;
  background-color: #0097db;
  color: white;
  font-weight: 800;
  font-size: 100%;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media only screen and (min-width: 768px) {
  .cotizar, .pill {
    font-size: 120%;
  }
}
.cotizar:hover, .pill:hover {
  background-color: #007cb1;
}

.flickity-page-dots {
  bottom: 0.5rem !important;
}

.flickity-prev-next-button {
  width: 2rem !important;
  height: 2rem !important;
}

.cog-header {
  display: none;
}

.cog-abuse {
  display: none;
}

.cog-branding {
  display: none;
}

#wspfloater {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10000;
}
#wspfloater img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 2px black;
  transition: filter 0.3s;
}
@media only screen and (min-width: 768px) {
  #wspfloater img {
    width: 4rem;
    height: 4rem;
  }
}
#wspfloater img:hover {
  filter: contrast(150%);
}