@charset "UTF-8";
/* CSS Document */


.box.video {
  background-image: url('https://s3.amazonaws.com/distill-videos/thumbnails/2/3M2A4273.mp4-poster.png');
  background-size: cover;
  transition: all 0.4s ease;
}

.video video {
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
}

.video:hover video {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}


/* Hide Play button + controls on iOS */

video::-webkit-media-controls {
  display: none !important;
}
