.process-list {
	margin: 60px auto 60px auto;
	width: 65%;
	position: relative;
}
.process-list::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	left: 77px;
	top: -30px;
	border: 9px solid #2e407d;
}
.process-list::after {
	content: '';
	position: absolute;
	left: 88px;
	top: 0;
	z-index: 5;
	height: 100%;
	width: 2px;
	background-color: #2e407d;
}
.process-list-item {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 60px;
	cursor: default;
}
.process-list-item:first-child {
	padding-top: 30px;
}
.process-list-item:last-child {
	margin-bottom: 0;
}
.process-list-item::before {
	content: attr(data-title);
	position: absolute;
	right: calc(100% + 5px);
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	background-color: #76488d;
	font-size: 13px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
	padding: 8px 15px;
	color: #fff;
	border-radius: 1px;
	opacity: 0;
	transition: opacity ease .6s;
	pointer-events: none;
}
.process-list-item:first-child::before {
	margin-top: 15px;
}
.process-list-item:hover::before {
	opacity: 1;
}
.process-list-image {
	position: relative;
	width: 120px;
	padding-left: 15px;
	padding-right: 15px;
	flex-shrink: 0;
}
.process-list-image img {
	width: 100%;
	position: relative;
	vertical-align: bottom;
	z-index: 10;
}
/*
.process-list-item:first-child .process-list-image::before {
	height: 500px;
}
*/
.process-list-image::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 20px;
	height: 6px;
	background-color: #fff;
	transform: translateX(-50%) translateY(100%);
	z-index: 6;
}
/*
.process-list-item:last-child .process-list-image::after {
	height: 500px;
}
*/
.process-list-image::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 20px;
	height: 6px;
	background-color: #fff;
	transform: translateX(-50%) translateY(-100%);
	z-index: 6;
}
.process-list-content {
	padding-left: 15px;
	padding-right: 15px;
}
.process-list-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1000px) {
	.process-list {
		width: auto;
		padding-right: 0;
		margin-left: -60px;
	}
	.process-list-item {
		margin-bottom: 80px;
	}
	.process-list-item::before {
		opacity: 1;
		top: -26px;
		z-index: 20;
		left: 135px;
		display: block;
		right: auto;
		background-color: #888;
	}
}

