/* INICIO BANNER */

.webp .banner {
    background-image: url(img/foto-docente.webp);
}

.nowebp .banner {
    background-image: url(img/foto-docente.jpg);
}

.banner {
    width: 100%;
    height: 50rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner-degradado {
    background-color: #00000088;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .banner-degradado {
        display: flex;
        flex-direction: row;
    }   
}

.banner p {
    font-size: 2.9rem;
    color: var(--blanco);
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0;
}

.banner img {
    width: 8rem;
}

@media (min-width: 768px) {
    .banner p {
        font-size: 5rem;
        padding: 5rem;
    }
}

/* FIN BANNER */