.menu_css {
    background-color: #434499 !important;
    color: white;
    position: relative;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 56px;
    margin: 0;
}

.nav_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.nav_logo {
    width: 56px;
    height: 56px;
    margin: 0;
}

.nav_logo img {
    width: 56px;
    height: 56px;
}

.nav_brand {
    color: white;
    font-size: 20px;
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
    text-decoration: none;
    opacity: 0.75;
}

.nav_brand:hover {
    color: white;
    opacity: 1;
}

#nav_div {
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    height: 100%;
}

.nav_ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.nav_item {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 15px 15px;
    background-color: #434499;
}

.nav_item:hover {
    background-color: #2e2d84;
}

.nav_link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    opacity: 0.75;
    margin: 0;
    padding: 0 10px;
    height: 100%;
    width: 100%;
}

.nav_link:hover {
    color: white;
    opacity: 1;
}


.dropdown_menu {
    background-color: #2e2d84;
}

.dropdown_menu .dropdown-item {
    color: white;
    opacity: 0.75;
}

.dropdown_menu .dropdown-item:hover {
    color: white;
    background-color: #434499;
    opacity: 1;
}