@font-face {
    font-family:Open_Sans;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --colorFondoMenu:rgb(255, 255, 255);
    --colorHoverMenu:rgb(99, 99, 99);
    --colorPrimarioMenu:rgb(222, 6, 43);
    --colorLineaMenu:rgb(201, 201, 201);
    --colorFondoFooter:rgb(33,38,44);
    --tamañoLogoCliente:100px;
    --tamañoLogoMenu:60px;
}
body
{
    font-family:"Open_Sans";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*menu*/
.contenedor_menu_principal
{
    z-index: 3;
    position: fixed;
    top:0px;
    width: 100%;
    height: 70px;
    background-color:var(--colorFondoMenu);
    /*backdrop-filter: blur(1px);*/
    border-bottom: 1px solid var(--colorLineaMenu);
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding-left: 50px;
}
.contenedor_menu_principal img
{
    height: var(--tamañoLogoMenu);
    transition: all 0.3s;
}
.contenedor_menu_principal img:hover
{
    opacity: 0.7;
    transition: all 0.3s;
}
.menu_lista
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
}
.menu_lista i
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100%;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}
.menu_lista i.activado
{
    background-color: var(--colorHoverMenu);
}
.menu_lista li
{
    list-style: none;
    display: flex;
    align-items:center;
    justify-content:center;
    height: 75px;
}
.menu_lista a
{   
    text-decoration: none;
    font-size: 14px;
    /*font-family: "Montserrat";*/
    font-weight: 500;
    color:var(--colorHoverMenu);
    margin: 0 30px;
    padding-bottom: 2px;
    position: relative;
    transition: all 0.3s;
    /*border: 1px solid red;*/
}
.menu_lista a:after
{
    content: "";
    width: 0px;
    height: 3px;
    background-color: var(--colorPrimarioMenu);
    position: absolute;
    bottom: 0px;
    right: 50%;
    transition: all 0.3s;
    will-change: whidth;
}
.menu_lista a:hover:after
{
    width: 100%;
    right: 0px;
}
.menu_lista a:hover
{
    color: var(--colorPrimarioMenu);
    transition: all 0.3s;
}
.boton_menu_principal i
{
    display: none;
    color: var(--colorHoverMenu);
}
.menu_lista_despleglable
{
    display: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
footer
{
    background-color: var(--colorFondoFooter);
    clip-path: polygon(94% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.contenedor_contacto
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colorFondoFooter);
    padding-top: 100px;
}
.cont_izq_contacto
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_izq_contacto img
{
    height: var(--tamañoLogoCliente);
}
.cont_izq_contacto p
{
    font-size: 15px;
    color: white;
    padding: 30px;
}
.cont_der_contacto
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_contactos_contacto
{
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
}
.cont_der_contacto h2
{
    font-size: 17px;
    color: white;
    padding-bottom: 30px;
}
.cont_contactos_contacto i
{
    font-size: 16px;
    color: white;
    padding: 5px 0;
}
.cont_contactos_contacto a
{
    font-size: 16px;
    color: white;
    font-weight: 500;
    font-family:"Open_Sans";
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.5s;
}
.cont_contactos_contacto a:hover
{
    color: grey;
    transition: all 0.5s;
}
.contenido_neruc
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--colorFondoFooter);
    height: 120px;
}
.contenido_letras_neruc h3
{
    font-size: 20px;
    padding-bottom: 10px;
    font-family: "Open_Sans";
    color: #fff;
    text-align: center;
}
.contenido_img_neruc img
{
    width: 50px;
    transition: all 0.5s;
}
.contenido_img_neruc img:hover
{
    transition: all 0.5s;
    opacity: 0.5;
}
/*aviso de privacidad*/
.contenedor_aviso_privacidad
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
}
.contenedor_aviso_privacidad p
{
    font-size: 17px;
    color: white;
    padding-bottom: 20px;
}
.contenedor_aviso_privacidad a
{
    font-size: 17px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.contenedor_aviso_privacidad a:hover
{
    transition: all 0.3s;
    color: grey;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*Responsive*/
@media screen and (max-width:840px)
{
    /*menu*/
    .contenedor_menu_principal
    {
        justify-content:space-evenly;
        padding-left: 0px;
    }
    .contenedor_menu_principal img
    {
        padding-left: 0px;
    }
    .contenido_menu_principal
    {
        display: none;
    }
    .boton_menu_principal i
    {
        display: block;
        cursor: pointer;
    }
    .menu_lista
    {
        padding-left: 0px;
    }
    /*menu desplegable*/
    .menu_lista_despleglable
    {
        z-index: 2;
        position: fixed;
        top:0px;
        width: 100%;
        height: 395px;
        display: flex;
        justify-content: center;
        align-items:center;
        flex-direction: column;
        background-color:white;
        backdrop-filter: blur(2px);
        display: none;
    }
    .menu_lista_despleglable.activado
    {
        display: flex;
    }
    .menu_lista_despleglable
    {
        padding-top: 75px;
    }
    .menu_lista_despleglable li
    {
        padding: 12px 0;
        list-style: none;
        background-image: linear-gradient(90deg, var(--colorPrimarioMenu), var(--colorPrimarioMenu), var(--colorPrimarioMenu));
        background-repeat: no-repeat;
        background-size: 100% 3px;
        background-position: left bottom;
    }
    .menu_lista_despleglable a
    {
        text-decoration: none;
        /*font-family: "Montserrat";*/
        color: var(--colorHoverMenu);
        font-size: 20px;
    }
    /*footer*/
    .contenedor_contacto
    {
        flex-direction: column;
    }
    .cont_izq_contacto
    {
        width: 100%;
    }
    .cont_der_contacto
    {
        width: 100%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{

    /*menu*/
    .contenedor_menu_principal
    {
        height: 70px;
    }
    .contenedor_menu_principal img
    {
        height: 50px;
    }
    /*menu desplegable*/
    .menu_lista_despleglable
    {
        top:0px;
    }
    /*footer neruc*/
    .contenido_letras_neruc h3
    {
        font-size: 15px;
    }
    .contenido_img_neruc img
    {
        width: 140px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*menu*/
    .contenedor_menu_principal
    {
        height: 70px;
    }
    .contenedor_menu_principal img
    {
        height: 50px;
    }
    /*footer neruc*/
    .contenido_letras_neruc h3
    {
        font-size: 15px;
    }
    .contenido_img_neruc img
    {
        width: 125px;
    }
}
