#nav {
  display: block;
  position: fixed;
  left: 20px;
  top: 22px;
  z-index: 30;
}

#nav ul {
  margin: 0px;
  padding: 0px;
}

.nav-li {
  display: block;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 18px;
  pointer-events: auto;
}

.nav-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.nav-text {
  font-size: 16px;
  line-height: 18px;
  text-overflow: clip;
  white-space: normal;
  overflow: visible;
  color: rgb(136, 136, 136);
  opacity: 1;
  user-select: none;
  cursor: pointer;
  transition: color 1000ms ease 0s;
}

.nav-text:hover {
  transition: color 150ms ease 0s;
  color: rgb(0, 0, 0);
}

/* Mobile */
.menu-mobile-container {
  z-index: 80;
  position: fixed;
  display: none;
  width: 100%;
  height: 55px;
  transform: none;
}

.menu-mobile-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 82;
}

.hamburger-icon {
  display: block;
}

.x-icon {
  display: none;
}

.menu-mobile-rows {
  transition: background 1000ms ease 0s;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.85);
}

.menu-mobile-row-current {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 55px;
  overflow: hidden;
  cursor: pointer;
}

.menu-mobile-row-current-title {
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  user-select: none;
  color: black;
  margin-right: 55px;
  padding-left: 20px;
  line-height: 55px;
}

.menu-mobile-overlay-container {
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  opacity: 1;
  z-index: 81;
}

.menu-mobile-items {
  width: 100%;
  padding-bottom: 12px;
  background: rgb(255, 255, 255);
}

.menu-mobile-item-link {
  font-size: 17px;
  text-overflow: clip;
  white-space: normal;
  overflow: visible;
  color: rgb(136, 136, 136);
  opacity: 1;
  user-select: none;
  transition: color 150ms ease 0s;
  cursor: pointer;
  display: block;
  line-height: 55px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
}

.menu-mobile-background {
  backdrop-filter: blur(5px);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: rgb(0 0 0 / 25%) 0px 50px 100px -70px inset;
}

@media (max-width: 767.98px) {
  .menu-mobile-container {
    display: block;
  }

  #nav {
    display: none;
  }

  .nav-text {
    font-size: 17px;
    line-height: 17px;
  }
}
