.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 64px);
  width: 100%;
  overflow: hidden;
  padding: 0 32px;
  margin-top: -100px;
  height: 100px;
  position: relative;
  z-index: 3;
}

.nav.sticky {
  height: 70px !important;
  position: sticky !important;
  top: 0px;
  left: 0px;
  background-color: #010203;
  background: linear-gradient(110deg, #04080c 60%, #010203 60%);
}

.nav > ul#large_screen_ul {
  list-style: none;
  gap: 0px 32px;
  display: flex;
}

.nav ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  position: relative;
  cursor: pointer;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 0px;
  width: 100%;
  height: 2.5px;
  background: #04c98b;
  transition: ease-in-out 0.25s;
  transform: scaleX(0);
  transform-origin: left;
}

.nav ul li a.active::after,
.nav ul li a:hover::after {
  transform: scaleX(1);
}

#small_screen_nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 8;
  background: #000000;
  display: none;
}

#small_screen_ul {
  z-index: 9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px 0;
  padding: 50px 0;
  list-style: none;
  display: flex;
  min-height: calc(100% - 100px);
}

#small_screen_ul > li a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  cursor: pointer;
}
#small_screen_ul > li a.active {
  color: #04c98b;
}
.navbar_right_content {
  display: flex;
  align-items: center;
}

.contact_us {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0 6px;
}

.contact_us > img {
  width: 20px;
}

.signup_btn_nav ul li a {
  display: block;
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  background: #48852e;
  color: #fff;
  transition: all 0.3s;
  border: none;
}

.signup_btn_nav ul li a.active::after,
.signup_btn_nav ul li a:hover::after {
  transform: scaleX(0);
}

/* Toggle Icon Design */
.toggle_lines {
  flex-direction: column;
  gap: 5px 0;
  cursor: pointer;
  padding: 10px;
  height: fit-content;
  display: none;
  align-items: center;
  justify-content: center;
  padding-left: 25px;
  position: relative;
  z-index: 9 !important;
}

.toggle_lines.show {
  position: fixed;
  z-index: 9;
  top: 40px;
  right: 40px;
}

.toggle_lines > div {
  width: 30px;
  height: 3px;
  background: linear-gradient(to right, #999, #fff);
  border-radius: 5px;
  transition: all 0.5s;
}

.toggle_lines.show > div {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0px;
  margin: auto;
}

.toggle_lines.show .line1 {
  transform: rotate(45deg);
}
.toggle_lines.show .line2 {
  transform: rotate(45deg);
}
.toggle_lines.show .line3 {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .toggle_lines {
    display: flex !important;
  }
  #large_screen_ul {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .nav {
    width: calc(100% - 20px);
    width: 100%;
    padding: 0px 10px !important;
  }
}

@media (min-width: 1024px) {
  #small_screen_nav {
    display: none !important;
  }
}
