#filters {
	margin:1%;
	padding:0;
	list-style:none;
}

#filters li span.active {
	background: #e95a44;
	color:#fff;
}
 
#portfoliolist .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	width:20%;
	padding:1%;
	display:none;
	float:left;
	overflow:hidden;
}

.portfolio-wrapper {
	overflow:hidden;
	position: relative !important;
	cursor:pointer;
	height: 144px;
}

.portfolio img {
	max-width:75%;
	max-height: 70px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	/*margin: 11%;*/
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);		
}
	
.portfolio:hover .label {
    bottom:0;
  }
.portfolio:hover img {
    transform: scale(1.2) translateY(-50%);
}