body.offcanvas-active {
    overflow: hidden;
}

.nav-toggler {
    width: 30px;
    height: 30px;
    padding: 10px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    left: 0;
    cursor: pointer;
}

.nav-toggler::before{
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #70798b;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #70798b, 0 1em 0 0 #70798b;
}
.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 10;
    transition: opacity .3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.dropdown-item{
    font-size: 14px;
}

.navbar-light .navbar-nav .active>.nav-link{
    color:#4d93de !important;
}
/* ============ mobile view ============ */
@media all and (max-width: 991px) {

    .offcanvas-header {
        display: block;
    }

    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1200;
        width: 80%;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    }

    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-offcanvas .container,
    .mobile-offcanvas .container-fluid {
        display: block;
    }
    .sm-none{
        display:none;
    }

}
.navbar-nav>li>a{
    font-weight:600;
    font-size:14px;
}
.nav-link{
    font-weight:600;
    font-size:14px;
}
/* .dropdown-menu>li:active{
    background-color: #000000 !important;
}
.dropdown-menu>li{
    background-color: rgba(0,0,0,0.4);
}
.dropdown-menu>li:hover{
    background-color: #ffa743 !important;
} */
.dropdown-item:hover{
    background-color: #e8e8e8 !important;
}
.dropdown-menu{
    border:none;
}
.nav-link{
    display: flex;
    align-items: center;
    column-gap: 5px;
}

@media(min-width:992px){
    
}
/* ============ mobile view .end// ============ */
