:root
{
    --color_azul: #CC3637;
    --color_amarillo: #B72937;
    --color_gris:#303030;
    --color_gris_bajo: #575757;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.c_text_azul
{
    color: var(--color_azul);
}
.c_text_gris
{
    color: var(--color_gris);
}
.c_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

.color_fondo_gris
{
    background-color: rgb(230, 230, 230);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.img_slider_h
{
    width: 100vw;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}

.filtro_pt1
{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 90vh;
    background: linear-gradient(to right, #00000072, #00000072);
}
.t_letras_h1
{
    font-size: 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, #00000072, #00000072);
    }
    .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*/

@media (max-width: 840px)
{
    .img_custom
    {
        width: 100%;
        height: auto;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera sección*/
.img_background_custom
{
    background-image: url(../img/img_background_custom.jpg);
    background-position: center;
    background-size: cover;
}
.bg_filter_sec_3
{
    width: 100%;
    height: 100%;
    background-color: #cc3636d8;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta sección*/
.font_size_custom_h3
{
    font-size: 1.5rem;
    font-weight: 700;
}
.img_cover
{
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--color_azul);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*formulario*/
.h_custom
{
    height: 100vh;
}
.input_form
{
    width: 100%;
    height: 40px;
    border: 2px solid var(--color_azul);
    border-radius: 5px;
}
.boton_entrar
{
    width:250px;
    height: 40px;
    border: 2px solid var(--color_azul);
    background-color: var(--color_azul);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.boton_entrar:hover
{
    background-color: white;
    color: var(--color_azul);
}