html, body {
    overflow-x: hidden;
}

#wpforo-menu {
  position: fixed;
  margin-top: -20px !important;
  z-index: 90;
  width: 100%; 
  left: 0; opacity: 0;
  animation: fadeInDown 0.8s forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-80px); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wpforo-subtop {
  margin-top: 20px !important; 
}
