.tab-cont {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.tab-section {
    float: left;
    width: 100%;
    position: relative;
}

.tab_nav {
    float: left;
    width: 100%;
    height: auto;
    overflow: auto;
    position: relative;
    margin-bottom: 10px;
}
.tab_nav ul {
    margin: 0px;
    padding: 0px 15px;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-right: 0px;
    background-color: #002866;
    /* width: 1500px; */
    width: 100%;
}
.tab_nav ul li {
    margin-right: 3px;
    padding: 6px 8px;
    background-color: transparent;
    cursor: pointer;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: none;
    text-align: center;
    flex-grow: 1;
    max-width: 100px;
    color: #ffffff;
    font-size: 15px;
}
.tab_nav ul li.active {
    background-color: #f80101 !important;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    margin-top: 4px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 4px;
    line-height: 24px;
}
.tab-section::before {
    left: 0px;
}
.tab-section::before, .tab-section::after {
    content: '';
    position: absolute;
    top: 0px;
    /* width: 15px; */
    height: 38px;
    background-color: #002866;
    z-index: 2;
}
.nav-content.active {
    display: block;
}
.nav-content {
    float: left;
    width: 100%;
    height: auto;
    display: none;
    border: none;
}
.tab-inner-body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
    .tab_nav ul {
        padding-right: 0px;
    }
    .nav-content {
        box-shadow: none;
        border: 0px solid #ddd;
    }
    .tab-inner-body {
        padding: 0px;
        padding-top: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .tab_nav {
        overflow-x: scroll;
    }
    .tab_nav ul {
        min-width: 690px;
    }
}
@media (max-width: 1024px) {
    .active {
        background: none;
    }
}