/* Animation */
.services > * {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.8s ease-out forwards;
}

.services > *:nth-child(1) { animation-delay: 0.1s; }
.services > *:nth-child(2) { animation-delay: 0.2s; }
.services > *:nth-child(3) { animation-delay: 0.3s; }
.services > *:nth-child(4) { animation-delay: 0.4s; }
.services > *:nth-child(5) { animation-delay: 0.5s; }
.services > *:nth-child(6) { animation-delay: 0.6s; }
.services > *:nth-child(7) { animation-delay: 0.7s; }
.services > *:nth-child(8) { animation-delay: 0.8s; }
.services > *:nth-child(9) { animation-delay: 0.9s; }
.services > *:nth-child(10) { animation-delay: 1s; }
.services > *:nth-child(11) { animation-delay: 1.1s; }
.services > *:nth-child(12) { animation-delay: 1.2s; }
.services > *:nth-child(13) { animation-delay: 1.3s; }
.services > *:nth-child(14) { animation-delay: 1.4s; }
.services > *:nth-child(15) { animation-delay: 1.5s; }
 

 @keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
