/*Version 1.0.0*/
/*Memoria Anual CSS*/
.memoria-anual-bg-container{
    background: #006BB1; /* Asegúrate de tener la ruta correcta a la imagen de fondo */
}
.memoria-anual-section{
    margin: 70px 0;
}

/*Start Media Query*/
/*Movil*/
@media only screen and (max-width: 768px) {
    .memoria-anual-section{
        margin: 35px 0;
    }
    
}
/*Tablet*/
@media only screen and (min-width: 769px) and (max-width: 991px) {
    

}
/*Laptop S*/
@media only screen and (min-width: 992px) and (max-width: 1023px) {

}
/*Laptop XS O Tablet (caso especial)*/
@media only screen and (min-width: 930px) and (max-width: 991px) {

}
/*Desktop*/
@media only screen and (min-width: 1024px) {

}
/*Desktop HD*/
@media only screen and (min-width: 1440px) {
    
}
/*Desktop 27*/
@media only screen and (min-width: 1840px) {
    
}