/* ALCOP Gallery Page */
.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.gallery-filter {
	border: 1px solid #dfe3e8;
	background: #fff;
	color: #333;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .2px;
	cursor: pointer;
	transition: all .25s ease;
}
.gallery-filter:hover,
.gallery-filter.active {
	background: #0082d6;
	border-color: #0082d6;
	color: #fff;
}
.gallery-category {
	margin-bottom: 65px;
}
.gallery-category:last-child { margin-bottom: 0; }
.gallery-card {
	display: block;
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 4 / 3;
}
.gallery-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .38);
	color: #fff;
	opacity: 0;
	transition: opacity .3s ease;
	font-size: 28px;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-category .heading-border { margin-top: 12px; }
@media (max-width: 767px) {
	.gallery-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
	.gallery-filter { flex: 0 0 auto; padding: 8px 13px; font-size: 11px; }
	.gallery-category { margin-bottom: 45px; }
	.gallery-category h2 { font-size: 25px !important; }
}

/* Projects In Progress subcategories */
.gallery-subcategory {
	padding-top: 5px;
}

.gallery-subcategory h3 {
	position: relative;
	padding-left: 15px;
	border-left: 4px solid #0082d6;
}
