#hamburger-button {
  border: none;
  outline: none;
  background-color: transparent;

  cursor: pointer;

  position: fixed;
  top: 2rem;
  /* right: calc((100% - 77.6455%) / 2); */
  right: 1.5rem;

  z-index: 500;
}

#hamburger-button path {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  transition: all 0.5s ease;
}

/* NAV MENU */
/* ======================== */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 100;

  width: 100%;
  height: 100%;

  padding: 2rem;

  display: none;
  flex-direction: column;
  justify-content: center;

  background-color: rgba(255, 255, 255, 0.5);
  color: var(--dark);

  transition: opacity 0.3s ease-in-out;
}

.nav-mobile {
  list-style-type: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-mobile-item {
  opacity: 0;
}

.nav-mobile-item:first-child {
  transition: all 0.3s ease 0.1s;
}

.nav-mobile-item:nth-child(2) {
  transition: all 0.3s ease 0.3s;
}

.nav-mobile-item:nth-child(3) {
  transition: all 0.3s ease 0.7s;
}

.nav-mobile-item:nth-child(4) {
  transition: all 0.3s ease 1s;
}

.nav-mobile-item .nav-mobile-link {
  display: block;

  text-decoration: none;
  color: var(--dark);

  font-family: "Metropolis", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.nav-mobile-menu-open {
  display: flex !important;
  opacity: 1;
}

.nav-mobile-menu-open .nav-mobile-item {
  opacity: 1;
  transform: translateX(0%);
}
/* ======================== */
