/*CUERPO*/
.container{
    width: 100%;
}
.container h2{
    text-align: center;
    font-size: 50px;
    color: #00009A;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: appear-right 1s linear;
}
@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%;}
    
}
.slide{
    width: 75%;
    margin: auto;
    overflow: hidden;
    animation: appear 1s linear;
}
.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%;
    
}

.descripcion-egreso{
    width: 100%;
    background-color: #00009A;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.descripcion-egreso h3{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 25px;
    padding: 15px;
}
.texto{
    margin: auto;
    text-align: center;
    width: 75%;
    animation: appear 1s linear;
}
.texto p{
    font-family: "Noto Sans", sans-serif;
    text-align: justify;
    padding: 10px 0 15px 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgb(33, 28, 28);
}
/*DIV_DE_ENLACES*/
.malla{
    display: flex;
    flex-flow: row wrap;
    width: 75%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.malla a{
    margin: auto;
    font-size: 35px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #22438c;
}
.malla img{
    width: 100px;
}
/*Responsive 750px*/
@media (max-width: 750px){
    .slide{
        width: 95%;
    }
    .container h2{ 
        font-size: 46px;
    }
    .descripcion-egreso h3{
        font-size: 20px;
        padding: 15px 0 15px 0;
        font-weight: 900;
    }
    .fondo{
        background-color: rgba(213, 221, 225, 0.348);
        padding-bottom: 30px;
    }
    .texto{
        width: 85%;
    }
    .texto p{
        font-family: "Noto Sans", sans-serif;
        padding: 10px 0 15px 0;
        font-size: 16px;
        line-height: 1.5;
    }
    .malla{
        flex-direction: column;
        width: 90%;
    }
    .malla a{
        font-size: 18px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    .malla img{
        width: 80%;
    }
}