/* FONTS */

/* AXIFORMA */

@font-face {
    font-family: "axReg";
    src: url('../assets/type/AxiformaRegular.otf');
}

.axReg {
    font-family: "axReg";
}

@font-face {
    font-family: "axBold";
    src: url('../assets/type/AxiformaBlack.otf');
}

.axBold {
    font-family: "axBold";
}

@font-face {
    font-family: "axThin";
    src: url('../assets/type/AxiformaThin.otf');
}

.axThin {
    font-family: "axThin";
}

@font-face {
    font-family: "axItalic";
    src: url('../assets/type/AxiformaItalic.otf');
}

.axItalic {
    font-family: "axItalic";
}

/* HELVETICA NEUE */
@font-face {
    font-family: "helvReg";
    src: url('../assets/type/HelveticaNeueRoman.otf');
}

.helvReg {
    font-family: 'helvReg';
}

/* GENRAL */

* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #082F47;
    --primary-purple: #C796FF;
    --primary-green: #94D7B6;
    --grey1: #A4A5A7;
    --grey2: #E2E2E2;
    --grey3: #e7e8e3;
    --light: #fff;
    --dark: #000;
    --blue-screen: rgba(15, 53, 82, 0.85);

    --swiper-navigation-color: #082F47;
    --swiper-theme-color: #082F47;
}

::-moz-selection {
    color: #082F47;
    background: var(--primary-green);
}

::selection {
    color: #082F47;
    background: var(--primary-green);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100vw;
    font-family: 'axReg', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    text-wrap: balance;
}

a {
    color: var(--light);
    text-decoration: none;
}

p {
    text-wrap: pretty;
}

/* MAIN NAV */

.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
}


.navbar.sticky {
    position: sticky;
    top: 0;
    /* height: 100px; */
    border-bottom: 1px solid var(--primary-green);
    background-color: rgba(15, 53, 82, 1);
    z-index: 10;
    transition: all ease-in-out 0.4s;
}

.menu {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.mainNav {
    position: relative;
    /* padding: 20px; */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logoMainNav {
    /* padding: 20px; */
    width: 60%;
}

.navItem {
    position: relative;
    color: var(--light);
    cursor: pointer;
    font-family: 'axItalic', sans-serif;
}

.navItem::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
    z-index: 1;
}

.navItem:hover::after {
    width: 100%;
}

/* RESPONSIVE MENU */

.respButton {
    display: none;
}

.menu-button {
    border: 0;
    background-color: var(--primary-blue);
    padding: 15px;
    border-radius: 50px;
    margin: 10px;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 19;
    outline: none;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.menu-button:hover,
.menu-button.activeM {
    background-color: var(--primary-green);
}

.menu-button:hover .menu-bar,
.menu-button.activeM .menu-bar {
    background-color: var(--light);
}

.menu-button .menu-bar {
    width: 30px;
    height: 2px;
    background-color: var(--light);
    position: relative;
    margin: 4px 0;
    transform-origin: center center;
}

#menuResp {
    width: 0;
    height: 0;
    position: fixed;
    background-color: var(--blue-screen);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 17;
}

.menu-nav {
    list-style: none;
    margin: 0;
    padding: 30px 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 2rem;
    overflow: hidden;
}

.menu-nav a {
    text-decoration: none;
    color: var(--light);
    padding: 10px;
    display: block;
    opacity: 0;
    font-family: var(--type-alfa);
}

.menu-nav a:hover {
    background-color: var(--primary-green);
}

/* HERO SECTION */

.video-container {
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; */
}

.fullscreen-video {
    display: block;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.responsive-vid {
    display: none;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heroContent {
    position: relative;
    color: #f1f1f1;
    padding: 20px;
    margin-top: 10%;
    margin-left: 5%;
}

.heroReg {
    font-family: 'axReg', sans-serif;
    font-weight: 100;
}

.heroItalic {
    font-family: 'axItalic', sans-serif;
}

.heroPattern {
    position: absolute;
    width: 300px;
    right: 0;
    bottom:0;
}

#moreInfo {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    font-family: 'axReg', sans-serif;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    margin-top: 10px;
}

#moreInfo:hover {
    background: var(--primary-green);
    color: var(--light);
    font-family: 'axItalic', sans-serif;
}

/* MASTER PLAN*/

.masterPlan {
    position: relative;
    display: flex;
}

.masterPlanTitle,
.masterPlanTxt {
    padding: 35px 0;
}

.masterPlanTitle {
    font-size: 35px;
    color: var(--primary-blue);
    font-family: 'axItalic', sans-serif;
}

.masterPlanTxt {
    font-size: 17px;
    color: var(--primary-blue);
    font-family: 'axReg', sans-serif;
}

.tabsContainer {
    width: 40%;
    background: var(--grey1);
    padding: 30px;
}

.mapContainer {
    width: 60%;
}

/* SVG MAP STYLES */
#Capa_1 {
    height: 100%;
}

