#header,
header {
    margin-bottom: -2px;
    position: absolute;
    left: 0;
    right: 0;
    padding: 0px 10px;
}

header nav {
    height: 75px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.logo {
    width: 90px;
    position: relative;
    z-index: 1000;
}


ul {
    margin-bottom: 0;
}

.navbar {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.nav-menu li {
    list-style: none;
    padding: 0 1rem;
}

.nav-menu .header-btn {
    background-color: #82a500;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 15px;
}

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

a.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hamburger {
    display: none;
}

.bar,
header .fa-times {
    width: 1.5rem;
    height: 3px;
    display: block;
    color: #fff;
    padding: 0;
    margin: 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: white;
}

.bar:nth-child(1) {
    width: 100%;
}

.bar:nth-child(2) {
    width: 200%;
}

.bar:nth-child(3) {
    width: 300%;
}


@media (max-width: 992px) {
    nav {
        position: relative;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 45px;
    }

    .active .bar:nth-child(2) {
        opacity: 0;
    }

    .active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(-315deg);
        transform: translateY(8px) rotate(-315deg);
        width: 300%;
    }

    .active .bar:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
        width: 300%;
    }

    .nav-menu {
        width: 100%;
        height: 40%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 75px;
        right: -100%;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        margin: 0 auto;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    a.nav-link {
        margin: 1rem 0;
        color: white;
        z-index: 1;
    }

    .active {
        right: 45px;
        z-index: 100;
        transition: 0.2s ease;
    }

    .nav-menu.active {
        right: 0;
        background-color: black;
        top: 0;

    }
}

@media screen and (max-width: 480px) {
    a.nav-link {
        padding: 0.75rem 0;
    }
}

.blur {
    filter: blur(0.8px);
}

/* UPDATED */