.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: inherit;
  backdrop-filter: blur(8px);
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.25s ease-out;
}

.sticky-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);

}
