/* Home product-card entrance and hover motion. */
.what-card {
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.what-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.what-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 32px rgba(2, 6, 23, .12);
}

.what-card img {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.what-card:hover img {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .what-card,
  .what-card:hover {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
