@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;500;600&family=Roboto+Condensed:wght@300;400&display=swap');


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

img {
  display:block;
  width:100%;
}

.markerContainer {
    position: absolute;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.markerContainer.left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.marker {
    width: 35px;
    height: 35px;
    background-image: url("icons/location.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.marker.white {
  filter: brightness(10);
}

.marker.train.white {
  background-image: url("icons/location-train.svg");
  filter: brightness(10);
}

.doubleMarker {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

.mapMarkerText {
    font-family: 'Roboto Condensed';
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    text-shadow: 0px 1px 1px black;
    letter-spacing: 1px;
    margin: 3px 0px 0px 0px;
}

.mapMarkerText.lg {
    font-size: 18px;
    line-height: 18px;
}

.mapMarkerText.left {
    text-align: left;
}

.pointOne {
    left: 2%;
    top: 21%;
}

.pointTwo {
    left: 47%;
    top: 70%;
}

.pointThree {
    left: 74%;
    top: 43%;
}

.pointFour {
    left: 83%;
    top: 29%;
}

.pointSix {
    top: 51%;
    left: 84%;
}

@media (max-width:1199px) {
.marker {
    width: 25px;
    height: 25px;
}
  
.mapMarkerText.lg {
    font-size: 16px;
    line-height: 14px;
}
  
.pointOne {
    left: 2%;
    top: 21%;
}

.pointTwo {
    left: 44%;
    top: 70%;
}

.pointThree {
    left: 72%;
    top: 43%;
}

.pointFour {
    left: 83%;
    top: 29%;
}

.pointSix {
    top: 50%;
    left: 84%;
}
}

@media (max-width:991px) {
.marker {
    width: 25px;
    height: 25px;
}
  
.mapMarkerText.lg {
    font-size: 14px;
    line-height: 12px;
}
  
.pointOne {
    left: 2%;
    top: 21%;
}

.pointTwo {
    left: 44%;
    top: 70%;
}

.pointThree {
    left: 72%;
    top: 43%;
}

.pointFour {
    left: 83%;
    top: 26%;
}

.pointSix {
    top: 46%;
    left: 83%;
}
}

@media (max-width:768px) {
.marker {
    width: 20px;
    height: 20px;
}
  
.mapMarkerText {
    font-size: 10px;
    line-height: 9px;
}
  
.mapMarkerText.lg {
    font-size: 10px;
    line-height: 9px;
}
  
.pointOne {
    left: 2%;
    top: 21%;
}

.pointTwo {
    left: 42%;
    top: 70%;
}

.pointThree {
    left: 71%;
    top: 40%;
}

.pointFour {
    left: 83%;
    top: 26%;
}

.pointSix {
    top: 49%;
    left: 84%;
}
}

@media (max-width:576px) {
.marker {
    width: 14px;
    height: 14px;
}
  
.mapMarkerText {
    font-size: 6px;
    line-height: 6px;
    letter-spacing: 0px;
}
  
.mapMarkerText.left {
    text-align: left;
    width: 80%;
    margin-left: 2px;
}
  
.pointOne {
    left: 1%;
    top: 13%;
}

.pointTwo {
    left: 44%;
    top: 66%;
}

.pointThree {
    left: 72%;
    top: 40%;
}

.pointFour {
    left: 83%;
    top: 23%;
}
  
.pointSix {
    top: 45%;
    left: 85%;
}
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 198px;
    height: 198px;
    color: #d6d3be;
}
  
.loader:before, .loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
  }

.loader:after {
    color: #d6d3be;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

.loader-logo {
    background-image: url("../img/iso-loader-pdp.svg");
    width: 120px;
    height: 120px;
    position: absolute;
    transform: rotate(-45deg);
    background-repeat: no-repeat;
    margin-left: 40px;
    margin-top: 40px;
}

.loader-logo.alcyon {
    background-image: url("../img/iso-loader-aclyon.svg");
}



@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: .2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .2em .2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
  }
}
   



.myLoader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #757571;
    left: 0px;
    top: 0px;
    z-index: 1501;
    animation: fadeOut forwards 68s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes fadeOut {
  0%   {opacity: 1;}
  80% {opacity: 1;}
  100% {opacity: 0;z-index: -1;}
}

.loaderLogo {
    position: relative;
    background-image: url("../img/logo-home.svg");
    width: 20%;
    height: 20%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: zoomOut 7s forwards;
}

@keyframes zoomOut {
  0%   {transform: scale(400%);}
  100% {transform: scale(245%) translateY(-20px);}
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Playfair Display', serif;
    color: #808797;
    letter-spacing: 0px;
    font-weight: 100;
}

body {
    color: #353940;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    background-color: #fff;
}

p {
    color: #353940;
    text-transform: none;
    letter-spacing: 0px!important;
    font-size: 1.1rem;
}

a {
    color: #353940;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

a:hover {
    color: #ee9595;
    transition: 0.4s;
}

.fontAlt {
    font-family: 'Roboto Condensed';
}

li.custom-list {
    color: #dfdfdd;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 15px;
    text-transform: lowercase;
    letter-spacing: 0px;
}

li.custom-list::first-letter {
 text-transform: uppercase;
}

ul {
    list-style-type: none;
    padding-left: 0px;
}

li.custom-list::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("icons/chevron-right.svg");
    background-size: contain;
    position: relative;
    left: -5px;
    float: left;
    top: 1px;
    margin-bottom: 15px;
}

.text-light {
    color: #dfdfdd!important;
}


.bg-light {
    background-color: #e4e4e0!important;
}

@media (max-width: 1299) {
li.custom-list {
    color: #dfdfdd;
    letter-spacing: 0px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 18px;
}
}

@media (max-width: 991px) {
li.custom-list {
    letter-spacing: 0px;
    font-size: 14px;
    margin-bottom: 20px;
}
  
}

@media (min-width: 992px) {
.container, .container-lg, .container-md, .container-sm {
    max-width: 98%;
}
}

@media (max-width: 768px) {
  .col-md-6.col-12.ps-2 {
    padding: 0px!important;
  }
  
  .col-md-6.col-12.pe-2 {
    padding: 0px!important;
  }
}


/* -=-=-=-=-=-=-=- INTRO -=-=-=-=-=-=-=-*/
section#intro {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-height: auto;
    margin-top: 0px;
}


