.sdv2-process__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
}

.sdv2-process-item {
	position: relative;
	flex: 0 1 calc((100% - 110px) / 6);
	text-align: center;
}

.sdv2-process-item__number {
	position: absolute;
	top: -32px;
	left: calc(50% - 54px);
	z-index: 0;
	color: rgba(0, 151, 220, 0.16);
	font-size: 74px;
	font-weight: 700;
	line-height: 1;
}

.sdv2-process-item__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #d8f3ff;
}

.sdv2-process-item__icon img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
}

.sdv2-process-item__icon--custom::before {
	content: "";
	position: absolute;
	inset: 6px;
	z-index: 0;
	border-radius: 50%;
	background: var(--sdv2-blue);
}

.sdv2-process-item__icon img.sdv2-process-item__icon-img--custom {
	position: relative;
	z-index: 1;
	width: 26px;
	height: 26px;
	border-radius: 0;
	object-fit: contain;
}

.sdv2-process-item h3 {
	margin-bottom: 8px;
	color: var(--sdv2-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
}

.sdv2-process-item p {
	margin: 0;
	color: #4f6579;
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 1024px) {
	.sdv2-process-item {
		flex-basis: calc((100% - 44px) / 3);
	}
}

@media (max-width: 767px) {
	.sdv2-process__grid {
		gap: 10px;
	}

	.sdv2-process-item {
		flex-basis: calc((100% - 10px) / 2);
		min-height: 138px;
		padding: 14px 12px 12px;
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 8px 22px rgba(0, 95, 146, 0.08);
		text-align: left;
	}

	.sdv2-process-item__number {
		top: 12px;
		right: 10px;
		left: auto;
		z-index: 1;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: var(--sdv2-blue);
		color: #fff;
		font-size: 12px;
		font-weight: 800;
		line-height: 1;
	}

	.sdv2-process-item__icon {
		display: none;
	}

	.sdv2-process-item__icon--custom::before {
		inset: 3px;
	}

	.sdv2-process-item__icon img {
		width: 22px;
		height: 22px;
	}

	.sdv2-process-item__icon img.sdv2-process-item__icon-img--custom {
		width: 15px;
		height: 15px;
	}

	.sdv2-process-item h3 {
		max-width: calc(100% - 30px);
		margin-bottom: 7px;
		font-size: 12px;
		line-height: 1.3;
	}

	.sdv2-process-item p {
		font-size: 11px;
		line-height: 1.45;
	}
}
