.nav-shader {
  position: fixed;
  z-index: 24;
  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: 25;
  display: flex;
  justify-content: space-between;
}

.nav-logo img {
  height: 64px;
}

.nav-logo,
.nav-info {
  display: flex;
  align-self: center;
  gap: 0.6rem;
}

.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;
  }

  .nav-logo img {
    height: 42px;
  }

  .nav-info-socials {
    display: none;
  }
}

.menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.3em 0;
  color: #2D3D47;
  font-size: 1.5rem;
  transition: all 400ms ease;
}

.menu p {
  color: #2D3D47;
  transition: all 400ms ease;
}

.menu {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu p {
  padding-right: 0.75em;
  padding-left: 2rem;
  margin: 0;
}

.menu .menu-icon {
  position: relative;
  left: 0.125em;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu.active {
  background: rgba(255, 52, 66, 1);
  background: linear-gradient(90deg, rgba(226, 3, 255, 0.78) 0%, rgba(255, 52, 66, 1) 100%);
}

.menu.active p,
.menu.active ion-icon {
  color: #fff;
}

.menu.active .menu-icon {
  transform: rotate(270deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu:hover {
  background: linear-gradient(90deg, rgba(226, 3, 255, 0.78) 0%, rgba(255, 52, 66, 1) 100%);
  color: #fff;
}

.menu:hover p {
  color: #fff;
}

@media (max-width: 1024px) {
  .menu {
    padding: 0.3em 0;
    font-size: 1.3rem;
  }

  .menu p {
    padding-left: 1rem;
  }

  .menu .menu-icon {
    left: 0;
  }

  .menu.active {
    background: #f4f4f4;
  }

  .menu.active p,
  .menu.active ion-icon {
    color: #757575;
  }
}

/* menu-container */
.menu-container {
  position: fixed;
  top: 86px;
  right: 1rem;
  width: 100%;
  padding: 1em;
  display: flex;
  text-transform: uppercase;
  z-index: 22;
  opacity: 0;
}

.whitespace {
  pointer-events: none;
}

.whitespace,
.menu-items {
  flex: 1;
  padding: 0.25em;
}

.menu-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background: #fff;
  background: linear-gradient(360deg, rgb(18 23 87) 0%, rgba(191, 0, 255, 1) 50%, rgba(30, 1, 83, 1) 100%);
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.menu-item {
  position: relative;
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  border-radius: 5px;
  text-decoration: none;
}

.menu-item span {
  color: #333;
}

.menu-items .hero-bottom-right-buttons {
  display: none!important;
}

@media (max-width: 900px) {
  .menu-items .hero-bottom-right-buttons {
    display: flex;
    border-top: 1px solid #6e6b6900;
    padding-top: 1rem;
  }
  .menu-container {
    top: unset;
    bottom: calc(0px);
    padding: 0;
    right: 0;
    z-index: 23;
  }
  .menu-container::before {
    position: absolute;
    content: '';
    background: #0b093342;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 200vh;
    top: -120vh;
    z-index: 21;
}

  .menu-items {
    border-radius: 8px 8px 0px 0px;
    padding-bottom: 60px;
    z-index: 24;
  }

  .whitespace {
    display: none;
  }
}
