.project .menuBar {
    position: fixed;
    z-index: 12;
    top: 0;
    vertical-align: top;
    color: #ffffff;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5); */
    width: 100%;
  }
  @media (min-width: 996px) {
    .project .menuBar {
      position: sticky;
      -webkit-backdrop-filter: blur(20px);
              backdrop-filter: blur(20px);
      background-image: linear-gradient(352deg, rgba(11, 13, 15, 0.9) 20%, rgba(0, 0, 0, 0.9));
    }
  }
  @media (min-width: 996px) {
    .project .menuBar__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
    }
  }
  .project .menuBar ul {
    display: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (min-width: 996px) {
    .project .menuBar ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border: none;
      padding: 10px 0px;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      border-top: #333 1px solid;
    }
    .project .menuBar ul i {
      display: none;
    }
  }
  .project .menuBar ul.show {
    display: block;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-image: linear-gradient(352deg, rgba(11, 13, 15, 0.9) 20%, rgba(0, 0, 0, 0.9));
  }
  .project .menuBar ul li {
    cursor: pointer;
    color: #ccc;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: #333 1px solid;
  }
  @media (min-width: 996px) {
    .project .menuBar ul li {
      width: auto;
      padding: 0 10px;
      border-left: #444 1px solid;
      width: auto;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      border-bottom: 0;
    }
    .project .menuBar ul li:hover, .project .menuBar ul li.on {
      color: #fff;
    }
  }
  @media (min-width: 1300px) {
    .project .menuBar ul li {
      padding: 0 30px;
    }
  }
  .project .menuBar ul li:first-child {
    border-left: 0px;
  }
  .project .menuBar ul li:last-child {
    border-right: 0px;
  }
  .project .menuBar ul li.active {
    color: #b5affb;
    text-shadow: 0 0 2px #6e66cb, 0 0 8px #6e66cb;
  }
  .project .menuBar .menuBarBtn {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 15px;/*new*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    top: 20px;
    -webkit-filter: drop-shadow(0 0 5px #000);
            filter: drop-shadow(0 0 5px #000);
  }
  .project .menuBar .menuBarBtn p {
    width: 25px;
    height: 3.2px;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  .project .menuBar .menuBarBtn p::before {
    display: inline-block;
    content: "";
    position: absolute;
    width: 25px;
    height: 3.2px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    left: 0;
  }
  .project .menuBar .menuBarBtn p::after {
    display: inline-block;
    content: "";
    position: absolute;
    width: 25px;
    height: 3.2px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    left: 0;
  }
  @media (min-width: 996px) {
    .project .menuBar .menuBarBtn {
      width: auto;
      border-right: #444 1px solid;
      margin-right: 15px;
      padding-right: 40px;
      display: none;
    }
  }
  .project .menuBar .menuBarBtn i {
    margin-right: 10px;
  }/*# sourceMappingURL=menubar-v2.css.map */