/* Hamburger-Main-Side-Bar Icon */
.hamburger-Main-Side-Bar {
  position: absolute;
  top: 21px;
  right: 50px;
  z-index: 100;
  cursor: pointer;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-Main-Side-Bar span {
  display: none;
  height: 3px;
  width: 100%;
  background-color: #000000;
  transition: all 0.3s ease;
}

/* Full-Screen Overlay-Main-Side-Bar */
.overlay-Main-Side-Bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 100%;
  background-color: rgba(16, 59, 1, 0.95); /* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Show state */
.overlay-Main-Side-Bar.open {
  opacity: 1;
  visibility: visible;
}

/* Menu Links */
.menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.menu-links li {
  margin-right: 225px;
}

.menu-links a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #ff4757;
}

/* Animation: Turn hamburger-Main-Side-Bar into an 'X' */
.hamburger-Main-Side-Bar.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: white;
}
.hamburger-Main-Side-Bar.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-Main-Side-Bar.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: white;
}

.overlay-Main-Side-Bar ul li {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  list-style: none;
  margin-top: 30px;
}
.overlay-Main-Side-Bar ul li a {
  text-decoration: none;
  color: #ffff;
  font-size: 13px;
}
.overlay-Main-Side-Bar .main-header-header-header {
  font-size: 18px;
  color: #b7e903;
  /* background: #043d04; */
}

