.nav-shader {
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(4, 4, 20, 0.78) 0%, rgba(4, 4, 20, 0) 70%);
}

nav {
  position: fixed;
  width: calc(100% - 4rem);
  margin-left: 2rem;
  margin-top: 2rem;
  height: 64px;
  background: transparent border-radius: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.nav-logo,
.nav-info {
  display: flex;
  align-self: center;
  align-items: center;
  gap: 0.6rem;
  padding: 4px;
}

.nav-logo {
  background: #ffffffdb;
  backdrop-filter: blur(9px);
  border-radius: 12px;
  padding: 4px;
  background: #14162D;
}

.nav-logo img {
  height: 54px;
}

.nav-info {
  align-items: center;
  background: #15162dd9;
  border-radius: 14px;
}

.nav-info-menu {
  display: flex;
  justify-content: center;
}

.nav-info-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-info-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.nav-info-mobile, .nav-mobile-menu {
  display: none;
}

.nav-info-socials {
  display: flex;
  gap: 0.6rem;
}

@media (max-width: 992px) {
  nav {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    background: #15162dcf;
    backdrop-filter: blur(8px);
    border-radius: 17px;
    border: 1px solid #3e3e57;
    padding: 0.4rem;
  }

  .nav-logo {
    background: transparent;
    backdrop-filter: unset;
    border-radius: unset;
    padding: 0;
  }

  .nav-logo img {
    height: 52px;
    border-radius: 12px;
  }

  .nav-info, .nav-info-menu {
    display: none;
  }

  .nav-info-mobile {
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }

  .nav-info-socials {
    display: none;
  }

  .nav-mobile-menu {
    display: flex;
  }
}
