/* HEADER */

header {
    z-index: 99;
    position: fixed;
    width: 100%;
}

.nav-desktop nav {
    margin: 1em auto;
}

.nav-desktop nav a {
    color: white;
}

.nav-desktop nav a:hover, .nav-desktop nav a:focus {
    text-decoration: none;
}

.nav-desktop nav .brand-icon {
    height: 1.143em;
    float: left;
    margin: 0.1em 0 0;
}

.nav-desktop nav .brand {
    text-transform: uppercase;
    font-size: 2.625em;
    font-weight: 100;
}

.nav-desktop nav ul {
    float: right;
    margin: 1.25em 0 0;
    padding: 0;
}

.nav-desktop nav ul li {
    list-style: none;
    padding: 0 0.625em;
    float: left;
}

.nav-desktop nav ul li:last-child {
    padding-right: 0em;
}

.nav-desktop nav ul li a {
    text-transform: uppercase;
}

.nav-desktop nav ul li a:hover {
    border-bottom: 1px solid white;
}

nav.nav-mobile {
    position: fixed;
    right: 0;
    z-index: 99;
}

nav.nav-mobile a.nav-open {
    width: 2em;
    height: 2em;
    font-size: 1.5em;
    margin: 0.625em;
    padding: 0.25em 0.5em;
    border: 1px solid white;
    border-radius: 1em;
    color: white;
    cursor: pointer;
}

.nav-open-toggle {
    color: black !important;
    border-color: black !important;
    background: white !important;
}

nav.nav-mobile a.nav-open:hover {
    text-decoration: none;
}

.nav-sidebar {
    position: fixed;
    z-index: 2;
    width: 0;
    height: 100%;
    right: 0;
    background: #222;
    opacity: 0.92;
}

.nav-sidebar .nav-sidebar-brand-icon {
    width: 4em;
    margin: 1em auto 0.3em;
}

.nav-sidebar .title {
    font-size: 1.5em;
    color: white;
    text-align: center;
    margin: 0;
}

.nav-sidebar a {
    color: white;
}

.nav-sidebar a:hover {
    text-decoration: none;
}

.nav-sidebar ul {
    font-size: 1.25em;
    font-weight: 300;
    width: 12em;
    margin: 0 auto;
    padding-left: 0;
}

.nav-sidebar ul li {
    list-style: none;
    margin: 0.5em;
}

.nav-sidebar ul li a {
    text-transform: uppercase;
}

.nav-sidebar ul li a i {
    width: 4em;
    text-align: center;
}

.nav-close {
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .nav-mobile {
        display: none !important;
        visibility: hidden !important;
    }
}

@media screen and (max-width: 991px) {
    .nav-desktop {
        display: none !important;
        visibility: hidden !important;
    }
}
