.carousel{
    height: max-content;
    width: 100%;
}
.carousel__lista::-webkit-scrollbar {
    display: none;
}
.carousel__contenedor{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 700px; 
    background-image: url("images/fondo_portada.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.carousel__elemento{
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0% 2%;
}
.contenedor_imagen{
    height: 700px;
    min-width: 700px;
}
.contenedor_programa{
    width: 50%;
}
.contenedor_imagen img{
    height: 100%; 
    width: 100%;
}
.carousel__contenedor button{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    padding: 0px 10px;
    font-size: 20px;
    background-color: #001b52;
    opacity: 50%;
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    outline: none;
}
.carousel__contenedor button:hover{
    background-color: #001b52;
    color: #fff;
    opacity: 100%;
}
.carousel__contenedor .carousel__siguiente{
    right: 0;
}
.carousel__contenedor .carousel__anterior{
    z-index: 1;
    left: 0;
}
.carousel__contenedor button img{
    width: 30px;
    height: 30px;
}
@media screen and (max-width:1120px){
    .contenedor_programa{
        width: 400px;
        height: 160px;
        padding-top: 35px;
    }
    .carousel__elemento{
        flex-direction: column-reverse;
        width: 100%;
        height: 100%;
    }
    .carousel__contenedor{
        height: 500px;
        
    }
    .contenedor_imagen{
        height: 390px;
        width: 390px;
        min-width: 390px;
        padding-bottom: 50px;
        position: relative;
        padding-left: 5px;
    }
    .contenedor_imagen img{
        position: absolute;
        top: -15px;
        height: 380px;
        width: 380px;
    }
    .el_atajo,.al_limite{
        padding-right: 60px;
    }
    .al_limite{
        padding-right: 63px;
    }
}
@media screen and (max-width:480px){
    .contenedor_programa{
        width: 100%;
        padding-top: 75px;
    }
}