body{
    font-family: 'Poppins', sans-serif;
    color: #464646;
}
.navigation_bar{
    position: sticky;
    top: 0;
    background: #D6DADD;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    z-index: 99;
}
.navigation_bar li{
    margin: 0 !important;
}
.navigation_bar a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    transition: all 0.3s ease-in-out;
}
.navigation_bar a.active,
.navigation_bar a:hover{
    color: #d35411;
    background-color: #fff;
}
.main_content section {
    padding: 40px 0 0;
}
.main_title{
    color: #03374f;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
}
h2.title {
    background: #9452a0;
    color: #fff;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 24px;
}
.accordion-item {
    border: 0;
}
.accordion-button {
    padding: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #03374f !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #e8ecef;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-body {
    padding: 1rem 5px;
}
.nav-link.disabled {
    opacity: .2;
    color: #fff;
}


@media(max-width:767px){
    .navigation_bar {
        white-space: nowrap;
        overflow: scroll;
        flex-flow: nowrap;
        margin-left: -12px;
        margin-right: -12px;
    }
    .navigation_bar::-webkit-scrollbar{
        height: 0;
        width: 0;
    }
}

ul {
	margin-bottom:0rem
}