/* Gallery */
.gallery-section {

}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(-.5 * var(--gutter-x));
	margin-right: calc(-.5 * var(--gutter-x));
	margin-top: calc(-1 * var(--gutter-y));
}

.gallery.slick-initialized {
  display: block;
  margin: 0;
}

.gallery .slick-list {
  margin-left: calc(-.5 * var(--gutter-x));
  margin-right: calc(-.5 * var(--gutter-x));
}

.gallery .slick-list .gallery__item {
	margin-top: 0;
}

.gallery__item {
	flex: 0 0 auto;
	width: 25%;
	padding-left: calc(.5 * var(--gutter-x));
	padding-right: calc(.5 * var(--gutter-x));
	margin-top: var(--gutter-y);
}

@media (max-width: 991.98px) {
	.gallery__item {
		width: 33.33%;
	}
}

@media (max-width: 767.98px) {
	.gallery__item {
		width: 50%;
	}
}

@media (max-width: 575.98px) {
	.gallery__item {
		width: 100%;
	}
}
/* ! Gallery */

/* Gallery Item */
.gallery-item {
	display: block;
	color: inherit;
	text-decoration: none;
	position: relative;
}

.gallery-item__image-wrapper {
	position: relative;
}

.gallery-item__image-wrapper:before {
	content: '';
	display: block;
	padding-top: calc(260 * 100% / 305);
}

.gallery-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.gallery-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-item__image:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .75);
}

.gallery-item__image:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -30px;
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, .27);
	background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m1.465 15.632 7.284-7.047a.81.81 0 0 0 0-1.174L1.469.368a.879.879 0 0 0-1.214 0 .81.81 0 0 0 0 1.174l6.673 6.456-6.677 6.46a.813.813 0 0 0 0 1.174.879.879 0 0 0 1.214 0Z'/%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 9px 16px;
}

.gallery-item__image:before,
.gallery-item__image:after {
	opacity: 0;
	visibility: hidden;
	transition: 0.35s ease-in-out;
}

.gallery-item:hover .gallery-item__image:before,
.gallery-item:hover .gallery-item__image:after {
	opacity: 1;
	visibility: visible;
}
/* ! Gallery Item */