/*----------------------Side Menu CSS--------------------*/
.menuBar{
    width: 100%;
    padding: 15px 12px;
}
.menuBar #main{
    text-align: left;

}
.menuToggle{
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    background: #183446;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 10px 14px;
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background:
      linear-gradient(160deg, rgba(32, 75, 83, .95), rgba(14, 27, 44, .98)),
      #102a43;
    overflow-x: hidden;
    transition: width 0.3s ease;
    padding-top: 92px;
    box-shadow: 12px 0 30px rgba(10, 20, 35, .22);
  }

  .sidenav::before {
    content: "Ramesh Kumar";
    position: absolute;
    top: 24px;
    left: 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .sidenav::after {
    content: "Java / J2EE Profile";
    position: absolute;
    top: 50px;
    left: 28px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  
  .sidenav a {
    margin: 3px 14px;
    padding: 12px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .76);
    display: block;
    transition: background .18s ease, color .18s ease, transform .18s ease;
  }
  
  .sidenav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateX(2px);
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 34px;
    line-height: 34px;
    text-align: center;
  }
  

  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  @media screen and (max-width: 800px) {
    .menuBar{
      padding: 10px 14px;
    }

    .sidenav a {
      font-size: 16px;
    }
  }
