.galleryContainer h1{
	font-size: 1.8em;
	margin-bottom: 30px;
}
.galleryContainer hr{
	border: dashed 1px #e3e3e3;
}
.galleryContainer{
	
	
     width:100%;
     height:auto;
}
.galleryContainer .imageContainer{
	position: relative;
	overflow: hidden;
	padding: 1px;
   float:left;
  padding-right:15px;
  border:2px solid#414769
}
.galleryContainer .colContainer{
	padding: 0px;

}
.galleryContainer .imageContainer .caption{
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	text-align: center;
	position: absolute;
	top:0;
	right:0;
	bottom: 0;
	left: 0;
	background-color: #1C3349;
	opacity: 0;
	color: #fff;
}
.galleryContainer .imageContainer:hover .caption{
	opacity: .8;
}
.galleryContainer .imageContainer .caption .eyeContainer{
	cursor: pointer;
	transition:all .4s ease-out;
	-webkit-transition:all .4s ease-out;
	-moz-transition:all .4s ease-out;
	position: relative;
	top: -100px;
	display: inline-block;
	padding-top: 12px;
	text-align: center;
	width:50px;
	height:50px;
	background-color: #fff;
	border-radius: 50%;
	color: #1C3349;
}
.galleryContainer .imageContainer:hover .caption .eyeContainer{
	top:50px;
}
.galleryContainer .imageContainer:hover img{
	transform:scale(1.15,1.15);
	-webkit-transform:scale(1.15,1.15);
}
.galleryContainer .galleryImage{
	border: 0px solid #fff;
	display: block;
}
.galleryImage img{
	transition: all .2s ;
	float:left;
	max-width: 260px;
	height: 200px;
}
.galleryImage img:hover{

}