@charset "UTF-8";
/* CSS Document */

figure {
  position: relative;
  overflow: hidden;
  width: 300px;
	height:174px;
}
figcaption {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 90px;
  background: rgba(0,0,0,.6);
  -webkit-transition: .3s;
  transition: .3s;
}
figure:hover figcaption {
  bottom: 0;
}

figcaption p{
	color: #fff;
	font-size: 12px;
}