.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-nav li {
    list-style: none;
    width: 100%;
    font-weight: bold;
    text-align: center;

}

.navbar-nav li a {
    position: relative;
    text-decoration: none;
    color: rgba(47, 25, 95, 1);
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.navbar-nav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: rgba(47, 25, 95, 1);
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navbar-nav li:hover a {
    font-weight: bold;
}

.navbar-nav li:hover a::after {
    width: 100%;
    left: 0;
}

.navbar-down {
    z-index: 10;
    width: 100%;
    min-height: 96px;
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    border: 1px solid rgba(112, 112, 112, 0.2);
    box-shadow: inset 0px 27px 25px rgba(0, 0, 0, 0.16);
}

.navbar-top {
    z-index: 10;
    width: 100%;
    min-height: 96px;
    position: fixed;
    background: rgba(0, 0, 0, 0.01);
    opacity: 1;
    border: none !important;
    box-shadow: inset 0px 27px 25px rgba(0, 0, 0, 0.16);
}

.navbar-top a {
    color: white !important;
}

.navbar-top .dropdown-menu a {
    color: rgba(47, 25, 95, 1) !important;
}

.navbar a {
    color: rgba(47, 25, 95, 1);
}

.navbar-toggler {
    color: rgba(47, 25, 95, 1) !important;
    position: relative;
    display: inline;
    top: auto;
    height: 60px;
    width: 60px;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav li {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        border-bottom: 1px dashed rgba(47, 25, 95, 1);
    }
}

@media (max-width: 480px) {
    .navbar-nav li {
        width: 100%;
        font-size: 16px;
    }
}
.navbar-nav li a {
    color: white;
    transition: color 0.3s ease-in-out;
}

.navbar-nav li a::after {
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navbar-down .navbar-nav li a {
    color: rgba(47, 25, 95, 1);
}

.navbar-down .navbar-nav li a::after {
    background-color: rgba(47, 25, 95, 1);
}
