.awc-landing__block-menu{
    background-color: #F5F6F9;
    padding: 10px 0;
    position: sticky;
    top: 110px;
    z-index: 100;
    transition: all 600ms ease-in;
}
.awc-landing__block-menu__list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    max-width: 100%;
}
.awc-landing__block-menu__item{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #212529;
    padding: 10px;
    white-space: nowrap;
}
.awc-landing__block-menu__item__separator{
   background-color: rgba(0, 0, 0, 0.2);
    width: 1px;
    height: 14px;
}
.awc-landing__block-menu__item:not(.is-active){
    cursor:pointer;
}
.awc-landing__block-menu__item:hover,
.awc-landing__block-menu__item.is-active{
    color: #16b1de;
}
@media (max-width: 600px) {
    .awc-landing__block-menu{
        top: 52px;
    }
    .header-fixed ~ .awc-landing .awc-landing__block-menu{
        top: 102px;
    }
}