@font-face 
{
    font-family:OpenSans;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --color_Fondo_Menu:rgb(242, 243, 245);
    --color_principal_cliente:rgb(249,90,53);
    --color_textos_menu:rgb(102, 105, 111);
 
    --heigth_logo: 70px;
    --tamaño_logo_footer:90px;
}
body
{
    font-family:"OpenSans";
}
/*--------------------------------------------*/
/*animacion_cargando*/
.cont_fondo_cargando
{
    z-index: 6;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.animacion_crecer
{
    width: 250px;
}
.animacion_crecer 
{
  animation: crecerReducir_loanding 1s infinite alternate; /* Animación infinita */
}
  
@keyframes crecerReducir_loanding 
{
  from { transform: scale(1); } /* Tamaño inicial */
  to { transform: scale(1.1); } /* Tamaño al finalizar la animación */
}
/*--------------------------------------------*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
.cont_menu_principal_1
{
    z-index: 4;
    position: absolute;
    width: 100%;
    height: 90px;
    /*border: 1px solid red;*/
    background-color: var(--color_Fondo_Menu);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_menu_1_izq
{
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid green;*/
}
.cont_menu_1_izq img
{
    height: var(--heigth_logo);
    /*border: 1px solid red;*/
}
.logo_cons
{
    width: 250px;
    height: auto !important;
    margin: 0 30px !important;
}
.cont_menu_1_der
{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    padding-right: 30px;
    /*border: 1px solid red;*/
}
.box_info_menu
{
    width: auto;
    height: 100%;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
}
.cont_izq_box
{
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid white;*/
}
.circulo_box
{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circulo_box i
{
    font-size: 25px;
    color: var(--color_principal_cliente);
}
.cont_der_box
{
    width:auto;
    height: 100%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid white;*/
}
.cont_der_box p
{
    font-size: 17px;
    color: grey;
}
.cont_der_box a
{
    text-decoration: none;
    font-size: 20px;
    color: var(--color_textos_menu);
    transition: all 0.3s ease;
}
.box_info_menu:hover .cont_der_box a
{
    color: var(--color_principal_cliente);
}
/*----------------------------------------------*/
.cont_menu_2
{
    position: absolute;
    width: 100%;
    height: 60px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_menu_principal_2
{
    z-index: 4;
    position: absolute;
    top: 90px;
    width: 90%;
    height: 60px;
    background-color: var(--color_principal_cliente);
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 0 50px;
}
.cont_menu_principal_2 ul
{
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.cont_menu_principal_2 li
{
    list-style: none;
    padding: 0 5px;
}
.cont_menu_principal_2 a
{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}
.cont_menu_principal_2 a:hover
{
    color: var(--color_textos_menu);
}
/*boton menu movile*/
.cont_boton_menu_movil
{
    height: 100%;
    /*border: 1px solid red;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}
.boton_movil
{
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_movil i
{
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}
.boton_movil:hover
{
    border: 2px solid black;
}
.boton_movil:hover i
{
    color: black;
}

.menu_movile
{
    position: fixed;
    top: 0px;
    height: 60px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.cont_rede_contacto
{
    width: auto;
    padding: 0 5px;
    height: 100%;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.box_menu_movil
{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 5px;
    margin: 0 10px;
}
.dir
{
    width: auto !important;
    padding: 0 5px;
}
.box_menu_movil i
{
    font-size: 30px;
    color: white;
}
.box_menu_movil p
{
    font-size: 17px;
    color: white;
    padding: 0 5px;
}

.cont_clic_afuera
{
    z-index: 3;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
}
/*------------------------------------------------------------*/
/*responsive*/
@media screen and (max-width:1000px)
{
    .box_info_menu
    {
        width: auto;
        margin: 0 10px;
    }
    .cont_izq_box
    {
        width: 100%;
    }
    .cont_der_box
    {
        display: none;
    }
    .boton_movil:hover
    {
        border: 2px solid white;
    }
    .boton_movil:hover i
    {
        color: white;
    }
    .cont_menu_principal_2
    {
        justify-content:flex-end;
    }
    /*al inicio de la pagina*/
    #menu_escritorio_letras
    {
        z-index: 4;
        position: fixed;
        top: 155px;
        right: 0px;
        width: 300px;
        height: auto;
        /*border: 1px solid red;*/
        flex-direction: column;
        background-color: var(--color_principal_cliente);
        padding: 10px;
        border-radius: 5px 0px 0px 5px;
    }
    #menu_escritorio_letras li
    {
        width: 100%;
        height: 40px;
        border-bottom: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    /*al hacer scroll*/
    #menu_movile_letras
    {
        z-index: 4;
        position: fixed;
        top: 65px;
        right: 0px;
        width: 300px;
        height: auto;
        /*border: 1px solid red;*/
        flex-direction: column;
        background-color: var(--color_principal_cliente);
        padding: 10px;
        border-radius: 5px 0px 0px 5px;
    }
    #menu_movile_letras li
    {
        width: 100%;
        height: 40px;
        border-bottom: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}
@media screen and (max-width:840px)
{
    .cont_menu_1_izq img
    {
        height: 60px;
    }
}
@media screen and (max-width:570px)
{
    .cont_menu_1_der
    {
        padding-right: 10px;
    }
    .cont_menu_principal_2
    {
        padding: 0 10px;
    }
    .cont_menu_1_izq img
    {
        height: 40px;
    }
    .circulo_box
    {
        width: 45px;
        height: 45px;
    }
    .circulo_box i
    {
        font-size: 20px;
    }
}
@media screen and (max-width:395px)
{
    .cont_menu_principal_2
    {
        width: 95%;
    }
    .box_info_menu
    {
        margin: 0 5px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.contenedor_footer
{
    width: 100%;
    height: auto;
    background-image: url(../img/img_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: var(--tamaño_logo_footer);
    margin-left: 10px;
}
.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;
}
/*------------------------------------------------------------*/
/*responsive*/
@media screen and (max-width:840px)
{
    .cont_arriba_footer
    {
        flex-direction: column;
    }
    .cont_logo_footer
    {
        flex-direction: column;
    }
    .cont_izq_footer
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .cont_der_footer
    {
        width: 100%;
    }
}
@media screen and (max-width:570px)
{
    .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;
    }
}
@media screen and (max-width:395px)
{
    .cont_logo_footer img
    {
        height: 80px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}