.cls-1 {
    fill: #94d7b6;
    cursor: pointer;
}

.cls-1,
.cls-2,
.cls-3,
.cls-4,
.cls-5 {
    stroke-width: 0px;
}

.cls-6,
.cls-7 {
    isolation: isolate;
}

.cls-2 {
    fill: #082f47;
    cursor: pointer;
}

.cls-3 {
    fill: #c796ff;
    cursor: pointer;
}

.cls-4 {
    fill: none;
}

.cls-5 {
    fill: url(#gradient_map);
}

.cls-8 {
    clip-path: url(#clippath);
}

.cls-7 {
    fill: #fff;
    font-family: MyriadPro-Regular, 'Myriad Pro';
    font-size: 26.1px;
}

/* TABS MASTERPLAN */

.tabs {
    font-size: 15px;
    display: flex;
}

.tabset {
    display: flex;
    flex-direction: column;
}

.tab {
    margin-right: 45px;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--light);
    transition: all ease-in-out 0.3s;
}

.tab.active {
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 1px solid var(--primary-blue);
}

/* FIRST SLIDER */

/* SWIPER */

.swiperContainer {
    padding: 45px;
    background: var(--grey2);
}

.swiperTitle {
    text-align: center;
    color: var(--primary-blue);
    font-size: 30px;
    font-family: 'axItalic', sans-serif;
    margin-bottom: 35px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary-purple);
    opacity: 0.6;
    padding: 30px;
    transform: translateY(190px);
    transition: all ease-in-out 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.infoHoverContainer {
    position: absolute;
    text-align: right;
    padding: 15px;
    transform: translateY(-100px);
    width: 100%;
    height: 100px;
    color: var(--light);
    background: rgb(8, 47, 71);
    background: linear-gradient(0deg, rgba(8, 47, 71, 1) 0%, rgba(8, 47, 71, 0.09287464985994398) 100%);
}

.swiperPattern {
    position: absolute;
    width: 300px;
    right: 0;
    margin: 25px 0;
}

/* APARTMENTS SECTION */

.apartmentsInfo {
    display: flex;
    height: 155px;
    width: 100%;
    justify-content: space-between;
    padding: 45px;
}

.infoAp {
    color: var(--primary-blue);
    font-size: 30px;
    font-weight: 600;
    height: 100px;
    width: 30%;
}

.infoApTxt {
    font-family: 'helvReg', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

#getQuote {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    font-family: 'axReg', sans-serif;
    border: 2px solid var(--primary-purple);
    background: var(--grey2);
    color: var(--primary-blue);
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    margin-top: 10px;
}

#getQuote:hover {
    background: var(--primary-purple);
    color: var(--light);
    font-family: 'axItalic', sans-serif;
}

/* APARTMENT TABS */

/* TABS STYLES */

.apTabsContainer {
    background-color: var(--light);
    width: 100%;
}

.tabsAP {
    display: flex;
    justify-content: space-around;
    font-weight: 400;
    font-size: 15px;
}

.tabAP {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--primary-green);
    color: var(--primary-blue);
    transition: ease-in 0.3s;
}

.tabAP.active {
    background-color: var(--light);
    border-bottom: 1px solid var(--primary-blue);
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'axItalic', sans-serif;
}

.tab-content {
    display: none;
    padding: 20px;
    margin-top: 15px;
}

