nav.main-cnt {
    position: absolute;
    top: 0;
    z-index: 5;
}

nav > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

nav img {
    width: 175px;
}


/* FOOTER SECTION  */
footer {
    padding: 70px 0 50px 0;
    font-size: 16px;
}

#footer-links-cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#footer-links-cnt > div {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#footer-links-cnt > div:nth-child(2) {
    width: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#footer-links-cnt > div:first-child > img {
    width: 70px;
}

#footer-links-cnt > div:last-child {
    justify-content: end;
    flex-direction: row;
    align-items: center;
}

#footer-links-cnt > div:last-child > a {
    width: 50px;
    aspect-ratio: 1/1;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

#footer-links-cnt > div:last-child > a img {
    width: 50%;
}

footer a {
    text-decoration: underline;
    font-style: italic;
}

footer a, footer p {
    color: white;
    font-size: 16px;
    margin: 0 8px;
}

footer > div > p {
    justify-self: center;
    margin-top: 100px;
}

@media only screen and (max-width: 767px) {

    /* Nav Section  */
    nav img {
        width: 132px;
    }

    /* Footer Section  */
    /* footer > .margin-cnt {
        display: flex;
        flex-direction: column;
    } */
    #footer-links-cnt {
        flex-direction: column;
        align-items: center;
    }

    #footer-links-cnt > div:nth-child(2) {
        flex-direction: column;
    }
    
    #footer-links-cnt > div:nth-child(2) p, #footer-links-cnt > div:nth-child(2) a {
        margin: 5px 0;
    }

    #footer-links-cnt > div:last-child {
        justify-content: space-between;
        width: 50%;
        margin-top: 16px;
    }

    #footer-links-cnt > div:last-child > a {
        margin-left: 0;
    }

    footer > div > p {
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    #footer-links-cnt > div {
        margin-bottom: 20px;
        align-items: center;
    }

    #footer-links-cnt > div:first-child > img {
        width: 50px;
    }
}