
/*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;
    animation: appear-right 1s linear;
}
.box-docente{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
    
}
.card{
    padding: 20px;
    cursor: none;
    text-align: center;
    background-color: rgba(213, 221, 225, 0.348);
    margin: 20px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.4);
}

.card a:hover{
    color: #171719e9;
}
.card a p{
    margin-top: 15px;
    margin-bottom: 10px;
}
.card h3{
    text-align: center;
    font-size: 23px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #554f9c;
}
.card a{
    text-align: center;
    font-size: 18px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-bottom: 5px;
    color: #131314af;
    font-weight: 700;
    text-decoration: none;
}
.card .button1{
    padding: 12px;
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    border: 2px solid #221f5e;
    color: #221f5e;
    border-radius: 5px;
    background-color: white;
    margin-top: 30px;
}
.card .button2{
    width: 75%;
    padding: 15px;
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    border: 2px solid #221f5e;
    color: white;
    border-radius: 5px;
    background-color: #112c66;
    margin-top: 40px;
}
.button1:hover{
    cursor: pointer;
    background-color: #221f5e;
    color: white;
    transition: 0.3s;
}
.button2:hover{
    cursor: pointer;
    background-color: white;
    color: #112c66;
    transition: 0.3s;
}
/*Responsive 700px*/
@media (max-width: 700px){
    .box-docente{
        width: 100%;
    }
    .subtitulo-docente{
        width: 90%;
        padding: 20px 0 20px 0;
        font-size: 25px;
        font-family: Arial, Helvetica, sans-serif;
        color: #22438c;
        text-align: center;
        font-weight: 900;
        margin: auto;
    }
    .card{
        border-radius: 2%;
    }
    .card h3{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .card > p{
        text-align: center;
        font-size: 15px;
        font-family: Arial, Helvetica, sans-serif;
        padding-bottom: 25px;
    }
}