.main-img-container {
  position: relative;
  top: 0;
  left: 0;
}

.main-img {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.4s;
  opacity: 1;
}

.secondary-img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}

a.main-img-link:hover .main-img {
    opacity: 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
section#intro {
    height: auto;
    min-height: auto;
}
}

/* -=-=-=-=-=-=-=- DIVIDER -=-=-=-=-=-=-=-*/
section#dividerOne {
    position: relative;
    width: 100vw;
    margin: 0px;
}

div#carouselDividerOne {
    overflow: hidden;
}

div#carouselDividerTwo {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: none;
}

section#intro2 {
    margin-top: -20px;
}

@media (max-width: 767px) {
section#dividerOne {
    position: relative;
    width: 100%;
    margin: 100px 0px 60px 0px;
}
  
section#intro2 {
    margin-top: -80px;
}
  
section#naturaleza {
    margin-top: -80px;
}
  
section#residencialComercial {
    margin-top: -80px;
}
}


/* -=-=-=-=-=-=-=- UBICACION -=-=-=-=-=-=-=-*/
section#ubicacion {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: auto;
    margin-top: 150px;
}

#ubicacion .side-text-container {
    margin-top: 0px;
}

.ubicacion-container {
    background-color: #757571;
    max-width: 90%;
    margin-left: 5%;
    border-radius: 15px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.25);
    padding: 0px 60px;
    margin-bottom: -20px;
    z-index: 1;
    position: relative;
}

.ubicacion-container p {
    color: #dfdfdd;
}

.ubicacion-container h1 {
    color: #dfdfdd;
}

@media (max-width: 768px) {
section#ubicacion {
    height: auto;
}
  
#ubicacion .side-text-container {
    margin-top: -80px;
}
  
section#ubicacion img {
    border-radius: 0px;
    width: 100%;
    margin-left: 0px;
}
  
.ubicacion-container {
    background-color: #757571;
    max-width: 100%;
    margin-left: 0%;
    border-radius: 15px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.25);
    padding: 0px 30px;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
    margin: 0px 10px -30px 10px;
}
}

/* -=-=-=-=-=-=-=- AMENITIES -=-=-=-=-=-=-=-*/
section#amenities {
    padding-bottom: 100px;
}

.amenities-container {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.side-text.left.amenities {
    top: 0px;
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0px;
}

.side-text.left.amenities h1.main-title {
    color: #808797;
}

.side-text.left.amenities h1.main-title::after {
    background-color: #b8b8b2;
}

.side-text.left.amenities p {
    color: #808797;
}

.side-text-container.amenities {
    padding: 0px 0px 0px 50px;
}

.icon.lg {
    filter: invert(1);
    opacity: 0.5;
}

.icon-text {
    color: #757570!important;
}

.amenities-icons {
    padding-right: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
}

section#dividerOne .dc-left {
    margin-bottom: 0px;
}

div#carouselAmenities {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

@media (max-width: 768px) {
section#amenities {
    height: auto;
    margin-top: -80px;
}
  
.amenities-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
  
.side-text-container.amenities {
    padding: 0px 0px 0px 0px;
}
  
.side-text.left.amenities {
    margin-top: -20px;
    margin-bottom: 0px;
    border-right: none;
}
  
.amenities-icons {
    padding-right: 0px;
    display: flex;
    flex-direction: row;
    max-width: 100vw;
    margin-bottom: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -70px;
}
  
.icon-text {
    position: relative;
    color: #dfdfdd;
    text-align: center;
    font-size: 10px!important;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 0px!important;
    font-weight: 400;
}
  
.icon.lg {
    width: 50px;
    height: 50px;
}
  
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    min-width: 25%;
    max-width: 25%;
}
  
section#dividerOne .dc-left {
    margin-bottom: 40px;
}
  
div#carouselAmenities {
    overflow: hidden;
    border-radius: 0px;
}
}


/* -=-=-=-=-=-=-=- DIVIDER SECTION -=-=-=-=-=-=-=-*/
.dc-left-img {
    position: relative;
    right: 0px;
    top: -30px;
}

.dc-left-text {
    width: calc(100% - 60px);
    left: 5px;
    position: relative;
}

