.main-section-list__items {
	/*gap: 50px;*/
	/**/
	justify-content: space-between;
}

.main-section-list__item {
	text-align: center;
}

.main-section-list__item-round {
	width: 170px;
	height: 170px;
	border: 2px solid var(--color-link);
	border-radius: 100%;
	overflow: hidden;
}

.main-section-list__item:hover .main-section-list__item-round {
	border-color: var(--color-link-hover);
	animation: fx-item-round 0.5s ease;
	animation-fill-mode: forwards;
}

.main-section-list__item:hover .main-section-list__item-title {
	/*text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);*/
}

.main-section-list__item:hover .main-section-list__item-image {
	animation: fx-item-image 0.3s ease;
	animation-fill-mode: forwards;
}

.main-section-list__item-image {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.main-section-list__item-title {
	text-align: center;
	max-width: 170px;
}

@keyframes fx-item-round {
	from {
		/*height: 100%;*/
		/* Начальная прозрачность */
	}

	to {
		/*height: 105%;*/
		-webkit-box-shadow: 2px 2px 8px 3px rgba(115, 160, 99, 0.2);
		-moz-box-shadow: 2px 2px 8px 3px rgba(115, 160, 99, 0.2);
		box-shadow: 2px 2px 8px 3px rgba(115, 160, 99, 0.2);
	}
}

@keyframes fx-item-image {
	from {
		height: 100%;
		/* Начальная прозрачность */
	}

	to {
		height: 105%;
	}
}




@media (max-width: 820px) {}

@media (max-width: 440px) {
	.main-section-list__items {
		gap: 30px 20px;
	}

	.main-section-list__items a {
		width: calc((100% - 20px) / 2);
	}

	.main-section-list__item-round {
		width: 150px;
		height: 150px;
		margin: 0 auto;

	}

	.main-section-list__item-title {
		text-align: center;
		max-width: 150px;
		margin: 0 auto;
	}
}