#navbar {
    background-color: #137d7a;
    padding: 5px 0 6px 0;
}

#navbar ul {
    list-style: none;
    padding-left: 0;
}

.off-canvas-toggle {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    line-height: 25px;
    background: transparent;
    display: none;
    justify-content: center;
    align-items: center;
}

.off-canvas-toggle .fa-bars {
    height: 12px;
}

#navbar-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#navbar-items > li > a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    position: relative;
    text-decoration: none;
}

#navbar-items > li > a:hover,
#navbar-items > li > a:focus {
    background-color: #137d7a;
    color: rgb(255, 255, 255, 0.9);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    display: none;
    min-width: 400px;
    margin: 6px 0 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border-radius: 0 !important;
    border: none !important;
}

.dropdown-menu ul {
    padding: 5px 25px !important;
}

.dropdown-menu ul li {
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-menu ul li:last-child {
    border-bottom: none;
}

.dropdown-menu ul li a {
    color: #333333;
    font-weight: 500;
    font-size: 13px;
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li a:focus {
    background-color: #fff;
    color: #137d7a;
}

#navbar .np-logo-informer {
    color: #fff;
}

#navbar .np-logo-container-navbar {
    display: none;
}

@media (max-width: 992px) {
    #navbar-items {
        display: none;
    }
    #navbar .off-canvas-toggle {
        display: inline-flex !important;
    }
    #navbar .np-logo-container-navbar {
        display: inline-flex;
        position: absolute;
        right: 10px;
        width: auto;
        line-height: 1.25;
    }
}