
/*CUERPO DE LA PAGINA*/
.container-documentos{
    width: 100%;
    margin-top: 20px; 
}
.imagen-documentos{
    width: 80%;
    margin: auto;
    animation: appear 1s linear;
}
.imagen-documentos img{
    width: 100%;
}
.titulo-documentos{
    width: 100%;
    display: flex;
    margin-top: 10px;
    color: white;
    background-color: #00009A;
    justify-content: center;
    text-align: center;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.titulo-documentos h2{
    padding: 15px;
    font-size: 33px;
    font-family: Arial, Helvetica, sans-serif;
}
.container-contenidos{
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.container-cuadro{
    border: 2px solid #a09595;
    width: 26.5%;
    margin: 1px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.container-cuadro h3{
    font-family: Arial, Helvetica, sans-serif;
    padding: 15px;
    text-align: center;
    font-size: 17px;
    color: #17336d;
}

/*Responsive Footer 750px*/
@media (max-width: 750px){
    .titulo-documentos{
        margin: 0;
        animation: appear 1s linear;
    }
    .titulo-documentos h2{
        padding: 15px;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .foto_principal{
        padding-top: 0;
    }

    .fondo{
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: rgba(213, 221, 225, 0.348);   
    }
    .container-documentos{
        margin-top: 0;
        
    }
    .container-contenidos{
        margin-top: 5px;
        padding: 10px;
    }
    .container-cuadro{
        width: 100%;
        animation: appear 1s linear;
    }
    .imagen-documentos{
        width: 100%;
    }
}