
.navbar {
    background-color: #ffffff;
} 
.nav-link.active, .dropdown-item.active {
    background-color: rgb(45, 115, 15);
    color: white !important;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0px 0px 2px green;
 }

.navbar-nav {
    display: flex;
    flex: 1;
    background-color: rgb(19, 100, 19);
    border-radius: 15px;
}

.nav-item {
    padding: 6px;
}

.nav-link {
    padding: 8px;
    color: white;
    font-weight: bolder;
    text-align: center;
}

.nav-link:focus,  .nav-link:hover {
    background-color: rgb(45, 115, 15);
    color: white !important;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0px 0px 2px green;
}

.header-company-name{
    font-size: 14px;
    font-weight: bolder;
}

@media screen and (max-width: 380px) {
  .header-company-name {
    font-size: 12px;
  }
}

@media screen and (max-width: 990px) {
  .navbar {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  }
}

/* ==============================
   Dropdown Menu
============================== */

.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    margin-top: 0;
    min-width: 230px;
}

.dropdown-item {
    color: rgb(19, 100, 19);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    transition: all .25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgb(19, 100, 19);
    color: #fff;
}

.dropdown-divider {
    margin: 4px 0;
}

/* Dropdown arrow */

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Keep active color */

.nav-item.dropdown .nav-link.active {
    background-color: rgb(45, 115, 15);
    color: white !important;
}

/* Desktop */

@media (min-width: 992px) {

    .nav-item.dropdown {
        position: relative;
    }

    .dropdown-menu {
        top: 100%;
        left: 0;
        border-top: 3px solid rgb(45, 115, 15);
        animation: dropdownFade .18s ease;
    }

    /* Open on hover */

    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

    .nav-item.dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }
}


@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}