:root
{
    --color_azul: #044968;
    --colo_azul_bajo: #0097C9;
    --color_gris:#303030;
    --color_gris_bajo: #575757;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.color_text_azul
{
    color: var(--color_azul);
}
.color_text_gris
{
    color: var(--color_gris);
}
.color_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

.color_fondo_gris
{
    background-color: rgb(243, 243, 243);
}
.color_fondo_azul
{
    background-color: var(--color_azul);
}

.boton_stilo
{
    width: 200px;
    height: 60px;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.b_gris
{
    border: 2px solid var(--color_gris_bajo);
    color: var(--color_gris_bajo);
    transition: all 0.3s ease;
}
.boton_stilo:hover
{
    background-color: var(--color_azul);
}
.b_gris:hover
{
    color: white;
}

/*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, #0000009f, #0d213b00);
}
.t_letras_h1
{
    font-size: 3rem;
}
.t_letras_p_pt1
{
    font-size: 1.3rem;
}
@media (max-width: 840px)
{
    .filtro_pt1
    {
        background: linear-gradient(to right, #0000009a, #0000009a);
    }
    .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 parte*/
.t_p_pt2
{
    font-size: 1.3rem;
}
.t_letras_h2
{
    font-size: 2.5rem;
}
.img_cover
{
    object-fit: cover;
    object-position: center;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.box_servicio
{
    height: 700px;
    border-radius: 10px;
    border: 1px solid rgb(230, 230, 230);
    background-color: white;
    overflow: hidden;
}
.t_letras_h3
{
    font-size: 1.5rem;
}
.t_p_pt3
{
    font-size: 1.1rem;
}
.borde_top
{
    border-top: 1px solid rgb(230, 230, 230);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.box_porque
{
    width: 100%;
    height: 450px;
    background-color: var(--colo_azul_bajo);
    transition: all 0.3s ease;
}
.circulo_why
{
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.c_cambio_letras_h3
{
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}
.c_cambio_letras_p
{
    color:white;
    font-weight: 700;
    transition: all 0.3s ease;
}
.box_porque:hover
{
    background-color: white;
}
.box_porque:hover .c_cambio_letras_h3
{
    color: var(--color_azul);
}
.box_porque:hover .c_cambio_letras_p
{
    color: var(--color_gris);
}

@media (max-width: 840px)
{
    .box_porque
    {
        height: auto;
    }
    .box_porque
    {
        background-color: var(--colo_azul_bajo);
    }
    .c_cambio_letras_h3, .c_cambio_letras_p
    {
        color: white;
    }
}