.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 102px;
}

.header-bottom__logo-link {
    display: flex;
    align-items: center;
}

.header-bottom__separator {
    margin: 0 10px;
    width: 2px;
    background: var(--blue);
    height: 30px;
}

.header-bottom__logo-text {
    font-size: 19px;
    color: var(--dark-blue);
    font-family: AvenirMedium, sans-serif;
}
.header-bottom__logo {
    position: relative;
    bottom: 3px;
    width: 252px;
}
.header-bottom__menu {
    height: 100%;
    display: flex;
    align-items: center;
    /* margin-right: 130px; */
}

.header-bottom__menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-bottom__menu-item.with-dropdown {
    height: 100%;
}
.header-bottom__menu-item .navigation-menu-link:hover {
    color: var(--light-blue);
}
.header-bottom__menu-item.with-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1500px) {
    .header-bottom__menu {
        margin: 0 auto;
    }
}
@media screen and (max-width: 1279px) {
    .header-bottom__menu {
        margin: 0;
    }
    .header-bottom__logo-text {
        font-size: 18px;
    }
    .header-bottom__separator {
            height: 30px;
    }
    .header-bottom__logo {
        width: 200px;
    }
}