/* 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;*/
    background-color: rgba(15, 53, 82, 1);
    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);
}


/* CONTACT */

.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);
}

/* Privacy */

.privacyContainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.privacyTxt {
    padding: 60px 125px;
    text-align: justify;
}

.titlePriv {
    margin-bottom: 75px;
    text-align: center !important;
}

.linkWeb {
    color: var(--primary-blue);
    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;
    }
}  */