/*** 

====================================================================
	Process One
====================================================================

***/
.process-one {
	position: relative;
	display: block;
	counter-reset: count;
	padding: 120px 0 90px;
	z-index: 1;
}

.process-one__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 26.3%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.process-one__bg:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(var(--main-color-rgb), .90);
	z-index: -1;
}

.process-one .row {
	--bs-gutter-x: 90px;
}

.process-one__inner {
	position: relative;
	display: block;
}

.process-one__inner::before {
	content: "";
	position: absolute;
	top: 165px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #e9e9eb;
}

.process-one__single {
	position: relative;
	display: block;
	border: 1px solid var(--color-four);
	padding: 45px 49px 36px;
	margin-bottom: 30px;
	background-color: var(--white-color);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.process-one__single:hover {
	background-color: var(--color-three);
	border: 1px solid var(--color-three);
}

.process-one__img-box {
	position: relative;
	display: block;
}

.process-one__img {
	position: relative;
	display: block;
	overflow: hidden;
	border-top-right-radius: 120px;
	border-bottom-right-radius: 120px;
	z-index: 1;
}

.process-one__img:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	border-top-right-radius: 120px;
	border-bottom-right-radius: 120px;
	background-color: rgba(var(--color-two-rgb), .50);
	transform: scale(0.5);
	opacity: 0;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
	z-index: 1;
}

.process-one__single:hover .process-one__img:before {
	transform: scale(1.0);
	opacity: 1;
}

.process-one__img img {
	width: 100%;
	border-top-right-radius: 120px;
	border-bottom-right-radius: 120px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-one__single:hover .process-one__img img {
	transform: scale(1.08);
}

.process-one__icon {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	height: 94px;
	width: 94px;
	background-color: var(--white-color);
	border-radius: 50%;
	border: 1px solid var(--color-four);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.process-one__single:hover .process-one__icon {
	border: 1px solid var(--main-color);
}

.process-one__icon:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: var(--main-color);
	content: "";
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	transform-origin: bottom right;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: -1;
}

.process-one__single:hover .process-one__icon:before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: top center;
}

