img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hover-lift {
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}