html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    color: #464646;    
}
.navigation_bar{
    position: sticky;
    top: 106px;
    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: #03374f;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    transition: all 0.3s ease-in-out;
}
.navigation_bar a.active, .navigation_bar a:hover {
    color: #ffffff;
    background-color: #03374f;
}
.main_content section {
    padding: 40px 0 0;
}
.main_title{
    color: #03374f;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}
h2.title {
    background: #03374f;
    color: #fff;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 24px;
}
.accordion-item {
    border: 0;
    background-color: #fff;
}
.accordion-button {
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 700;
    color: #03374f !important;
    box-shadow: none !important;    
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
.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;
}
.accordion-header {
    margin: 0;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "+";
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after  {
    content: "-";
}
@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;
    }
}