.dFlex {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.tab-content.active {
    display: flex;
    flex-wrap: nowrap;
}

.tab-content>div {
    flex: 1;
    margin-right: 10px;
    padding: 0 60px;
}

.tab-content>div:last-child {
    margin-right: 0;
}

.modelInfo {
    font-size: 25px;
    font-family: 'axItalic';
    border-bottom: 1px solid var(--primary-purple);
    color: var(--primary-blue);
}

.highlighted {
    color: var(--primary-blue);
    font-size: 18px;
}

.distribution {
    color: var(--primary-blue)
}

.distTitle {
    font-size: 20px;
    margin-top: 30px;
    color: var(--primary-color);
}

.unstyleList {
    list-style: none;
}

.styleListItem {
    padding: 7px 0;
    border-bottom: 1px solid var(--grey2);
}

.inquiryBtn {
    margin-top: 25px;
}

.moreInfoBtn {
    padding: 15px;
    background-color: var(--grey1);
    background-color: transparent;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
}

.moreInfoBtn:hover {
    background-color: var(--primary-purple);
    color: var(--light);
    font-family: 'axItalic', sans-serif;
    transition: all ease-in 0.3s;
}

.moreInfoHBtn {
    padding: 15px;
    background-color: var(--grey1);
    background-color: transparent;
    border: 1px solid var(--primary-green);
    color: var(--light);
}

.moreInfoHBtn:hover {
    background-color: var(--primary-green);
    color: var(--light);
    font-family: 'axItalic', sans-serif;
    transition: all ease-in 0.3s;
}

.disclaimer {
    margin-top: 35px;
}

.disclaimerTxt {
    font-size: 10px;
    color: var(--primary-color);
}

.levelsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.baseContainer {
    margin-top: 35px
}

.imgBase {
    max-width: 600px;
    max-height: 600px;
}

.swiperContainer2 {
    width: 200px;
}

.imgContain {
    display: block;
    width: 100% !important;
    object-fit: contain !important;
}

/* Amenities Section*/

.amenitiesPlan {
    padding: 35px;
}

.amTitle {
    color: var(--primary-blue);
    font-size: 30px;
    font-weight: 600;
}

.tabAmContainer {
    display: flex;
    justify-content: space-around;
}

.tabsAmenities {
    padding: 0 35px;
    color: var(--primary-blue);
}

.mapAmenitiesContainer {
    margin-left: -15px;
    margin-top: -160px;
    /*position: relative;*/
    width: 100%;
    /*z-index: -1;*/
}

/* AMENITIES SVG STYLES */

.clsAm1 {
    isolation: isolate;
}

.clsAm2 {
    fill: #082f47;
    cursor: pointer;
}

.clsAm2,
.clsAm3,
.clsAm4,
.clsAm5 {
    stroke-width: 0px;
    cursor: pointer;
}

.clsAm3 {
    fill: #c796ff;
    cursor: pointer;
}

.clsAm6 {
    fill: none;
    stroke: #c796ff;
    cursor: pointer;
    stroke-miterlimit: 10;
}

.clsAm4 {
    fill: #fff;
    cursor: pointer;
}

.clsAm5 {
    fill: url(#bottomGradient);
}

.changeColorFill {
    fill: #C796FF;
}

/* CREATORS SECTION */

.creatorsContainer {
    background-color: var(--primary-blue);
}

.creatorsTitle {
    text-align: center;
    color: var(--light);
    font-size: 28px;
    padding: 25px 0;
    font-weight: 100;
}

.tabsCR {
    display: flex;
    justify-content: space-around;
    font-weight: 400;
    font-size: 15px;
}

.tabCR {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--primary-green);
    color: var(--light);
    transition: ease-in 0.3s;
}

.tabCR.active {
    border-bottom: 1px solid var(--primary-purple);
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'axItalic', sans-serif;
}

.creatorTop {
    display: flex;
    justify-content: space-around;
}

.creatorBrand {
    width: 40%;
}

.creatorBrand img {
    max-width: 50%;
    max-height: 170px;
    text-align: right;
}

.creatorContent {
    width: 40%;
    color: var(--light);
    font-size: 14px;
    text-align: justify;
}

.creatorGallery {
    display: flex;
    justify-content: space-around;
    margin: 35px 0;
}

.cGalleryItem {
    width: 19%;
}

.cGalleryItem img {
    width: 100%;
}

.tab-content-cr {
    display: none;
    padding: 20px;
    margin-top: 15px;
}

.tab-content-cr.active {
    display: flex;
    flex-wrap: nowrap;
}

.tab-content-cr>div {
    flex: 1;
    margin-right: 10px;
    padding: 0 60px;
}

.tab-content-cr>div:last-child {
    margin-right: 0;
}

/* AMENITIES GALLERY */

.amenitiesGaleryTitle {
    text-align: center;
    padding: 55px;
    color: var(--primary-blue);
}

.titleAmenities {
    font-size: 36px;
    color: var(--primary-blue);
}

.gSAmcontainer {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.leftSAm {
    width: 70%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.rightSAm {
    width: 30%;
    height: 50%;
    background-color: var(--primary-green);
    color: var(--primary-blue);
    padding: 15px 40px;
    margin-top: 5%;
    margin-left: -70px;
    z-index: 5;
    position: relative;
}

.tabSAm {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: 1px solid var(--light);
}

.tabSAm.active {
    font-family: 'axItalic', sans-serif;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-blue);
}

.imageSAm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease;
}

.arrowsContainer {
    display: flex;
}

.arrowSAm {
    cursor: pointer;
    font-size: 24px;
    margin: 5px;
}

/* BAJA MAP */

.bajaMapContainer {
    background-color: var(--grey3);
    display: flex;
    padding: 60px 60px 0 60px;
}

.bajaMapTitle {
    font-size: 30px;
}

.bajaMapTxt {
    font-size: 19px;
}

.bajaMapTitle,
.bajaMapTxt {
    color: var(--primary-blue)
}

.bajaMapLeft {
    width: 35%;
}

.bajaMapRight {
    width: 65%;
}

.bajaMapButtons {
    display: flex;
}

.mapsBtn {
    padding: 15px;
    margin: 5px;
    background-color: var(--grey2);
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
}

.mapsBtn:hover {
    background-color: var(--primary-purple);
    color: var(--light);
    font-family: 'axItalic', sans-serif;
    transition: all ease-in-out 0.3s;
}

.bajaMapImg img {
    max-width: 100%;
}

/* CONTACT */

label {
    color: var(--light);
}

.contactContainer {
    background-color: var(--grey3);
    display: flex;
}

.contactLeft,
.contactRight {
    padding: 55px 85px;
}

.contactLeft {
    width: 35%;
}

.contactRight {
    background-color: var(--primary-blue);
    width: 65%;
}

.patternContact {
    transform: translateX(60px);
}

#datos_formulario {
    transform: translateX(60px);
}

