*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Aller_regular;
}
body{
    background-image: url("../img/fondo_oficial_rey.jpeg");
    background-attachment: fixed;
    background-repeat: repeat;
}
/*-----------------Seccion de botones de idioma------------------*/
.botones_idioma_menu_hor{
    display: flex;
    justify-content: right;
    padding-right: 5px;
}
.btn_idioma_menu_hor{
    margin-top: 5px;
    margin-right: 3px;
    padding: 4px 8px 4px 8px;
    border: solid 1px black;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0);
}
.btn_idioma_menu_hor:hover{
    background-color: black;
    color: white;
}
/*-----------------Seccion Navegacion Horizontal-----------------*/
.navegacion{
    width: 100%;
}
.barra_menu{
    display: flex;
    justify-content: right;
    margin-top: 20px;
    margin-right: 1%;
} 
.barra_menu li{ 
    list-style: none;
    padding: 10px 12px;
    text-align: right;
}
.barra_menu li a{
    font-size: 1.1rem;
    color: black;
    padding: 12px 12px;
    text-decoration: none;
}
.barra_menu li a:hover{
    background-color: rgb(44, 43, 43);
    color: white;
    border-radius: 5px;
    transition: 0.5s ease;
}
.icon_menu{
    position: relative;
    left: 2%;
    margin: 0px 10px;
    margin-top: 30px;
    width: 40px;
    height: 40px;
}
.icon_menu img{
    width: 100%;
    height: 100%;
}
.icon_menu img:hover{
    padding: 3px 3px;
}
/*-----------------Fin Seccion Navegacion Horizontal-----------------*/
.icon_menu_cerrar{
    position: absolute;
    top: 2%;
    right: 10%;
    width: 20px;
    height: 20px;
}
.icon_menu_cerrar img{
    width: 100%;
    height: 100%;
    filter: invert(50%);
}
.icon_menu_cerrar img:hover{
    padding: 3px 3px;
}
/*-----------------Seccion Main Pagina Principal Index-----------------*/
body{
    width: 100%;
}
header{
    height: 50vh;
}
main{
    width: 100%;
    /*height: 200vh;*/
    display: flex;
    /*justify-items: right;*/
    flex-direction: column;
    /*justify-content: flex-end;*/
    /*margin-right: 5%;*/
}
.titulo{
    padding: 0% 0% 20% 0%;
}
.titulo h1{
    text-align: center;
    font-size: 4em;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    /*background-color: rgba(100, 148, 237, 0.582);*/
    transition: ease-in-out all 0.5s;
}
.titulo hr{
    width: 60%;
    height: 3px;
    border: none;
    margin: 0px auto;
    background-color: rgb(151, 151, 151);
}
.cont_logo{
    width: 15%;
    position: absolute;
    margin: 2%;
}
.cont_logo img{
    width: 100%;
    height: 30%;
}
.reciente{
    width: 100%;
    background-color: white;
    padding: 5% 5%;
}
.reciente_titulo{
    padding: 2% 2%;
    text-align: center;
    margin-top: 8%;
}
.reciente_titulo h1{
    letter-spacing: 2px;
    word-spacing: 2px;
    font-size: 2rem;
}
hr{
    width: 60%;
    height: 2px;
    margin: 0px auto;
    margin-bottom: 8%;
    border: none;
    background-color: black;
}
.section_spotify{
    /*background-color: rgb(27, 27, 27);*/
    background-color: white;
    /*background-image: url("../../Imagenes/rey-ruiz-fondo-header.jpg");*/
}
.cont_spotify{
    width: 70%;
    margin: 0px auto;
    padding-bottom: 2%;
    justify-content: space-evenly;
    display: flex;
}
.banner_spotify{
    width: 35%;
    height: 86vh;
}
.cont_spotify img{
    width: 100%;
    height: 100%;
}
.cont_spotify iframe{
    width: 40%;
    height: 86vh;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.85);
}
.reciente_content{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.reciente_content a img{
    width: 100%;
    height: 100%;
    transition: 0.6s;
    object-fit: cover;
}
.reciente_content a img:hover{
    transform: scale(1.04);
}
.img_box{
    opacity: 0;
    transition: all 0.7s;
}
.mostrararriba{
    animation: mostrar_arriba 1.2s;
}
@keyframes mostrar_arriba{
    0%{
        transform: translateY(70px);
    }
    100%{
        transform: translateY(0);
    }
}
.reciente_content .img_box{
    padding: 5%;
}
.img_box p{
    padding: 3%;
    text-align: center;
    letter-spacing: 2px;
    color: coral;
    font-weight: bold;
}
.reciente_video{
    width: 100%;
    padding: 5%;
    background-color: white;
}
.reciente_cont_video{
    width: 100%;
    /*padding: 3%;*/
    text-align: center;
}
.reciente_cont_video iframe{
    width: 80%;
    height: 80vh;
    border-radius: 12px;
}
#video-js{
    border-radius: 16px;
    width: 70%;
    height: 75vh;
    background-color: black;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.85);
}
@keyframes anim_down{
    from{
        opacity: 0;
        transform: translateY(-100px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }  
}
@keyframes anim_up{
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
.h_spotify, .h_reciente, .h_nuevovideo{
    animation-duration: 1.3s;
    animation-delay: 0.1s;
    animation-fill-mode: both;
    letter-spacing: 2px;
    word-spacing: 2px;
    font-size: 2rem;
    text-align: center;
    padding: 2% 2%;
    margin-top: 8%;
}
.h_spotify, .h_reciente, .h_nuevovideo{
    animation-name: anim_up;
}
.reciente_titulo *{
    animation-play-state: paused;
}
/*-----------------Seccion Footer-----------------*/
footer{
    width: 100%;
    /*margin-top: 20px;*/
    background-color: rgb(38, 37, 37);
}
.cont_info{
    padding-top: 2%;
    display: flex;
    justify-content:space-evenly;
}
.contacto{
    margin: 30px 10px;
}
#cont_titulo{
    font-size: 1.1rem;
}
#cont_titulo_manag{
    margin-top: 10%;
    font-size: 1.1rem;
}
.cont_info p{
    color:rgb(221, 223, 224);
    font-size: 0.9rem;
    padding: 5px 0px;
    letter-spacing: 1px;
}
.redes_sociales{
    margin: 30px 10px;
    text-align: center;
}
.redes_sociales p{
    margin-bottom: 15px;
}
.redes_sociales img{
    width: 30px;
    height: 30px;
    margin: 10px 10px;
}
.redes_sociales img:hover{
    transition: all 0.5s ease-in-out;
    transform: scale(1.5);
}
.logos{
    margin: 30px 10px;
    text-align: center;
}
.logos img{
    width: 80%;
    height: 80%;
    filter: invert(0.9);
}
.logo_rey{
    margin-bottom: 20%;
}
.der_footer{
    width: 100%;
    padding: 3px;
    background-color: rgb(36, 35, 35);
    text-align: center;
}
.der_footer p{
    padding: 5px 5px;
    color: darkgray;
    font-size: x-small;
}
/*-----------------Adaptacion de Pantalla Resol 1025-----------------*/
@media screen and (min-width: 1025px) {
    .icon_menu{
        display: none;
    }
    .icon_menu_cerrar{
        display: none;
    }
    .menu_respon{
        display: none;
    }
    .btn_regreso{
        display: none;
    }
    body{
        background-attachment: fixed;
        background-repeat: repeat;
    }
}
/*-----------------Adaptacion de Pantalla Resol 1300-----------------*/
@media screen and (max-width: 1300px) {
    .main_seccion h1{
        color: rgb(48, 47, 47);
        font-size: 2.0rem;
        letter-spacing: 3px; 
    }
    body{
        background-attachment: fixed;
        background-repeat: repeat;
    }
}
/*-----------------Adaptacion de Pantalla Resol 1024 x 768-----------------*/
@media screen and (max-width: 1024px){
    header{
        height: auto;
    }
    header .icon_menu{
        position: fixed;
    }
    body{
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .barra_menu{
        display: none;
    }
    .botones_idioma_menu_hor{
        display: none;
    }
    .main_seccion h1{
        color: rgb(48, 47, 47);
        font-size: 1.5rem;
        letter-spacing: 3px; 
    }
    main{
        flex-direction: column;
        margin-right: 15px;
    }
    .cont_logo{
        width: 18%;
        position: absolute;
        right: 2%;
        filter: invert(1);
    }
    .logos img{
        width: 60%;
        height: 60%;
    }
    .menu_respon{
        width: 30%;
        height: 100%;
        padding: 5% 5% 0% 5%;
        background-color: rgba(254, 254, 255, 0.915);
        transform: translateX(-110%);
        transition: 0.8s;
        -webkit-transition: 0.8s; 
        -moz-transition: 0.8s; 
        -ms-transition: 0.8s;
        position: fixed;
    }
    .titulo{
        padding: 25% 0% 22% 0%;
    }
    .menu_resp_titulo{
        margin: 25px 0px 10px 0px;
        padding: 5px 5px;
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .menu_resp_hr{
        background-color: rgb(49, 48, 48);
        border: solid 1px rgb(49, 48, 48);
        margin-bottom: 20px;
        width: 100%;
    }
    .menu_respon li{
        padding: 10px 10px;
        list-style: none;
    }
    .menu_respon li a{
        text-decoration: none;
        color: black;
        letter-spacing: 2px;
        padding: 5px 5px;
        font-size: 1.3rem;
    }
    .menu_respon li a:hover { 
        color: rgb(255, 255, 255);
        transition: 0.1s all ease-in;
        -webkit-transition: 0.1s; 
        -moz-transition: 0.1s; 
        -ms-transition: 0.1s
    }
    .menu_respon li:hover{ 
        background-color: rgb(121, 120, 120);
        transition: 1.5s all ease-in;
        -webkit-transition: 1.5s; 
        -moz-transition: 1.5s; 
        -ms-transition: 1.5s
    }
    .botones_idioma{
        display: flex;
        justify-content: space-between;
        margin-top: 10%;
        padding: 3%;
    }
    .btn_idioma{
        border-radius: 10px;
        padding: 4%;
        border: solid 1px rgb(49, 48, 48);
        font-size: 1rem;
    }
    .btn_idioma:hover{
      background-color: rgb(38, 37, 37);
      color: white;
    }
    .menu_activo_js{
        transform: translateX(0);
        transition: 0.8s;
        -webkit-transition: 0.8s; 
        -moz-transition: 0.8s; 
        -ms-transition: 0.8s
    }
    .reciente{
        background-color: white;
    }
    .cont_spotify{
        width: 100%;
    }
    .banner_spotify{
        display: none;
    }
    .cont_spotify iframe{
        width: 40%;
        height: 60vh;
        margin-bottom: 3%
    }
}
/*-----------------Adaptacion de Pantalla Resol 768 x 1024-----------------*/
@media screen and (max-width: 768px){
    header .icon_menu{
        background-color: rgba(169, 169, 169, 0.600);
        border-radius: 50%;
        margin: 5px 5px;
        padding: 4px;
        z-index: 2;
    }
    .titulo{
        padding: 50% 0% 50% 0%;
        background-image: url("../img/Fondo52.jpeg");
        background-attachment: local;
        background-size: cover;
        background-position: center;
        height: 100vh;
    }
    .botones_idioma_menu_hor{
        display: none;
    }
    .menu_respon{
        width: 35%;
    }
    .icon_menu_cerrar{
        width: 20px;
        height: 20px;
    }
    .reciente_content{
        grid-template-columns: repeat(1, 1fr);
    }
    .reciente_content a img{
        /*zoom: 50%;*/
        width: 100%;
        height: 100%;
    }
    .reciente_content .img_box{
        padding: 5%;
    }
    .reciente_video h1{
        font-size: 2.5rem; 
    }
    .titulo h1{
        font-size: 3.5rem;
    }
    .titulo hr{
        width: 85%;
        height: 4px;
    }
    .cont_spotify{
        width: 90%;
    }
    .banner_spotify{
        display: none;
    }
    .cont_spotify iframe{
        width: 100%;
        height: 80vh;
        margin-bottom: 3%
    }
    .reciente_cont_video iframe{
        width: 100%;
    }
    #video-js{
        width: 90%;
        height: 60vh;
    }
    .cont_info{
        display: block;
        text-align: center;
        padding-top: 10px;
    }
    .cont_info h4{
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    .contacto p{
        font-size: 1.5rem;
    }
    .redes_sociales{
        margin: 3% 5%;
    }
    .der_footer{
        font-size: 1rem;
    }
    .logos img{
        width: 30%;
        height: 30%;
    }
    .logo_rey{
        margin-bottom: 10%;
    }
}
/*-----------------Adaptacion de Pantalla Resol 680-----------------*/
@media screen and (max-width: 680px){
    header .icon_menu{
        width: 30px;
        height: 30px;
        padding: 4px;
    }
    .titulo h1{
        font-size: 1.7rem;
        margin: 60% 2% 0% 2%;
        /*background-color: #6495ed4d;*/
        color: coral;
    } 
    .titulo hr{
        width: 80%;
        height: 4px;
    }
    .botones_idioma_menu_hor{
        display: none;
    } 
    .menu_respon{
        transform: translateX(-115%);
    }
    .menu_respon{
        width: 55%;
        z-index: 3;
    } 
    .menu_respon li a{
        font-size: 0.9rem;
    }
    .icon_menu_cerrar{
        width: 20px;
        height: 20px;
    }
    .menu_activo_js{
        transform: translateX(0);
        transition: 0.8s;
        -webkit-transition: 0.8s; 
        -moz-transition: 0.8s; 
        -ms-transition: 0.8s
    }
    .reciente_titulo h1{
        font-size: 1rem;
    }
    .h_spotify{
		font-size:1.7rem;
	}
    .cont_spotify{
        width: 90%;
    }
    .banner_spotify{
        display: none;
    }
    .banner_spotify img{
        display: none;
    }
    .cont_spotify iframe{
        width: 100%;
        height: 80vh;
        margin-bottom: 3%
    }
    .reciente_video h1{
        font-size: 2rem;
        letter-spacing: 2px;
        word-spacing: 2px; 
    }
    .reciente_video{
        padding: 2%;
    }
    .reciente_cont_video iframe{
        width: 100%;
    }
    .cont_info h4{
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .contacto p{
        font-size: 1rem;
    }
    .logos img{
        width: 25%;
        height: 25%;
    }
    .logo_rey{
        margin-bottom: 10%;
    }
}
/*-------------------------------------------------------------------*/