.nav-tabs {
    border-bottom: 0px solid #DDD;
}


@media (max-width: 991px) {
    .news-container{
        margin-top: -10px;
    }
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border-width: 0;
}

.nav-tabs > li > a {
    border: none;
    color: #666;
}

.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
    border: none;
    background: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: transparent;
}

.nav-tabs > li > a::after {
    content: "";
    background: #FFFFFF;
    height: 4px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: -1px;
    transition: all 500ms ease 0s;
    transform: scale(0);
}

.nav-tabs > li:hover > a::after {
    background: #FFFFFF;
    transform: scale(1);
}

.nav-tabs > li.active > a::after{
    background: #f39800;
    transform: scale(1);
}


.tab-nav > li > a::after {
    background: #21527d none repeat scroll 0% 100%;
    color: #fff;
}

.tab-pane {
    padding: 5px 0;
}

.tab-content{
    padding:5px
}