/*-----------------------------------------------------------------------CUERPO DE LA PAGINA-----------------------------------------------------------------------------------*/
html{
    scroll-behavior: smooth;
}

body{ 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background: black;
}

body::-webkit-scrollbar{
    width: 0;
    background: #033509;
}

body::-webkit-scrollbar-thumb{
    width: 0;
    border-radius: 0;
    background: #d3decb;
}

/*-----------------------------------------------------------------------BARRA DE NAVEGACION-----------------------------------------------------------------------------------*/

header{ 
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

header.abajo{
    background: rgba(0, 0, 0, 0.616);
    backdrop-filter: blur(10px);
}

header.abajo .logo,
header.abajo .menu a{
    color: #d3decb;
}

header.abajo .menu a:hover{
    color: black;
}

.nav{ 
    width: 98%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.labe_hamburguesa {
    width: 0;
    height: 0;
}

.list_icon {
    width: 0;
    height: 0;
    color: white;
    cursor: pointer;
}

.men_hamburguesa{
    display: none;
}

.logo{
    display: flex; 
    align-items: center;
    justify-content: space-between;
}

.logo a{ 
    width: 190px;
    display: grid; 
    align-items: center;
    justify-content: left;
}

.logo a img{ 
    max-width: 100%;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(108%) contrast(101%);
}

.menu{ 
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.menu li{ 
    list-style: none;
    display: flex; 
    align-items: center;
}

.menu li a{
    font-size: 12px;
    color: #d3decb;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.menu li a:hover{
    color: grey;
}

/*-----------------------------------------------------------------------CONTENEDOR DE LA PAGINA-----------------------------------------------------------------------------------*/

.contprincipal{
    max-width: 100%;
    position: relative;
    display: flex; 
    flex-wrap: wrap;
    justify-content: flex-start;
}

/*-----------------------------------------------------------------------BLOQUE 1--------------------------------------------------------------------------------------*/

#BLOQUE-1{
    width: 100vw;
    height: 100vh;
    padding-top: 0;
    position: relative;
}

#BLOQUE-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#BLOQUE-1 #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------BLOQUE 2--------------------------------------------------------------------------------------*/

#BLOQUE-2{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.contenedor1{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#estrenos{
    width: 100%;
    height: 100%;
    position: relative;
}

#estrenos:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(to right, black, transparent);
}

.slider1{
	position: relative;
	width: 100vw;
    height: 100vh;
}

.myslide{
	width: 100vw;
    height: 100vh;
	display: none;
	overflow: hidden;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;
	user-select: none;
    z-index: 10;
}

.prev:hover, .next:hover{
	color: #033509;
}

.next{
	right: 0;
}

.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
    z-index: 10;
    visibility: hidden;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}

/* javascript */
.active, .dot:hover{
	border-color: #00B0F0;
}
/* /javascript */

.txt{
    width: 50%;
    height: 50%;
	position: absolute;
	top: 12%;
	left: 5%;
	-webkit-animation-name: posi;
  	-webkit-animation-duration: 2s;
  	animation-name: posi;
  	animation-duration: 2s;
	z-index: 10;
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 5%;}
}


@keyframes posi {
  from {left: 25%;}
  to {left: 5%;}
}

.titulo{
	width: 85%;
    height: 60%;
    margin-left: 15%;
    display: flex; 
    align-items: center;
    justify-content: left;
    float: left;
}

.titulo img{
	width: 100%;
    float: left;
}

.btnplay{
    width: 100%;
    height: 40%;
    display: flex; 
    align-items: center;
    justify-content: left;
    float: left;
}

.btnplay a{
    width: 160px;
    padding: 10px 10px 10px 10px;/*--arriba, derecha, abajo, izquierda--*/
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    bottom: 20%;
    left: 15%;
    z-index: 5;
    color: #fff;
    background: black;
    border: 1px solid white;
    text-decoration: none;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btnplay a:hover{
    color: #fff;
    box-shadow: 0 0 10px #fff, 0 0 40px #fff, 0 0 80px #fff;
}

.myslide .dispositivas{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myslide #img2{
    width: 0%;
    height: 0%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------PIE DE LA PAGINA-----------------------------------------------------------------------------------*/
    
#footer{
    max-width: 100%;
    height: 50px;
    padding: 10px;
    display: flex; 
    align-items: center;
    justify-content: center;
}

#footer p{
    color: white;
    text-align: center;
}

/*-----------------------------------------------------------------------RESPONSIVE-----------------------------------------------------------------------------------*/

