/* Basic styling */

@font-face {
    font-family: gilroyFont;
    src: url(../fonts/gilroy-bold-webfont.woff);
}

@font-face {
    font-family: gilroyRegular;
    src: url(../fonts/gilroy-regular-webfont.woff);
}

@font-face {
    font-family: gilroyMedium;
    src: url(../fonts/gilroy-medium-webfont.woff);
}



.navcontainer {
    z-index: 500;  /* Keep this high */
}

.navcontainer {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    pointer-events: none;
   
}

.navcontainer a {
    pointer-events: auto;
}

.nav-wrapper {
    z-index: 205;
    background-color: #000;  /* Assuming you want a black background. Replace with your desired color. */
    pointer-events: auto;  /* This ensures that the navigation itself is clickable */
   
}

body {
    font-family: gilroyMedium;
    /* DONT ADD ANYTHING HERE FOR THE FOOTER
    font-size: 12px;
    color: #8B96A7;

    */
}

nav {
    padding: 0 32px;
    margin: auto;
   
    
}

nav a {
    float: left;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-family: gilroyFont;
    font-size: 16px;
    line-height: 25px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    
}

a:hover {
    color: #009BF0 !important;
}

.menu,
.submenu {
    list-style-type: none;
}

.logo {
    font-size: 20px;
    padding: 7.5px 10px 7.5px 0;
}

.item {
    padding: 10px;
}

.item.button {
    padding: 9px 5px;
}

.item:not(.button) a:hover,
.item a:hover::after {
    color: #ccc;
}


/* Mobile menu */

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: relative;
    z-index: 600;  /* Keep this high */
}

.menu li a {
    display: block;
    padding: 15px 5px;
}

.menu li.subitem a {
    padding: 15px;
}

.toggle {
    order: 1;
    font-size: 20px; !important
}

.item.button {
    order: 2;
}

.item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
}

.active .item {
    display: block;
}

.button.secondary {
    /* divider between buttons and menu links */
    border-bottom: 1px #444 solid;
}


/* Submenu up from mobile screens */

.submenu {
    display: none;
}

.submenu-active .submenu {
    display: block;
}

.has-submenu i {
    font-size: 12px;
}

.has-submenu>a::after {
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    content: "\f078";
    color: white;
    padding-left: 5px;
}

.subitem a {
    padding: 10px 15px;
}

.submenu-active {
    background-color: #111;
    border-radius: 3px;
}


/* Tablet menu */

@media all and (min-width: 690px) {
    .menu {
        justify-content: center;
        
    }
    .logo {
        flex: 1;
    }
    .item.button {
        width: auto;
        order: 1;
        display: block;
    }
    .toggle {
        flex: 1;
        text-align: right;
        order: 2;
    }
    /* Button up from tablet screen */
    .menu li.button a {
        padding: 10px 15px;
        margin: 5px 0;
    }
    .button a {
        background: #0080ff;
        border: 1px royalblue solid;
    }
    .button.secondary {
        border: 0;
    }
    .button.secondary a {
        background: transparent;
        border: 1px #0080ff solid;
    }
    .button a:hover {
        text-decoration: none;
    }
    .button:not(.secondary) a:hover {
        background: royalblue;
        border-color: darkblue;
    }
}


/* Desktop menu */

@media all and (min-width: 690px) {
    .menu {
        align-items: flex-start;
        flex-wrap: nowrap;
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -1rem; !important
        z-index: 211;
        
    }



   

    .logo {
        order: 0;
    }
    .item {
        order: 1;
        position: relative;
        display: block;
        width: auto;
    }
    .button {
        order: 2;
    }
    .submenu-active .submenu {
        display: block;
        position: absolute;
        left: 0;
        top: 68px;
        background: #111;
    }
    .toggle {
        display: none;
    }
    .submenu-active {
        border-radius: 0;
    }
}

.fa-times {
    width: 32px !important;
    height: 32px !important;
    background: url('../assets/menu.svg ') !important;
    background-position: 0 0;
}

.fas .fa-bars {
    width: 32px !important;
    height: 32px !important;

}