.module-pro-image.effect-glow .image-pro-wrap::before{
	position:absolute;
	top:50%;
	left:50%;
	z-index:2;
	display:block;
	content:'';
	width:0;
	height:0;
	background:rgba(255,255,255,.2);
	border-radius:100%;
	transform:translate(-50%,-50%);
	opacity:0
}
.module-pro-image.effect-glow .image-pro-wrap:hover::before{
	animation:image-pro-glow .75s
}
@keyframes image-pro-glow{
	0%{
            opacity:1
	}
	40%{
            opacity:1
	}
	100%{
            width:200%;
            height:200%;
            opacity:0
	}
}
