/****************************/
/******** factotyfx style ********/
/****************************/
.fx_concept {
	width: 100%;
	padding: 100px 50px 250px 50px;
	position: relative;
	background: url(../../img/fx_process_bg.jpg)no-repeat center center;
	background-size: cover;
	color: #fff;
}
.fx_concept:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
}
.process_tit {
	position: relative;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 50px;
	z-index: 20;
}
.process_wrap {
	display: flex;
	width: 100%;
	margin: 0 auto;
}
.process_item {
	width: 200px;
	height: 200px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 150px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    border: 1px dashed #fff;
    text-align: center;
    z-index: 10;
    background: rgba(0,0,0,0.3);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.process_item:after {
	content: '\e5c8';
	font-family: 'Material Icons';
	display: inline-block;
	font-size: 3rem;
	position: absolute;
	top: 50%;
	right: -50px;
	transform: translateY(-50%);
	color: rgba(255,255,255,1);
}
.process_item:last-child:after {
	content: '';
	display: none;
}
.process_item img {
	width: 25%;
	margin-bottom: 15px;
}
.flow_wrap {
	width: 100%;
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.flow_item {
	flex: 1;
	padding: 50px 0;
	font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
}
.flow_item:after {
	content: '\e940';
	font-family: 'xeicon';
	display: inline-block;
	font-size: 3rem;
	position: absolute;
	top: 50%;
	right: -50px;
	transform: translateY(-50%);
	color: rgba(255,255,255,.5);
	text-shadow: 3px 2px 10px rgba(0,0,0,0.3);
}