@charset "UTF-8";
#navigation {
    background-color: rgba(0, 0, 0, 1);
    border-bottom: 3px solid #57C241;
    padding: 0;
    height: 56px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    margin: 0;
    font-family: "Montserrat", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

#nav_bar_spacer {
    height: 56px;
}

.brand {
    position: absolute;
    padding-left: 20px;
    float: left;
    text-transform: uppercase;
    font-size: 1.4em;
}

.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
}

.nav-container {
    position: relative;
    padding-top: 6px;
    height: 45px;
    z-index: 10;
}

nav {
    padding-top: 8px;
    padding-right: 12px;
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited {
    display: block;
    margin: 0 5px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

/*nav ul li a:hover,*/
/*nav ul li a:visited:hover,*/
nav ul li a.active {
    color: #f26b3a !important;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    content: " ▾";
}

nav ul li ul li {
    /*min-width: 190px;*/
    min-width: 220px;
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #262626;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    margin-top: 13px;
}

.nav-list {
    background: #262626;
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 2px;
    height: 50px;
    width: 50px;
}

#nav-toggle {
    position: absolute;
    left: 12px;
    top: 14px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: #ffffff;
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
    top: -10px;
}

#nav-toggle span:after {
    bottom: -10px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    transform: rotate(45deg);
}

#nav-toggle.active span:after {
    transform: rotate(-45deg);
}
