header {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
    background: white;
    z-index: 999;
    height: 58px;
}

header a.active-header {
    border-bottom: 3px solid #E4491D;
}

header a.nav-link {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 54px;
    margin-left: 40px;
}

header .fa-globe {
    margin-right: 10px;
    font-size: 25px;
}

header button {
    outline: none !important;
    border: none !important;
    padding: 0 !important;
}

.active-menu-mobile {
    width: 100% !important;
}

#menu-mobile {
    background-color: white;transition: 0.3s;
    z-index: 9999;
    right: 0px;
    margin-top: 37px;
    width: 0px;
    height: 100%;
    display: none;
}

#menu-mobile ul li {
    list-style: none;
    margin-bottom: 10px;
}

#menu-mobile ul li a {
    color: black;
    font-size: 18px;
}

header .fa-times {
    width: 30px;
    height: 30px;
    text-align: center;
}

header .fa-times, header .fa-bars {
    font-size: 32px;
    display: none;
    padding-right: 6px;
    padding-top: 5px;
}

@media only screen and (max-width: 992px) {
    header .container a.nav-link {
        display: none;
    }

    header .dropdown {
        display: none;
    }

    header .fa-bars {
        display: inline-block;
    }

    #menu-mobile {
        display: block !important;
    }

    header .fa-bars:hover {
        cursor: pointer;
    }
}