* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

nav {
    width: 100%;
    display: flex;
}

.logo {
    padding: 1vh 1vw;
    text-align: center;
}

.logo img {
    height: 5rem;
    width: 5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 100%;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
}

.nav-links li a {
    color: #707070;
}

.nav-links li a:hover {
    color: #5F7B08;
}
.nav-links li a.active {
    text-decoration: underline;
    color: #5F7B08;
}
.nav-links li {
    position: relative;
}


.hamburger div {
    width: 30px;
    height: 3px;
    background: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}
@media screen and (max-width: 900px) {
    nav {
        position: fixed;
        z-index: 3;
        background: #ffffff;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #131418;
        width: 100%;
        display: block;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(0px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }
    .header-gutter-space{
        background-color: #707070;
        height: 80px;
    }
    #header-sroll{
         padding: 0px;
    }
        nav {
            height: 80px;
        }
.mobile-logo {
    display: block;
}

.mobile-logo img {
    width: 120px;
}

.nav-links li a {
    color: #ffffff;
}.fade:not(.show){
    opacity: 1;
}
nav {
    display: flex;
    align-items: center;

}
.desktop-logo{
    display: none;
}
.nav-links{
    text-align: left;
    justify-content: start;
    top: 90px;
}
.nav-links.open{
position: absolute;
    height: 100vh;
    left: 0px
}
.nav-links li a{
    padding: 0.5rem 0rem;
    display: block;
    border-bottom: 1px #202123 solid;
}
.nav-links{
    padding: 2rem;
}
nav{
    left: 0px;
}
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
@media only screen and (max-width: 767px) {
nav {
    height: 94px;
}
}
