ul.tabs {
    line-height: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px 0;
    margin-bottom: 30px;
}
ul.tabs::after{
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background-color: #000;
    bottom: 0px;
}
ul.tabs li {
   
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;  
    padding: 30px 0;
    z-index: 1;
     
}
ul.tabs li h4{
    margin-bottom: 0px;
    line-height: 28px;
}


ul.tabs li:hover {
    /* background-color: #ccc; */
    /* color: #333; */
}
ul.tabs li.active{
    position: relative;
}
ul.tabs li.active::after
{
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background-color: #ED1C24;
    bottom: 0px;
}

.tab_container {
    border-top: none;
    display: inline-block;
    width: 100%;
    background: #fff;
}
.tab_content {
    display: none;
}
.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 991px) {
    ul.tabs {
        display: none;
    }

    .tab_drawer_heading {
        background: #ccc url(../images/plus.png) center right no-repeat;
        background-position-x: 97%;
        background-size: 15px;
        color: var(--pure-black);
        border-radius: 50px;
        margin: 5px 0;
        padding: 5px 20px;
        padding-right: 30px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .tab_drawer_heading.d_active {
        color: #fff;
        background: #ED1C24 url(../images/minus.png) center right no-repeat;
        background-position-x: 97%;
        background-size: 17px;
    }
    .tab_content{
        border-top: 0;
        padding: 25px 20px 30px 20px;
    }
}
@media screen and (max-width: 768px) {
    .tab_content {
        padding: 10px 20px 20px 20px;
    }
}