.contactGroup {
    padding: 25px 0;
    color: var(--primary-blue);
}

.titleCtc {
    font-family: 'axItalic', sans-serif;
    font-size: 25px;
}

.typeCtc {
    font-family: 'axItalic', sans-serif;
    font-weight: 900;
}

.formTitleContainer {
    padding: 25px 0;
    color: var(--light);
}

.bgSize {
    font-size: 42px;
    font-weight: 100;
}

.smSize {
    font-size: 18px;
}

/* CONTACT FORM */

input[type="text"],
input[type="email"],
input[type="tel"] {
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: var(--primary-blue);
    font-family: 'axReg';
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    width: 90%;
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all .15s ease;
    appearance: none;
    background: none;
    border: none;
    color: #14230f;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 8px;
    position: relative;
    text-transform: uppercase;
    transition: all .15s ease;
}

.button::before,
.button::after {
    -webkit-transition: all .15s ease;
    border: 1px solid #4e8c6d;
    content: '';
    display: block;
    height: calc(50% - 5px);
    left: 0;
    position: absolute;
    right: 0;
    transition: all .15s ease;
}

.button::before {
    top: 0;
    border-bottom-width: 0;
}

.button::after {
    bottom: 0;
    border-top-width: 0;
}

.button:active,
.button:focus {
    outline: none;
}

.button:active::before,
.button:active::after {
    right: 3px;
    left: 3px;
}

.button:active::before {
    top: 3px;
}

.button:active::after {
    bottom: 3px;
}

