/* NAVIGATION */
.nav-container {
    position: fixed;
    width: calc(100% - 4em);
    background-color: #fff;
    padding: 0em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    margin: 0;
    min-width: 6em;
    padding: 1em 0em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.nav-item:hover {
    background-color: #f0f0f0;
}

.nav-item a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 7em;
    margin: 0 1em 0 1em;
}

.nav-divider {
    height: 1.5em;
    width: 2px;
    background-color: #ccc;
    margin: 0 1em 0 1em;
}

.nav-logo {
    height: auto;
    min-width: 7em;
    margin: 1em;
}

.mobile-nav {
    display: none;
}

/* RESPONSIVE NAV */
@media screen and (max-width: 64em) {
    .nav-right {
        width: auto;
    }
}

@media screen and (max-width: 48em) and (min-width: 32em) {
    .nav-divider {
        margin: 0em;
    }
}

@media screen and (max-width: 38em) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-items {
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        margin-top: -23em
    }
    .nav-items-open {
        margin-top: -4.5em
    }
    .nav-logo {
        margin: 1em 0em;
        min-width: 5em;
        z-index: 1000;
        transform: translateY(-0.25em);
    }
    .nav-divider {
        height: 1px;
        width: 100%;
    }
    .mobile-nav {
        display: unset;
    }
}