.b-menu-desk {
    position: relative;
    top: -63px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    overflow: auto;
    min-height: 121px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: #B20035;
}
.menu-desk__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100% - 20px);
    padding: 0 10px;
    border-right: 1px solid #E1E1E1;
}
.menu-desk__item:last-child {
    border: none;
}
.menu-desk__link {
    line-height: 16px;
    color: #ffffff;
}
.menu-desk__item::marker {
    content: none;
}
@media (min-width: 768px) and (max-width: 1239px) {
    
}
@media (max-width: 767px) {
    .b-menu-desk{
        display: none;
    }
}
