/** NORMAL NAV **/

nav {
    width: 100vw;
    position: fixed !important;
    border: none;
    height: 80px;
    font-size: 18px;
    z-index: 1500;
    background: 0 0;
}

nav.light {
    background-color: rgba(255, 255, 255, 0.8);
    color: #35323C;
}

.mobile.overflow-hidden nav.light {
    background-color: white;
}

nav.dark {
    background-color: rgba(0, 0, 0, 0.2);
    color: rgb(255, 255, 255);
}

.nav-toggle-label {
    display: none;
}

.mobile-nav {
    display: none;
}

.show .bc-special {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.header-brand_name {
    color: #35323C;
    font-size: 48px;
    font-weight: lighter;
    text-transform: uppercase;
}

.dark .header-brand_name {
    color: white;
}

.custom-nav-item.language {
    cursor: pointer;
    transition: color 200ms ease-in-out;
}
.dropdown.show .custom-nav-item.language {
    color: var(--primary-color) !important;
}
.custom-nav-item.language:hover {
    color: var(--primary-color) !important;
}

.custom-nav-item {
    padding: 10px 30px 10px 0 !important;
}

.custom-nav-item:last-of-type {
    padding: 10px 0 10px 0 !important;
}

.custom-nav-item-link {
    color: #35323C;
    font-weight: normal !important;
    border-bottom: 2px solid transparent;
    transition: all 300ms ease;
    padding: 0;
    cursor: pointer;
}

.dark .custom-nav-item-link {
    color: white !important;
}

.custom-nav-item-link:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 100%;
    height: 3px;
    position: relative;
    top: -3px;
    transform-origin: 0 50%;
    transform: scaleX(0) translateZ(0);
    transition: transform .30s, background-color .30s
}

.dark .selected.custom-nav-item-link:after {
    background-color: var(--primary-color);
}

.selected.custom-nav-item-link:after {
    background-color: var(--secondary-color) !important;
    transform: scale(1) translateZ(0)
}

.dark .custom-nav-item-link:hover:after {
    background-color: var(--primary-color);
}

.custom-nav-item-link:hover:after {
    background-color: var(--secondary-color);
    transform: scale(1) translateZ(0)
}


/** MOBILE NAV **/

.mobile .nav-toggle-label {
    display: block;
}

.mobile .full-nav {
    display: none;
}

.mobile-nav {
    height: 0;
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 10;
    overflow: hidden;
    width: 100%;
}

.mobile-nav.show {
    border-top: 2px solid #F7F7F8;
    height: 100vh;
    transition: height 350ms ease-in;
    background-color: white;
    padding: 8px 16px;
    font-size: 27px;
}

.mobile-custom-nav-item {
    padding: 16px 0;
    border-bottom: 2px #ececec solid;
}

.mobile-custom-nav-item-link {
    color: #35323C;
    font-weight: normal !important;
    border-bottom: 2px solid transparent;
    transition: all 300ms ease;
    padding: 0;
    cursor: pointer;
}

.mobile .nav-logo {
}

.mobile .header-brand_name {
    font-size: 28px;
}
