/* ############# Slide-in effect of the images... ########################### */
.come-in {
   opacity: 0;
   transform: translateX(50px);
   animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s; /* So they look staggered */
}
@keyframes come-in {
  to {
     transform: translateX(0);
     opacity: 1;
  }
}
