.header {
    width: 100%;
    max-height: 3rem;
    background-color: #F9F9F9;;
    margin-bottom: 0.25rem;
}

.header__inner {
    display: flex;
    width: 100%;
    max-height: 3rem;
    padding: 0.5rem;
    align-items: center;
    background-color: #7B7B7B;
}
.header__content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    /* width: 20%; */
    /* min-width: 150px; */
    max-height: 3rem;
}


.header__logo img {
    height: 3rem;
}

.nav__mini {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto 0;
    justify-content: space-around;
    text-align: center;
}

.nav__mini__item {
    text-align: center;
    list-style: none;
    position: relative;
}

.nav__mini__item > li > ul {
    display: none;
}

.nav__mini__item:hover > li > ul {
    display: block;
    position: absolute;
    top:100%;
    left: 0;
}

.nav__mini-link {
    margin: 0 1rem;
    color: #2B5B6C;
    font-family: Noto Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 100%;
    text-decoration: none;
    margin: 0.2rem 0.2rem;
    transition: 0.25s all;
}

.nav__mini-link:hover {
    color: #FF8C4B;
}

.main-menu__inner {
    display: block;
    position: relative;
}

.main-menu-search {
    width: 100%;
    /* min-height: 3rem; */
    /* background-color: #7B7B7B; */
}

.gray {
    background-color: #7B7B7B;
}
.main-menu-search__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 3rem;
}


.users__enter a {
    display: block;
    flex-wrap: wrap;
    text-decoration: none;
    color: #F8F8F8;
    transition: 0.25s all;
}

.users__enter a:hover {
    color: #FF8C4B;
}

