#gallery-list{
	position: fixed;
	top: 0;
	left: 0;
  right: 0;
	width: 100%;
	height: 100%;
  z-index: 100;
  
}
#fade-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99;
}
.gallery-popup-container{
  width: 90%;
  height: auto; 
  margin: 100px auto 0;  
}
#gallery-list-video{
  position: fixed;
	top: 0;
	left: 0;
  right: 0;
	width: 100%;
	height: 100%;
  z-index: 100;  
}
.gallery-container-main{
	margin: 0 -15px;
}
.gallery-container-main .gallery-item-container{
	flex: 0 0 50%;
	padding: 0 15px;
	margin-bottom: 30px;
}
.gallery-item-image, .gallery-item-video{
	height: 150px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}
.gallery-item-image img, .gallery-item-video img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}
.gallery-thumb-container{
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.gallery-subtitle-text{
	font-size: 12px;
	color: #545454;
	margin-bottom: 4px;
}
.gallery-item-container .gallery-title{
	font-size: 16px;
	color: #000;
	font-weight: 500;
	margin-bottom: 0px;
} 
.gallery-item-video::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 51px;
	height: 35px;
	background:url(../img/button-video.svg) no-repeat center center;
	z-index: 1;
}
.gallery-item-container:hover .gallery-thumb-container{
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
	transition: all 0.3s ease;
}
.gallery-item-container:hover .gallery-item-image img, .gallery-item-container:hover .gallery-item-video img{
	opacity: 0.8;
	transition: all 0.3s ease;
}
.gallery-content .slick-arrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
.gallery-content .slick-arrow.slick-prev{
	left: 0;
}
.gallery-content .slick-arrow.slick-next{
	right: 0;
}
.gallery-content .slick-arrow:before{
	content: '';
	height: 40px;
	width: 40px; 
	border-top: 8px solid rgba(225, 225, 225, 0.5);
	border-left: 8px solid rgba(225, 225, 225, 0.5);
	transform: rotate(-45deg);
	display: block;
}
.gallery-content .slick-arrow:hover:before{
	border-color: #fff;
}
 
.gallery-content .slick-arrow.slick-next:before{
	transform: rotate(135deg);
}
.gallery-content .slick-arrow.slick-prev:before{
	transform: rotate(-45deg);
}
img.slick-slide {
	max-height: 500px;
	width: 100%;
	object-fit: cover;
}
.gallery-content2 iframe{
	width: 100%;
	height: 500px;
}
.slick-initialized .slick-slide.gallery-item-image-container{
	display:flex;
	align-items:center;
	justify-content:center;
}
@media (min-width:992px){
	.gallery-item-image, .gallery-item-video{
		height: 200px;
	}
	.gallery-popup-container{
		width: 800px;
	}
	.gallery-container-main{
		margin: 0 -20px;
	}
	.gallery-container-main .gallery-item-container{
		flex: 0 0 33.333333%;
		padding: 0 20px;
		margin-bottom: 40px;
	}
}