.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px 32px !important;
  width: 90%;
  /* height: clamp(4.5rem, 3.75rem + 2.083vw, 5.625rem); */
  min-height: clamp(4.5rem, 3.75rem + 2.083vw, 5.625rem) !important;
  max-width: 1280px;
  position: absolute;
  top: clamp(0.875rem, -0.208rem + 3.009vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0px !important;
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.8);
  backdrop-filter: blur(21.600000381469727px);
  z-index: 99;
}
.navbar-logo {
  color: #ffd700 !important;
  font-weight: bold;
  font-size: 1.5rem;
}
.navbar-logo img {
  /* height: clamp(1.625rem, 1rem + 1.736vw, 2.563rem); */
  height: 50px;
}
.nav-link-item {
  color: #fff;
  font-family: Raleway;
  font-size: clamp(0.875rem, 0.708rem + 0.463vw, 1.125rem) !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 100%;

  padding: 15.5px 42px !important;
  text-decoration: none;
}
.nav-link-item.active {
  border-radius: 10px;
  background: linear-gradient(
    115deg,
    var(--secondary, #ebcb78) 4.94%,
    #8e5b00 95.11%
  );
  border: none;

  padding: 15.5px 42px;
  color: #fff !important;
  font-family: Raleway;
  font-size: clamp(0.875rem, 0.708rem + 0.463vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}

.nav-items {
  display: flex;
  gap: 6px;
}

/* From Uiverse.io by ahmedyasserdev */
.burger {
  display: inline-block;
  cursor: pointer;
  z-index: 1000;
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease;
}

#burger-checkbox {
  display: none;
}

#burger-checkbox:checked + .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#burger-checkbox:checked + .burger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

#burger-checkbox:checked + .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger-wrapper {
  display: none;
}

.nav-inner-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-items {
  display: flex;
  align-items: center;
}

.navbar.open .navbar-mobile-wrapper {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar-mobile-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.navbar-mobile-wrapper .mobile-nav-link-item {
  font-size: clamp(0.875rem, 0.708rem + 0.463vw, 1.125rem);
  font-family: Raleway;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.navbar-mobile-wrapper .mobile-nav-link-item:hover,
.navbar-mobile-wrapper .mobile-nav-link-item.active {
  color: #ebcb78;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.navbar-mobile-wrapper .mobile-nav-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 16px;
}

@media screen and (max-width: 768px) {
  .hamburger-wrapper {
    display: block;
  }
}

@media screen and (min-width: 767px) {
  .navbar-mobile-wrapper {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    height: auto !important;
  }
  .nav-items {
    display: none !important;
  }

  .navbar-mobile-wrapper {
    display: block;
    width: 100%;
  }
}
