
/*CUERPO*/
.subtitulo-reseña{
    padding: 20px;
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #00009A;
    text-align: center;
    animation: appear 1s linear;

}
.container{
    width: 100%;
}
.slide{
    width: 75%;
    margin: auto;
    overflow: hidden;
    cursor: grab;
    animation: appear 1s linear;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.2);
}

.slide ul{
    display: flex;
    padding: 0;
    width: 400%;
    animation: slide 15s infinite cubic-bezier(0.55, 0.48, 0.37, 0.92);
    
}
.slide ul img{
    width: 100%;
}
@keyframes slide{
    0%{margin-left: 0;}
    20%{margin-left: 0;}
    
    25%{margin-left: -100%;}
    45%{margin-left: -100%;}

    50%{margin-left: -200%;}
    70%{margin-left: -200%;}    

    75%{margin-left: -300%;}
    100%{margin-left: -300%;}
}
.container-titulo{
    width: 75%;
    margin-top: 50px;
    margin: auto;
    animation: appear 1s linear;
}
.container-titulo h3{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #213e7c;
    font-weight: 900;
    background-color: rgba(213, 221, 225, 0.348);
}
.texto-reseña{
    width: 75%;
    text-align: justify;
    margin: auto;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    animation: appear linear;
	animation-timeline: view();
	animation-range: entry 0%;
}

/*Responsive 1200px*/
@media (max-width: 1200px){
    .slide{
        width: 70%;
    }
    .subtitulo-reseña{
        padding: 20px;
        font-size: 35px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        color: blue;
        text-align: center;
}
}
/*Responsive 700px*/
@media (max-width: 700px){
    .subtitulo-reseña{
        padding-bottom : 20px;
        font-size: 30px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        color: #032773;
        text-align: center;
}
    .slide{
        width: 95%;
        margin-bottom: 30px;
    }
    .slide{
        border-radius: 3px;
    }
    .fondo{
        background-color: rgba(213, 221, 225, 0.348);
    }
    .container-titulo{
        background-color: #00009A;
        width: 100%;
        text-align: center;
        padding: 1px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .container-titulo h3{
        color: white;
        background-color: #00009A;
        font-weight: 600;
        font-size: 20px;
    }
    .texto-reseña{
        padding-top: 10px;
        width: 90%;
        padding-bottom: 10px;   
    }
    
}

