/*.gallery*/
.gallery{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-color: transparent;
	padding: 50px 0;
}
.gallery .gallery-filter{
	padding: 0 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.gallery .gallery-filter .filter-item{
	color: #000;
	font-size: 18px;
	text-transform: uppercase;
	display: inline-block;
	margin:0 10px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	line-height: 1.2;
	transition: all 0.3s ease;
}
.gallery .gallery-filter .filter-item.active{
	color: #ff9800;
	border-color : #ff9800;
}
.gallery .gallery-items{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gallery .gallery-item{
	width: auto;
	padding: 15px;
	text-align: center;
	font-size: 16px;
	transition: all linear .3s;
}
.gallery .gallery-item:hover span{

	border-bottom-right-radius: 0px;
}
.gallery .gallery-item-inner{	
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;		
	background-color: var(--swiper-theme-background-color);
}
.gallery .gallery-item-inner img{
	height: 200px;
	margin: auto;
	position: relative;
	float: left;
}
.gallery .gallery-item span{
	position: relative;
	float: left;
	text-align: center;
	width: 100%;
	font-size: 1rem;
	font-family: 'Exo',sans-serif;
	font-weight: 400;
	padding: 15px 5px 60px 5px;
	background-color: var(--swiper-theme-background-color);
	color:var(--swiper-theme-color);
	border-bottom-right-radius: 100%;

	transition: all linear .2s;
}
.gallery .gallery-item.show{
	animation: fadeIn 1.5s ease;
}


@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.gallery .gallery-item.hide{
	animation: fadeOut 1.5s ease;
	display: none;
}

@keyframes fadeOut{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

/*responsive*/
@media(max-width: 991px){
	.gallery .gallery-item{
		width: 50%;
	}
}
@media(max-width: 767px){
    .gallery .gallery-item{
		width: 100%;
	}	
	.gallery .gallery-filter .filter-item{
		margin-bottom: 10px;
	}
}