.dc-right-img {
    position: relative;
    left: 0px;
    top: 0px;
}

.dc-right-text {
    width: calc(100% - 60px);
    left: 5px;
    position: relative;
    top: -30px;
}

.container.masterplan {
    padding: 0px 40px;
}


img.masterplan-img-1 {
    margin-bottom: 0px;
}

img.masterplan-img-2 {
    margin-top: -25px;
}

@media (max-width: 768px) {
.dc-left-img {
    right: 0px;
}
  
.dc-right-img {
    left: 0px;
}
  
.dc-left-text {
    width: 100%;
    left: 0px;
}
  
.dc-right-text {
     width: 100%;
    left: 0px;
  top: 30px;
}
  
.container.masterplan {
    padding: 0px 20px;
}
  
img.masterplan-img-1 {
    margin-bottom: -35px;
}
  
img.masterplan-img-2 {
    margin-top: 40px;
}
}

/* -=-=-=-=-=-=-=- CIUDAD INTELIGENTE -=-=-=-=-=-=-=-*/
blockquote.blockquote p {
    font-size: 18px;
    letter-spacing: 0px!important;
}

section#inteligente .sectionTitle {
    color: white;
}

@media (max-width: 768px) {
blockquote.blockquote p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0px!important;
}
}


/* -=-=-=-=-=-=-=- ALCYON TEXTO -=-=-=-=-=-=-=-*/
section#alcyon {
    padding-top: 200px;
    background-color: transparent;
    margin-top: 100px;
}

.alcyon-text {
    padding: 0px 20px 0px 0px;
}

img.logo-alcyon {
    width: 250px;
    margin-top: 20px;
}

.side-img-2 {
    width: calc(100% + 30px);
    height: auto;
    margin-bottom: -60px;
    position: relative;
    top: -30px;
    left: -30px;
    bottom: -30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-right: 1px solid #9d9d97;
}

.side-img-2 img {
    width: 100%;
    height: auto;
}

.alcyon-img-container {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.alcyon-img-container img {
    border-radius: 0px;
    box-shadow: none;
    position: absolute;
}


@media (max-width: 991px) {
.alcyon-img-container {
    width: calc(100% - 12px);
    margin-left: 12px;
    margin-top: -60px;
    border-radius: 5px;
    overflow: hidden;
    min-height: 670px;
}
}
@media (max-width: 768px) {
section#alcyon {
    padding-top: 200px;
}
  
p.sectionTitle {
    text-align: center;
}
  
.sectionTitleDivider {
    margin-left: auto;
    margin-right: auto;
}
  
h1.text-light.mb-4 {
    text-align: center;
}
  
section#introAlcyon ul {
    width: 80%;
    margin-left: 10%;
    margin-top: -20px;
    margin-bottom: 40px;
}
  
section#confort {
    margin-top: -120px;
}
  
section#floorplan {
    height: auto;
    padding-bottom: 100px;
    margin-top: -20px!important;
}
  
  
.alcyon-img-container {
    width: calc(100% - 12px);
    margin-left: 12px;
    margin-top: -60px;
    border-radius: 5px;
    overflow: hidden;
    min-height: 360px;
    margin-bottom: -60px;
}
  
.side-img-2 {
    width: calc(100% + 40px);
    height: 300px;
    margin-bottom: -60px;
    position: relative;
    top: -80px;
    left: -20px;
    bottom: 0px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border-right: none;
}
  
.side-img-2 img {
    width: 120%;
    height: auto;
}
  
img.logo-alcyon {
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
    margin-top: 0px;
}
  
section#alcyon ul {
    margin-left: 20px;
}
  
.alcyon-img-container img {
    border-radius: 5px;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 25%);
}
  
.alcyon-text {
    width: 100%;
    padding: 20px;
    margin-left: 0px;
}
  
a.btn.btn-primary.w-50 {
    width: 80%!important;
    margin-left: 10%;
    margin-bottom: 40px;
}
}

/* -=-=-=-=-=-=-=- MASTERPLAN -=-=-=-=-=-=-=-*/
section#masterplan {
    height: auto;
    min-height: auto;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
section#masterplan {
    margin-top: -80px;
}  
  
section#inteligente {
    margin-top: -80px;
}

}
/* -=-=-=-=-=-=-=- CONTACT -=-=-=-=-=-=-=-*/
section#contacto {
    margin-bottom: 0px;
}

section#contacto .side-text.right {
    margin-top: 0px;
}

@media (max-width: 768px) {
section#contacto .side-text.right {
    margin-top: -130px;
}
  
section#contacto {
    margin-bottom: 50px;
}
  
.img-contacto-container {
    max-height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

}



/* -=-=-=-=-=-=-=- FOOTER -=-=-=-=-=-=-=-*/
.footer {
    background-color: #757571;
    padding: 75px 0px 0px;
}

.footer p {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 14px;
    margin-top: 15px;
}

.footer h5 {
    font-family: 'Roboto Condensed';
    color: #dfdfdd;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer ul {
    list-style: none;
    padding: 0px;
}

.footer ul li a {
    font-family: 'Lato', sans-serif;
    color: #dfdfdd;
    letter-spacing: 0px;
    font-size: 15px;
    font-weight: 300;
}

.footer ul li a {
    transition: 0.4s;
    margin-left: -10px;
}

