.page-content .page-wrapper {
  position: absolute;
  width: 100%;
  right: 0px;
  top: 0px;
  transition: right 0.3s ease;
}

.page-content .mobile-menu.menu-open + .page-wrapper {
  right: -200px;
}

.page-content {
  display: flex;
  justify-content: flex-start;
  overflow-x: hidden;
}

.top-bar {
  position: fixed;
  top: 0px;
  padding: 0!important;
  background-color: rgba(0,0,0,.5);
  z-index: 500;
  width: 100%;
}

.top-bar .menu {
  display: none;
}

.top-bar {
  min-height: 54px;
}

.mobile-menu-toggle {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 501;
}

.page-content .mobile-menu .menu-close {
  position: absolute;
  top: 15px;
  right: 10px;
}

.page-content .mobile-menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 200px;
  overflow: hidden;
  height: 100%;
  transition: width 0.3s ease;
}

// .page-content .mobile-menu.menu-open {
//   position: fixed;
//   top: 0px;
//   left: 0px;
//   width: 200px;
//   z-index: -1;
//   overflow: hidden;
//   height: 100%;
// }

.mobile-menu {
  display: block;
  width: 0;
  background-color: #2E2F30;
  padding-top: 45px;
}

.mobile-menu .menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.mobile-menu .menu li a {
  font-family: 'montserratmedium', 'sans-serif';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: white;
  margin-bottom: 1em;
}


@media screen and (min-width: 767px) {
  .page-wrapper {
    position: relative;
  }

  .top-bar .menu {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }
}