:root{
    --bs-footer-page:#220048; 
}
/*-------------------------------------------------------------
# Seccion Footer
-------------------------------------------------------------*/
.footer{
    background-color: var(--bs-footer-page);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.footer .container-footer{
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    justify-items: center;
}
.footer .container-footer-full{
    grid-template-columns: 1fr;
}
.footer .footer-socialnetworks a{
    background: #2D2E83;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer-navigation-web a .img-fluid-responsive{
    max-height: 90px;
}
/*-------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px){ 
    /*-------------------------------------------------------------
    # Seccion Footer
    -------------------------------------------------------------*/
    .footer {
        padding-top: 2rem;
        padding-bottom: 8rem;
    }
    .footer .container-footer{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .footer-navigation-web{
        flex-direction: column;
    }
    .footer-socialnetworks {
        flex-wrap: wrap;
    }
}