.footer ul li a::before {
    transition: 0.4s;
     content: '>';
    font-size: 12px;
    color: white;
    margin-right: 2px;
    position: relative;
    top: -1px;
    font-weight: 300;
    opacity: 0;
}

.footer ul li a:hover {
    transition: 0.4s;
    margin-left: 5px;
}

.footer ul li a:hover::before {
    transition: 0.4s;
    opacity: 1;
}

p.legales {
    text-transform: uppercase;
    font-size: 12px;
    color: #b5b5af;
    padding: 10px 0px;
}

img.footer-logo {
    margin-top: -35px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
}
}


/* -=-=-=-=-=-=-=- NAVBAR SCROLLED -=-=-=-=-=-=-=-*/
.header {
  background-color: #f1f1f1;
  padding: 30px;
  text-align: center;
}

.container.mynav {
    overflow: hidden;
}

a.navbar-brand {
    padding: 0px!important;
    margin: 0px!important;
}

a.navbar-brand img {
    width: auto;
    height: 85px;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

#navbar {
    overflow: visible;
    background-color: #757571;
    height: auto;
    transition: 0.4s;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
    border-bottom: 1px solid #8d8d86;
    z-index: 3;
}

#navbar a {
    float: left;
    display: block;
    color: rgba(255,255,255,0.35);
    text-align: center;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    transition: 0.4s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#navbar a:hover {
    color: #dfdfdd;
    transition: 0.4s;
}

#navbar a.active {
    background-color: transparent;
    color: #dfdfdd;
}

a.nav-link:after {
    display: block;
    content: '';
    border-bottom: solid 1px #dfdfdd;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    margin-top: 10px;
}

a.nav-link.over-none::after {
    display: none;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 15px;
}

a.nav-link:hover:after {
    transform: scaleX(0.5);
}

a.nav-link.active:after {
    transform: scaleX(0.5);
    margin-top: 10px;
}

.content {
  padding: 0px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
  padding-top: 100px;
}

.navbar-dark .navbar-toggler {
    color: transparent;
    border-color: transparent;
}


@media (max-width: 1288px) {
  a.navbar-brand img {
    width: auto;
    height: 65px;
}
}

@media (max-width: 767px) {
a.navbar-brand img {
    width: auto;
    height: 65px;
}
  
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    height: calc(100vh - 100px);
}
  
li.nav-item .nav-link {
    width: 100%;
    margin-top: 40px;
}
  
#navbar a {
    font-size: 18px;
}
}

/* -=-=-=-=-=-=-=- MOBILE MENU -=-==-=-=-=-=-=-=-*/
.animated-hamburger {
    width: 30px !important;
    height: 20px !important;
    position: relative !important;
    margin: 0px !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .5s ease-in-out !important;
    -moz-transition: .5s ease-in-out !important;
    -o-transition: .5s ease-in-out !important;
    transition: .5s ease-in-out !important;
    cursor: pointer !important;
    top: -4px;
}
    
.animated-hamburger span {
    display: block !important;
    position: absolute !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 9px !important;
    opacity: 1 !important;
    left: 0 !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .25s ease-in-out !important;
    -moz-transition: .25s ease-in-out !important;
    -o-transition: .25s ease-in-out !important;
    transition: .25s ease-in-out !important;
}
    
.animated-hamburger span {
    background: #bfbfbf !important;
}
    
.animated-hamburger span:nth-child(1) {
    top: 0px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}
    
.animated-hamburger span:nth-child(2) {
    top: 10px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}
    
.animated-hamburger span:nth-child(3) {
    top: 20px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}
    
.animated-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 0px !important;
    left: 0px !important;
}
    
.animated-hamburger.open span:nth-child(2) {
    width: 100% !important;
    opacity: 0 !important;
    transform: translateX(30px)!important;
}
    
.animated-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    top: 21px !important;
    left: 0px !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}


/* -=-=-=-=-=-=-=- VIDEO HOME -=-==-=-=-=-=-=-=-*/
.vid-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    background-color: black;
    overflow: hidden;
    max-height: 100vh;
    min-height: 100vh;
}

.home-logo {
    width: auto;
    height: 65%;
    margin-top: 80px;
}

.vid-overlay {
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
    position: absolute;
    z-index: 1;
}

video#myVideo {
    position: absolute;
    opacity: 0.85;
    width: auto;
    min-width: 100%;
    min-height: 100%;
}

.vid-content {
    position: absolute;
    top: 0px;
    text-align: center;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 200px;
}

.vid-content h1 {
    color: #d5d3be;
    letter-spacing: 3px;
    font-size: 24px;
    margin-top: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
.home-logo {
    width: 340px;
    height: auto;
    margin-bottom: 50px;
    margin-top: 40px;
}
  
.vid-content h1 {
    font-size: 26px;
    padding: 0px 60px;
    margin-top: 20px;
}
  
video#myVideo {
    max-height: 100%;
}
}


/* -=-=-=-=-=-=-=- DOWN ARROW -=-==-=-=-=-=-=-=-*/
a.btn-arrow {
    width: 100%;
    height: 100px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 20px;
}

a.btn-arrow p {
    letter-spacing: 4px!important;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}

.arrow {
    left: 15px;
    position: relative;
}


