*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --color_Fondo_Menu:rgba(255, 255, 255, 0);
    --color_textos_menu:rgb(255, 255, 255);
    --color_textos_menu_hover:#AC191F;
    /*colores principales de el negocio*/

    --height_logo:65px; 
    --height_logo_scroll:55px; 
    --tamaño_logo_footer:100px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
footer
{
    margin: 0px !important;
}
.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;
}

.verde
{
    background-color: #12BB18;
}
.azul
{
    background-color: #124dbb;
}
.morado
{
    background-color: #875A7B;
}
/*------------------------------------------------------------*/
/*responsive*/
@media screen and (max-width:840px)
{
    .cont_arriba_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: 60px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}