/*=============================
	Work Process
===============================*/
.work-process {
	background-color: #F6F8F5;
	padding: 106px 0 90px;
	counter-reset: count;
	z-index: 1;
}

.work-process__title-box {
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 59px;
}

.work-process__title-box>h3 {
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
	margin-bottom: 20px;
}

.work-process__title-box>p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #1F2034;
}

.work-process__single {
	position: relative;
	display: block;
	border-radius: 20px;
	border: 1px solid rgba(var(--thm-white-rgb), .10);
	background-color: #1E353D;
	text-align: center;
	padding: 46px 30px 39px;
	margin-bottom: 30px;
}

.work-process__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background-color: #1A2B35;
	border: 2px solid #283A47;
	border-radius: 50%;
	margin: 0 auto;
}

.work-process__icon img {
	width: auto;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.work-process__single:hover .work-process__icon img {
	transform: scale(.9);
}

.work-process__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	margin-top: 18px;
}

.work-process__title>a {
	color: var(--thm-white);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.work-process__title>a:hover {
	color: var(--thm-secondary);
}

.work-process__count {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(var(--thm-white-rgb), .10);
}

.work-process__count:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	counter-increment: count;
	content: ""counter(count);
	color: var(--thm-white);
	text-align: center;
}







/* =============================================
	End
============================================== */