.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
}

.ham-bar {
  background-color: rgb(23, 23, 23);
  width: 70%;
  height: 4px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}

.ham-bar.bar-top {
  top: 25%;
}

.ham-bar.bar-bottom {
  top: 75%;
}

#navbar.active > .ham-bar.bar-top {
  top: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
}
#navbar.active > .ham-bar.bar-middle {
  opacity: 0;
}
#navbar.active > .ham-bar.bar-bottom {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#navbar {
  transition:
    max-height 0.5s,
    background-color 0.25s,
    top 0.15s;
  overflow: hidden;
  max-height: 80px;
}
#navbar.active {
  max-height: 343px;
  --tw-bg-opacity: 1;
}
