nav {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

nav .burger-menu {
  transform: scale(1.5);
  cursor: pointer;
  display: flex;
  align-items: center;
}

nav {
  position: fixed;
  top: 0;
  z-index: 50 !important;
  font-family: "Quicksand", sans-serif;
}

nav .nav-icon {
  font-size: 16px;
}

nav .nav-icon a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
  /* text-transform: uppercase; */
  color: black;
  font-weight: 600;
}

/* nav .nav-icon:hover {
  text-decoration: underline;
} */

nav .nav-outer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  background-color: rgb(123, 201, 232);
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
}

nav .nav-right {
  display: flex;
  align-items: center;
}

nav .nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav .logo {
  font-family: "Micro 5", sans-serif;
  font-size: 48px;
  background-image: linear-gradient(black, black);
  color: white;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: transparent;
  background-clip: text;
  text-align: center;
  font-weight: 700;
  padding-left: 5px;
}

nav .logo a {
  text-decoration: none;
  color: white;
}

nav .menu {
  display: none;
  height: 100vh;
  width: 300px;
  background-color: rgb(123, 201, 232);
  position: fixed;
  left: 0;
  top: 0;
}

nav .user-dp {
  background-color: black;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-left: 10px;
}

nav .user-dp img {
  height: 40px;
  width: 40px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 5;
}

nav .menu-links {
  margin-top: 70px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

nav .menu-link-item a {
  text-decoration: none;
  color: white;
}

nav .navbar-button-group {
  /* position: absolute;
  top: 15px;
  right: 30px; */
  display: flex;
  gap: 15px;
}

nav .navbar-button-group .navbar-button {
  /* height: 30px; */
  border-radius: 3px;
  cursor: pointer;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}

nav .login-button {
  border: 0;
  background-color: rgb(123, 201, 232);
  /* color: rgba(255, 255, 255, 0.9); */
  color: black;
}

nav .signup-button {
  color: #000000;
  border: 2px solid rgb(0, 0, 0);
  background-color: whitesmoke;
}

nav .signup-button:hover {
  background-color: rgb(228, 226, 226);
}

nav hr {
  width: 100%;
  margin: 0;
  border: 1px solid #3c3c3c;
}

nav .user-menu {
  position: fixed;
  right: 60px;
  min-width: 150px;
  border-radius: 5px;
  top: 63px;
  display: none;
  flex-direction: column;
  justify-content: center;
  /* gap: 15px; */
  background-color: rgb(249, 249, 249);
  padding: 10px 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* nav .user-menu hr {
  border: 0;
  height: 1px;
  background: #c7c7c7;
  background-image: linear-gradient(to right, #ccc, #b6b6b6, #ccc);
} */

nav.user-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .user-menu-item a {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
  min-height: 50px;
  border-radius: 3px;
}

nav .user-menu-item a:hover {
  background-color: rgb(228, 228, 228);
}

nav .user-menu-item a:active {
  background-color: rgb(208, 208, 208);
}

nav #referral-redirect {
  background-color: orange;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  width: 200px;
  text-align: center;
  font-size: 14px;
}

nav #referral-redirect:hover {
  background-color: rgb(240, 156, 0);
}

nav #referral-redirect:active {
  background-color: rgb(225, 146, 0);
}

nav .pulseBtn {
  /* border: 1px solid #bb750b; */
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  box-shadow: 0 0 0 0 rgba(252, 160, 54, 0.605);
  -moz-animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(252, 160, 54, 0.726);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(206, 116, 6, 0.16);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(88, 120, 243, 0);
  }
}
