.page-home .hero-shot:first-child {
  animation: home-float-a 9s ease-in-out infinite;
}

.page-home .hero-shot:last-child {
  animation: home-float-b 10s ease-in-out infinite;
}

.footer-project-card {
  min-height: 100%;
}

@keyframes home-float-a {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes home-float-b {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}
