/*----------------------------------- PORTADA ----------------------------------*/

.portada_promociones{
    width: 100%;
    height: 90vh;
    position: relative;
    margin-bottom: 10vh;
    background-image: url('../../img/portada_promociones.jpg');
    background-position: center 65%;
    background-size: cover; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;  
}

.mascara_portada_promociones{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.contenido_portada_promociones{
    margin: 0 auto;
    position: relative;
    z-index: 10000;
}

.portada_promociones h3{
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    margin-top: 80px;
}

.portada_promociones h2{
    font-family: "Lora",sans-serif;
    text-align: center;
    color: #fff;
    font-size: 85px;
    font-weight: 400;
}

.portada_promociones hr{
    width: 80px;
    border: 2px solid #fff;
    margin: 20px auto;
    margin-bottom: 40px;
}


/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    /*----------------------------------- PORTADA ----------------------------------*/

    .portada_promociones{
        height: 90vh; 
        z-index: 10;
    }

    .mascara_portada_promociones{
        background-color: rgba(0, 0, 0, 0.55);
    }


    .portada_promociones h3{
        font-size: 22px;
        margin-top: 0px;
    }

    .portada_promociones h2{
        font-size: 52px;
    }

    .portada_promociones hr{
        width: 60px;
        border: 1px solid #fff;
    }


}