body {
  font-family: 'Titillium Web', sans-serif;
}

@keyframes fadeInZoom {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-bg {
  animation: fadeInZoom 0.8s ease-out both;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.group-sub:hover ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@keyframes scroll-logos {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-scroll-logos {
  display: flex;
  width: max-content;
  animation: scroll-logos 20s linear infinite;
}
