.gallery {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: -15px;
}

.gallery-item {
	width: 25%;
	padding: 15px;
}

.gallery-item a {
	display: block;
	position: relative;
	border-radius: 50px 0 50px 50px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.gallery-item h4 {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 16px;
	background: rgba(18, 18, 18, 0.7);
	backdrop-filter: blur(5px);
	width: 100%;
	margin: 0;
	padding: 10px 50px;
	text-align: center;
	color: #cfcfcf;
}

@media (max-width: 920px) {
	.gallery-item {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.gallery-item {
		width: 100%;
	}
}