.image-links {
	padding: 55px 0 0;
}
.image-links-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2px;
}
.image-links-item {
	position: relative;
	height: 0;
	padding-bottom: 119.45%;
	overflow: hidden;
}
.image-links-item > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: .3s;
}
.image-links-item:hover > img {
	transform: scale(1.1);
}
.image-links-item:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: var(--color-231F20-2);
}
.image-links-caption {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	z-index: 4;
}
.image-links-subtitle {
	color: var(--color-fff);
	font-family: var(--main-ff);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.image-links-title {
	color: var(--color-fff);
	font-family: var(--main-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 44px */
	letter-spacing: 0.4px;
	text-transform: uppercase;
}
@media(min-width: 1100px) {
	.image-links {
		padding: 2.865vw 0 0;
	}
	.image-links-caption {
		bottom: 1.563vw;
		width: calc(100% - 2.083vw);
	}
}
@media(max-width: 990px) {
	.image-links-caption {
		width: calc(100% - 30px);
		bottom: 15px;
	}
	.image-links-title {
		font-size: 18px;
	}
}
@media(max-width: 700px) {
	.image-links-wrapper {
		grid-template-columns: 1fr;
		grid-gap: 1px;
	}
	.image-links-item {
		padding-bottom: 52.78%;
	}
}