/* Menu background color and brand styling */
.menu_container {
    position: relative;
    width: 100%;
}

.navbar {
    background-color: #262d3e;
    padding: 1rem 1rem;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    display: flex;
    flex-direction: row;
}

.navbar-collapse {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.brand-name {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    margin-right: 10px;
}

.small-text {
    font-size: 0.6rem;
    color: rgb(255, 255, 255);
    text-align: right;
}

.dropdown-child:hover{
    width: auto;
}

.started-contract-menu-container {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        justify-content: center;
    }
}
