
.btn1{
 position: absolute;
    top: 12px;
    right: 22px;
    height: 35px;
    width: 40px;
    text-align: center;
    background: #dc4e41;
    border-radius: 3px;
    cursor: pointer;
    transition: right 0.4s ease;
}
.btn1.click{
  right: 220px;
}
.btn1 span{
  color: white;
  font-size: 22px;
    line-height: 35px;
}
.btn1.click span:before{
  content: '\f00d';
}
.sidebar{
  position: fixed;
  width: 250px;
  height: 100%;
  right: -250px;
  background: #1b1b1b;
  transition: right 0.4s ease;
  top: 48px;
}
.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{
  background: #fff;
  height: 100%;
  width: 100%;
  list-style: none;
  padding:0;
}
.nav ul li{
  line-height: 50px;
  border-top: 1px solid rgb(18 18 18 / 10%);
}
.nav ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav ul li a{
  position: relative !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  padding-left: 20px !important;
  font-weight: 500 !important;
  display: block !important;
  width: 100% !important;
  line-height: 45px !important;
  margin-left: 0px !important;
      text-transform: uppercase;
}
.nav ul li.active a{
  background: #dedede;
  color: #000 !important;
}
.nav ul li a:hover{
  background: #ededed;
  color:#000;
}
.nav ul ul.feat-show{
  position: static;
  display: none;
}

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

nav ul .serv-show1.show1{
  display: block;
}

.nav ul ul li{
  line-height: 42px;
  border-top: none;
}
.nav ul ul li a{
  font-size: 16px;
  color: #e6e6e6;
  padding-left: 40px;
}
.nav ul li.active ul li a{
  color: #e6e6e6;
  background: #f3f3f3;
  border-left-color: transparent;
}
.nav ul ul li a:hover{
  color: 000 !important;
  background: #dedede ;
}
.nav ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.4s;
}
.nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}


