:root
{
    --color_botones_slider: #0D7A9E;
    --color_botones_slider_hover: #F50758;
    --color_azul_bajo: #00C4DF;
    --color_text_gris: #303030;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    font-size: 16px; /* Definimos el tamaño raíz del documento */
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
#logo_cliente_hader
{
    width: 100px;
}
.nav_fijo
{
    z-index: 2;
    width: 100%;
    position: fixed;
    top: 0px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.cont_espacio_vacio
{
    width: 100%;
    height: 9vh;
}
.img_slider_h
{
    width: 100vw;
    height: 91vh;
    object-fit: cover;
    object-position: top;
}
.cont_filtro_fijo
{
    width: 100%;
    height: 100vh;
    position: absolute;
    top:0px;
    background-color: rgba(0, 0, 0, 0.5);
    padding:0px 30px;
}
.cont_botones
{
    width: 100%;
    /*border: 1px solid red;*/
    padding: 10px 0;
}
.boton_coustom_prev, .boton_coustom_next
{
    width: 50px;
    height: 50px;
    opacity: 1 !important;
    border: 2px solid white;
    position:static;
    border-radius: 50%;
    margin: 5px;
    background-color: var(--color_botones_slider);
    transition: all 0.3s ease;
}
.boton_coustom_prev:hover, .boton_coustom_next:hover
{
    background-color: var(--color_botones_slider_hover);
}

.transparente
{
    background-color: rgba(240, 240, 240, 0.205) !important;
}
.c_azul
{
    opacity: 1;
    background-color: var(--color_azul_bajo) !important;
}
/*responsive*/
@media (max-width: 840px)
{
    .cont_espacio_vacio
    {
        height: 6vh;
    }
    .img_slider_h
    {
        height: 94vh;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.img_fondo_pt2
{
    height: 80vh;
    background-image: url(../img/img_fondo_pt2.jpg);
    background-size:contain;
    background-position: top center;
    background-repeat: no-repeat;
}
.cont_anios_experiencia
{
    width: 20%;
    height: 22vh;
    border: 5px solid white;
    background-color: var(--color_botones_slider_hover);
}
.color_custom_text_p
{
    color: var(--color_botones_slider_hover);
    font-size: 1.2rem;
}
.color_custom_text_h2
{
    color: var(--color_text_gris);
    font-size: 2.2rem;
}
.t_letras_p
{
    font-size: 1rem;
}
.linea_animada_custom
{
    width: 40vw;
    height: 2px;
    background-color: rgb(207, 207, 207);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.rec_mov
{
    width: 50px;
    height: 100%;
    background-color: var(--color_botones_slider_hover);
    animation: moverIzquierdaDerecha 5s infinite alternate;
}
@keyframes moverIzquierdaDerecha 
{
    0%, 100%
    {
        transform: translateX(0); /* Comienza en la izquierda */
    }
    50% 
    {
        transform: translateX(37vw); /* Llega a la derecha (ajusta según el ancho del contenedor) */
    }
}
.icono_img_t
{
    width: 60px;
}
/*responsive*/
@media (max-width: 840px)
{
    .img_fondo_pt2
    {
        height: 50vh;
    }
    .cont_anios_experiencia
    {
        height: 15vh;
    }
    .linea_animada_custom
    {
        width: 90vw;
    }
    @keyframes moverIzquierdaDerecha 
    {
        0%, 100%
        {
            transform: translateX(0); /* Comienza en la izquierda */
        }
        50% 
        {
            transform: translateX(85vw); /* Llega a la derecha (ajusta según el ancho del contenedor) */
        }
    }
}
@media (max-width: 570px)
{
    .img_fondo_pt2
    {
        height: 40vh;
    }
    .cont_anios_experiencia
    {
        width: 35%;
    }
    @keyframes moverIzquierdaDerecha 
    {
        0%, 100%
        {
            transform: translateX(0); /* Comienza en la izquierda */
        }
        50% 
        {
            transform: translateX(80vw); /* Llega a la derecha (ajusta según el ancho del contenedor) */
        }
    }
}
@media (max-width: 380px)
{
    .cont_anios_experiencia
    {
        width:40%;
        height: 20vh;
    }
    @keyframes moverIzquierdaDerecha 
    {
        0%, 100%
        {
            transform: translateX(0); /* Comienza en la izquierda */
        }
        50% 
        {
            transform: translateX(80vw); /* Llega a la derecha (ajusta según el ancho del contenedor) */
        }
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.img_fondo_pt3
{
    background-image: url(../img/img_fondo_pt3.png);
    background-position: top;
    background-size: cover;
}
.color_custom_text_p_pt3
{
    color: var(--color_azul_bajo);
    font-size: 1.2rem;
}
.box_servicio_pt3
{
    width: 100%;
    height: 250px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.box_servicio_pt3:hover
{
    background-color: var(--color_azul_bajo);
}
.box_servicio_pt3:hover .cont_numero
{
    background-color: var(--color_botones_slider);
}
.box_servicio_pt3:hover .cont_numero p
{
    color: white;
}
.box_servicio_pt3:hover .cont_letras_pt3 h3
{
    transition: all 0.3s ease;
    color: white;
}
.box_servicio_pt3:hover .cont_letras_pt3 p
{
    transition: all 0.3s ease;
    color: white;
}
.box_servicio_pt3:hover .cont_letras_pt3 i
{
    transition: all 0.3s ease;
    color: white;
}
.cont_arriba_pt3
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 10px 0;
}
.cont_numero
{
    width: 70px;
    height: 50px;
    background-color: #e7fcff;
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cont_numero p
{
    font-size: 1.5rem;
    color: var(--color_botones_slider);
    font-weight: 500;
    transition: all 0.3s ease;
}
.cont_arriba_pt3 img
{
    width: 60px;
    margin-left: 30px;
}
.cont_letras_pt3
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 30px;
}
.cont_boton_mas
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.letras_boton
{
    font-size: 20px;
    color: var(--color_botones_slider);
    padding-right:5px;
    cursor: pointer;
}
.cont_boton_mas i
{
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #0D7A9E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.cont_boton_mas:hover i
{
    transform: rotate(335deg);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.bg_gris_custom
{
    background-image: url(../img/img_fondo_pt4.png);
    background-position: top;
    background-size: cover;
}
.mas_padding
{
    width: 70%;
    text-align: center;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*quinta parte*/
.img_clientes_pt5
{
    width: 200px;
    margin: 20px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.contenedor_footer
{
    width: 100%;
    height: auto;
    background-image: url(../img/neruc_footer.png);
    background-size: cover;
    background-position: bottom;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.filtro_footer
{
    width: 100%;
    height: auto;
    padding-top: 50px;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
    background-color: rgba(38, 47, 78, 0.703);
    display: flex;
    align-items:flex-end;
    justify-content: center;
}
.cont_informacion_footer
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid green; */
}
.cont_logo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    border-bottom: 1px solid white;
    padding: 10px 0;
}
.cont_logo_footer img
{
    height: 80px;
}
.cont_arriba_footer
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content:space-between;
    padding: 10px 0;
}
.cont_izq_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.cont_izq_footer p
{
    font-size: 17px;
    color: white;
    text-align: justify;
}
.cont_der_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    /* border: 1px solid red; */
}
.cont_der_footer h2
{
    font-size: 17px;
    color: white;
    font-weight: 500;
    padding-bottom: 30px;
}
.cont_redes_footer
{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.boton_red_footer
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 10px;
    margin: 2px 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_red_footer:hover
{
    transition: all 0.3s;
    border: 2px solid grey;
}
.boton_red_footer:hover i
{
    transition: all 0.3s;
    color: grey;
}
.boton_red_footer i
{
    font-size: 20px;
    color: white;
}
.cont_abajo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
    padding: 10px 0;
}
.cont_abajo_footer_izq
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer_der
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer h3
{
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    padding-bottom: 10px;
}
.cont_abajo_footer img
{
    height: 40px;
}

.verde
{
    background-color: #12BB18;
}
.azul
{
    background-color: #124dbb;
}
.morado
{
    background-color: #875A7B;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*Responsive*/
@media screen and (max-width:840px){
    /*footer*/
    .cont_arriba_footer
    {
        flex-direction: column;
    }
    .cont_izq_footer
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .cont_der_footer
    {
        width: 100%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*footer*/
    .cont_logo_footer
    {
        justify-content:center;
    }
    .cont_izq_footer p
    {
        text-align: center;
    }
    .cont_abajo_footer
    {
        flex-direction: column;
    }
    .cont_abajo_footer_izq
    {
        padding: 10px 0;
    }
    .cont_abajo_footer_der
    {
        padding: 10px 0;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*footer*/
    .cont_logo_footer img
    {
        height: 60px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}