img {
  width: 100%;
}

figure {
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid #fff;
}

figure:hover figcaption {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
  top: 0;
}

figcaption {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.5);
  color: #fff;
  -webkit-transition: all .9s ease;
  -moz-transition: all .9s ease;
  -o-transition: all .9s ease;
  -ms-transition: all .9s ease;
  transition: all .9s ease;
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  -o-transition-delay: .5s;
  -ms-transition-delay: .5s;
  transition-delay: .5s;
}

figure img {
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  -ms-transition: all 1.5s;
  transition: all 1.5s;
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  -o-transition-delay: .5s;
  -ms-transition-delay: .5s;
  transition-delay: .5s;
}

figure:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

figcaption h3 {
  font-family: 'Open sans';
  font-weight: 400;
  color: #f3b204;
  padding: 5px 10px;
  margin-bottom: 0;
  position: relative;
  righ: 100%;
  margin-top: 10px;
  font-size: 25px;
}

.linksApp {
  text-align: center;
}

figcaption p {
  font-family: 'Open sans';
  padding: 5px 10px;
  margin-bottom: 0;
  margin-top: 5px;
  position: relative;
  left: 100%;
  font-size: 15px;
}

figure:hover h3,figure:hover p {
  left: 0;
}

figcaption a {
  color: #fff;
  border: 2px solid #fff;
  padding: 4px 10px;
  text-decoration: none;
}

figcaption a:hover {
  color: #4f5856;
  background: #fff;
}