@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root
{
    --color_texto_link_menu: rgb(50, 50, 50);
    --color_texto_link_menu_hover: #E0A000;
    --color_text_gris: #424242;
    --color_linea_abajo_menu:#E0A000;
    --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;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.d_flex_center_center
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.d_flex_center_between
{
    display: flex;
    align-items: center;
    justify-content:space-between;
    flex-wrap: wrap;
}
.d_flex_center_center_column
{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: column;
}
.w_100
{
    width: 100%;
}
.w_90
{
    width: 90%;
}
.w_50
{
    width: 50%;
}

.p_1
{
    padding: 0.4rem;
}
.p_2
{
    padding: 0.7rem;
}
.py_2
{
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.white_letter
{
    color: white !important;
}

.fs_6
{
    font-size: 1rem;
}
.fs_4
{
    font-size: 1.5rem;
}

.bg_color_background
{
    background-color: var(--color_fondo_footer);
}
.border_top_custom
{
    border-top: 1px solid grey;
}
.button_custom_footer
{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid grey;
    text-decoration: none;
    margin: 3px;
    font-size: 1.3rem;
    color: grey;
    transition: all 0.3s ease;
}
.bg_telefono_footer:hover
{
    color: white;
    background-color: var(--color_bg_telefono);
    border: 1px solid white;
}
.bg_whatsapp_footer:hover
{
    color: white;
    background-color: var(--color_bg_whatsapp);
    border: 1px solid white;
}

.text_color_white
{
    color: white;
}

@media (max-width: 768px)
{
    .d_flex_movil
    {
        flex-direction: column !important;
    }
}