.tabs{
    margin: 20px 0 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.menu_tab{
    border-radius: 0px;
    border-color: #000000;
    box-sizing: border-box;
    background-color: #fffbf2;
    font-size: 20px;
    margin-top: 10px;
    border: 1px solid #000;
    transform: translateY(-10px);
    display: inline;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    padding: .6em 2.5em .5em 2.5em;
    font-size: 15px;
    font-family: 'Roboto', 'Helvetica Neue', Arial, Verdana, sans-serif;
    text-shadow: none;
    -webkit-appearance: none;
    box-shadow: 0 0 0 0;
    font-style: normal;
}


@media only screen and (min-width: 480px) and (max-width: 767px) {
    .menu_tab {
        font-size: 17px;
        padding: 0.5em 1.5em 0.4em 1.5em;
        margin-top: 8px;
    }
}


.menu_active{
    color: #fff;
    background: #222;
    border: 2px solid #222;
}

.tab-content{
    display: none !important;
}


.tab-content.active{
    display: flex !important;
}

.menu_category{
    width: 100%;
}