    footer {
        margin: 0;
        /* position: relative; */
    }
    footer ul, footer li {
        list-style-type: none;
        margin: 0em;
    }
    .footer-nav-container{
        position: relative;
        margin-top: -2em;
    }
    .footer-contact {
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
        background-image: var(--secondary-gradient-color);
        color: var(--color-light);
        clip-path: url(#footer-bg-Clip);
        padding:1em;
        padding-top: 8em;
        padding-bottom: 2em;
        margin: 0;
    }
    
    .footer-contact div {
        flex: 1;
        z-index: 2;
    }
    
    .footer-contact .subscription-container {
        margin-right: 1em;
    }
    
    .footer-contact .subscription-container #email {
        width: 100%;
        height: 2.5em;
        border-radius: 10px;
        padding-left: .5em;
    }
    
    .footer-contact .address p {
        display: flex;
        align-items: center;
    }
    
    .footer-contact .address p svg {
        margin-right: .5em;
        height: 1.5em!important;
        width: 1.5em;
    }
    
    .footer-socials {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-light);
    }
    
    .footer-socials span {
        padding: .25em 1em;
        border-right: var(--color-lighter) solid 2px;
        opacity: .75;
    }
    
    .socials span {
        padding: .25em 1em;
        border-right: var(--color-lighter) solid 2px;
        opacity: .75;
    }
    
    .socials span:nth-child(4) {
        margin-right: auto;
    }
    
    .social-contact {
        background-image: var(--primary-gradient-color);
    }
    .footer-nav{
        background-color: var(--color-lighter);
        background-image: var(--primary-gradient-color);
        padding-top: 3em;
    }
    .footer-nav p {
        width: 100%;
        margin: auto;
        position: absolute;
        opacity: .75;
        font-size: 8em;
    }
    
    .footer-nav p span {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        text-shadow: 0 0 4px var(--color-dark);
        /* color: lightgreen; */
    }
    
    .footer-nav p span img {
        width: 2.5em;
        height: 2.5em;
        border-radius: 50%;
    }
    
    .footer-container {
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
        opacity: .75;
    }
    
    .footer {
        margin: .5em;
    }
    
    .footer h3 {
        color: var(--color-lighter);
    }
    
    .footer ul {
        padding: 0;
    }
    
    .footer ul li {
        padding: .5em;
    }
    
    .footer ul li a {
        color: var(--color-light)!important;
    }
    
    .footer ul li a:hover {
        opacity: .75!important;
    }
    
    .socials li {
        padding: .25em!important;
        margin: 0;
    }
    
    .socials a {
        display: flex;
        align-items: center;
    }
    
    .socials img {
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        padding: .125em;
        margin-right: .25em;
        background-color: rgba(212, 237, 235, 1);
    }
    
    @media screen and (max-width: 992px) {
        .footer-nav-container{
            position: relative;
        }
        .footer-contact {
            flex-direction: column;
            /* justify-content: space-between; */
        }
        
        .footer-nav p {
            top :25%;
        }
        .footer-contact .address p svg {
            height: 1.5em!important;
            width: 1.25em;
        }
        .footer-nav p span {
            font-size: 2em;
        }
        .footer-nav .footer-img {
            width: 2em;
            height: 2em;
        }
        .footer-nav h3 {
            font-size: small;
        }
        .footer:last-of-type {
            padding-bottom: 3.5em;
            margin-bottom: 0;
        }
    }
    
    @media screen and (max-width: 600px) {
        .footer-nav-container{
            position: relative;
        }
        .footer-container {
            display: block;
            width: 100%;
            text-align: center;
        }
        .footer-contact {
            flex-direction: column;
        }
        .footer-contact .address p svg {
            height: 1.25em!important;
            width: 1em;
        }
        .footer-nav p span {
            font-size: 1.5em;
        }
        .socials {
            display: flex;
            justify-content: center;
        }
        .socials span {
            display: none;
        }
    }