
.container{
    width: 100%;
    margin-top: 40px;
}
.slide{
    margin: auto;
    width: 79%;
    margin-bottom: 50px;
    animation: appear 1s linear;
}
.slide h2{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: rgb(41, 43, 45);
    font-weight: 100;
    font-size: 70px;
    letter-spacing: 7px;
    margin-bottom: 10px;
}
.slide img{
    width: 100%;
    cursor: pointer;
}
/*Titulo de Programa de Estudios*/
/*Cards*/
.programa-estudios{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: auto;
    justify-content: center;
}
.card{
    margin: 20px;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.2);
    cursor: default;
    transition: all 400ms ease;
    width: 370px;
    height: 630px;
    position: relative;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.card:hover{
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3%);
}   
.card img{
    max-width: 100%;
    object-fit: cover;
}
.card h5{
    position: absolute;
    top: 0;
    right: 0;
    margin: 25px;
    color: #4f4b74;
}
.card a {
    text-decoration: none;
}
.titulo{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin: 30px;
    color: rgb(55, 52, 52);
    line-height: 1.4;
}
.card h6{
    color: #22438c;
    font-size: 13px;
    font-weight: 600;
    margin: 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/*Responsive 769px*/
@media (max-width: 750px){
    .slide{
        width: 90%;
        margin-bottom: 35px;
        animation: appear 1s linear;
    }
    .slide h2{
        font-weight: 600;
        font-size: 30px;
        text-align: center;
        animation: appear-right 1s linear;
    }
    .programa-estudios{
        flex-direction: column;
        align-items:  center;
    }
    .card{
        width: 80%;
        margin: auto;
        margin-bottom: 50px;
    }
    .card > img{
        width: 100%;
    }
}