

/***** Portfolio *****/
.portfolio-filters a { color: #888; }
.portfolio-filters a:hover, .portfolio-filters a.active { color: #2ba560; }

.portfolio-box {
	position: relative;
	width: calc(25% - 38px);
	margin: 30px 15px 0 15px;
	overflow: hidden;
	z-index: 99;
}

.portfolio-box img{
	transition: all 0.3s;
}

.portfolio-box:hover img {
	-o-transform: scale(1.25); -moz-transform: scale(1.25); -webkit-transform: scale(1.25); -ms-transform: scale(1.25); transform: scale(1.25);
}

.portfolio-box-text-container {
	position: absolute;
	bottom: -200px;
	left: 0;
	right: 0;
	width: 255px;
	-o-transition: all .6s; -moz-transition: all .6s; -webkit-transition: all .6s; -ms-transition: all .6s; transition: all .6s;
}

.portfolio-box-text {
	background: #333;
	background: rgba(51, 51, 51, 0.8);
	color: #fff;
}
.portfolio-box:hover .portfolio-box-text-container { bottom: 0; }

.portfolio-box-text p {
	margin: 0;
	padding: 15px 20px;
	font-size: 18px;
    line-height: 32px;
    cursor: pointer;
}












