.method-item {
	display: flex;
	align-items: center;
	padding: 24px 0 24px 32px;
	background: #fff;
	border-radius: 24px;
	gap: 33px;
	margin-bottom: 16px;
}
.method-image {
	min-width: 90px;
	border-radius: 100%;
	overflow: hidden;
	position: relative;
}
.method-image::before {
	content: '';
	background: #D0E2E5;
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	mix-blend-mode: color;
	opacity: 1;
	transition: 0.4s ease;
}
.method-item:hover .method-image::before {
	opacity: 0;
}
.method-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.method-title .title {
	transition: 0.4s ease;
	color: var(--color_text);
}
.method-item:hover .title {
	color: var(--color3);
}
.method-item .side-shape {
	position: absolute;
	background: var(--bg_body);
	height: 116px;
	width: 38px;
	border-radius: 20px 0 0 20px;
}
.side-shape::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	height: 40px;
	width: 40px;
	border-bottom-left-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 0;
	transform: rotate(-90deg);
}
.side-shape::after {
	content: "";
	position: absolute;
	bottom: -40px;
	left: 0;
	height: 40px;
	width: 40px;
	border-bottom-right-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 1;
	transform: rotate(-90deg);
}
.method-item:hover .button {
	background: var(--color3);
	border-color: var(--color3);
}
.method-item .desc p {
	font-size: 14px;
	line-height: 32px;
	color: var(--color_text);
}
.method-title .button {
	padding: 5px 10px;
}
@media screen and (max-width: 576px) {
	.method-item .desc {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
}