/*? -------------- Prensa  */
.prensa{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.prensa__video{
    width: 100%;
    height: 18.1rem;
    box-shadow: 6px 6px 3px var(--color-terciario);
    border-radius: 1rem;
}
.prensa__box-title{
    color: var(--color-terciario);
}
.prensa__box-subtitle{
    font-weight: 500;
    text-transform: uppercase;
    color: var(--gris);
}
.prensa__box-descripcion{
    text-align: justify;
    color: var(--color-primario);
    font-family: 'Roboto';
}
.prensa__box-imagen{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.box-imagen__firma{
    width: 30rem;
}
/*!--- MediaQuery Prensa------ */

@media screen and (min-width:768px) {
    .prensa__box{
        width: 100%;
    }
    .prensa__video {
        width: 50%;
        height: 20rem;
        float: right;
        margin-left: 1rem;
    }
}
@media screen and (min-width:992px) { 
    .prensa{
        display: flex;
    }
    .prensa__box{
        width: 50%;
        padding: 2rem;
    }
    .prensa__video {
        height: 27rem;
        width: 100%;
    }
    .box-imagen__firma {
        width: 40rem;
    }
} 