/**
 * Process Steps Section
 */

.process-steps-section.white,
.process-steps-section.gray .step-note {
	background: var(--white);
}
.process-steps-section.gray{
	background-color: var(--gray);
}
.process-steps-section .steps-list {
	display: flex;
	flex-direction: column;
	row-gap: 60px;
	position: relative;
	max-width: 1144px;
	margin: 0 auto;
}
.process-steps-section .steps-list::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 90px;
    bottom: 90px;
    width: 2px;
    background: var(--blue);
    z-index: 0;
}
.process-steps-section .step-item {
	display: flex;
	align-items: flex-start;
	column-gap: 105px;
	position: relative;
	z-index: 1;
}
.process-steps-section .step-item:not(:last-child){
	min-height: 280px;
}
.process-steps-section .step-number {
	flex-shrink: 0;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 2px solid var(--blue);
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.process-steps-section .step-number span {
    font-size: 96px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
}
.process-steps-section .step-content {
	flex: 1;
	padding-top: 18px;
}
.process-steps-section .section-header .desc{
	max-width: 675px;
	margin-left: auto;
	margin-right: auto;
}
.process-steps-section .step-content .sub-title {
	color: var(--blue);
}
.process-steps-section .step-note {
    background: var(--gray);
    border-radius: 30px;
    padding: 30px 40px;
	margin-top: 30px;
}
.process-steps-section .step-note p {
	margin-bottom: 0;
	font-weight: 600;
}
.process-steps-section .step-note strong {
	font-weight: 600;
	color: var(--blue);
	display: block;
}
.process-steps-section.white .step-item:last-child{
	background-color: var(--white);
}
.process-steps-section.gray .step-item:last-child{
	background-color: var(--gray);
}
.celo-installers-page .process-steps-section.white .step-number{
	background: var(--black);
	border-color: var(--black);
}
.celo-installers-page .process-steps-section.white .steps-list::before{
	background: var(--black);
}

@media only screen and (min-width: 1200px) {
	.process-steps-section .section-header{
		margin-bottom: 70px;
	}
	.celo-installers-page .process-steps-section .step-item:not(:last-child) {
		min-height: 240px;
	}
}
@media only screen and (max-width: 1199px) {
	.process-steps-section .steps-list {
		max-width: 100%;
	}
	.process-steps-section .step-note {
		padding: 20px 24px;
	}
	.process-steps-section .step-item {
		column-gap: 50px;
	}
	.process-steps-section .step-number {
		height: 100px;
		width: 100px;
	}
	.process-steps-section .step-number span{
		font-size: 70px;
	}
	.process-steps-section .steps-list::before{
		left: 50px;
	}
}
@media only screen and (max-width: 991px) {
	.process-steps-section .steps-list::before {
		left: 34px;
		top: 70px;
		bottom: 70px;
	}
	.process-steps-section .step-item {
		column-gap: 24px;
	}
	.process-steps-section .step-number {
		width: 70px;
		height: 70px;
	}
	.process-steps-section .step-number span {
		font-size: 30px;
	}
	.process-steps-section .step-content {
		padding-top: 10px;
	}
	.process-steps-section .step-item:not(:last-child) {
		min-height: 180px;
	}
}
@media only screen and (max-width: 767px) {
	.process-steps-section .steps-list {
		row-gap: 40px;
	}
	.process-steps-section .steps-list::before {
		display: none;
	}
	.process-steps-section .step-item {
		flex-direction: column;
		row-gap: 20px;
	}
	.process-steps-section .step-number {
		width: 56px;
		height: 56px;
	}
	.process-steps-section .step-number span {
		font-size: 24px;
	}
	.process-steps-section .step-content {
		padding-top: 0;
	}
	.process-steps-section .step-note {
		padding: 18px 20px;
		border-radius: 15px;
	}
	.process-steps-section .step-item:not(:last-child) {
		min-height: auto
	}
}
