/* 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 .slick-arrow {
	border-color: var(--white-color);
}

.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:hover {
	color: inherit;
	text-decoration: none;
}

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

.gallery-item__image-wrapper:before {
	content: '';
	display: block;
	padding-top: calc(240 * 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(19, 26, 34, .6);
}

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

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