@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@font-face {
    font-family:Oswald-Bold;
    src: url('../fonts//Oswald-Bold.ttf') format('truetype');
}
:root
{
    --color_fondo_princiapal: #2996D4;
    --color_texto_link_menu: #00368F;
    --color_texto_link_menu_hover: #DE0039;
    --color_text_gris: #424242;
    --color_linea_abajo_menu:#003394;
    --color_boton_menu_movil: #424242;

     --color_fondo_footer: #303030;
    --color_bg_telefono: rgb(69, 69, 255);
    --color_bg_whatsapp: #12BB18;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.text_oswald_bold
{
    font-family:"Oswald-Bold";
}
.solo_borde
{
    letter-spacing: 0.3125rem;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--color_principal_azul);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
.header_primary
{
    z-index: 4;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, #ffffff, #ffffff00);
}
.text_color
{
    color: var(--color_texto_link_menu);
    font-weight: 500;
    padding: 5px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.text_color:hover
{
    color: var(--color_texto_link_menu_hover) !important;
}
.boton_header
{
    width: 50px;
    height: 50px;
    border: 3px solid var(--color_boton_menu_movil);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}
.boton_header i
{
    width: 30px;
    height: 30px;
    font-size: 35px;
    color: var(--color_boton_menu_movil);
    display: flex;
    align-items: center;
    justify-content: center;  
}
.menu_desplegable
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.clic_fuera
{
    opacity: 0;
    z-index: 3;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

/*responsive*/
@media (max-width: 840px)
{
    .header_primary
    {
        justify-content: space-between !important;
    }
    .menu_desplegable
    {
        opacity: 0;
        position: absolute;
        top:85px;
        right:0px;
        width: 60vw;
        padding: 10px 0;
        padding-bottom: 20px;
        border-radius: 5px 0 0 5px;
        align-items: flex-start !important;
        padding-left: 10px !important;
        flex-direction: column;
        background-color: white;
    }
    .link_submenu:hover
    {
        color: var(--color_texto_link_menu);
    }
    .menu_desplegable li
    {
        width: 100%;
        border-bottom: 1px solid var(--color_linea_abajo_menu);
    }
    .boton_header
    {
        display: flex;
    }
    .boton_acomodo
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 570px)
{
    .menu_desplegable
    {
        width: 100vw;
    }
    .link_submenu
    {
        font-size: 1.1rem;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.border_botton_custom
{
    border-bottom: 1px solid white;
}
.link_footer
{
    text-decoration: none;
}
.link_hover_footer
{
    transition: all 0.3s ease;
}
.link_hover_footer:hover
{
    scale: 1.3;
}