.clients {
	margin-bottom: 60px;
}

.clients-intro {
	text-align: center;
	margin-bottom: 37px;
}

.clients-column {
	display: grid;
	column-gap: 20px;
	row-gap: 25px;
	grid-template-columns: repeat(1, 1fr);
	margin-bottom: 30px;
}

.clients-town {
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	height: 370px;
	position: relative;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.20);
}

.clients-town img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clients-town picture {
	display: block;
	height: 100%;
}

.clients-info {
	padding: 40px 25px 17px 25px;
	color: var(--color-white);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	background-color: rgba(0,0, 0, 0.7);
}

.clients-info strong {
	display: block;
	font-size: 30px;
	line-height: normal;
	margin-bottom: 7px;
}

.clients-info p:last-of-type {
	margin-bottom: 0;
}

@media screen and (min-width: 480px) {
	.clients-column {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.clients-column {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1025px) {
	.clients {
		margin-bottom: 85px;
	}

	.clients-wrap {
		display: flex;
		flex-wrap: wrap;
	}

	.clients-column {
		flex: 1;
		row-gap: 35px;
		grid-template-columns: repeat(2, 1fr);
	}

	.clients-town {
		width: 31.3%;
		margin-left: 40px;
	}
}

@media screen and (min-width: 1200px) {
	.clients-column {
		grid-template-columns: repeat(3, 1fr);
	}
}
