nav {
  position: fixed;
  z-index: 2;
  width: 90vw;
  padding: 18px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  margin-top: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  left: 50%;
  transform: translateX(-50%);
}

.nav-burger {
  display: flex;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.05));
}

.nav-list {
  height: 0;
  width: 0;
  visibility: hidden;
}

.nav-mobile {
  visibility: hidden;
  height: 0px;
  width: 0px;
}

.nav-list-mobile {
  padding: 0px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nav-mobile.active {
  visibility: visible;
  height: auto;
  width: auto;
}

.nav-list-mobile li {
  list-style: none;
  color: #212427;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.nav-register-btn {
  color: white;
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(
    --primary-gradient,
    linear-gradient(258deg, #59ffb9 0%, #326cff 100%)
  );
  transition: background 0.3s ease;
}

.nav-register-btn:hover {
  background: linear-gradient(271deg, #326cff 0%, #59ffb9 100%);
}

@media (min-width: 768px) {
  .nav-burger {
    visibility: hidden;
    padding: 0px;
    height: 0px;
    width: 0px;
  }

  .nav-list {
    height: auto;
    width: auto;
    visibility: visible;
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 52px;
  }

  .nav-list li {
    list-style: none;
    color: #212427;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }

  .nav-list li :hover {
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.5);
  }
}
