/*
 * gallery
 */
.ig-item {
    display: inline-block;
    padding: 10px;
	box-sizing: border-box;
	text-align: center;
}
.ig-item a{
	display: inline-block;
	position: relative;
	text-align: center;
}
.ig-item a:after {
    content: "";
    left: 50%;
    top: 50%;
	width: 0px;
	height: 0px;
    position: absolute;
    z-index: 8;
	transition: all .3s ease;
	opacity: 0;	
}
.ig-item a:hover:after {
    background: #007aff;
    width: 90%;
    height: 90%;
	opacity: 0.5;
	left: 0px;
    top: 0px;	
	margin:5%;
}
.ig-item a img{
	margin: auto;
}
/*
 * slider
 */

.swiper-slide img {
    margin: auto;
    float: none;
    display: block;
}