/* 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;
}

@media (min-width: 1439.98px) {
	.gallery .slick-prev {
		left: -56px;
	}

	.gallery .slick-next {
		right: -56px;
	}
}

.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: var(--accent-color);
	text-decoration: none;
}

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

.gallery-item__image-wrapper:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.gallery-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: #000;
}

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

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

.gallery-item__image:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -30px;
	width: 60px;
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' rx='10' fill='%2353D48D'/%3E%3Cpath d='m26.514 21.514 8.732 8.732-8.241 8.24' stroke='%23fff' stroke-width='1.027' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.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 */