.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid #d5d3be;
    border-right: 2px solid #d5d3be;
    transform: rotate(45deg);
    margin: -30px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}


/* -=-=-=-=-=-=-=- BUTTONS -=-==-=-=-=-=-=-=-*/
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
  border-radius: 0px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.btn-primary {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}

.btn-primary:hover {
    color: #fff;
    background-color: #475058;
    border-color: #475058;
}

.btn-primary:focus {
    color: #fff;
    background-color: #475058;
    border-color: #475058;
}

@media (max-width: 991px) {
button.btn.btn-primary.w-25.rounded-0.float-end {
    width: 100%!important;
}
  
button.btn.btn-primary.w-50 {
    width: 100%!important;
    margin-left: 12px;
}
}

/* -=-=-=-=-=-=-=- CONTENTS -=-==-=-=-=-=-=-=-*/
h1.main-title {
    font-size: 2.25rem;
    letter-spacing: 0px;
    position: relative;
    margin-bottom: 35px;
    font-weight: 300;
    color: #dfdfdd;
}

h1.main-title::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: #dfdfdd;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
}

h1.main-title.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1.main-title.center::after {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

h1.main-title.dark {
    color: #808797;
}

h1.main-title.dark::after {
    background-color: #adb4c4;
}

.side-text-container {
    padding: 0px 50px;
}

.side-text {
    background-color: #75756f;
    padding: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 23%);
    border-radius: 15px;
}

.side-text.left {
    right: 0px;
    width: 115%;
}

.side-text.right {
    left: -25%;
    width: 125%;
}

.side-text.center {
    left: 0px;
    overflow: hidden;
    margin-top: -250px;
}

.side-text p {
    color: #dfdfdd;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
.side-img img {
    min-height: auto;
    width: 100%;
    max-height: 650px;
}
  
.side-text.left {
    right: -20px;
    width: calc(100% + 60px);
}

.side-text.right {
    left: -70px;
    width: calc(100% + 60px);
}
  
.side-text-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px;
    margin-top: 0px;
}
  
h1.main-title {
    font-size: 1.15rem;
}
  
}

@media (max-width: 1288px) {
.side-text.left {
    width: 120%;
}
  
.side-text.right {
    width: 120%;
    left: -20%;
}
}

@media (max-width: 768px) {
.side-text.left {
    right: 0px;
    width: 100%;
    top: 80px;
    margin-bottom: 80px;
}

.side-text.right {
    left: 0px;
    width: 100%;
    top: 80px;
    margin-bottom: 80px;
}
  
.side-text-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px;
    margin-top: 20px;
}

h1.main-title {
    font-size: 1.5rem;
}
  
.h2, h2 {
  font-size: 1rem;
}
  
.side-text.center {
    left: 0px;
    overflow: visible;
    margin-top: -250px;
    height: auto;
}
  
}


.btn-media-container {
    display: flex;
    margin: 15px 0px 25px 0px;
    flex-direction: row;
    justify-content: flex-start;
}

a.btn.btn-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 10px;
}

a.btn.btn-media span {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 0px;
    margin-left: 0px;
    transition: 0.4s;
    z-index: 1;
    font-weight: 500;
    margin-top: 10px;
    color: #dfdfdd;
}

a.btn.btn-media:hover span {
    transform: translatey(-25px);
    transition: 0.4s;
    opacity:1;
}

a.btn.btn-media.dark span {
    color: #757570;
}

a.btn.btn-media i {
    color: #dfdfdd;
    transition: 0.4s;
    z-index: 0;
}

a.btn.btn-media:hover i {
    transform: translatey(20px) scale(1.5);
    transition: 0.4s;
    opacity: 0.1;
}

a.btn.btn-media .icon-btn {
    color: #dfdfdd;
    transition: 0.4s;
    z-index: 0;
}

.icon.dark {
    filter: invert(0.6);
}

a.btn.btn-media:hover .icon-btn {
    transform: translatey(20px) scale(1.5);
    transition: 0.4s;
    opacity: 0.1;
}

