:root
{
    --color_rojo:#ED3237;
    --color_azul: #1F388A;
    --color_gris:#303030;
    --color_gris_bajo: #616161;

    --color_alerts_rojo: #F60100;
    --color_alert_amarillo: #FEDE00;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.colr_text_amarillo
{
    color: var(--color_amarillo);
}
.color_text_gris
{
    color: var(--color_gris);
}
.color_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.img_slider_h
{
    width: 100vw;
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

.filtro_pt1
{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 80vh;
    background: linear-gradient(to right, #0000005e, #0000005e);
}
.t_letras_h1
{
    font-size: 2.5rem;
}
.t_letras_h2_pt1
{
    font-size: 2rem;
}
.t_letras_p_pt1
{
    font-size: 1.3rem;
}
@media (max-width: 840px)
{
    .filtro_pt1
    {
        background: linear-gradient(to right, #0000006e, #0000006e);
    }
    .t_letras_h1
    {
        font-size: 3.5rem;
    }
    .t_letras_p_pt1
    {
        width: 100% !important;
    }
}
@media (max-width: 570px)
{
    .t_letras_h1
    {
        font-size: 3rem;
    }
}
@media (max-width: 380px)
{
    .img_slider_h
    {
        height: 100vh;
        max-height: 100vh;
    }
    .filtro_pt1
    {
        height: 100vh;
        max-height: 100vh;
    }
    .t_letras_p_pt1
    {
        font-size: 1.2rem;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda sección*/
.hidden_img
{
    object-fit: cover;
    object-position: center;
}
.c_text_red
{
    color: var(--color_rojo);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera sección*/
.bg_background_pt3
{
    background-image: url(../img/img_background_pt3.jpg);
    background-position: center;
    background-size: cover;
}
.box_card
{
    width: 100%;
    height: 330px;
    border-radius: 30px;
    background-color: white;
    border-bottom: 5px solid white;
    transition: all 0.5s ease;
}
.box_card:hover
{
    border-bottom: 5px solid var(--color_rojo);
}