/** PROCESS SECTION */
.process-section {
	text-align: center;
	margin: 60px auto;
}

/* Quy Trình Xử Lý */
.steps {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
	margin-top: 40px;
	width: 100%;
	padding: 0 40px;
}
.step {
	max-width: 260px;
}
.step .icon {
	font-size: 40px;
	background: #092c4c;
	color: #fff;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.arrow {
	font-size: 24px;
	color: #555;
}

/* Responsive */
@media (max-width: 600px) {
	.steps {
		flex-wrap: wrap;
		padding: 0 40px;
	}
	.step {
		max-width: 100px;
	}
}
@media (min-width: 601px) and (max-width: 1024px) {
	.steps {
		padding: 0 40px;
	}
	.step {
		max-width: 160px;
	}
}
@media (min-width: 1025px) {
	.step {
		max-width: 180px;
	}
}