footer {
    background-color: #1d2227;
    color: #ffffff; 
    padding: 0;
    margin: 0;
    height: 300px;
    display: flex;
    justify-content: center !important;
    /* position: relative; */
    /* overflow-y:inherit; */
}
footer div {
    display: flex;
    width: 30%;
    height: 90% !important;
    flex-direction: column;
    background-color: #1d2227;
    justify-content: center !important;
    padding: 0;
}
footer #contact {
    background-color: #1d2227;
    align-items: center;
}
footer #contact h1,h2 {
    filter: drop-shadow(3px 3px 3px rgb(94, 89, 89));
    font-weight: lighter;
}
footer #contact h2 {
    font-size: 18px;
}
footer #content {
    align-items: center;
}
footer #content img {
    height: 20%;
    width: 30%;
}
footer #impLinks a{
    color: white;
    text-decoration: none;
}
/* Responsive Styles ........................................................*/
@media (max-width: 1024px) {
    footer {
        height: auto;
        padding: 20px;
        flex-direction: column;
    }

    footer div {
        width: 80%;
        padding: 20px;
    }

    footer #contact h1 {
        font-size: 2rem;
    }

    footer #contact h2 {
        font-size: 1rem;
    }

    footer #content img {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        height: auto;
        padding: 10px;
        flex-direction: column;
    }

    footer div {
        width: 100%;
        padding: 10px;
    }

    footer #contact h1 {
        font-size: 1.5rem;
    }

    footer #contact h2 {
        font-size: 0.875rem;
    }

    footer #content img {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        height: auto;
        padding: 10px;
        flex-direction: column;
    }

    footer div {
        width: 100%;
        padding: 10px;
    }

    footer #contact h1 {
        font-size: 1.25rem;
    }

    footer #contact h2 {
        font-size: 0.75rem;
    }

    footer #content img {
        height: 20px;
        width: 20px;
    }
}