.hamburger {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #6B991C;
    position: fixed;
    z-index: 3000;
    right: 30px;
    top: 10px;
    padding-left: 8px;
    padding-top: 11px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: white;
}

.hamburger .icon-bar + .icon-bar {
    margin-top: 6px;
}


.nav-responsive {
    position: fixed;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    right: -100%;
    width: 150px;
    max-width: 400px;
    min-width: 90vw;
    background: white;
    color: #6B991C;
    font-family: "Oswald", sans-serif;
    z-index: 4000;
    border-left: 2px solid #6B991C;
}

.nav-responsive-awesome {
    position: relative;
    left: 25px;
    top: 15px;
    color: #6B991C;
    font-size: 2em;
    cursor: pointer;
    z-index: 50000;
}

.nav-responsive-links {
    font-family: "Oswald", sans-serif;
}

.nav-responsive-links li {
    list-style-type: none;
}

.nav-responsive-button, .nav-responsive-button-passive  {
    color: black;
    text-align: center;
}

.nav-responsive-button:hover, .nav-responsive-button-passive:hover {
    cursor: pointer;
}

.nav-responsive-button:hover > a, .nav-responsive-button-passive:hover > a {
    color: #6B991C !important;
}

.nav-responsive-links > .active:hover {
    background: #8bba39;
}

.nav-responsive-links > .active {
    background: #6B991C;
}

.nav-responsive-links > .active > a {
    color: white;
}

.mobile-absolute-top, .mobile-absolute-sub {
    position: absolute;
    width: 100%;
    margin-top: 30px;
}

.mobile-absolute-sub {
    left: 100%;
}