 
/*-----------------------------------------------------------------------------------*/
/*	Section Gallery
/*-----------------------------------------------------------------------------------*/
#gallery {padding-top:0;}
#gallery .gallery_img {
	overflow:hidden;
	position:relative;
	float:right;
	display:block;
	width:25%;
	/*background-color:#2d3134;*/
	width:214px;
    height:300px;
    margin:15px;
}
#gallery .gallery_img img {
	opacity:0.9;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
    width:100%;
  
}
#gallery .gallery_img:hover img {
	opacity:0.3;
	transform:scale(1.2) rotate(5deg);
	-webkit-transform:scale(1.2) rotate(5deg);
}
#gallery .gallery_descr {
	position:absolute;
	z-index:2;
	right:31px;
	top:47px;
	left:31px;
	bottom:22px;
	text-transform:uppercase;
	text-align:left;
	color:#fff;
	opacity:1;
}
#gallery .gallery_descr p {
	position:absolute;
	top:0;
	left:0;
	right:0;
	line-height:24px;
	font-size:23px;
}
#gallery .gallery_descr p:before {
	content:'';
	position:absolute;
	right:0;
	left:0;
	bottom:-40px;
	height:4px;
	opacity:0;
	background-color:#fff;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
#gallery .gallery_img:hover .gallery_descr p:before {
	bottom:-18px;
	opacity:1;
}
#gallery .gallery_descr span {
	position:absolute;
	bottom:-22px;
	left:0;
	line-height:20px;
	font-size:14px;
	opacity:0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
#gallery .gallery_img:hover .gallery_descr span {
	bottom:0;
	opacity:1;
}
 
 




























