/* About page – Investment Nieruchomości */

body {
  font-family: 'Titillium Web', sans-serif;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.group-sub:hover ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
