.popularDestination {
    box-shadow: 0px 4px 5px 0px rgba(29,29,29,0.4);
    border-radius: 8px;
}
.tile {
    display: inline-block;
    text-align: left;
    opacity: .99;
    overflow: hidden;
    position: relative;    
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    
}
.tile:before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 50%;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.tile img {
  display: block;
  width: 100%; height:300px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  
}
.details b {
    background-color: #fcfcfc;
    padding: 10px;
    float: left;
    font-size: 18px;
    width: 100%;
    text-align: center;
    display: inline-block
}
.tile .details {
    font-size: 16px;
    color: #333;
    position: absolute;
    bottom:0;
    left: 0;
    z-index: 10000;
    width: 100%;
    text-align: center;
}
.tile .details span {
  display: block;
  opacity: 0;
  position: relative;
  top: 100px;
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.tile .details .title {
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
}
.tile .details .info {
  line-height:18px; padding:0 15px 15px 15px; text-align:justify; 
  font-size: 13px;
}
.tile:focus:before,
.tile:focus span, .tile:hover:before,
.tile:hover span {
  opacity: 1;
}
 .tile:focus:before,  .tile:hover:before {
  top: 50%;
}
 .tile:focus span,  .tile:hover span {
  top: 0;
}
 .tile:focus .title, .tile:hover .title {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.tile:focus .info, .tile:hover .info {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
