.nav {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 2% 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.brand-logo {
    width: 15%;
}

.brand-logo img {
    width: 100%;
}

.Nav-items {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.menu-toggle {
    display: none;
    font-size: 5VW;
    cursor: pointer;
}

.Nav-items li {
    list-style: none;
    font-weight: 500;
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.Nav-items li:hover {
    transform: scale(1.2);
}

.currentPage {
    color: var(--primaryColor);
}

/* 
---------------------------------------------------------------------------------
------------------------------Mobile Responsiveness------------------------------
---------------------------------------------------------------------------------
*/

/* @media (max-width: 1000px) {

    li { 
        margin: 0 0 0 2%;
    }
}

@media (max-width: 700px) {}

@media (max-width: 650px) {
    .nav {
        display: none;
    }
} */
@media (max-width: 650px) {

    .nav-wrapper {
        width: 95%;
        position: relative;
    }

    .brand-logo {
        width: 40%;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        user-select: none;
    }

    .Nav-items {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--backgroundLightColor);
        flex-direction: column;
        align-items: center;

        /* animation magic */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .Nav-items li {
        margin: 15px 0;
    }

    .Nav-items.active {
        max-height: 500px;
        /* big enough for menu */
        opacity: 1;
        transform: translateY(0);
    }
}