.process-one__icon span,
.process-one__icon i {
	position: relative;
	display: inline-block;
	font-size: 45px;
	color: var(--color-two);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-one__single:hover .process-one__icon span,
.process-one__single:hover .process-one__icon i {
	color: var(--white-color);
}

.process-one__content {
	position: relative;
	display: block;
	text-align: center;
	margin-top: 68px;
}

.process-one__step {
	position: relative;
	display: inline-block;
	color: var(--main-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.process-one__count {
	position: relative;
	display: inline-block;
}

.process-one__count:before {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	counter-increment: count;
	content: "0"counter(count);
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-one__title {
	margin-top: 9px;
	margin-bottom: 15px;
}

/*** 

====================================================================
	Process Two
====================================================================

***/
.process-two {
	position: relative;
	display: block;
	background-color: var(--color-two);
	counter-reset: count;
	padding: 120px 0 125px;
	z-index: 1;
}

.process-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.05;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.process-two .row {
	--bs-gutter-x: 3px;
}

.process-two .section-sub-title-box {
	margin-left: 0;
}

.process-two .section-sub-title {
	color: var(--white-color);
}

.process-two .section-title__title {
	color: var(--white-color);
}

.process-two__single {
	position: relative;
	display: block;
	text-align: center;
	background-color: var(--white-color);
	padding: 57px 25px 36px;
	margin-bottom: 30px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.process-two__single::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -35px;
	background-color: var(--main-color);
	background-position: center bottom;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .5s;
	transition-property: all;
	transform-origin: bottom;
	transform-style: preserve-3d;
	transform: scaleY(0);
	z-index: -1;
}

.process-two__single:hover::before {
	transform: scaleY(1.0);
}

.process-two__img-box {
	position: relative;
	display: block;
}

.process-two__img {
	position: relative;
	display: block;
	width: 230px;
	margin: 0 auto;
	z-index: 1;
}

.process-two__img::before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	border: 1px solid rgba(var(--color-two-rgb), .15);
	border-radius: 50%;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: -1;
}

.process-two__single:hover .process-two__img::before {
	border: 1px solid rgba(var(--white-color-rgb), .3);
}

.process-two__img img {
	width: 100%;
	border-radius: 50% !important;
}

.process-two__icon {
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background-color: var(--white-color);
	border-radius: 50%;
	z-index: 2;
}

.process-two__icon::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 10px solid rgba(var(--white-color-rgb), .2);
	border-radius: 50%;
}

.process-two__icon span {
	position: relative;
	display: inline-block;
	font-size: 54PX;
	color: #878c8f;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.process-two__single:hover .process-two__icon span {
	transform: scale(0.9) rotateY(180deg);
	color: var(--main-color);
}

.process-two__shape-1 {
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background-color: var(--main-color);
	transform: translateX(-50%);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-two__single:hover .process-two__shape-1 {
	background-color: var(--white-color);
}

.process-two__content-box {
	position: relative;
	display: block;
	margin-top: 82px;
	transform: translateY(0px);
	transition: all 700ms ease;
}

.process-two__single:hover .process-two__content-box {
	transform: translateY(35px);
}

.process-two__title {
	font-size: 24px;
	font-weight: 500;
	line-height: 34px;
	letter-spacing: -0.04em;
	margin-bottom: 8px;
}

.process-two__title a {
	color: var(--color-two);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-two__single:hover .process-two__title a {
	color: var(--white-color);
}

.process-two__text {
	color: var(--gray-color);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.process-two__single:hover .process-two__text {
	color: var(--white-color);
}

.process-two__count {
	height: 95px;
	width: 95px;
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 95px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
}

.process-two__single:hover .process-two__count {
	opacity: 1;
}

.process-two__count:before {
	position: absolute;
	height: 95px;
	width: 95px;
	font-size: 80px;
	line-height: 95px;
	font-weight: 700;
	counter-increment: count;
	content: "0"counter(count);
	transition: all 200ms linear;
	transition-delay: 0.1s;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	color: transparent;
	-webkit-text-stroke: 1px rgba(var(--white-color-rgb), .40);
	letter-spacing: -0.04em;
}

/*** 

====================================================================
	Process Three
====================================================================

***/
.process-three {
	position: relative;
	display: block;
	overflow: hidden;
	counter-reset: count;
	padding: 120px 0 150px;
	z-index: 1;
}

.process-three .row {
	--bs-gutter-x: 3px;
}

.process-three .section-sub-title-box {
	margin-left: 0;
}

.process-two__single {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 30px 0px rgba(37, 38, 56, 0.08);
}

/*** 

====================================================================
	Process Four
====================================================================

***/

.process-four{
	position:relative;
}

.process-four__bg{
	left:auto;
	right:0px;
}

.process-four__single{
	padding:0px;
	background-color:rgb(241, 245, 248);
	border:none;
}

.process-one__single:hover {
	background-color:rgb(241, 245, 248);
	border:none;
}

.process-four__img,
.process-four__img img{
	border-top-right-radius: 0px;
	border-bottom-right-radius: 100px;
}

.process-four__single:hover .process-four__img::before {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 100px;
}

.process-four__icon{
	border-radius: 0 0px 0px 50px;
	left:auto;
	right:0px;
	bottom:0px;
	transform:translate(0,0);
	background-color:rgba(var(--color-two-rgb), 0.8);
	border:1px solid var(--color-two);
	color:var(--white-color);
}

.process-four__icon::before{
	border-radius: 0 0px 0px 50px;
}

.process-four__icon span,
.process-four__icon i{
	color:var(--white-color);
}

.process-four__single:hover .process-four__icon {
  border: 1px solid var(--main-color);
  border-radius: 0 0px 0px 50px;
}

.process-four__single:hover .process-four__icon::before {
  border-radius: 0 0px 0px 50px;
}

.process-four__single .process-one__content{
	margin:0px;
	padding:30px;
}

.process-four__single .process-one__step{
	padding:5px 25px;
	background-color:var(--main-color);
	border-top-right-radius:50px;
	border-bottom-right-radius:50px;
	color:var(--white-color);
	z-index:9;
	position:absolute;
	top:0;
	left:0px;
} 

.process-four__single .process-one__title{
	margin-top:0px;
	font-weight:700;
}

.process-four__single .process-one__text-1{
	font-weight:500;
}




/* End */