.tiles a {
  display: block;
  float: left;
  width: 310px;
  margin: 0 10px 10px 0;
  padding: 0px;
  position: relative;
  color: #fff;
  text-decoration: none;
  z-index: 10;
  height: 220px;
  overflow: hidden;
}
.tiles a .desc {
  position: absolute;
  left: 0px;
  top: -50px;
  width: 270px;
  height: 100%;
  background-color: rgba(31,135,204,0.7);
  font-size: 16px;
  padding: 50px 20px;
  font-weight: 300;
  text-align: center;
  z-index: 20;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tiles a .desc .title {
  font-family: 'pf_din_text_comp_proLtIt';
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tiles a .img {
  z-index: 15;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.tiles a .img img {
  width: 310px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.tiles a:hover .img {
  top: -15px;
  left: -20px;
}
.tiles a:hover .img img {
  width: 350px;
}
.tiles a:hover .desc {
  top: 0px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
