@charset "UTF-8";
/* CSS Document */
.img_home{
	text-align:center;
}
.img_home img{
	width:85%;
}
.boxhome{
	margin:5px;
	overflow:hidden;
}
.boxphoto{
	overflow:hidden;
	position:relative;
}
.boxphoto img{
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
	border: 1px solid #665549;
}
.boxhome:hover img{
	-webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}
.boxcontent{
	position: absolute;
	font-family: 'WalkwayBoldRegular';
	font-size:0.9em;
	margin-top:15%;
	color:#fff;
	width:90%;
	margin-left:5%;
	z-index:3;
	background:rgba(0,0,0,0.60);
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
	text-transform:uppercase;
}
.boxcontent a{
	color:#fff;
	text-decoration:none;
}
.saturation{
	position: absolute;
	width:100%;
	height:100%;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   	filter: alpha(opacity=0);
   	opacity: 0;
	z-index:2;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
.boxhome:hover .boxcontent{
	font-size:1.2em;
	margin-top:15%;
	background:rgba(0,0,0,0.90);
}
.boxhome:hover .saturation{
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}


@media only screen and (max-width: 769px) {

.boxcontent{
	font-size:1.2em;
}
.boxhome:hover .boxcontent{
	font-size:1.5em;
}
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.boxcontent{
	font-size:1.2em;
}
.boxhome:hover .boxcontent{
	font-size:1.3em;
}

}