.gallery .row{
	margin-bottom: 30px!important;
}

.gallery a{
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 4px;
}

.gallery img{
	display:block;
	max-width:100%;
	height:auto;
	border: 1px solid #e9e9e9;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.gallery a:hover img {
    -webkit-transform: scale3d(1.05,1.05,1);
    transform: scale3d(1.05,1.05,1);
}

.gallery-caption{
	margin: 5px 0 15px 0;
	font-family: "Roboto";
	line-height: 1;
	font-size: 0.875em;
	font-weight: 500;
	opacity: 0.6;
	color: #2E2E2E;
}

.gallery-item p{
	height: 0;
	display: none;
	overflow: hidden;
}

@media (max-width: 767px) {
	.gallery-item{
		margin-bottom: 15px;
	}
}