#nav-bar {
  backdrop-filter: blur(7.5vh) brightness(1.5);
  top: 0;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#nav-bar .logo {
  margin-left: 5%;
  cursor: pointer;
}

#nav-bar .logo img {
  width: 8vw;
}

#nav-bar .nav-item {
  gap: clamp(2.5vw, 3vw, 3.5vw);
  margin-right: 5vw;
}

#nav-bar .nav-item a {
  font-family: "Mundial-Regular";
  font-size: clamp(0.5vw, 0.8vw, 1.2vw);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.63);
  letter-spacing: 0.05vw;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

#nav-bar .nav-item .active {
  color: rgba(255, 255, 255, 1);
}

#nav-bar .nav-item .active::after {
  content: "";
  background-image: url("../../image/desktop/home/active.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -2.5vh;
  left: 50%;
  height: 1vh;
  width: 5vw;
  position: absolute;
  transform: translateX(-50%);
}
