﻿/* YES! Shadows! /////////////////////// */
.box-shadow {
  z-index: 1;
  -webkit-transition: all 150ms ease-out 0ms;
     -moz-transition: all 150ms ease-out 0ms;
       -o-transition: all 150ms ease-out 0ms;
          transition: all 150ms ease-out 0ms;
}
.box-shadow:hover  {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 1;
  z-index: 20;
  box-shadow: 0 40px 100px 0 rgba(84, 84, 84, 0.5);
  cursor: pointer !important;
}
