

.btns {
    position: absolute;
    top: 15px;
    right: 0;
    height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
}

    .btns.click {
        right: 0px;
    }

    .btns i {
        color: white;
        font-size: 28px;
        line-height: 45px;
    }

    .btns.click i:before {
        content: '\f00d';
    }

.sidebar {
    position: fixed;
    width: 250px;
    height: 100%;
    right: -250px;
    background: #fff;
    transition: left 0.4s ease;
    top: 75px;
    z-index: 111;
}

    .sidebar.show {
        right: 0px;
    }

    .sidebar .text {
        color: white;
        font-size: 25px;
        font-weight: 600;
        line-height: 65px;
        text-align: center;
        background: #1e1e1e;
        letter-spacing: 1px;
    }

.nav ul {
    height: 100%;
    width: 100%;
    list-style: none;
}

    .nav ul li {
        line-height: 50px;
        border-bottom: 1px #e7edf0 solid;
    }

        .nav ul li:last-child {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav ul li a {
            position: relative;
            color: #062539;
            text-decoration: none;
            font-size: 16px;
            padding-left: 40px;
            font-weight: 500;
            display: block;
            width: 100%;
            border-right: 3px solid transparent;
            text-align: left;
        }

   

        .nav ul li a:hover {
            background: #0b2d3d;
            color: #fff;
        }

    .nav ul ul {
        position: static;
        display: none;
    }

    .nav ul .feat-show.show {
        display: block;
    }

    .nav ul .serv-show.show1 {
        display: block;
    }

    .nav ul ul li {
        line-height: 42px;
        border-top: none;
    }

        .nav ul ul li a {
            font-size: 17px;
            color: #0b2d3d;
            padding-right: 80px;
        }

    .nav ul li.active ul li a {
        color: #0b2d3d;
        background: #dfdfdf;
        border-left-color: transparent;
    }

    .nav ul ul li a:hover {
        color: #fff;
        background: #0b2d3d;
    }

    .nav ul li a span {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 13px;
        transition: transform 0.4s;
        color: #cbd7dd;
    }

        .nav ul li a span.rotate {
            transform: translateY(-50%) rotate(-180deg);
        }

@media screen and (max-width: 960px) {
    .btns {
        top: 5px;
        right: 0;
    }
    .sidebar {
        top: 53px;
    }
}
@media screen and (max-width: 560px) {
    .nav ul li a {
        font-size: 14px;
    }
    .nav ul li {
        line-height: 44px;
    }
}
