.cat-item, .tablink {
    position: relative;
    display: block;
    box-shadow: 0px 0px 20px rgb(142 142 142 / 20%);
    border-radius: 6px;
    transition: all ease-in-out 350ms;
    background: #fff;
    padding: 8px 20px;
    display: inline-block;
    float: left;
    margin: 0 10px 10px 0;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    z-index: 99;
}
.tablink a{
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 300;
}
.cat-item.active {
    background: #0E93B2;
    background: linear-gradient(180deg, #0E93B2 0%, #86D97F 123.39%);
    box-shadow: 0px 1px 20px rgb(142 142 142 / 25%), 0px 0px 40px rgb(142 142 142 / 10%);
    color: #fff;
}
.cat-item:hover {
    box-shadow: 0px 1px 20px rgb(142 142 142 / 25%), 0px 0px 40px rgb(142 142 142 / 10%);
}
.main-b {
    display: block;
    position: relative;
}
.bar-tab.bar-tab_1 {
    display: block;
    position: relative;
}
.main-content_tab {
    position: relative;
}
.yp-tab_cat {
    position: relative;
}
.yp-tab_cat .yp-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.item-content .highlight-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.item-content  .highlight-wrapper .highlight-slide {
    flex-basis: calc(25% - 10px);
}
.item-content{
    display: none;
}
.item-content.active{
    display: block;
}
.box-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

  /*ipad (tablet)*/
  @media (max-width: 1024px) {
    .item-content .highlight-wrapper .highlight-slide {
        flex-basis: calc(50% - 10px);
    }
    
    .item-content .highlight-wrapper {
        gap: 15px;
    }        
}
/*iphone8 (smartphone)*/
@media (max-width: 767px) {
    .item-content .highlight-wrapper .highlight-slide {
        flex-basis: 100%;
    }
    
    .item-content .highlight-wrapper {
        gap: 15px;
    }
}

