/*CUERPO*/
.container{
    width: 100%;
}
.subtitulo-docente{
    margin: 35px 0 20px 0;
    font-size: 45px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(9, 35, 91);
    text-align: center;
}
.docente-right{
    animation: appear-right 1s linear;
}
.docente-left{
    animation: appear-left 1s linear;
}
.box-docente{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
    
}
.card{
    text-align: center;
    background-color: rgba(213, 221, 225, 0.348);
    padding: 40px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.3);
}
.card-right{
    animation: appear-right 1s linear;
}

.card-left{
    animation: appear-left 1s linear;
}
.card h3{
    text-align: center;
    font-size: 23px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #554f9c;
    padding-bottom: 30px;
    cursor: default;
}
.card p{
        cursor: default;  
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141414;
    }

/*Responsive 700px*/
@media (max-width: 700px){
    .subtitulo-docente{
        margin: 20px 0 10px 0;
        width: 100%;
        font-size: 25px;
        color: #22438c;
        text-align: center;
        font-weight: 900;
    }
    .box-docente{
        width: 95%;
    }
    .card{
        margin-bottom: 20px;
    }
    .card h3{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .card > p{
        text-align: center;
        font-size: 15px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 600;
    }
}