.side-img {
    max-height: calc(80vh - 100px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.side-img img {
    animation: fadeIn 150s forwards;
    transform-origin: bottom right;
}

@keyframes fadeIn {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}


iframe.vista360 {
    width: 100%;
    min-height: 90vh;
}



/* -=-=-=-=-=-=-=- MODAL -=-==-=-=-=-=-=-=-*/
button.btn-close.position-absolute.top-0.end-0.p-3 {
    background-color: black!important;
    border-radius: 5rem!important;
    right: 10px!important;
    top: 10px!important;
    padding: 11px!important;
}




/* -=-=-=-=-=-=-=- ICONS -=-==-=-=-=-=-=-=-*/
.icon-main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iconBondContainer {
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon-container.bondades {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    float: left;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.icon {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
}

.icon.sm {
    width: 30px;
    height: 30px;
}

.icon.md {
    width: 50px;
    height: 50px;
}

.icon.lg {
    width: 60px;
    height: 60px;
}

.icon.xl {
    width: 120px;
    height: 120px;
    filter: invert(1);
    opacity: 0.5;
}

.cafeteria {background-image: url("icons/cafeteria.svg");}
.cine {background-image: url("icons/cine.svg");}
.coworking {background-image: url("icons/coworking.svg");}
.gimnasio {background-image: url("icons/gimnasio.svg");}
.parilla {background-image: url("icons/parilla.svg");}
.pileta {background-image: url("icons/pileta.svg");}
.solarium {background-image: url("icons/solarium.svg");}
.sum {background-image: url("icons/sum.svg");}
.terrazas {background-image: url("icons/terrazas.svg");}
.spa {background-image: url("icons/spa.svg");}

.play {background-image: url("icons/play.svg");}
.pdf {background-image: url("icons/pdf.svg");}
.ubicacion {background-image: url("icons/ubicacion.svg");}
.panoramica {background-image: url("icons/360.svg");}

.icon-text {
    position: relative;
    color: #dfdfdd;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}


/* -=-=-=-=-=-=-=- FORMS -=-==-=-=-=-=-=-=-*/
.form-control.custom {
    background-color: transparent;
    border-radius: 0px;
    border-color: #dbdbcf;
    padding: 1rem!important;
    height: calc(2.25rem + 7px);
    color: #757571;
}

.form-control.custom:focus {
    color: #757571;
    background-color: transparent;
    border-color: #62625c;
    outline: 0;
    box-shadow: none;
}

.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: 1;
    transform: scale(.85) translateY(-0.95rem) translateX(0rem);
    background-color: #ffffff;
    height: 24px!important;
    color: #9d9d97;
}

.form-floating>label {
    height: 42px!important;
}

.labelCustom {
    color: #757571;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    padding: 0.25rem!important;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 10px;
    transition: opacity .4s ease-in-out,transform .4s ease-in-out;
}

.center-text-container {
    background-color: #75756f;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 40px 20px 40px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 23%);
    border-radius: 15px;
    margin-bottom: 60px;
    margin-top: 100px;
}

.center-text {
    text-align: center;
}

.center-text h1.main-title::after {
    left: calc(50% - 30px);
}

.center-text p {
    color: #dddddb;
}

.smart-icon-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    float: left;
}

span.smart-icon-text {
    color: #dddddb;
    letter-spacing: 2px;
    font-size: 12px;
    margin-left: 10px;
    width: 90%;
    line-height: 13px;
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
}

.icon.smart {
    width: 40px;
    height: 40px;
    margin-left: 0px;
    margin-right: 0px;
    filter: invert(1);
    opacity: 0.8;
}

.smart-sonora {background-image: url("icons/smart-sonora.svg");}
.smart-perimetral {background-image: url("icons/smart-perimetral.svg");}
.smart-parking {background-image: url("icons/smart-parking.svg");}
.smart-peatonal {background-image: url("icons/smart-peatonal.svg");}
.smart-agua {background-image: url("icons/smart-agua.svg");}
.smart-basura {background-image: url("icons/smart-basura.svg");}
.smart-radiacion {background-image: url("icons/smart-radiacion.svg");}
.smart-climatico {background-image: url("icons/smart-climatico.svg");}
.smart-iluminacion {background-image: url("icons/smart-iluminacion.svg");}
.smart-signage {background-image: url("icons/smart-signage.svg");}
.smart-control {background-image: url("icons/smart-control.svg");}
.omniface {background-image: url("icons/omniface.svg");}

div#ciudadInteligente {
    overflow: hidden;
    margin-top: 0px;
}

@media (max-width: 768px) {
.center-text-container {
    width: 90%;
    padding: 20px;
}
  
div#ciudadInteligente {
    max-height: auto;
    overflow: hidden;
    margin-top: 50px;
}
}



/* -=-=-=-=-=-=-=- ALCYON -=-==-=-=-=-=-=-=-*/
.main-img-alcyon {
    min-height: 100vh;
    width: auto;
}

section#dividerOneAlcyon {
    position: relative;
    width: calc(100% - 100px);
    margin: 150px 50px 0px 50px;
}

.carousel.slide.alcyon {
    border-top-right-radius: 0px!important;
    border-top-left-radius: 0px!important;
}

section#amenitiesAlcyon {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding-bottom: 0px;
}

.amenities-container.alcyon {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}

.logoAlcyon-intro {
    margin-top: -20px;
    margin-left: 25%;
}

@media (max-width: 768px) {
.logoAlcyon-intro {
    margin-top: 20px;
    width: 90%;
    margin-left: 5%;
}
  
section#amenitiesAlcyon .main-title:after {
    left: calc(50% - 30px);
}
  
section#amenitiesAlcyon h6 {
    text-align: center!important;
}
  
section#amenitiesAlcyon {
    text-align: center!important;
}
  
section#dividerOneAlcyon {
    position: relative;
    width: calc(100% - 40px);
    margin: 150px 20px 0px 20px;
}
  
}

section#ambientes {
    padding-bottom: 100px;
}

section#ambientesAlcyon {
    padding-bottom: 100px;
    overflow: hidden;
}

section#ambientesAlcyon .dc-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div#carouselAmbientesAlcyon {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}



@media (max-width: 768px) {
div#carouselAmbientes {
    border-radius: 0px;
}
  
div#carouselAmbientesAlcyon {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
  
section#ambientesAlcyon {
    padding-bottom:0px;
    overflow: hidden;
}
  
