 
 
/* gallery part */
.curved {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.hover-img{ 
 z-index: 1;
 display: block;
 position: relative;
 overflow: hidden;
}
.hover-img >img{
	-webkit-transition: 4s;
    -moz-transition: 4s;
    -o-transition: 4s;
    -ms-transition: 4s;
    transition: 4s;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
}
.hover-img >img:hover{
	opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);

}

.hover-img:hover .detail{
	display: block;
}
.detail{
	display: none;
	width: 100%;
	height: 80px;
	background-color:rgba(0, 0, 0, 0.65);
	position: absolute;
	bottom: 0px;
	padding: 0px 10px 0px;
}
.s_descrip{
	width: 100%;
	height: 25px;
	overflow: hidden;
    text-overflow: ellipsis;
	color:#eee;
	font-size: 12px;
	white-space: nowrap;
	padding-left:5px;
	padding-right: 5px; 
}
.r_more{
	color:#0eeb13;
	margin-top:-20px;
	padding:0px;
	text-align:center;
}
.r_more:hover{
	text-decoration: underline;
}
.box-icon-normal{
	z-index: 2;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    background: #2196F3;
    color: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
.round{
	-webkit-border-radius: 50%;
    border-radius: 50%;
}
.list-horizontal li{
	float: left;
	list-style-type: none;
	margin: 0px 3px;
}
.list-horizontal li a{
	text-decoration: none;
}
