.fa-bars:before {
    content: "\f0c9";
}
#nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    max-width: 420px;
    width: 100vw;
    height: 100%;
    box-sizing: border-box;
    padding: 3.75rem 1.875rem 3.75rem 5rem;
    background: #ffffff;
    /* background: -webkit-linear-gradient(left, #ffa238 0%,#f09100 100%); */
    /* background: linear-gradient(to right, #ffa238 0%,#f09100 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa238', endColorstr='#f09100', GradientType=1);
    /* border-right: 5px solid #f29100; */
    box-shadow: 2px 0 10px rgb(0 0 0 / 25%);
    -webkit-transition: all .2s ease-in-out;
    transition: all .9s ease;
    /*outline: 5pt solid #f29100;*/
    overflow-y: auto;
}
#nav-inner-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #d68100;
    font-size: 30px;
    cursor: pointer;
    opacity: .6;
}
#nav-inner-close:hover {
    opacity: 1;
}
#nav-inner-close .fa{
    font-size: inherit;
}
.nav-logo {
    width: 240px;
    margin-bottom: 20px;
    margin-top: -20px;
    margin-left: -2.425rem;
}
#nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav ul li {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    padding-left: 0;
    margin-left: 0;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    position: relative;
    line-height: 1.75em;
}
#nav ul li.active {
    position: relative;
}
#nav ul li.active:before {
    display: inline-block;
    position: absolute;
    margin-left: -1.375rem;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--orange-1);
    left: -1rem;
    top: .675em;
    content: "\f061";
    font: normal normal normal 14px/1 "Font Awesome";
    font-size: 1.375rem;
    margin-top: -.4em;
    opacity: .8;
}
#nav ul li .fa-angle-up, #nav ul li .fa-angle-down {
    position: absolute;
    right: 0;
    top: .35em;
    color: var(--grey-5);
}
#nav ul li li {
    font-size: 1rem;
    margin-top: .5rem;
    margin-left: 1.25rem;
    font-weight: normal;
    margin-bottom: 0;
    font-family: var(--font-primary);
    text-transform: none;
}
#nav ul li li a {
    color: var(--grey-2);
}
#nav ul li .fa-angle-down {
    top: .05em
}
#nav ul li:first-of-type .fa-angle-down {
    top: .35rem;
}
#nav ul li .fa-angle-right {
    position: absolute;
    right: 0;
    top: .05em;
    color: var(--grey-5);
}
#nav hr {
    margin: 1rem 0 2rem;
    border-top: .0625rem dotted var(--grey-6);
}
#nav.close {
    left: -500px;
}
#navigon {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-block;
    border: 2px solid var(--orange-1);
    border-radius: 100%;
    box-sizing: border-box;
    padding: .7rem .8rem;
    margin: 15px 30px;
    background: #fff;
    color: var(--orange-1);
    font-size: 2rem;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s ease-in-out;
    position: fixed;
    top: 15px;
    left: 0px;
    z-index: 99;
    box-shadow: 0 1px 3px rgb(45 51 56 / 25%);
}
@media (max-width: 768px) {
    #navigon {
        width: 2.5rem;
        height: 2.5rem;
        top: 0;
        left: -1rem;
        padding: .45rem .55rem;
        font-size: 1.4rem;
        position: fixed;
    }
}