/* -- Portfolio Section */
.portfolio-section {
	text-align: center;
	padding:30px 0px;
}
.portfolio-categories {
	margin-bottom: 20px;
	text-align: center;
}
.portfolio-categories li {
	display: inline-block;
    padding: 0px 10px 0px 0px;
}
.portfolio-categories li a { 
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	width: 100%;
	text-decoration: none;
	font-size: 14px;
	background:#000;
	padding: 12px 15px;
	margin: 0px 5px 4px;
}
/*.portfolio-categories li a::before {
	content: "/";
	margin-right: 16px;
	margin-left: 16px;
	color: #777;
}*/
.portfolio-categories li:first-child a::before {
	margin: 0;
}
.portfolio-categories li:first-child a::before {
	content: "";
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	margin-top: 15px;
    height: 300px;
}
.portfolio-item::before {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.70);
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
	opacity: 0;
}
.portfolio-item > a {
	width: 49px;
	height: 49px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1;
	opacity: 0;
	margin: 0 auto;
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.portfolio-item-hover {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
	opacity: 0;
	z-index: 1;
	display: inline-block;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}
.portfolio-item-hover h3 {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
}
.portfolio-item-hover h4 {
	font-size: 12px;
	color: #33a9ee;
	margin-bottom: 0;
}
.portfolio-item:hover .portfolio-item-hover,
.portfolio-item:hover::before,
.portfolio-item:hover > a { 
	opacity: 1;
}
.portfolio-section .ow-pagination {
	margin-top: 30px;
}

.portfolio-item img {
width: 100%;
height: 100%;
}

/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding,
ul {
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

.section-padding {
	padding-top: 50px;
	padding-bottom: 50px;
}


@media (max-width: 767px) {	

	.portfolio-item { 
		width: 370px;
		max-width: 100%;
		margin: 15px auto;
		float: none;
		right: 0;
        height: 260px;
	}
	.portfolio-categories li a {
		font-size: 13px;
	}
	
}