/* Gallery Section */
.gallery-section {
	padding: 50px 0;
	--gap: 30px;
}
.gallery-section .gallery {
	flex-wrap: wrap;
	gap: var(--gap);
}
.gallery-section .image-col {
	flex: 1 1 calc(33.33% - 20px);
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.gallery-section .image-col .image {
	box-shadow: 2px 2px 4px 0 #1e1e1e;
	transition: transform ease 0.3s;
}
.gallery-section .image-col .image img {
	width: 100%;
	object-fit: cover;
}
.gallery-section .image-col .image:last-child {
	margin-bottom: 0;
	flex: 1 1 auto;
}
.gallery-section .image-col .image:last-child img {
	height: 100%;
}
.gallery-section .image-col .image:hover {
	transform: translateY(-7px);
}
@media screen and (max-width: 767px) {
	.gallery-section .image-col {
		flex-basis: 100%;
	}
}
