.footer-container {
    /* background-color: #455A64; */
    background-color: white;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-container {
    height: 4.7rem;
    margin-left: 3rem;
}

.footer-logo-container img, .footer-logo-container a {
    height: inherit;
    width: auto;
}

.footer-link-container {
    display: flex;
    justify-content: space-between;
    margin-right: 8rem;
    width: max-content;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    margin: .5rem;
    max-width: 6rem;
}

.footer-link-container a {
    /* color: white; */
    color: black;
    text-decoration: none;
    margin-bottom: .2rem;
    margin-top: .2rem;
    /* font-size: large; */
    text-align: center;
}

.footer-link-container a:hover {
    color: #03cab6;
}

/* responsive navebar design */

@media only screen and (max-width: 769px) {
    .footer-logo-container {
        display: none;
    }

    .footer-container {
        justify-content: center;
    }

    .footer-link-container {
        margin: 0;
    }
}

/* end of responsive navbar design */