section#ambientesAlcyon .col-md-6.col-12.ps-4.order-md-1.order-2 {
    width: 90%;
    margin-left: 10px;
}
  
}



section#floorplan {
    height: auto;
    padding-bottom: 100px;
}

/* --- PLANO ---*/
.content-section {
  display: none;
}

.content-section {
    position: relative;
}

.content-section.visible {
  opacity: 1;
  transition: 0.4s;
}

.content-container {
    position: relative;
}

.btn-group.unidades {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    width: 100%;
}

.unidad-highlight {
    position: relative;
    mix-blend-mode: multiply;
    max-width: 900px;
    float: right;
    width: 100%;
}

.unidad-text {
    position: relative;
    top: 0px;
}

.unidad-text-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15px;
    flex-wrap: wrap;
}

.unidad-sup-title {
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 10px;
}

.ratio.ratio-16x9 {
    background-color: white!important;
}

a.unidad-lightbox:hover {
    opacity: 0.4;
    transform: scale(1.15);
}

a.unidad-lightbox.w-100.mainPlano {
    z-index: 1;
    position: relative;
}

img.alcyonPlano {
    max-width: 900px;
    float: right;
}


img.planoHighlight {
    max-width: 900px;
    float: right;
}

.unidad-floorplan {
    position: relative;
    top: 0px;
}

.btn-units {
   letter-spacing: 0px; 
}


@media (max-width: 991px) {
.btn-group.unidades {
    width: 100%;
    margin-bottom: 80px;
    margin-top: -40px;
}
  
.unidad-highlight {
    position: relative;
    left: 0px;
    top: 50px;
    width: 100%;
    mix-blend-mode: multiply;
}

.content-container {
    position: relative;
    top: 50px;
}
  
.content-section {
    position: relative;
    margin-top: 0px;
}
  
.btn-units {
    line-height: 15px;
}
  
img.planoHighlight {
    max-width: 900px;
    float: right;
    margin-top: 0px;
}
  
.unidad-floorplan {
    position: relative;
    top: -100px;
}
  
.unidad-text {
    position: relative;
    top: -80px;
}
  
label.btn.btn-outline-dark.btn-units span {
    font-size: 10px;
    line-height: 10px!important;
    font-weight: normal;
    position: relative;
    top: -5px;
}
  
label.btn.btn-outline-dark.btn-units {
    font-size: 20px;
    font-weight: normal;
}
  
}


.img-comercial {
    position: relative;
    left: -50px;
    margin-bottom: 100px;
    width: calc(100% + 50px);
    margin-top: 30px;
}

div#carouselAmenitiesAlcyon {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.offcanvas-end.lg {
    width: 100VW;
}

.offcanvas-header .btn-close {
    box-sizing: content-box;
    width: 3em;
    height: 3em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/2em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.offcanvas-body .sectionTitle {
    font-size: 24px;
    margin-top: -20px;
}

.offcanvas-body h1 {
    font-size: 62px;
}

.offcanvas-body p {
    font-size: 24px;
}

@media (max-width: 768px) {
.offcanvas-body .sectionTitle {
    font-size: 16px;
    margin-top: -10px;
}
  
.offcanvas-body h1 {
    font-size: 25px;
    text-align: center;
}
  
.offcanvas-body p {
    font-size: 16px;
    line-height: 17px;
}
  
.icon.xl {
    width: 80px;
    height: 80px;
    filter: invert(1);
    opacity: 0.5;
}
}

.text-start.alcyon .row {
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.comodidades1 {background-image: url("icons/comodidades1.svg");}
.comodidades2 {background-image: url("icons/comodidades2.svg");}
.comodidades3 {background-image: url("icons/comodidades3.svg");}
.comodidades4 {background-image: url("icons/comodidades4.svg");}
.comodidades5 {background-image: url("icons/comodidades5.svg");}
.comodidades6 {background-image: url("icons/comodidades6.svg");}
.comodidades7 {background-image: url("icons/comodidades7.svg");}
.comodidades8 {background-image: url("icons/comodidades8.svg");}
.comodidades9 {background-image: url("icons/comodidades9.svg");}
.comodidades10 {background-image: url("icons/comodidades10.svg");}
.comodidades11 {background-image: url("icons/comodidades11.svg");}
.comodidades12 {background-image: url("icons/comodidades12.svg");}
.comodidades13 {background-image: url("icons/comodidades13.svg");}


@media (max-width: 768px) {
section#dividerOneAlcyon .dc-left .dc-left-img {
    width: 90%;
    left: -20px;
}
  
.img-comercial {
    width: 90%;
    right: -20px;
    margin-top: -30px;
    margin-bottom: 0px;
    left: auto;
    margin-left: 10%;
}
  
.offcanvas-end.lg {
    width: 100vw;
}

}

.sectionTitle {
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px!important;
    margin-top: 100px;
    font-family: 'Roboto Condensed', sans-serif;
}

.sectionTitleDivider {
    width: 60px;
    height: 1px;
    background-color: #7f8797;
    margin-bottom: 20px;
    margin-top: 10px;
}

.sectionTitleDivider.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.sectionTitleDivider.white {
    background-color: #dfdfdd;
}


.social {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    margin-top: -10px;
}

.social .nav-item .nav-link {
    font-size: 15px!important;
}


@media (max-width: 768px) {
.social {
    width: 100%;
    display: flex;
    margin-right: auto;
    flex-direction: column;
}

.social .nav-item .nav-link {
    font-size: 26px!important;
}
 
}



.carousel-control-next, .carousel-control-prev {
    width: 5%;
}

.carousel-control-next-icon {
    background-image: url("icons/next.svg");
}

.carousel-control-prev-icon {
    background-image: url("icons/prev.svg");
}

.compassContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.iconCompass {
    background-image: url(icons/compas.svg);
    width: 80px;
    height: 80px;
    position: absolute;
    margin-right: 0px;
    margin-bottom: -70px;
    opacity: 0.7;
    filter: invert(1);
}

@media (max-width: 768px) {
.iconCompass {
    width: 70px;
    height: 70px;
    margin-right: 0px;
    margin-bottom: -80px;
}
}

.footer p.xsmall {
    font-size: 11px;
}


.imgGridLg img {
    height: calc(100% - 18px);
    width: auto;
    margin-left: -10px;
}

.imgGridLg {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
}

.imgGridLg.right  img {
    height: calc(100% - 16px);
    width: auto;
    margin-left: 2px;
}









section#floorplan {
    height: auto;
    min-height: 840px!important;
}


