@font-face {
    font-family: Evogria;
    src: url(/assets/fonts/Evogria.otf);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    user-select: none;
}

:root {
    --zula-yellow: #fcaf17;
    --zula-yellow-hover: #c48200;
}

html {
    background-color: #252525;
}

body {
    max-width: 1920px;
    margin: 0 auto;
}

section {
    width: 100%;
    height: 100vh;
    border-top: 1px solid rgba(221, 147, 0, 0.45);
    max-width: 1920px;
    min-width: 300px;
    min-height: 750px;
}

    section:first-of-type {
        border-top: none;
    }

@media screen and (max-height: 500px) and (orientation: landscape) {
    section {
        min-height: unset;
    }
}

main {
    padding-top: 2rem;
    font-family: "RaleWay", sans-serif;
}

/* ARROW NAVIGATION */

.arrow-down-navigation {
    position: absolute;
    bottom: 10vh;
    right: 0.6em;
    width: 50px;
    height: 15vh;
    text-align: center;
    padding: 5vh 0.3em;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.back-to-top {
    bottom: 10vh;
}

.arrow-down-navigation svg {
    fill: white;
    width: 1.3rem;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.black svg {
    fill: black;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .arrow-down-navigation {
        display: none;
    }
}

/*--------------------------------------------------------------------------------*/
/* INTRO                                                                          */
/*--------------------------------------------------------------------------------*/

.intro-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_portada.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* LOGO */

.zula-logo {
    position: absolute;
    z-index: 100;
    transform: translate(-70%, -250px);
    max-width: 500px;
    min-width: 300px;
    width: 26.25%;
}

    .zula-logo img {
        width: 100%;
    }

/* LARRY */
.larry {
    position: absolute;
    z-index: 200;
    transform: translate(105px, 86px);
}

    .larry img {
        width: 44.75vw;
        max-width: 859px;
        min-width: 820px;
    }

/* BOTONES INTRO */

.button-container-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 300;
}

.button-container-intro-grp {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .button-container-intro-grp a {
        text-decoration: none;
    }

.cta-button {
    width: 25vw;
    max-width: 25rem;
    height: 5vh;
    min-height: 45px;
    background-color: black;
    color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    border-radius: 0.2em;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0;
    box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.75);
}

    .cta-button:hover .a-background {
        transform: translateX(70%) rotateZ(-45deg);
    }

    .cta-button:active {
        transform: translate(0.2vw,0.2vh);
    }

.a-txt {
    z-index: 1;
}

.a-background {
    background-color: var(--zula-yellow);
    width: 200%;
    height: 800%;
    position: absolute;
    transform: translateY(10%) translateX(0%) rotateZ(-45deg);
    transform: rotateZ(-45deg);
    transition: transform 0.75s ease-in-out;
    text-decoration: none;
}

@media screen and (max-width: 1024px) and (orientation:portrait) {

    .intro-section {
        min-height: unset;
        flex-direction: column;
    }

    .button-cointainer-home {
        padding-top: 50vh;
        flex-direction: column;
    }

    .zula-logo {
        transform: unset;
        position: unset;
        margin-bottom: 4vh;
        width: 85%;
    }

    .larry {
        display: none;
    }

    .button-container-intro {
        position: unset;
        height: unset;
    }

    .button-container-intro-grp {
        width: 100%;
        flex-direction: column;
        position: unset;
    }

    .cta-button {
        width: 90vw;
        min-height: 6vh;
        margin: 0;
        margin-bottom: 0.8em;
        background-color: var(--zula-yellow);
    }

        .cta-button:hover .a-background {
            transform: unset;
        }

    .a-background {
        transform: unset;
        background: unset;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {

    .intro-section {
        min-height: unset;
        justify-content: unset;
    }

    .zula-logo {
        transform: unset;
        position: unset;
        width: 50%;
        padding-left: 5vw;
    }

    .larry {
        display: none;
    }

    .button-container-intro-grp {
        padding-right: 5vw;
        justify-content: center;
        width: unset;
    }

    .cta-button {
        width: 40vw;
        min-height: 9vh;
        margin: 0.25rem 0;
    }

        .cta-button:hover .a-background {
            transform: unset;
        }
}

/*--------------------------------------------------------------------------------*/
/* INFO                                                                           */
/*--------------------------------------------------------------------------------*/

.info-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_info.jpg');
    position: relative;
    background-size: cover;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.info, .requisitos {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.75s ease-in-out;
}

.info-fx {
    transform: translateX(-50vw);
}

.requisitos-fx {
    transform: translateX(50vw);
}

.info-txt, .requisitos-txt {
    min-width: 90%;
    max-width: 90%;
    min-height: 90%;
    max-height: 90%;
    padding: 3vh 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: whitesmoke;
    font-family: "Raleway", sans-serif;
    font-size: clamp(0.8rem, 0.9375vw, 1.125rem);
    font-weight: 400;
    text-align: center;
    border: 2px solid var(--zula-yellow);
    border-radius: 3vw;
    background-color: rgba(0, 0, 0, 0.35);
}

.info-txt {
    text-align: left;
    /*width: 70%;*/
}

    .info-txt ul {
        list-style: none;
        width: 100%;
    }

.info-section h1, .info-section h2 {
    font-family: Evogria;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    text-transform: uppercase;
    background: -webkit-linear-gradient(var(--zula-yellow) 0%, #333 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2vh;
}

.requisitos-txt h3 {
    margin-top: 2vh;
    margin-bottom: 0.5vh;
    text-decoration: underline;
}

    .requisitos-txt h3:first-of-type {
        margin-top: 0;
    }

.requisitos-ul {
    list-style: none;
    text-align: left;
    width: 90%;
    margin-top: 1rem;
}

    .requisitos-ul li {
        margin: 0.5vh 0;
        width: 100%;
    }

.requisitos-item-title {
    font-weight: 800;
}

@media screen and (max-width: 860px) and (orientation: portrait) {
    .info-section {
        height: 200vh;
    }

    .info-container {
        flex-direction: column;
    }

    .info, .requisitos {
        width: 100%;
        height: 50%;
    }

    .info {
        position: relative;
    }

    .info-txt, .requisitos-txt {
        font-size: clamp(0.75rem, 2vw, 1rem);
    }

        .info-txt h1, .requisitos-txt h2 {
            font-size: clamp(2.5rem, 7vw, 3.5rem);
        }

        .requisitos-txt h2 {
            margin-bottom: 0.5vh;
        }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .info-section {
        min-height: 200vh;
    }

    .info-txt, .requisitos-txt {
        font-size: clamp(0.70rem, 1.85vw, 0.95rem);
    }
}

/*--------------------------------------------------------------------------------*/
/* PJS                                                                            */
/*--------------------------------------------------------------------------------*/

.pjs-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_personajes.jpg');
    position: relative;
    background-size: cover;
    overflow: hidden;
}

    .pjs-section h2 {
        position: absolute;
        top: -1000px;
    }

.pjs-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pjs-bg-txt {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.20;
    padding-top: 8vh;
}

.pjs-gallery-control {
    position: absolute;
    width: 85%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.pjs-gallery-ctrl-left, .pjs-gallery-ctrl-right {
    height: 50%;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .pjs-gallery-ctrl-left img, .pjs-gallery-ctrl-right img {
        width: 3vw;
    }

.img-active {
    display: block !important;
}

.img-opacity {
    opacity: 1 !important;
}

.img-pjs {
    display: none;
    height: 85vh;
    transform: translate(0, 4.5vh);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .pjs-gallery-control {
        width: 95%;
        z-index: 100;
    }

    .pjs-gallery-ctrl-left, .pjs-gallery-ctrl-right {
        height: 50%;
        width: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pjs-gallery-ctrl-left img, .pjs-gallery-ctrl-right img {
            width: 10vw;
        }
}

/*--------------------------------------------------------------------------------*/
/* MAPS                                                                           */
/*--------------------------------------------------------------------------------*/

.maps-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_mapas.jpg');
    position: relative;
    background-size: cover;
    height: unset;
    /*min-height: 100vh;*/
    padding-top: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.maps-and-h2-grp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.maps-section h1, .maps-section h2 {
    font-family: Evogria;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    text-transform: uppercase;
    background: -webkit-linear-gradient(var(--zula-yellow) 0%, #333 250%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2vh;
}

.maps-section h2 {
    margin-bottom: 1vh;
}

.maps-container {
    width: 100%;
    min-height: 500px;
    padding: 3vh 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maps-gallery-ctrl-left, .maps-gallery-ctrl-right {
    width: 25vw;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .maps-gallery-ctrl-left img, .maps-gallery-ctrl-right img, .btn-prev-mapas-modal img, .btn-next-mapas-modal img {
        width: 3vw;
    }

.map-frame-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.map-frame {
    width: 61.45vw;
    position: absolute;
}

    .map-frame img {
        width: 100%;
    }

.img-mapas, .img-mapas-modal {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.img-mapas {
    cursor: pointer;
    max-width: 57.5vw;
}

.map-ctrl-container-mobile {
    display: none;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {

    .maps-section {
        height: 90vh;
    }

        .maps-section h2 {
            margin: 3vh 0 1vh 0;
            font-size: 12vw;
        }

    .maps-container {
        flex-direction: column;
    }

    .map-frame-img-container {
        height: unset;
        min-height: 45vh;
    }

    .maps-gallery-ctrl-left, .maps-gallery-ctrl-right {
        display: none;
    }

    .map-frame {
        display: none;
    }

    .img-mapas {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
    }

    .map-ctrl-container-mobile {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 60%;
        padding: 5vh 0;
        margin-top: 5vh;
    }

        .map-ctrl-container-mobile img {
            width: 8.5vw;
        }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .maps-section {
        min-height: unset;
    }
}

/*--------------------------------------------------------------------------------*/
/* REGISTRO                                                                       */
/*--------------------------------------------------------------------------------*/

.register-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_registro.jpg');
    background-size: cover;
    background-position-x: center;
    position: relative;
    min-height: 100vh;
    height: unset;
    padding: 18vh 0 14vh 0;
    overflow: hidden;
    /*Glow Register Form*/
    position: relative;
    /*z-index: -100;*/
    border-bottom: 1px solid rgba(221, 147, 0, 0.45);
}

.register-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*SOCIAL*/
.social-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
}

    .social-ul li {
        margin: 0 2vw;
        transition: transform 1s cubic-bezier(0.42, 0.0, 0.58, 1.0), opacity 1s ease-in-out;
    }

.social-ul-li-fx {
    transform: translateY(-20vh);
    opacity: 0;
}

.fb-logo svg, .ig-logo svg, .yt-logo svg, .ds-logo svg {
    width: 4.5vw;
    min-width: 55px;
    fill: var(--zula-yellow);
    transition: fill 0.35s ease-in-out;
}

    .fb-logo svg:hover, .ig-logo svg:hover, .yt-logo svg:hover, .ds-logo svg:hover {
        fill: var(--zula-yellow-hover);
    }

.ds-logo svg {
    transform: translateY(0.55vh);
}

.register-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .register-form-wrapper {
        width: 95%;
    }

    .fb-logo svg, .ig-logo svg, .yt-logo svg, .ds-logo svg {
        width: 10vw;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .register-form-wrapper {
        width: 85%;
    }
}
