*{
   
    user-select: none;
    /* box-sizing: ; */
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    
  }
  
  #btn{
    position:fixed;
    cursor: pointer;
    transition: left 0.4s ease;
    z-index: 999;
    width: 120px;
    left: 10px;
    top: 10px;
  }
  
  #btn.click span:before{
    content: '\f00d';
  }
  #sidebar{
    position: fixed;
    width: 250px;
    height: 100%;
    left: -300px;
    gap: 5px;
    background: white;
    transition: left 0.4s;
    overflow-y: scroll;
    z-index: 999;
  }
  ::-webkit-scrollbar
  {
      width: 0;
  }
  #sidebar.active{
    left: 0px;
  }
  /* .sidebar .text{
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #1e1e1e;
    letter-spacing: 1px;
  } */
  nav ul{
    background: #f6f6f6;
    /* height: 100%; */
    width: 100%;
    list-style: none;
   padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  
  }
  nav ul li{
    line-height: 45px;
    margin: 4px 0;
    border: none;
    background-color: #ffffff;
    position: relative;
  }
  nav ul li:last-child{
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  nav ul li a{
    position: relative;
    color: black;
    text-decoration: none;
    font-size: 18px;
    padding-left: 20px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
  }
  nav ul li.active a{
    color: black;
    background: #f6f6f6;
    border-left-color: cyan;
  }
  nav ul ul{
    position: static;
    display: none;
  }
  nav ul .feat-show.active{
    display: block;
  }
  nav ul .serv-show.active{
    display: block;
  }
  nav ul ul li{
    line-height: 42px;
    border-top: none;
  }
  nav ul ul li a{
    font-size: 17px;
    color: #1b1b1b;
    /* padding-left: 80px; */
  }
  nav ul li.active ul li a{
    color: #1b1b1b;
    background: #f6f6f6;
    border-left-color: transparent;
  }
  
  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);
  }
  .content{
    position: absolute;
    border: 1px solid black;
      width: 100%;
      height: 450px;
    color: #202020;
    z-index: -1;
    text-align: center;
  }
  .content .header{
    font-size: 45px;
    font-weight: 600;
  }
  .content p{
    font-size: 30px;
    font-weight: 500;
  }
  .new{
      height: 28px;
      width: 32px;
  }
  .listItems{
      background-color: white;
      font-size: 36px;
      font-style: initial;
      border-bottom: 1px solid lightgray;
     /* line-height: 2; */ 
  }