

/* gallery css  */




.gallery .gallery-item{
	width:100%;
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom:25px;
	border-radius:10px;
}
.gallery .s-height{
	height:250px;
}
.gallery .m-height{
	height:320px;
}
.gallery .l-height{
	height:370px;
}
.gallery img , .gallery video{
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
	border-radius:10px;
}
.gallery .gallery-item::after{
	content:'View';
	position: absolute;
	width:100%;
	height:0%;
	background:#e4d088;
	left:50%;
	top:50%;
	align-items: center;
	justify-content: center;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition:all 0.3s ease-in-out;
	overflow: hidden;
	color:black;
	opacity: 0.3;
}
.gallery .gallery-item:hover::after{
	height:100%;
}