/*
* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    font-family: 'Mont-Light';
}
*/

.btns {
    position: absolute;
    top: 15px;
    left: 45px;
    height: 45px;
    width: 45px;
    text-align: center;
    background: #1b1b1b;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
    z-index: 9999;
}

.btns.click {
    left: 310px;
}

.btns span {
    color: white;
    font-size: 28px;
    line-height: 45px;
}

.btns.click span:before {
    content: '\f00d';
}

.sidebar {
    position: fixed;
    width: 300px;
    height: 100%;
    left: -300px;
    background: #1b1b1b;
    transition: left 0.4s ease;
    z-index: 9999;
}

.sidebar.show {
    left: 0px;
}

.sidebar .text { 
    color: #fff; 
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #1e1e1e;
    letter-spacing: 1px;
}
.sidebar .text img{
    width: 100%;
    padding: 2vw;
    
}
.mavbar ul {
    background: #1b1b1b;
    height: 100%;
    width: 100%;
    list-style: none;
    padding: 0;
}

.mavbar ul li {
    line-height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mavbar ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mavbar ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

.mavbar > ul > li > a{
    font-family: 'Mont-Bold';
}

.mavbar .sub-feat-btn{
    font-family: 'Mont-Bold';
}

.mavbar .sub-feat-btn a{
    font-family: 'Mont-Light';
}

.mavbar ul li.active > a {
    color: cyan;
    background: #1e1e1e;
    border-left-color: cyan;
}

.mavbar ul li a:hover {
    background: #1e1e1e;
}

.mavbar ul ul {
    position: static;
    display: none;
}
.mavbar ul ul.sub-feat-show1.show, .mavbar ul ul.sub-feat-show2.show {
    display: block;
}

.mavbar ul .feat-show.show {
    display: block;
}

.mavbar ul .sub-feat-show.show {
    display: block;
}

.mavbar ul .serv-show.show1 {
    display: block;
}

.mavbar ul ul li {
    line-height: 42px;
    border-top: none;
}

.mavbar ul ul li a { 
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 80px;
}


.mavbar ul ul ul li a {
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 120px;
    font-family: 'Mont-Light';
}

/*
.mavbar ul li.active ul li a {
    color: #e6e6e6;
    background: #1b1b1b;
    border-left-color: transparent;
}
*/

.mavbar ul ul li a:hover {
    color: cyan !important;
    background: #1e1e1e !important;
}

.mavbar ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
}

.mavbar ul li a span.rotate {
    transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width:200px) and (max-width:500px) {
    .fix-logo-991 img{
        font-size: 50vw;
    }
    .fix-logo-991 .fx-logo{
        margin: 6vw 0 0 6vw;
    }
    .fix-logo-991 img{
        width: 50vw;
    }
    .fix-logo-991 .fx-logo{
        margin-top: 6vw;
margin-left: 6vw;
    }
}