.top_service__item {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0px;
	border-radius: 30px;
    padding: 29px 20px 20px 46px;
	color: #000;
	background: rgb(255, 255, 255);
	display: flex;
	flex-direction: column;
	width: 240px;
	height: 240px;
	justify-content: space-between;
}

.top_service__item:not(:hover) {
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.top_service__item:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #EE3F46;
}


.top_service__link span {
	font-family: TTNorms;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0px;
	display: block;
	text-align: left;
}

.top_service_container {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top_service__img {
	background-repeat: no-repeat;
	text-align: right;
	width: 66px;
    height: 54px;
	margin-bottom: 20px;
	padding-left: 16px;
    padding-top: 9.5px;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='55' viewBox='0 0 60 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 30.2648C60 46.7065 46.5681 54.5 30.0009 54.5C13.4319 54.5 0 46.7065 0 30.2648C0 13.825 13.4319 0.5 30.0009 0.5C46.5681 0.5 60 13.825 60 30.2648Z' fill='%230065B1' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.top_service__img img {
	height: 49px;
}

@media screen and (max-width: 1280px) {
	.top_service__item {
		width: calc(100% / 4 - 15px);
	}
}
@media screen and (max-width: 992px) {
	.top_service__item {
		width: calc(100% / 3 - 15px);
	}
}
@media screen and (max-width: 929px) {
	body .top_service_container {
		    display: flex;
		flex-wrap: nowrap;
		gap: 20px;
		overflow-x: auto;
		margin-bottom: 19px;
		padding-bottom: 20px;
	}
		.top_service__item {
		width: 200px;
	}
}