.button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: var(--primary-green);
    overflow: hidden;
    -webkit-box-shadow: inset 0px 0px 0px 1px transparent;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
}

.button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #c796ff;
    -webkit-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    transform: skew(-15deg);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.button_text {
    position: relative;
}

.button:hover {
    color: #0f1923;
}

.button:hover .button_sl {
    width: calc(100% + 15px);
}

.button:hover .button_lg::after {
    background-color: #fff;
}

.text-danger {
    color: var(--primary-purple);
}

.button:disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* PRIVACY */

.privacyN {
    color: var(--primary-blue);
}

.privacyN:hover {
    font-style: italic;
    text-decoration: underline;
}

/* Gsap Styles */

/* OVERLAY
=========================== */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999;
}

.first {
    background: var(--primary-green);
}

.second {
    background: var(--primary-green);
    left: 33.3%;
}

.third {
    background: var(--primary-green);
    left: 66.6%;
}

/* WRAPPER
  =========================== */
.wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(1.5rem, 1fr) minmax(min-content, 1fr) minmax(1.5rem,
            1fr);
    grid-template-rows: auto 1fr auto;
}

/* RESPONSIVE */

/* GENERAL RESPONSIVE MENU */

@media only screen and (min-width:0px) and (max-width: 990px) {
    .navbar {
        display: none;
    }

    .respButton {
        display: block;
    }

    .heroPattern {
        width: 220px;
    }
}

