* {
    padding: 0;
    margin: 0;
    /* normalmente asignamos fuente
    general acá sobre todo para el form */
    font-family: 'fivo_sansregular', sans-serif;
}
::-moz-selection { /* Code for Firefox */
    color: inherit;
    background: white;
  }
  
  ::selection {
    color: inherit;
    background: RGBA(109,130,128,0.5);
  }
:root {
    --gris: #302e2f;
    --verde: #6d8280;
    --crema: #e4cfc1;
    --rojo: #e03f41;
}

nav {
    z-index: 9999;
}

ul {
    list-style-type: none;
    padding-right: 0;
    margin-bottom: 0;
}

ul li {
    display: inline-block;
    margin-top: 15px;
}

body {
    overflow-x: hidden;
}

.menuContainer {
    width: 100vw;
    overflow-x: hidden;
}

ul {
    padding-left: 0;
}

header div {
    z-index: 9999;
}

.btn-menu {
    color: white;
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    font-weight: bold;
    padding: 5px;
    font-size: 1.1em;
}

.isDisabled {
    cursor: default;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

.isDisabled:hover {
    font-family: 'fivo_sansregular', sans-serif !important;
}

.btn-menu:hover,
.btn-check:checked+.btn-menu:focus,
.btn-check:active+.btn-menu:focus,
.btn-menu:active:focus,
.btn-menu.active:focus,
.show>.btn-menu.dropdown-toggle:focus {
    background-color: transparent;
    border-color: transparent;
    color: black;
    font-family: 'fivo_sansblack', sans-serif;
    /* mata el borde fantasma */
    outline: 0;
}

.btn-menuScroll,
.btn-menuScroll:hover,
.btn-check:checked+.btn-menuScroll:focus,
.btn-check:active+.btn-menuScroll:focus,
.btn-menuScroll:active:focus,
.btn-menuScroll.active:focus,
.show>.btn-menuScroll.dropdown-toggle:focus {
    color: black;
}

header div .mnuLogo {
    /* align-items: flex-start; */
    display: inline-block;
    /* padding-left: 20px; */
}

.largoMenu {
    height: 70px;
}

main {
    position: absolute;
    top: 0px;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#peliUno {
    /* Used if the image is unavailable */
    background-image: url("../img/alter_imagen_dk2.jpg");
    width: 100%;
    overflow: hidden;
    height: 100vh;
    /* You must set a specified height */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
}

h1.nombre-pelicula {
    position: absolute;
    right: calc(50% - 1.6em);
    top: calc(50% - 0em);
    cursor: pointer;
    font-family: 'fivo_sansblack', sans-serif;
    font-size: 5em;
    color: white;
    z-index: 2;
}

.capituloGeneral {
    position: relative;
    height: 100vh;
    scroll-snap-align: start;
}

.mnuScrollUp {
    background-image: url(../img/textura-menu.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 3;
    height: 70px;
}
/*
section#myVideo4 {
    background-image: url("../img/agarrame_principalMb.jpg");
    width: 100%;
    overflow: hidden;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

.meDespliego {
    animation-name: animateDesplegar;
    -webkit-animation-name: animateDesplegar;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.meRepliego {
    animation-name: animateReplegar;
    -webkit-animation-name: animateReplegar;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}


/* DESPLEGAR DER A IZQ */

@-webkit-keyframes animateDesplegar {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes animateDesplegar {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@-webkit-keyframes animateReplegar {
    0% {
        -webkit-transform: translate(-100%, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@keyframes animateReplegar {
    0% {
        -webkit-transform: translate(-100%, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}


/* DESPLEGAR IZQ A DER */

@-webkit-keyframes animateDesplegarBurger {
    0% {
        -webkit-transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes animateDesplegarBurger {
    0% {
        -webkit-transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-webkit-keyframes animateReplegarBurger {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
    }
}

@keyframes animateReplegarBurger {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
    }
}


/* VIDEOS HOME */

.videoFull {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100vh;
    z-index: -100;
    transform: translate(-50%, -50%);
}

.videoMain {
    height: 100vh;
    position: relative;
    width: 100%;
}

.textOverVideoContainer {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.textOverVideo {
    font-size: 1.5em;
    font-family: 'fivo_sansblack', sans-serif;
    color: white;
    cursor: pointer;
    max-width: 80%;
    text-align: center;
    text-decoration: none;
}

.textOverVideo:hover {
    color: white;
    font-size: 1.8em;
    transition: ease-in-out .5s;
}


/* MENU HAMBURGUESA */

#hamburguesa {
    background-color: var(--crema);
    background-image: url(../img/bk_cremaFull.jpg);
    background-position: center;
    /* Center the image */
    background-repeat: repeat;
    /* Do not repeat the image */
    background-size: cover;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

ul.ulHamburguesa {
    list-style-type: none;
    padding-right: 0;
    margin: 0;
    margin-top: 100px;
    margin-left: 1em;
}

ul.ulHamburguesa li {
    display: block;
    margin-top: 5px;
}

ul.ulHamburguesa div li {
    display: inline-block;
    margin-top: 5px;
}

ul.ulHamburguesa div {
    margin: 0 10%;
    width: fit-content;
}

ul.ulHamburguesa li a,
ul.ulHamburguesa li a:link {
    text-decoration: none;
    color: black;
    display: block;
    text-align: left;
    margin-left: 10%;
}

#hamburguesa li ul {
    display: none;
    position: relative;
    min-width: 140px;
}

.muestroSubMenuMb {
    display: block !important;
}

#hamburguesa li ul li {
    position: relative;
}

#hamburguesa li ul li {
    right: -20px;
    top: 0px;
}

span.arrowSubMenu {
    padding-left: .3em;
}

span.arrowSubMenu img {
    width: 1em;
}

#cruz {
    position: fixed;
    right: 15px;
    top: 20px;
}

#cruz img {
    width: 1.8em;
}

.muestro {
    display: block !important;
    animation-name: animateDesplegarBurger;
    -webkit-animation-name: animateDesplegarBurger;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.escondo {
    display: none;
    animation-name: animateReplegarBurger;
    -webkit-animation-name: animateReplegarBurger;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#burger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    color: white;
    z-index: 9999;
    padding: 15px;
}

.franja {
    margin-top: 18px;
    position: fixed;
    bottom: 0;
}

.franja img {
    width: 100vw;
}


/* FOOTER */

footer {
    background-color: #fff;
    background-image: url(../img/bk_footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: 100% 100%;
    margin-top: 70px;
    padding-bottom: 15px;
}

img.logoFooter {
    width: 100%;
    margin-left: 1em;
    max-width: 60px;
    margin-bottom: 3em;
}

footer div {
    padding: 5px 0;
}

p.firmaFooter {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
}

p.firmaFooter:last-of-type {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

p.firmaFooter img {
    max-width: 25px;
    margin-left: 0;
    margin-right: 0.5em;
    cursor: pointer;
}

.menuDesplegable {
    display: none;
}

@media screen and (min-width:768px) {
    /* MENU EN DK */
    ul {
        list-style-type: none;
        padding-right: 0;
    }
    ul li {
        display: inline-block;
        margin-top: 5px;
    }
    .menuDesplegable {
        display: block;
        position: fixed;
        border: solid 1px;
        height: calc(100% - 75px);
        width: 60%;
        background-color: #fff;
        background-image: url(../img/bk_subMenu.jpg);
        background-position: center;
        /* Center the image */
        background-repeat: no-repeat;
        /* Do not repeat the image */
        background-size: 100% 100%;
        border: none;
        left: 100%;
        bottom: 0;
        overflow-y: auto;
        padding: 20px;
        z-index: 4;
    }
    .menuDesplegable ul {
        margin: 3em 0.5em 0 0.5em;
    }
    .menuDesplegable ul li {
        display: block;
        margin: 0.5em;
        text-align: left;
    }
    ul li a,
    ul li a:link {
        text-decoration: none;
        display: block;
        text-align: center;
        /* padding: auto; */
    }
    .menuDesplegable ul li a,
    .menuDesplegable ul li a:link {
        color: black;
        text-align: left;
        font-family: 'fivo_sans', sans-serif;
        font-size: 1.2em;
        letter-spacing: 1.5px;
        margin-bottom: 0;
        padding: 0;
    }
    .menuContainer {
        height: 70px;
        width: 100vw;
        overflow-x: hidden;
    }
    .menuDesplegable ul li a:hover,
    .menuDesplegable ul li a:checked+.menuDesplegable ul li a:focus,
    .menuDesplegable ul li a:active+.menuDesplegable ul li a:focus,
    .menuDesplegable ul li a:active:focus,
    .menuDesplegableul li a:focus,
    .show>.menuDesplegable ul li a.dropdown-toggle:focus {
        font-family: 'fivo_sansblack', sans-serif;
    }
    img.cruz {
        width: 2em;
        cursor: pointer;
    }
    #cerrarDesplegable, #cerrarDesplegableFormacion {
        position: -webkit-sticky;
        position: sticky;
        top: 15px;
        float: right;
    }
    header div {
        z-index: 9999;
    }
    .btn-menu {
        background-color: transparent;
        border-color: transparent;
        border-radius: 0;
        font-weight: bold;
        padding: 5px;
        color: white
    }
    .btn-menu:hover,
    .btn-check:checked+.btn-menu:focus,
    .btn-check:active+.btn-menu:focus,
    .btn-menu:active:focus,
    .btn-menu.active:focus,
    .show>.btn-menu.dropdown-toggle:focus {
        background-color: transparent;
        border-color: transparent;
        font-family: 'fivo_sansblack', sans-serif;
        /* mata el borde fantasma */
        outline: 0;
        color: white;
        padding:8px;
    }
    header div .mnuLogo {
        display: inline-block;
        width:100%;
        max-width: 300px;
    }
    /* FIN DE MENU */
    /* section#myVideo4 {
        background-image: url("../img/agarrame_principal.jpg");
    } */
    div.logoFooterCont,
    div.logosRedesCont p.firmaFooter {
        display: flex;
        justify-content: flex-end;
    }
    img.logoFooter {
        width: 100%;
        margin-right: .5em;
        margin-left: 0em;
        max-width: 60px;
    }
    p.firmaFooter a{
        width:10%;
    }
    p.firmaFooter img {
        max-width: 30px;
        margin-left: 0;
        margin-right: 1em;
        cursor: pointer;
    }
    img.logoFooter {
        margin-bottom: 0em;
    }
    #burger {
        display: none;
    }
    .textOverVideo {
        font-size: 3em;
    }
    .textOverVideo:hover {
        font-size: 3.3em;
    }
    .mnuScrollUp {
        padding: 0 15px;
    }
}

@media screen and (min-width:992px) {
    .btn-menu {
        font-size: 1.2em;
        padding: 10px;
    }
    .btn-menu:hover,
    .btn-check:checked+.btn-menu:focus,
    .btn-check:active+.btn-menu:focus,
    .btn-menu:active:focus,
    .btn-menu.active:focus,
    .show>.btn-menu.dropdown-toggle:focus {
        padding: 10px;
        padding-right:7px;
    }

    .textOverVideo {
        font-size: 4em;
    }
    .textOverVideo:hover {
        font-size: 4.3em;
    }
    p.firmaFooter a{
        width:7%;
    }
}

@media screen and (min-width:1200px) {
    .btn-menu {
        font-size: 1.3em;
    }
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 95vw;
    }
    ul.ulMenu {
        padding-left: 0px;
    }
    .menuDesplegable {
        width: 50%;
    }
    p.firmaFooter a {
        width: 5%;
    }
    .mnuScrollUp{
        padding: 0 30px;
    }
}

@media screen and (min-width:1582px) {
    ul.ulMenu {
        padding-left: 25%;
    }
    .menuDesplegable {
        width: 40%;
    }
    .textOverVideo {
        font-size: 5em;
    }
    .textOverVideo:hover {
        font-size: 5.3em;
    }

}