.nav-wrapper{
    display: flex;
    justify-content: center;    
    position: relative;
    z-index: 1;
}
/* @media (min-width: 992px) {
    .nav-wrapper{
        margin-top: 1rem;
    }
} */
.navbar{
    padding: 1rem;
    background-color: #fff;
    width: 100%;
}
/* @media (min-width: 992px) {
    .navbar{
        width: 84%;
        border-radius: 10px;
    }
} */
.navbar-nav{
    text-transform: uppercase;
}
.dropdown-menu{
    border: unset;
}
.nav-item{
    border-bottom: 1px solid #ccc;
}
@media (min-width: 992px) {
    .nav-item{
        border-bottom: unset;
        width: max-content;
    }
}
.nav-link{
    color: #000;
    font-size: 0.8rem;
}
.dropdown-item{
    font-size: 0.8rem;
}

.custom-navbar{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}