.eptw-process-timeline {
	--eptw-columns: 6;
	--eptw-gap: 24px;
	--eptw-row-gap: 48px;
	--eptw-marker-size: 38px;
	--eptw-marker-offset: 58px;
	box-sizing: border-box;
	position: relative;
	display: grid;
	grid-template-columns: repeat(var(--eptw-columns), minmax(0, 1fr));
	column-gap: var(--eptw-gap);
	row-gap: var(--eptw-row-gap);
	width: 100%;
	padding: 38px 28px 28px;
	border: 2px dashed #b9d6ff;
	border-radius: 80px;
	background: #fff;
}

.eptw-process-timeline *,
.eptw-process-timeline *::before,
.eptw-process-timeline *::after {
	box-sizing: border-box;
}

.eptw-process-timeline__step {
	position: relative;
	min-width: 0;
	text-align: center;
}

.eptw-process-timeline__marker {
	--eptw-marker-start: #2f8cff;
	--eptw-marker-end: #7467ff;
	position: absolute;
	top: calc(-1 * var(--eptw-marker-offset));
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--eptw-marker-size);
	height: var(--eptw-marker-size);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--eptw-marker-start), var(--eptw-marker-end));
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transform: translateX(-50%);
}

.eptw-process-timeline__title {
	margin: 0 0 8px;
	color: #245de8;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.eptw-process-timeline__description {
	margin: 0;
	color: #202433;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.eptw-process-timeline__icon {
	display: none;
}

.eptw-layout-cards {
	--eptw-columns: 5;
	--eptw-gap: 52px;
	--eptw-row-gap: 32px;
	--eptw-hover-duration: 250ms;
	align-items: stretch;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.eptw-layout-cards .eptw-process-timeline__step {
	min-height: 210px;
	padding: 24px 22px;
	border: 2px solid #e8edf8;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(28, 73, 150, 0.04);
	text-align: center;
	transition: transform var(--eptw-hover-duration) ease, border-color var(--eptw-hover-duration) ease, background-color var(--eptw-hover-duration) ease, box-shadow var(--eptw-hover-duration) ease;
	will-change: transform;
}

.eptw-layout-cards .eptw-process-timeline__step:hover {
	border-color: #8aaeff;
	box-shadow: 0 18px 44px rgba(31, 99, 243, 0.14);
}

.eptw-layout-cards .eptw-process-timeline__step:not(:last-child)::after {
	content: "\2192";
	position: absolute;
	top: 50%;
	right: calc((var(--eptw-gap) * -0.5) - 10px);
	z-index: 3;
	color: #1f63f3;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	transform: translate(50%, -50%);
}

.eptw-layout-cards .eptw-process-timeline__marker {
	top: 16px;
	left: 16px;
	width: 38px;
	height: 38px;
	background: #edf4ff;
	box-shadow: none;
	color: #1f63f3;
	font-size: 18px;
	font-weight: 800;
	transform: none;
	transition: color var(--eptw-hover-duration) ease, background-color var(--eptw-hover-duration) ease;
}

.eptw-layout-cards .eptw-process-timeline__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	margin: -6px auto 20px;
	border-radius: 999px;
	background: #edf4ff;
	color: #1f63f3;
	transition: color var(--eptw-hover-duration) ease, background-color var(--eptw-hover-duration) ease, transform var(--eptw-hover-duration) ease;
}

.eptw-layout-cards .eptw-process-timeline__step:hover .eptw-process-timeline__marker,
.eptw-layout-cards .eptw-process-timeline__step:hover .eptw-process-timeline__icon {
	background: #1f63f3;
	color: #fff;
}

.eptw-layout-cards .eptw-process-timeline__step:hover .eptw-process-timeline__icon {
	transform: scale(1.06);
}

.eptw-layout-cards .eptw-process-timeline__icon i {
	font-size: 34px;
	line-height: 1;
}

.eptw-layout-cards .eptw-process-timeline__icon svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.eptw-layout-cards .eptw-process-timeline__title {
	margin-bottom: 12px;
	color: #151a28;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	transition: color var(--eptw-hover-duration) ease;
}

.eptw-layout-cards .eptw-process-timeline__description {
	color: #5f6680;
	font-size: 15px;
	line-height: 1.65;
	transition: color var(--eptw-hover-duration) ease;
}

@media (max-width: 767px) {
	.eptw-process-timeline {
		--eptw-columns: 1;
		--eptw-row-gap: 52px;
		padding-top: 48px;
		border-radius: 32px;
	}

	.eptw-layout-cards {
		--eptw-columns: 1;
		--eptw-row-gap: 28px;
		padding-top: 0;
		border-radius: 0;
	}

	.eptw-layout-cards .eptw-process-timeline__step:not(:last-child)::after {
		content: "\2193";
		top: auto;
		right: 50%;
		bottom: -30px;
		transform: translateX(50%);
	}
}
