.d-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.color_text-color a{
    color:#304f6b ;
}
.nav li{
    list-style-type:  none;
    display:block;
    margin: 0px 10px;
}

.nav_toggle{
    display: none;
}

.nav_toggle-line{
    height: 3px;
    width: 20px;
    background-color: #304f6b;
}
.nav_toggle-line:nth-child(2){
    margin: 3.5px 0px;
}

.mobile_nav{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 70%;
    background: #304f6b;

    height: 100vh;
    z-index: 999;
}

.mobile_nav_toggle {
    font-size: 30px;
    margin: -80px 10px 0px 0px;
    color: white;
}
.color_white > li>a{
    color: white !important;
}
@media screen and (max-width: 800px) {
    .nav ul{
        display: block;
    }
    .nav_box{
        display: none;
    }
    .nav_toggle{
        display: block;
    }

}   
@media screen and (max-width: 500px) {
    .mobile_nav{
        width: 100%;
    }
}  


