.sub-nav-tabs{
    z-index: 98;
}

.fixed-tab.off-canvas-tab {
    position: fixed;
    left: 0;
}

.sub-nav-tabs_list{
    align-items: center;
    white-space: nowrap;
    overflow-x: scroll;
    display: block;
}
.sub-nav-tabs_list li{
    display: inline-block;
    width: auto;
}
.sub-nav-tabs .sub-nav-tabs_title{
    font-size: 14px;
    padding: 20px 15px;
    font-weight: 500;
    letter-spacing: -.1px;
    display: block;
    color: #000;
    position: relative;
}

.sub-nav-tabs_list .sub-nav-tabs_title:hover{
    text-decoration: none;
}

.sub-nav-tabs .sub-nav-tabs_title:after{
    content: "";
    height: 4px;
    display: block;
    background: #ea2328;
    transform: scaleX(0);
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.sub-nav-tabs_list li.active .sub-nav-tabs_title:after,
.sub-nav-tabs_list li:hover .sub-nav-tabs_title:after {
    width: 100%;
    transform: scaleX(1);
}

@media all and (min-width: 768px){

    .sub-nav-tabs_list{
        overflow: auto;
        justify-content: center;
    }
    .sub-nav-tabs .sub-nav-tabs_title{
        padding: 20px 30px;
        font-size: 18px;
    }
}

@media all and (min-width: 992px){
    .sub-nav-tabs .sub-nav-tabs_title{
        padding: 20px 40px 17px;
        font-weight: 700;
    }
}
