﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
    margin-left: 0;
    margin-right: 0;
    }
.btn{
  /*position: absolute;*/
  top: 15px;
  /*left: 45px;*/
  height: 45px;
  /*width: 45px;*/
  text-align: left;
  background: #35679d;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
}
.btn.click{
  left: 260px;
}
.btn span{
  color: white;
  font-size: 12px;
  line-height: 35px;
}
.btn.click span:before{
  content: '\f00d';
}
.sidebar{
  /*position: fixed;*/
  width: 180px;
  height: 100%;
  /*left: -250px;*/
  background: #35679d;
  /*transition: left 0.4s ease;*/
}
.sidebar.show{
  left: 0px;
}
.sidebar .text{
  color: white;
  font-size: 12px;
  font-weight: 600;
  line-height: 65px;
  text-align: left;
  background: #35679d;
  letter-spacing: 1px;
}
nav ul{
  background: #35679d;
  height: 100%;
  width: 100%;
  list-style: none;
   border-radius: 2px 5px 3px 1px / 7px 4px 17px  6px;
}
nav ul li{
  line-height: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
nav ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav ul li a{
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 12px;
  padding-left: 40px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}
nav ul li.active a{
  color: cyan;
  background: #35679d;
  /*border-left-color: cyan;*/
}
nav ul li a:hover{
  background: #6699CC;
}
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:30px;
  border-top: none;
}
nav ul ul li a{
  font-size: 12px;
  /*color: #e6e6e6;*/
    background: #ecf0f5;
   color: #000000;
  padding-left: 80px;
}
nav ul li.active ul li a{
  /*color: #e6e6e6;*/
  /*background: #6699CC;*/
  background: #ecf0f5;
   color: #000000;
  border-left-color: transparent;
}
nav ul ul li a:hover{
  color: white!important;
  background: #4484D2!important;
 
   
}
nav ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.4s;
}
nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #202020;
  z-index: -1;
  text-align: left;
    min-width: 180px;
}
.content .header{
  font-size: 12px;
  font-weight: 600;
}
.content p{
  font-size: 30px;
  font-weight: 500;
}