.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  list-style-type: none;
  width: 100vw;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  background-color: #0000005c;
  backdrop-filter: blur(14px);
  height: var(--navbar-height);
  z-index: 10000;
}

.navbar a:hover {
  color: #ffda07;
  transition: all 0.3s ease;
}

.navbar a img {
  height: clamp(50px, 4vw, 60px);
  vertical-align: middle;
}

.navbar a {
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.right,
.left {
  height: 100%;
  display: flex;
  align-items: center;
}

.left {
  padding-left: var(--padding-on-sides);
}

.right {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 60px);
  padding-right: calc(var(--padding-on-sides) + 20px);
  flex-direction: row;
}

.links {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 60px);
  flex-direction: row;
}

.hb {
  display: none;
  height: 70%;
}

@media (max-width: 668px) {
  .right {
    padding-right: calc(var(--padding-on-sides));
  }

  .right .links {
    opacity: 0;
    pointer-events: none;
    z-index: -100;
  }

  .links {
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    width: 100vw;
    height: min-content;
    gap: clamp(20px, 5vw, 60px);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 20px 0;
  }

  .links.active {
    background-color: #110f00cc;
    pointer-events: all;
    opacity: 1;
    z-index: 10000 !important;
    transform: translateY(var(--navbar-height));
    height: min-content;
  }

  .hb {
    display: block;
  }
}
