@keyframes bounce-e4aa5fb2 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.hover-bounce-fade-row img {
  transition: opacity 0.3s ease;
}

.hover-bounce-fade-row:hover img {
  animation: bounce-e4aa5fb2 1s ease;
  opacity: 0.7;
}