header{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #141E30, #000428);;
}
header.headerBgActive {
    background: linear-gradient(to bottom, #141E30, #000428);;
}



.nav-link {
    background: transparent;
    color: var(--navLinkTextColor);
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    transition: .25s;
    margin: 0;
    padding: 10px;
}

.nav-item {
    margin: 0;
}

.nav-item+.nav-item {
    margin-left: 30px;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: var(--brandPrimaryColor);
    font-weight: 700;
}
 

.menuDesktop {
    display: none;
}

.menuMobile {
    display: none;
    width: 30px;
    height: 30px;
    padding: 5px 10px;
    min-width: 10px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}

.offcanvas{
    background: #000428;
}

.offcanvas-title img{
    max-width: 200px;
    height: auto;
}
.offcanvas  .nav{
    flex-direction: column;

}
.offcanvas .nav-item+.nav-item{
    margin-left: 0;
    margin-top: 20px;
}
.offcanvas-header .btn-close{
    color: #fff !important;
    background: none;
    font-size: 34px;
    font-weight: 900;
}

.dropdown-toggle::after{
    font-size: 18px;
    position: relative;
    top: 2px;
}

.dropdown-menu-m a{
    color: #FFFFFF;
}



.menuDesktop .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; // remove the gap so it doesn't close
 }

 

@media (min-width: 1024px) {
    .menuDesktop {
        display: flex;
    }
    .offcanvas{
        display: none;
    }
}

@media (max-width: 1023px) {
    .menuMobile {
        display: inline-flex;
    }
    header .container{
        justify-content: space-between;
    }
}
