/* Background */
body {
background: #efefef;
}

/* Items */
[class*="col-"] {
    margin-bottom: 12px;
}

/* Carousel */
@media (min-width: 992px){
   .carousel {
     margin-bottom: 54px;
   }
}
@media (max-width: 991px){
   .carousel {
     margin-bottom: 30px;
   }
}

.carousel-item {
  height: 385px;
  background-color: #777;
}

.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 385px;
}

@media (min-width: 992px){
   .carousel-caption {
      margin-bottom: 30px;
      margin-left: 112px;
   }
}

/* Link */
.link { 
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;
}

/* Hover Effect */
.shadow {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
}

.shadow:hover {
    box-shadow: 0 9px 17px 0 rgba(0,0,0,0.37);
}