/*--------------------------------------------------------------
                   Process Steps
--------------------------------------------------------------*/

/*style 1*/
.iq-process-step .iq-before-img {
	position: absolute;
	right: -20%;
	top: 15%;
}

.text-left .iq-process-step .iq-before-img {
	right: 15%;
}

.text-right .iq-process-step .iq-before-img {
	left: 10%;
	right: auto;
}

.iq-before-img {
	position: absolute;
	right: -20%;
	top: 15%;
}

.iq-process-step-style-1 .iq-process-step {
	position: relative;
	display: block;
}

.iq-process-step-style-1 .iq-process-step .iq-step-content {
	margin-bottom: 30px;
	text-align: center;
	background: var(--color-theme-white);
	height: 110px;
	width: 110px;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	position: relative;
	top: 0;
	display: inline-block;
	-webkit-box-shadow: var(--primary-box-shadow);
	-moz-box-shadow: var(--primary-box-shadow);
	box-shadow: var(--primary-box-shadow);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-1 .iq-process-step:hover .iq-step-content {
	top: -8px;
}

.iq-process-step-style-1 .iq-process-step .iq-step-content i {
	font-size: 50px;
	line-height: 110px;
	color: var(--color-theme-primary);
}

.iq-process-step-style-1 .iq-process-step .step-number {
	font-size: 18px;
	background: var(--color-theme-primary);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	color: var(--color-theme-white);
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
}

.iq-process-step-style-1 .iq-process-step h5 span {
	height: 6px;
	width: 6px;
	background: var(--color-theme-primary);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	display: inline-block;
	margin-left: 6px;
}

.iq-process-step-style-1 .iq-process-step .iq-step-text-area .iq-step-title {
	margin-bottom: 10px;
}

.iq-process-step-style-1 .iq-process-step .iq-step-text-area .iq-step-desc {
	display: block;
}

/*style 2*/
.iq-process-step-style-2 .iq-process-step {
	position: relative;
	display: block;
}

.iq-process-step-style-2 .iq-process-step .iq-step-content {
	position: relative;
	overflow: hidden;
	padding: 30px 30px 0;
	background: var(--color-theme-white);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step .iq-step-content .step-number {
	font-size: 48px;
	color: var(--color-theme-primary);
	line-height: normal;
	font-weight: bold;
	margin-bottom: 10px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-title {
	margin: 0 0 10px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-text-area .iq-step-desc {
	margin-bottom: 10px;
	display: block;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-text-area .iq-button {
	opacity: 0;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-button {
	opacity: 1;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-2 .iq-process-step:hover .iq-step-content .step-number {
	opacity: 0;
}

.iq-process-step-style-2 .iq-process-step:hover .iq-step-content {
	-webkit-box-shadow: var(--primary-box-shadow);
	-moz-box-shadow: var(--primary-box-shadow);
	box-shadow: var(--primary-box-shadow);
}

.iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-title, .iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-step-desc, .iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-button {
	-moz-transform: translateY(-35px);
	-ms-transform: translateY(-35px);
	-webkit-transform: translateY(-35px);
	transform: translateY(-35px);
}

.iq-process-step-style-2 .iq-process-step .iq-step-content:before {
	width: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	height: 4px;
	background: var(--color-theme-primary);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
}

.iq-process-step-style-2 .iq-process-step:hover .iq-step-content:before {
	width: 100%;
}

/*style 3*/
.iq-process-step-style-3 .iq-process-step {
	position: relative;
	display: block;
}

.iq-process-step-style-3 .iq-process-step .iq-step-content {
	margin-bottom: 30px;
	text-align: center;
	background: var(--color-theme-white);
	height: 110px;
	width: 110px;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	position: relative;
	top: 0;
	display: inline-block;
	-webkit-box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06);
	-moz-box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06);
	box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	border-bottom-right-radius: 0px;
}

.iq-process-step-style-3 .iq-process-step:hover .iq-step-content {
	top: -8px;
}

.iq-process-step-style-3 .iq-process-step .iq-step-content i {
	font-size: 50px;
	line-height: 110px;
	color: var(--color-theme-primary);
}

.iq-process-step-style-3 .iq-process-step .step-number {
	font-size: 18px;
	position: absolute;
	top: 0;
	right: 0;
}

.iq-process-step-style-3 .iq-process-step .iq-step-text-area .iq-step-title {
	margin-bottom: 10px;
}

/*style 4*/
.iq-process-step-style-4 .iq-process-step {
	position: relative;
	display: block;
	padding: 0 15px;
}

.iq-process-step-style-4 .iq-process-step .iq-step-content {
	background: var(--color-theme-white);
	margin-bottom: 30px;
	text-align: center;
	border: 2px dashed var(--color-theme-secondary);
	height: 110px;
	width: 110px;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	position: relative;
	top: 0;
	display: inline-block;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9);
	-moz-box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9);
	box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9);
}

.iq-process-step-style-4 .iq-process-step:hover .iq-step-content {
	top: -8px;
}

.iq-process-step-style-4 .iq-process-step .iq-step-content i {
	font-size: 50px;
	line-height: 110px;
	color: var(--color-theme-primary);
}

.iq-process-step-style-4 .iq-process-step .step-number {
	color: var(--color-theme-primary);
	font-size: 90px;
	position: absolute;
	top: -100%;
	right: 0;
	left: 0;
	font-weight: bold;
	margin: 0 auto;
	z-index: -1;
}

.iq-process-step-style-4 .iq-process-step .iq-step-text-area .iq-step-title {
	margin-bottom: 10px;
}

/*style 5*/
.iq-process-step-style-5 .iq-process-step {
	position: relative;
	display: block;
	padding: 70px 15px 0;
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area {
	background: var(--color-theme-secondary);
	border: 1px solid #eeeeee;
	padding: 60px 30px 60px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area i::before {
	vertical-align: middle;
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area i {
	font-size: 45px;
	margin-bottom: 30px;
	display: block;
	color: var(--color-theme-white);
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-step-title {
	margin-bottom: 15px;
	color: var(--color-theme-white);
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-step-desc {
	color: var(--color-theme-white);
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-button {
	position: absolute;
	right: 16px;
	font-size: 0;
	line-height: 40px;
	bottom: 10px;
	color: var(--color-theme-white);
	opacity: 0;
	z-index: 1;
	-webkit-transform: translate3d(20px, 20px, 0);
	transform: translate3d(20px, 20px, 0);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-button i {
	line-height: 40px;
	font-size: 40px;
	margin-bottom: 0;
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area::before {
	position: absolute;
	right: -30px;
	bottom: -35px;
	width: 100px;
	height: 100px;
	background: #191a20;
	border-radius: 100%;
	content: '';
	opacity: 0;
	-webkit-transform: scale3d(0.5, 0.5, 1);
	transform: scale3d(0.5, 0.5, 1);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area .iq-button {
	opacity: 1;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area::before {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.iq-process-step-style-5 .iq-process-step .iq-step-text-area::after {
	width: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	height: 4px;
	background: var(--color-theme-primary);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area::after {
	width: 100%;
}

.iq-process-step-style-5 .iq-process-step .iq-step-content .step-number {
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	font-size: 140px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	position: absolute;
	text-align: center;
	top: 120px;
	margin: 0 auto;
	left: 0;
	right: 0;
	line-height: 140px;
	color: var(--color-theme-primary);
}

.iq-process-step-style-5 .iq-process-step:hover .iq-step-content .step-number {
	top: -30px;
}

/*style 6*/
.iq-process-step-style-6 .iq-process-step {
	position: relative;
	display: block;
	padding: 0 15px;
}

.iq-process-step-style-6 .iq-process-step .iq-step-content .step-number {
	background: var(--color-theme-white);
	border-radius: 100px;
	box-shadow: var(--primary-box-shadow);
	color: var(--color-theme-secondary);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	position: absolute;
	font-weight: 600;
	top: 15px;
	right: 30%;
	z-index: 1;
}

.iq-process-step-style-6 .iq-process-step .iq-step-content {
	margin-bottom: 30px;
}

.text-left.iq-process-step-style-6 .iq-process-step .iq-step-content .step-number {
	left: 0;
	right: auto;
}

.text-right.iq-process-step-style-6 .iq-process-step .iq-step-content .step-number {
	right: 0;
	left: auto;
}

.iq-process-step-style-6 .iq-process-step .iq-step-text-area .iq-step-title {
	margin-bottom: 10px;
}

/*style 7*/
.iq-process-step-style-7 .iq-process-step {
	background: var(--color-theme-white);
	border-radius: 5px;
	min-height: 160px;
	margin: 0px 0 30px;
	padding: 30px 15px;
	z-index: 0;
	box-shadow: var(--primary-box-shadow);
	position: relative;
	display: block;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-7 .iq-step-title, .iq-process-step-style-7 .iq-step-text-area {
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	font-weight: var(--font-weight-h5);
}

.iq-process-step-style-7 .iq-process-step .iq-step-content .step-number {
	background: var(--color-theme-white);
	border-radius: 100px;
	color: var(--color-theme-primary);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: absolute;
	font-weight: 600;
	top: -15px;
	right: -15px;
	z-index: 1;
	background: rgba(111, 115, 240, 0.20);
}

.text-right.iq-process-step-style-7 .iq-process-step .iq-step-content .step-number {
	left: -15px;
	right: auto;
}

.iq-process-step-style-7 .iq-process-step .iq-step-content i {
	font-size: 45px;
	color: var(--color-theme-primary);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-7 .iq-process-step .iq-step-content {
	margin-bottom: 10px;
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
}

.iq-process-step-style-7 .iq-process-step .iq-step-text-area .iq-step-desc {
	margin-top: 10px;
	margin-bottom: 15px;
	display: block;
}

.iq-process-step-style-7 .iq-process-step {
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.iq-process-step-style-7:hover .iq-process-step {
	box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
	background: var(--color-theme-primary);
}

.iq-process-step-style-7:hover .iq-process-step .iq-step-content .step-number {
	background: var(--color-theme-white);
	box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
}

.iq-process-step-style-7:hover .iq-process-step .iq-step-content i, .iq-process-step-style-7:hover .iq-step-title, .iq-process-step-style-7:hover .iq-step-desc {
	color: var(--color-theme-white);
}


.iq-process-step-style-8 {
	background: var(--color-theme-white);
}

.iq-process-step-style-8 {
	padding: 30px;
	position: relative;
	border-radius: 5px;
}

.iq-process-step-style-8 .iq-process-step {
	position: relative;
	width: 100%;
}

.iq-process-step-style-8 .step-number {
	position: absolute;
	top: 0;
	right: 0;
	font-family: var(--global-font-famil);
	font-style: normal;
	font-weight: 500;
	font-size: 80px;
	line-height: 80px;

	/* identical to box height, or 100% */
	text-align: center;
	text-transform: capitalize;
	color: var(--color-post-sticky-bg);
}

.iq-process-step-style-8 .iq-process-step-icon {
	display: inline-block;
	box-shadow: 10px 14px 49px rgba(163, 124, 252, 0.35);
	background-color: var(--color-theme-primary);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
}

.iq-process-step-style-8 .iq-step-content .iq-step-title {
	margin-top: 40px;
}

.iq-process-step-style-8 .iq-step-content .iq-step-desc {
	margin: 10px 0;
}

/* Style-9 */

.iq-process.iq-process-step-style-9 {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-bottom-line);
}

.iq-process.iq-process-step-style-9 .iq-process-contain-wrap {
	display: flex;
}

.iq-process.iq-process-step-style-9 .iq-process-num {
	width: 45px;
	height: 45px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid var(--border-bottom-line);
	margin-right: 25px;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.iq-process.iq-process-step-style-9:hover .iq-process-num {
	background-color: var(--color-theme-primary);
	color: var(--color-theme-white);
}

.iq-process.iq-process-step-style-9 .iq-process-contain-wrap .iq-process-info p {
	margin-top: 15px;
	margin-bottom: 0;
}

.iq-process-step-style-9:hover .iq-stp-title {
	color: var(--color-theme-primary);
}


@media(max-width:992px) {

	/*process Step*/
	.iq-process-step .iq-before-img {
		display: none;
	}

	.iq-process-step-style-1 .iq-process-step li {
		width: 50%;
		margin-bottom: 45px;
	}

	.iq-process-step-style-1 .iq-process-step li:last-child {
		margin-bottom: 0;
	}

	.iq-process-step-style-2 .iq-process-step li {
		width: 50%;
		margin-bottom: 30px;
	}

	.iq-process-step-style-2 .iq-process-step li:last-child {
		margin-bottom: 0;
	}

	.iq-process-step-style-3 .iq-process-step li {
		width: 50%;
		margin-bottom: 30px;
	}

	.iq-process-step-style-3 .iq-process-step li:last-child {
		margin-bottom: 0;
	}

	.iq-process-step-style-4 .iq-process-step li {
		width: 50%;
		margin-bottom: 75px;
	}

	.iq-process-step-style-4 .iq-process-step li:last-child {
		margin-bottom: 0;
	}

	.iq-process-step-style-5 .iq-process-step li {
		width: 50%;
		margin-bottom: 30px;
	}

	.iq-process-step-style-5 .iq-process-step li:last-child {
		margin-bottom: 0;
	}

	.iq-process-step-style-6 .iq-process-step li {
		width: 50%;
		margin-bottom: 30px;
	}

	.iq-process-step-style-6 .iq-process-step li:last-child {
		margin-bottom: 0;
	}
}

@media(max-width:767px) {

	/*process step*/
	.iq-process-step-style-1 .iq-process-step li {
		width: 100%;
	}

	.iq-process-step-style-2 .iq-process-step li {
		width: 100%;
	}

	.iq-process-step-style-3 .iq-process-step li {
		width: 100%;
	}

	.iq-process-step-style-4 .iq-process-step li {
		width: 100%;
	}

	.iq-process-step-style-5 .iq-process-step li {
		width: 100%;
	}

	.iq-process-step-style-6 .iq-process-step li {
		width: 100%;
	}
}