@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");



#navheader {
  width: 100vw;
  min-height: 8vh;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 400 ;
  overflow: hidden;
  font-family: "Poppins", sans-serif !important;
}

#navheader a img {
  width: 100px;
}

.nav-link-dis {
  display: inline-block;
}

.logo-small{
  margin-left: 8px;
}

#drop {
  display: none;
}

#navheader a {
  color: #969696;
  transition: color 0.4s ease-in;
}

#navheader .navbar-btn {
  display: none;
}

#menuW {
  float: right;
  display: block;
  margin-right: 20px;
}

#menuW ul li {
  display: inline-block;
  padding: 15px 15px;
  position: relative; /* To position the pseudo-element correctly */
  
}

#menuW ul li:hover::before {
  content: "";
  width: calc(100% - 25px); /* Fixed the calc() */
  border-radius: 5px;
  height: 5px;
  display: block;
  position: absolute;
  bottom: 5%;
  background-color: #969696;
  animation: hCome 1s alternate;
}

@keyframes hCome {
  0% {
    width: 0%;
  }
  100% {
    width: calc(100% - 25px); /* Fixed the calc() */
  }
}

#menuW ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 400 ;
}
#menuW ul li a:hover {
  color: white;
  font-weight: 400 ;
}

/* Responsive Web */
@media only screen and (max-width: 1025px) {
  #menuW ul li a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400 ;
  }
}


@media only screen and (max-width: 809px) {
  #menu {
    display: inline-block !important;
    float: right;
  }

  #menuW {
    display: none;
  }

  #navheader {
    width: 100vw;
    height: auto;
    padding: 15px 15px;
  }

  #navheader a img {
    width: 100px;
  }

  #drop {
    display: none;
    width: 100vw;
    height: 100vh;
    position: relative;
    left: 10%;

  }

  #navheader a {
    color: white;
  }

  #drop ul li {
    display: block;
    padding-top:15px ;
  }

  .nav-link-dis {
    display: none;
  }

  .nav-link-dist {
    float: right;
    display: inline-block !important;
  }

  #drop ul li a {
    text-decoration: none;

    font-size: 20px;
  }
}
