#navbar {
    overflow: hidden;
    padding: 0 14% ;
    background-color: var(--navbar);
    position: fixed;
    color: #fff;
    text-align: center;
    height: 7vh;
    right: 0;
    top: 0;
    left: 0;
    transition: background-color 0.15s,color 0.15ms,min-height 0.3s,overflow-y 0s 0.3ms;
}

#navbar img {
    height: 3.78vh;
}
#navbar li {
    font-size: 1.70vh;
    margin-top: 1.5vh;
    height: 3.78vh;
    line-height: 3.78vh;
    padding: 0 1vw;
}
#navbar li i {
    font-size: 14px;
    margin-left: 7px;
}
#navbar li:hover {
    cursor: pointer;
    color: var(--highlight);
    transition-duration: .1s;
}

#navbar button {
    color: var(--navbar-secondary);
    border: none;
    border-radius: 7px;
    color: var(--primary-white);
    padding: 1vh 1.5vh;
    margin-top: -5px;
    font-size: 1.70vh;
    cursor: pointer;
    background-color: var(--primary-blue);
}
#navbar button:hover {
    transition-duration: .2s;    
    background-color: var(--secondary-blue);
    color: beige;
}

.nav-mob i {
    line-height: 7vh;
    font-size: 40px;
}

@media (max-width: 1600px) {
    .nav-desk {
        display: none  !important;
    }
    .nav-mob {
        display: block !important;
    }
    #navbar {
        padding:0 3%;
    }
}

.inline-nav {
    display: inline-flex;
    margin-left: 160px;
}


#nav-residential {
    position: fixed;
    left: 27vw;
    z-index: 9998;
    color: #fff;
}

#nav-datacenter {
    position: fixed;
    left: 38vw;
    z-index: 9998;
    color: #fff;
}


#nav-vpn {
    position: fixed;
    left: 42vw;
    z-index: 9998;
    color: #fff;
}


#nav-resources {
    position: fixed;
    left: 46vw;
    z-index: 9998;
    color: #fff;
}




.nav-exp {
    border: 1px solid var(--border-primary);
    border-radius: 7px;
    padding: 5px;
    cursor: pointer;
    background-color: var(--secondary-grey);
    top: 5vh;
}

.nav-exp div:not(.nv-exp-ctn):not(.spacer) {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 10px 50px 10px 10px ;
    margin-bottom: 2px;
}
.nav-exp i {
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
}
.nav-exp div:not(.nv-exp-ctn):not(.spacer):hover {
    background-color: var(--highlight-grey);
    border-radius: 7px;

}
.nav-exp h4 {
    font-weight: 300;
    font-size: 18px;
}
.nav-exp p {
    font-size: 11px;
}

.nav-fade {
    animation: navFade .2s linear forwards;
}

@keyframes navFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}