.project-process {
    display: flex;
    width: calc(100% + 20px);
    justify-content: space-between;
    text-align: center;
    margin-top: 24px;
	margin-left: -10px;
	position: relative;
}
.project-process:before {
	content: '';
	display: block;
	height: 3px;
	width: 200%;
	position: absolute;
	margin-left: -50%;
	background: #707171;
}
.project-process-item .qodef-e-item-inner {
	margin-top: 50px;
}
.project-process-item .qodef-e-point-holder {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    top: -24px;
    left: calc(50% - 24px);
	background: #3265AC;
	background: linear-gradient(90deg,#52D386 0%, #3265AC 100%);
}
.project-process-item .qodef-e-point {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.project-process-step {
	margin: 0;
	color: #ffffff;
	font-weight: bold;
}
.project-process-item .qodef-e-item-inner {
	padding: 0 10px;
	height: calc(100% - 50px);
}
.project-process-item .qodef-e-content-holder {
	border: 3px solid #52D386;
	border-radius: 20px;
	padding: 20px;
    max-width: 300px;
    margin: auto;
	height: 100%;
}
.project-process-text {
	margin-top: 10px;
}
.project-process-step-icon {
	position: absolute;
	right: -10px;
	top: -19px;
}
.project-process-step-icon svg {
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 1024px) {
	.project-process-item .qodef-e-item-inner {
		padding: 0 5px;
	}
	.project-process-item .qodef-e-content-holder {
		padding: 10px;
	}
}

@media screen and (max-width: 767px) {
	.project-process {
		width: calc(100% + 40px);
	}
	.project-process:before {
		display: none;
	}
	.project-process-container {
		position: relative;
	}
	.project-process-container:before {
		content: '';
		display: block;
		height: 3px;
		width: 200%;
		position: absolute;
		margin-left: -50%;
		top: 24px;
		background: #707171;
	}
	.project-process {
		overflow: auto;
		margin-top: 0;
		padding-top: 24px;
	}
	.project-process-item {
		min-width: calc(100vw - 40px);
	}
	.project-process-item .qodef-e-content-holder {
		max-width: 100%;
	}
}