@media screen and (max-width: 915px){

    /*-----------------------------------------------------------------------BARRA DE NAVEGACION-----------------------------------------------------------------------------------*/

    header{ 
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: black;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    header.abajo{
        background: black;
    }

    header.abajo .logo,
    header.abajo .menu a{
        color: #d3decb;
    }

    header.abajo .menu a:hover{
        color: black;
    }

    .nav{ 
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .labe_hamburguesa {
        width: 70px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .list_icon {
        width: 35px;
        height: 35px;
        color: white;
        cursor: pointer;
        position: absolute;
    }

    .men_hamburguesa{
        display: none;
    }

    .men_hamburguesa:checked + .menu {
        height: calc(40vh - 70px);
    }

    .logo{
        width: 190px;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo a{ 
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .logo a img{ 
        width: 100%;
        height: 90%;
        margin-top: 5%;
        object-fit: cover;
        position: absolute;
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(108%) contrast(101%);
    }

    .menu{ 
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        height: 0;
        overflow: hidden;
        /* height: calc(100vh - 70px); */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        transition: all .3s;
    }

    .menu li{ 
        list-style: none;
        display: flex; 
        align-items: center;
    }

    .menu li a{
        font-size: 17px;
        color: black;
        text-decoration: none;
        font-weight: normal;
        cursor: pointer;
    }

    .menu li a:hover{
        color: black;
    }

    /*-----------------------------------------------------------------------CONTENEDOR DE LA PAGINA-----------------------------------------------------------------------------------*/

    .contprincipal{
        max-width: 100%;
        position: relative;
        display: flex; 
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /*-----------------------------------------------------------------------BLOQUE 1--------------------------------------------------------------------------------------*/

    #BLOQUE-1{
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        position: relative;
    }

    #BLOQUE-1 img{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    #BLOQUE-1 #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /*-----------------------------------------------------------------------BLOQUE 2--------------------------------------------------------------------------------------*/

    #BLOQUE-2{
        width: 100vw;
        height: 100vh;
        position: relative;
    }

    .contenedor1{
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        position: relative;
    }

    #estrenos{
        width: 100%;
        height: 100%;
        position: relative;
    }

    #estrenos:after{
        content: '';
        position: absolute;
        top: 50%;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 50%;
        z-index: 5;
        background: linear-gradient(to top, black, transparent);
    }

    .slider1{
        position: relative;
        width: 100vw;
        height: 100vh;
    }

    .myslide{
        width: 100vw;
        height: 100vh;
        display: none;
        overflow: hidden;
    }

    .prev, .next{
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 50px;
        padding: 15px;
        cursor: pointer;
        color: #fff;
        transition: 0.1s;
        user-select: none;
        z-index: 10;
    }

    .prev:hover, .next:hover{
        color: #033509;
    }

    .next{
        right: 0;
    }

    .dotsbox{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 20px;
        cursor: pointer;
        z-index: 10;
        visibility: hidden;
    }
    .dot{
        display: inline-block;
        width: 15px;
        height: 15px;
        border: 3px solid #fff;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
    }

    /* javascript */
    .active, .dot:hover{
        border-color: #00B0F0;
    }
    /* /javascript */

    .txt{
        width: 100%;
        height: 40%;
        padding: 5%;
        position: absolute;
        top: 50%;
        left: 0%;
        -webkit-animation-name: posi;
        -webkit-animation-duration: 2s;
        animation-name: posi;
        animation-duration: 2s;
        z-index: 10;
    }

    @-webkit-keyframes posi {
    from {left: 25%;}
    to {left: 0%;}
    }


    @keyframes posi {
    from {left: 25%;}
    to {left: 0%;}
    }

    .titulo{
        width: 90%;
        height: 60%;
        margin-left: 0%;
        display: flex; 
        align-items: center;
        justify-content: left;
        float: left;
    }

    .titulo img{
        width: 100%;
        float: left;
    }

    .btnplay{
        width: 100%;
        height: 40%;
        display: flex; 
        align-items: center;
        justify-content: center;
        float: left;
    }

    .btnplay a{
        width: 160px;
        padding: 10px 10px 10px 10px;/*--arriba, derecha, abajo, izquierda--*/
        font-family: Arial, Helvetica, sans-serif;
        position: absolute;
        bottom: 20%;
        left: 23.8%;
        z-index: 5;
        color: #fff;
        background: black;
        border: 1px solid white;
        text-decoration: none;
        display: flex; 
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .btnplay a:hover{
        color: #fff;
        box-shadow: 0 0 10px #fff, 0 0 40px #fff, 0 0 80px #fff;
    }

    .myslide .dispositivas{
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    .myslide #img2{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*-----------------------------------------------------------------------PIE DE LA PAGINA-----------------------------------------------------------------------------------*/
        
    #footer{
        max-width: 100%;
        height: 50px;
        padding: 10px;
        display: flex; 
        align-items: center;
        justify-content: center;
    }

    #footer p{
        font-size: 10px;
        color: white;
        text-align: center;
    }

}