@charset "utf-8";



.categories{
	margin:0 auto;
	overflow:hidden;
	padding:0;
	width:100%;
	max-width:800px;
	text-align:center;
	background-color:#fff;
	margin:0 auto;
}

.category{
	display:block;
	background-color:#003E6A;
	font-weight:900;
	font-size:12px;
	margin:7px 0;
	line-height:25px;
	color:#fff;
	cursor:pointer;
	text-align:center;
	transition:all .1s ease-in-out;
	position:relative;
	box-shadow:0 10px 5px -7px rgba(0,0,0,0.5);
	box-sizing:border-box;
	border:2px solid #003E6A;
	border-radius:3px;
	text-transform:uppercase;
}

.category:hover{
	color:#003E6A;
	background-color:#fff;
}

.categoryOn{
	color:#003E6A;
	background-color:#fff;
	box-shadow:none;
}

.categoryOn:hover{
	color:#003E6A;
	background-color:#fff;
	box-shadow:none;
	
}





.gallery{
	text-align:center;
	margin:20px 0;
	width:100%;
	overflow:hidden;	
	min-height:500px;
}



.imageHolder{
	display:inline-block;
	width:220px;
	height:176px;
	overflow:hidden;
	position:relative;
	box-sizing:border-box;	
}

.imageHolder img {
	display:block;
	width:100%;
	height:100%;
	overflow:hidden;
}

.zoom{
	position:absolute;
	opacity:.5;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background-image:url(../assets/zoom.png);
	background-position:center;
	background-size:20px;
	background-repeat:no-repeat;
	background-color:rgba(0,29,49,0);	
	cursor:pointer;
	transition:all .2s ease-in-out;
}



@media (min-width: 500px) {


.category{
	margin:5px 0;
	display:inline-block;
	padding:0 20px;

}

}


@media (min-width:800px){
	
	
.category{
	margin:5px;
	display:inline-block;
	padding:0 20px;

}

.zoom{
	opacity:0;
}
.imageHolder:hover .zoom{
	background-color:rgba(0,29,49,0.60);	
	opacity:1;
}

}











