#info {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 15px;
    background-color: #E5E7E9;
}


#info p {
    font-size: 18px;
}

#info .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-profe {
    margin: 10px;
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
}

.info-profe:hover {
   box-shadow: 0px 10px 4px 0px gray;
}

.info-profe h3 {
    color: #4070ff;
}

.info-profe img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
}

.info-profe img:hover {
    filter: saturate(140%);
    border-radius: 50%;
    border: 3px solid #ffbf00;
     transform: scale(1.08);
   transition: 2s;
}

.info-dir {
    margin: 20px;
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
}

.info-dir:hover {
   box-shadow: 0px 10px 4px 0px gray;
}

.info-dir h3 {
    color: #4070ff;
}

.info-dir img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
}

.info-dir img:hover {
   filter: saturate(140%);
   border-radius: 50%;
   transform: scale(1.1);
   transition: 2s;
}