/* 0px - 320px */
@media screen and (min-width:0px) and (max-width:320px) {
    .fullscreen-video {
        display: none;
    }
    
    .responsive-vid {
        display: block;
    }
    .masterPlan {
        flex-direction: column;
        margin-top: 10%;
    }

    .tabsContainer {
        width: 100%;
    }

    .mapContainer {
        width: 100%;
    }

    .swiperContainer {
        margin-top: -15px;
    }

    .apartmentsInfo {
        flex-direction: column;
    }

    .infoAp {
        width: 100%;
        font-size: 22px;
    }

    .infoApTxt {
        font-size: 16px;
    }

    .apTabsContainer {
        margin-top: 160px;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .tab-content>div {
        padding: 0 11px;
    }

    .dFlex {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .tabsAP {
        overflow-x: scroll;
        font-size: 12px;
    }

    .imgBase {
        max-width: calc(125%);
        margin-left: -30px;
    }

    .swiperContainer2 {
        width: 100%;
        margin-top: 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        transform: translateY(0);
    }

    .amenitiesPlan {
        flex-direction: column;
    }

    .tabAmContainer {
        flex-direction: column;
    }

    .amTitle {
        font-size: 21px;
    }

    .sello>img {
        max-width: 100px;
    }

    .tabsAmenities {
        padding: 0 10px;
    }

    .mapAmenitiesContainer {
        margin-top: 0;
        margin-left: -55px;
        width: 145%;
    }

    .amenitiesGaleryTitle {
        padding: 30px;
    }

    .titleAmenities {
        font-size: 24px;
    }

    .gSAmcontainer {
        flex-direction: column-reverse;
    }

    .leftSAm {
        width: 100%;
        height: 175px;
    }

    .rightSAm {
        width: 100%;
        margin-left: 0;
    }

    .creatorsTitle {
        font-size: 22px;
    }

    .tabsCR {
        overflow-x: scroll;
    }

    .creatorTop {
        flex-direction: column;
    }

    .creatorBrand,
    .creatorContent {
        width: 100%;
    }

    .tab-content-cr {
        padding: 0;
    }

    .tab-content-cr>div {
        padding: 0 15px;
    }

    .bajaMapContainer {
        flex-direction: column;
    }

    .bajaMapLeft,
    .bajaMapRight {
        width: 100%;
    }

    .bajaMapTitle {
        text-align: center;
        font-size: 22px;
    }

    .bajaMapTxt {
        font-size: 16px;
        text-align: center;
    }

    .mapsBtn {
        font-size: 16px;
        padding: 5px;
        margin: 5px;
    }

    .bajaMapImg {
        margin-top: 30px;
        margin-left: -55px;
        width: 320px;
    }

    .contactContainer {
        flex-direction: column;
    }

    .contactLeft,
    .contactRight {
        width: 100%;
    }

    .contactLeft {
        padding: 10px 15px;
        text-align: center;
    }

    .contactRight {
        padding: 10px 15px;
    }

    #datos_formulario {
        transform: translateX(0);
    }

    .bgSize {
        font-size: 22px;
        font-weight: 100;
    }

}

/* 320px - 430px*/

@media screen and (min-width: 320px) and (max-width: 430px) {
    .fullscreen-video {
        display: none;
    }
    
    .responsive-vid {
        display: block;
    }
    .heroContent {
        margin-top: 20%;
    }

    .masterPlan {
        flex-direction: column;
        margin-top: 70%;
    }

    .tabsContainer {
        width: 100%;
    }

    .mapContainer {
        width: 100%;
    }

    .swiperContainer {
        margin-top: -15px;
    }

    .apartmentsInfo {
        flex-direction: column;
    }

    .infoAp {
        width: 100%;
        font-size: 29px;
    }

    .infoApTxt {
        font-size: 16px;
    }

    .apTabsContainer {
        margin-top: 160px;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .tab-content>div {
        padding: 0 11px;
    }

    .dFlex {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .tabsAP {
        overflow-x: scroll;
        font-size: 12px;
    }

    .imgBase {
        max-width: calc(125%);
        margin-left: -30px;
    }

    .swiperContainer2 {
        width: 100%;
        margin-top: 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        transform: translateY(0);
    }

    .amenitiesPlan {
        flex-direction: column;
    }

    .tabAmContainer {
        flex-direction: column;
    }

    .amTitle {
        font-size: 21px;
    }

    .sello>img {
        max-width: 100px;
    }

    .tabsAmenities {
        padding: 0 10px;
    }

    .mapAmenitiesContainer {
        margin-top: -20px;
        margin-left: -55px;
        width: 135%;
    }

    .amenitiesGaleryTitle {
        padding: 30px;
    }

    .titleAmenities {
        font-size: 24px;
    }

    .gSAmcontainer {
        flex-direction: column-reverse;
    }

    .leftSAm {
        width: 100%;
        height: 175px;
    }

    .rightSAm {
        width: 100%;
        margin-left: 0;
    }

    .creatorsTitle {
        font-size: 22px;
    }

    .tabsCR {
        overflow-x: scroll;
    }

    .creatorTop {
        flex-direction: column;
    }

    .creatorBrand,
    .creatorContent {
        width: 100%;
    }

    .tab-content-cr {
        padding: 0;
    }

    .tab-content-cr>div {
        padding: 0 15px;
    }

    .bajaMapContainer {
        flex-direction: column;
    }

    .bajaMapLeft,
    .bajaMapRight {
        width: 100%;
    }

    .bajaMapTitle {
        text-align: center;
        font-size: 22px;
    }

    .bajaMapTxt {
        font-size: 16px;
        text-align: center;
    }

    .mapsBtn {
        font-size: 16px;
        padding: 5px;
        margin: 5px;
    }

    .bajaMapImg {
        margin-top: 30px;
        margin-left: -55px;
        width: 428px;
    }

    .contactContainer {
        flex-direction: column;
    }

    .contactLeft,
    .contactRight {
        width: 100%;
    }

    .contactLeft {
        padding: 10px 15px;
        text-align: center;
    }

    .contactRight {
        padding: 10px 15px;
    }

    #datos_formulario {
        transform: translateX(0);
    }

    .bgSize {
        font-size: 22px;
        font-weight: 100;
    }

    .patternContact {
        display: none;
    }
}

/* 430px - 768px */

@media screen and (min-width: 430px) and (max-width: 768px) {
    .fullscreen-video {
        display: none;
    }
    
    .responsive-vid {
        display: block;
    }
    .heroContent {
        margin-top: 40%;
    }

    .masterPlan {
        margin-top: 50%;
        flex-direction: column;
    }

    .tabsContainer {
        width: 100%;
    }

    .mapContainer {
        width: 100%;
    }

    .swiperContainer {
        margin-top: -10px;
    }

    .apartmentsInfo {
        flex-direction: column;
    }

    .infoAp {
        width: 100%;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .apTabsContainer {
        margin-top: 125px;
    }

    .dFlex {
        width: 100%;
    }

    .tabAmContainer {
        flex-direction: column;
    }

    .tabAmContainer {
        width: 60%;
    }

    .mapAmenitiesContainer {
        margin-top: -20px;
    }

    .leftSAm {
        width: 100%;
        margin-top: 7%;
        height: 450px;
    }

    .rightSAm {
        margin-top: 0;
    }

    .creatorTop {
        flex-direction: column;
    }

    .creatorBrand,
    .creatorContent {
        width: 100%;
    }

    .mapsBtn {
        font-size: 16px;
        padding: 5px;
        margin: 5px;
    }

    .bajaMapLeft {
        margin-right: 35px;
    }

    .bajaMapImg img {
        max-width: 110%;
    }

    .contactContainer {
        flex-direction: column;
    }

    .contactLeft,
    .contactRight {
        width: 100%;
    }

    .contactLeft {
        text-align: center;
    }

    .patternContact {
        transform: translate(0);
        margin-top: -210px;
    }

    #datos_formulario {
        transform: translateX(0);
    }
}

/* 768px - 834 px */

@media screen and (min-width: 768px) and (max-width: 834px) {
    .heroContent {
        margin-top: 30%;
    }

    .masterPlan {
        margin-top: 43%;
        flex-direction: column;
    }

    .tabsContainer {
        width: 100%;
    }

    .mapContainer {
        width: 100%;
    }

    .swiperContainer {
        margin-top: -10px;
    }

    .apTabsContainer {
        margin-top: 100px;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .dFlex {
        width: 100%;
    }

    .imgBase {
        max-width: 820px;
        max-height: 820px;
        margin-left: -45px;
    }

    .swiperContainer2 {
        width: 100%;
        margin-top: 15px;
    }

    .mapAmenitiesContainer {
        margin-top: -40px;
    }

    .leftSAm {
        width: 100%;
        margin-top: 2%;
        height: 450px;
    }

    .rightSAm {
        margin-top: 0;
    }

    .creatorTop {
        flex-direction: column;
    }

    .creatorBrand,
    .creatorContent {
        width: 100%;
    }

    .bajaMapLeft {
        margin-right: 35px;
    }

    .bajaMapImg img {
        max-width: 110%;
    }

    .contactContainer {
        flex-direction: column;
    }

    .contactLeft,
    .contactRight {
        width: 100%;
    }

    .contactLeft {
        text-align: center;
    }

    .patternContact {
        transform: translate(0);
        margin-top: -210px;
    }

    #datos_formulario {
        transform: translateX(0);
    }
}

/* 834px - 1280px */

@media screen and (min-width: 834px) and (max-width: 1280px) {
    .heroContent {
        margin-top: 10%;
    }
    .masterPlan {
        margin-top: 21%;
    }
    .mapAmenitiesContainer {
        margin-top: -35px;
    }
}

/* 1280px - 1440px */

@media screen and (min-width: 1280px) and (max-width: 1440px) {
    .heroContent {
        margin-top: 10%;
    }
    .masterPlan {
        margin-top: 19%;
    }
    .mapAmenitiesContainer {
        margin-top: -35px;
    }
}

/* 1440px - 1920px */

@media screen and (min-width: 1440px) and (max-width: 1920px) {
    .heroContent {
        margin-top: 15%;
    }
    .masterPlan {
        margin-top: 11%;
    }
    .mapAmenitiesContainer {
        margin-top: -35px;
    }
    .leftSAm {
        height: 755px;
    }
    .rightSAm {
        margin-top: 10%;
    }
}

/* 1920px - 2048px */

@media screen and (min-width: 1920px) and (max-width: 2048px) {
    .heroContent {
        margin-top: 12%;
    }
    .masterPlan {
        margin-top: 20%;
    }
    .mapAmenitiesContainer {
        margin-top: -35px;
    }
    .leftSAm {
        height: 755px;
    }
    .rightSAm {
        margin-top: 10%;
    }
}

/* 
/* LANDSCAPE */

/*
@media screen and (orientation: landscape) {
    body {
        display: none;
    }
}  */