.hovereffect {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor:pointer;
}
.hovereffect .overlay {
    width: 100%;
    position: absolute;
    overflow: hidden;
    left: 0;
	top: auto;
	bottom: 0;
	padding: 1em;
	height: 4.5em;
	/* background:#000; */
	color: #FFF;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	
	/* background:rgba(0,0,0,0.9); */
	background-color:#000;
 	background: -webkit-linear-gradient(top,rgba(0,0,0,0.1),rgba(0,0,0,1)); /*Safari 5.1-6*/
  	background: -o-linear-gradient(top,rgba(0,0,0,0.1),rgba(0,0,0,1)); /*Opera 11.1-12*/
  	background: -moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8),rgba(0,0,0,1)); /*Fx 3.6-15*/
  	background: linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,1)); /*Standard*/
}

.hovereffect img {
    display: block;
    position: relative;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

.hovereffect:hover img {
	/* -webkit-transform: translate3d(0,-10%,0);
	transform: translate3d(0,-10%,0); */
	
	-webkit-transform: scale(1.1);
  	-ms-transform: scale(1.1);
  	transform: scale(1.1);
}

.hovereffect h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    position: relative;
    font-size: 15px;
    padding: 4px;
    /* background: rgba(0, 0, 0, 0.6); */
	float: left;
	margin: 0px;
	display: inline-block;
	letter-spacing:2px;
	line-height:20px;
}

.hovereffect a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    text-transform: uppercase;
	color: #fff;
	border: 1px solid #fff;
	margin: 50px 0 0 0;
	background-color: transparent;
}
.hovereffect a.info:hover {
    box-shadow: 0 0 5px #fff;
}






.hovereffect p.icon-links{
	float: right;
	color: #fff;
	font-size: 0.9em;
	margin-top:20px;
}

.hovereffect:hover p.icon-links:hover,
.hovereffect:hover p.icon-links:focus {
	color:#F90;
}

.hovereffect h2,
.hovereffect p.icon-links {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

.hovereffect p.icon-links span:before {
	display: inline-block;
	padding: 8px 10px;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.hovereffect:hover .overlay,
.hovereffect:hover h2,
.hovereffect:hover p.icon-links {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.hovereffect:hover h2 {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.hovereffect:hover p.icon-links:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.hovereffect:hover p.icon-links:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.hovereffect:hover p.icon-links:first-child {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

@media (min-width: 1200px) {
	.hovereffect h2 {
		width:80%;
	}
}