.block-navigation-strip {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #F8FBFD;
}

.block-navigation-strip ul	{
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px 0;
}

.block-navigation-strip ul li {

}

.block-navigation-strip ul li .item-inner  {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    justify-content: center;
    padding: 6px 15px;
}

.block-navigation-strip ul li:first-child .item-inner {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.block-navigation-strip ul li .item-inner {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Nexa Bold';
}

.block-navigation-strip ul li img {
    width: auto;
}

.block-navigation-strip ul li a {
    font-weight: 700;
}

.block-navigation-strip li a {
    position: relative;
    transition: .3s;
    cursor: pointer;
}

.block-navigation-strip li a.active,
.block-navigation-strip li a:hover {
    /* content: '';
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    position: absolute;
    top: -5px;
    left: -15px; */
    box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.1);
    border-radius: 50px;
    background-color: #fff;
}

@media only screen and (max-width: 768px) {
    .block-navigation-strip ul li .item-inner  {
            width: max-content;
            justify-content: center;
        }
}
