

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  height: 80px;
  width: 100%;
  background: #000000;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 47px;
  margin-right: 5px;
  margin-top: -11px;
}


/* Adjust the position of the navigation menu */



nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  color: #000000;
  background: linear-gradient(to top, #9d2dfd, #FF73FF);
}

nav .menu-btn i {
  color: var(--theme-text);
  font-size: 22px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"] {
  display: none;
}


@media (max-width: 768px) {


  nav {
    padding: 0 15px 0 15px;
    height: 70px;
  }

  nav .menu-btn i {
    display: block;
  }

  #click:checked~.menu-btn i:before {
    content: "\f00d";
  }

  nav ul {
    position: fixed;
    top: 65px;
    left: -100%;
    background: #0e0e0e;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 9999; /* Add a higher z-index value */
  }

  nav .logo img {
    height: 30px;
    margin-top: -5px;
}

  #click:checked~ul {
    left: 0;
  }

  nav ul li {
    width: 100%;
    margin: 40px 0;
  }

  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #click:checked~ul li a {
    margin-left: 0px;
  }

  nav ul li a.active,
  nav ul li a:hover {
    background: none;
    color: #E894FF;
  }



}