@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}


  .active-tab {
    font-weight: 600;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }
