/* offcanvas menu */
.main-menu {
  display: block; 
}
.offcanves-menu{
    display: none;
}
.offcanves-menu {
  width: 300px;
  background: #ffffff;
  height: 100%;
  position: fixed;
  z-index: 111;
  padding: 62px 0;
  margin-left: -300px;
  transition: .3s;
  padding-right: 0px;
}
.offcanves-menu ul li {
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-right: 25px;
}
.offcanves-menu ul li:last-child {
    border-bottom: 0px;
}
.offcanves-menu ul li a {
    padding: 13px 15px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.4s; 
}
.offcanves-menu ul li a:hover {
    color: #3066F0;
}
.offcanves-menu.active {
      margin-left: 0px;
      z-index: 1111;
}

.off-menu span.menubar {
      font-size: 28px;
      cursor: pointer;
      transition: all linear 0.3s;
      color: #000;
 }

.off-menu {
    float: right;
}

.close {
      position: absolute;
      right: 20px;
      top: 20px;
      color: #000;
      font-size: 20px;
      padding: 5px 15px;
      border: 1px solid #000;
      transition: all linear 0.3s;
      cursor: pointer;
}
  .close:hover {
        color: #000;
        border-color: #000;
}

.offcanvas-overlay {
      width: 100%;
      height: 100%;
      background: #000;
      position: fixed;
      z-index: 0;
      visibility: hidden;
      opacity: 0;
      transition: .5s;
 }

.offcanvas-overlay.active {
      opacity: .3;
      z-index: 111;
      visibility: visible;
 }

.menu-bar {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    color: #000;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}
.menu-bar img{
    width: 24px;
}
