.footer-wrap {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
    background-image: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
    color: whitesmoke;



    &>* {
        margin: auto 0;
    }
}


.footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    gap: 2rem;
    align-items: baseline;
    padding: 5rem;

}

@media (max-width: 800px) {
    .footer {
        flex-direction: column;
    }
}



.footer-nav {
    min-width: 30%;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    /* background-color: orange; */
    text-align: justify;
}



.footer-nav-header {
    color: var(--fg-active);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: .5rem;
}

.footer-nav-link {
    font-weight: 100;
    font-size: 14px;
}



.footer-disclaimer {
    font-size: 12px;
    margin: auto;
    text-align: center;
    width: 1280px;
    max-width: 80%;
    padding: .3rem;


    & span {
        font-size: inherit;
        color: gold;
    }
}