/*
//======================================================================
// SINGLE CONTENT
//======================================================================
*/

.gradient-bg {
	/* 	background: rgb(237,91,70);
	background: linear-gradient(59deg, rgba(237,91,70,1) 0%, rgba(248,206,210,1) 100%); */
	background: rgb(252,231,234);
	background: linear-gradient(59deg, rgba(252,231,234,1) 0%, rgba(239,211,220,1) 100%);
	height: calc(100vh - 300px);
	margin-top: -90px;
	width: 100%;
	display: grid;
	align-items: center;
	justify-content: center;
	position: relative;
}

.gradient-bg .main-bg {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, 0);
	max-width: 1270px;
	width: 100%;
	height: 100%;
}

.gradient-bg .container-1100 {
	position: relative;
	z-index: 1;
}

.gradient-bg .service-content {
	text-align: center;
}

.gradient-bg .service-content h1 {
	font-size: var(--font70);
	color: var(--red);
	margin: 0 0 30px;
}

.gradient-bg .service-content .the-content {
	color: var(--black2);
	line-height: 26px;
}

/*
//======================================================================
// SINGLE CONTENT - END
//======================================================================
*/

/*
//======================================================================
// WORKING PROCESS
//======================================================================
*/

.working-process {
	padding: 88px 0 113px;
}

.working-process h2.title {
	font-size: var(--font70);
	margin: 0 0 100px;
	text-align: center;
}

.working-process ul li .block-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.working-process ul li .block-inner > * {
	flex-basis: 50%;
	width: 100%;
}

.working-process ul li:nth-child(odd) .content-wrapper {
	margin-left: 30px;
}

.working-process ul li:nth-child(even) .block-inner {
	flex-direction: row-reverse;
}

.working-process ul li:nth-child(even) .content-wrapper {
	margin-right: 30px;
}

.working-process ul li .content-wrapper h3 {
	font-size: var(--font36);
	font-weight: var(--bold);
	color: var(--red);
	margin: 15px 0 20px;
}

.working-process ul li .content-wrapper .content {
	font-size: var(--font18);
	color: var(--gray);
	line-height: 26px;
}

.working-process ul li .image-wrapper {
	box-shadow: 0px 7px 20px #00000029;
}

.working-process ul li .image-wrapper .image {
	height: 331px;
}

/* Dividing Lines */
.working-process ul li .green-lines {
	margin: 33px auto;
	max-width: 555px;
	width: 100%;
}

.working-process ul li:last-child .green-lines {
	display: none;
}

.working-process ul li .green-lines > * {
	display: block;
}

.working-process ul li .green-lines .top,
.working-process ul li .green-lines .bottom {
	width: 1px;
	height: 98px;
}

.working-process ul li .green-lines .top {
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(32,167,214,1) 50%);
}

.working-process ul li .green-lines .middle {
	width: 100%;
	height: 1px;
	background: rgb(25,232,143);
	background: linear-gradient(90deg, rgba(25,232,143,1) 0%, rgba(32,167,214,1) 100%);
}

.working-process ul li .green-lines .bottom {
	margin-right: auto;
	background: rgb(32,167,214);
	background: linear-gradient(0deg, rgba(32,167,214,0) 0%, rgba(30,238,143,1) 50%);
}

.working-process ul li:nth-child(even) .green-lines .top {
	margin-right: auto;
}

.working-process ul li:nth-child(even) .green-lines .middle {
	background: linear-gradient(270deg, rgba(25,232,143,1) 0%, rgba(32,167,214,1) 100%);
}

.working-process ul li:nth-child(even) .green-lines .bottom {
	margin-right: 0;
}

/* Dividing Lines - End */

/*
//======================================================================
// WORKING PROCESS - END
//======================================================================
*/

@media (max-width: 767px) {

	.gradient-bg {
		height: auto;
		padding-bottom: 30px;
	}

	.gradient-bg .container-1100 {
		margin-top: 100px;
	}

	.working-process h2.title {
		margin-bottom: 50px;
	}

	.working-process ul li .block-inner {
		flex-direction: column;
	}

	.working-process ul li:nth-child(even) .block-inner {
		flex-direction: column-reverse;
	}

	.working-process ul li:nth-child(odd) .content-wrapper {
		margin: 0 0 30px;
	}

	.working-process ul li:nth-child(even) .content-wrapper {
		margin: 30px 0 0;
	}

	.working-process ul li .content-wrapper img {
		margin: auto;
	}

	.working-process ul li .content-wrapper h3 {
		text-align: center;
	}

	.working-process ul li .green-lines {
		max-width: 277px;
	}

	.working-process ul li .green-lines .top,
	.working-process ul li .green-lines .bottom {
		height: 70px;
	}

}