.elementor-widget-epmca-steps .step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 80px;
	row-gap: 40px;
}

.elementor-widget-epmca-steps .step-content {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	position: relative;
	padding: 20px;
	border-radius: 14px;
	padding-left: 30px;
	box-shadow: 0px 0px 5px 0px #0000001a;
	background: #fff;
}

.elementor-widget-epmca-steps .step-col:not(:first-child) .step-content::after {
	content: "→";
	position: absolute;
	left: -50px;
	top: 50%;
	transform: translateY(-50%);
	color: #34aae6;
	font-size: 24px;
	z-index: 999;
}

.elementor-widget-epmca-steps .step-col:nth-child(3n + 1) .step-content::after {
	display: none;
}

.elementor-widget-epmca-steps .step-num {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 10px;
	position: absolute;
	top: 0px;
	left: 30px;
	transform: translateY(-50%);
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: #34aae6;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.elementor-widget-epmca-steps .step-content h3 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight:600;
}
.elementor-widget-epmca-steps .step-content p {
	font-size: 14px;
}


@media (max-width: 768px) {
	.elementor-widget-epmca-steps .step-grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 60px;
		row-gap: 80px;
	}

	.elementor-widget-epmca-steps .step-col:nth-child(3n + 1) .step-content::after {
		display: unset;
	}

	.elementor-widget-epmca-steps .step-col:nth-child(2n + 1) .step-content::after {
		display: none;
	}
	
.elementor-widget-epmca-steps .step-content h3 {
	margin-bottom: 8px;
	font-size: 18px;
}
}

@media screen and (max-width: 600px) {
	.elementor-widget-epmca-steps .step-grid {
		grid-template-columns: 1fr;
	}

	.elementor-widget-epmca-steps .step-col:not(:first-child) .step-content::after {
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
		top: -50px;
	}
	
.elementor-widget-epmca-steps .step-content h3 {
	margin-bottom: 8px;
	font-size: 18px;
}
}