#content-sede {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: var(--gris-claro);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

#content-carousel-sede {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;    
    position: relative;
}

#content-info-sede {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#content-info-sede h3{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 4px 20px;
}

#content-info-sede h3.amarillo{
    background-color: var(--amarillo);
}

#content-info-sede h3.azul{
    background-color: var(--azul);
}

#content-info-sede h3 img{
    width: 50px;
    padding-bottom: 20px;
}

#content-info-sede h3 span{
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

#content-info-sede p{
    font-size: 22px;
    color: var(--grid);
    line-height: 28px;
    letter-spacing: 1px;
    padding: 30px;
    text-align: justify;
}

#bnn-izq {
    left: 3%;
}

#bnn-der {
    right: 3%;
}

.bnn {
    background-color: var(--rojo);
}

#content-iframe {
    width: 80%;
}

#content-iframe iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: var(--shadow-1);
}


@media screen and (max-width: 1024px) {
    #content-sede {
        width: 92%;
        flex-direction: column;
    }

    #content-carousel-sede {
        width: 100%;
    }

    #content-info-sede {
        width: 100%;
    }

    #content-info-sede h3 span {
        font-size: 22px;
    }

    #content-info-sede h3 img {
        width: 40px;
    }

    #content-info-sede p {
        font-size: 16px;
        line-height: 25px;
        letter-spacing: 0px;
        padding: 15px;
    }

    #content-iframe {
        width: 92%;
        margin-bottom: 30px;
    }
}