.hiw-how-it-works {
	width: 100%;
}

.hiw-heading {
	margin: 0 0 48px;
}

.hiw-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.hiw-steps::before {
	content: "";
	position: absolute;
	top: 34px;
	left: calc(16.66% + 10px);
	right: calc(16.66% + 10px);
	height: var(--hiw-line-thickness, 2px);
	background: #d7e6ec;
	z-index: 0;
}

.hiw-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hiw-step-icon {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #3fa9d1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.hiw-step-icon i,
.hiw-step-icon svg {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: #ffffff;
	fill: #ffffff;
}

.hiw-step-number {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1f7a9e;
	background: #eaf6fb;
	padding: 3px 12px;
	border-radius: 100px;
	margin-bottom: 14px;
	display: inline-block;
}

.hiw-step-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
	color: #2b2b2b;
}

.hiw-step-description {
	font-size: 15px;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 280px;
	color: #6b7280;
}

@media (max-width: 800px) {
	.hiw-steps {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hiw-steps::before {
		top: 34px;
		bottom: 34px;
		left: 34px;
		right: auto;
		width: var(--hiw-line-thickness, 2px);
		height: auto;
	}

	.hiw-step {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 20px;
	}

	.hiw-step-icon {
		margin-bottom: 0;
	}

	.hiw-step-description {
		max-width: none;
	}
}
