.sections-main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.sections-main__item {
	display: flex;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px;
	background: #F8F8F8;
	transition: background-color .3s ease-in-out;
	cursor: pointer;
}

.sections-main__item:hover {
	background: #ECEEF4;
}

.sections-main__name {
	color: #333;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	transition: color .3s ease-in-out;
}

.sections-main__item:hover .sections-main__name {
	color: #0C54A0;
}

.sections-main__count {
	position: absolute;
	color: var(--Text-Text-3, #9299A5);
	text-align: center;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

.sections-main__title {
	margin: 0 0 40px;
	color: #333;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
}

.sections-main__container.maxwidth-theme.additional-margin {
	margin: 87px auto 120px;
}

.sections-main__img {
	width: 100%;
	height: 100%;
	max-height: 316px;
	object-fit: contain;
}

@media (max-width: 992px) {
	.sections-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.sections-main__item {
		padding: 12px;
	}

	.sections-main__name {
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	.sections-main__count {
		font-size: 10px;
		line-height: 16px;
	}

	.sections-main__title {
		margin: 0 0 24px;
		font-size: 20px;
		line-height: 120%;
	}

	.sections-main__container.maxwidth-theme.additional-margin {
		margin: 73px auto 80px;
	}

	.sections-main__item {
		padding: 0;
	}

	.sections-main__count {
		top: 12px;
		left: 12px;
	}

	.sections-main__name {
		padding: 0 12px 12px;
	}

	.sections-main__img {
		max-height: 165px;
	}
}