.sections_wrapper {
	--gap: 24px;
	--columns: 4;
	display: flex;
	flex-wrap: wrap;
	gap:24px;
	padding: 24px 0;
}
.sections_wrapper li {
	width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
.sections_wrapper a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 160px;
	background-size: cover;
	border-radius: 16px;
	padding: 20px;
}
.sections_wrapper a span {
	font-family: Montserrat, sans-serif;
    position: relative;
    z-index: 1;
	font-size: 24px;
	line-height: 36px;
	color: #000000!important;
	text-align: center;
}
.sections_wrapper a:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: #ffffff85;
}