#floor-plan {
    width: 100%;
    height: 390px;
    background-image: url( "../img/alcyon/unidades/base.svg" );
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.list-group {
    
}

#floor-plan svg {
    display: block;
    width: auto;
    height: auto;  
    background-image:url( "../img/alcyon/unidades/unitNumbers.svg" );
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}


a.uniLink polygon {
    fill: #d2effc80;
    mix-blend-mode: multiply;
}

a:hover.uniLink polygon {
    fill: #88d6f6;
}

a.uniLink.list-group-item.active  polygon {
    fill: #88d6f6;
    mix-blend-mode: multiply;  
}

#uniContent > div {
    display: none;
    width: 50%;
    margin: 0 auto;
    position: absolute;
    background-color: white;
    right: 0px;
    z-index: 1;
}

#uniContent > div:target {
  display: block;
}

#uniContent > div a.hide {
  display: block;
  text-align: right;
}

div#uniContent {
    height: 620px;
}

.deptoDesc {
    width: 100vw;
    left: 0px;
    position: absolute;
    z-index: -1;
    margin-left: -100%;
    background-color: white;
}

.deptoText {
    margin-top: 380px;
    margin-left: 50px;
    position: relative;
    max-width: 530px;
}

.deptoText h5 {
    font-weight: bold;
    color: #3f3e4d;
}

.deptoImgs {
    width: 100%;
    margin-top: 0px;
}

.compass {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    float: right;
    margin-right: 40px;
    margin-top: -20px;
}


.apartImgContainer {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}

.additionalImages {
    display: flex;
    flex-direction: row;
    align-content: center;
    position: relative;
    justify-content: center;
    margin-top: -20px;
    max-width: 100%;
}

.additionalImages .unidad-lightbox {
    padding: 0px 10px;
    margin-top: 10px;
    width: auto!important;
}

.additionalImages .unidad-lightbox img {
    height: 120px;
    width: auto!important;
}


@media (max-width: 991px) {
#floor-plan {
    width: 100%;
    height: 390px;
    max-width: 600px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
  
.additionalImages {
    margin-top: 40px;
    overflow: hidden;
}
  
.deptoDesc {
    width: 40%;
    left: 0px;
    position: absolute;
    z-index: -1;
    margin-left: 0px;
}
  
.deptoText {
    margin-top: -160px;
    position: relative;
    max-width: 90%;
    margin-left: 5%;
}
  
.deptoImgs {
    width: 60%;
    right: 0px;
    position: absolute;
    margin-top: -210px;
}
  
div#content {
    height: auto!important;
}
  
section#floorplan {
    height: auto;
    padding-bottom: 0px;
}

section#floorplan {
    height: 100%!important;
}
  
div#uniContent {
    height: 980px;
    margin-top: 150px;
}
}

@media (max-width: 767px) {
#uniContent > div {
    width: 100%;
    left: 0px;
    overflow: hidden;
    padding-top: 0px;
}
  
section#floorplan {
    min-height: 100%!important;
    height: 100%!important;
    position: relative;
}
  
div#uniContent {
    min-height: 100%;
    margin-top: 0px;
}
  
a.unidad-lightbox.w-100.mainPlano {
    pointer-events: none;
}
  
.apartImgContainer {
    height: auto;
    width: 100vw;
}
  
.additionalImages {
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: auto;
    justify-content: flex-start;
    margin-bottom: 40px;
}
  
.additionalImages .unidad-lightbox {
    padding: 0px;
    margin-top: 10px;
    width: auto!important;
}
  
.additionalImages .unidad-lightbox img {
    height: auto;
    width: 100%!important;
}
  
section#contacto {
    margin-bottom: 50px;
    margin-top: 50px;
    z-index: 1;
    position: relative;
}

#floor-plan {
    height: 240px;
}

.deptoDesc {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 180px;
}
  
.deptoImgs {
    width: 100%;
    margin-top: -10px;
    height: 100%;
    position: relative;
    margin-left: 0%;
    margin-bottom: 20px;
}
}

.comLogo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -20px;
}
