.zf-con-steps {
	display: grid;
	gap: 40px;
}

/* Wrapper and Line */
.con-swiper-wrapper {
	position: relative;
}
.con-swiper-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -25%;
    width: 200%;
    height: 2px;
    background: #545454;
    transform: translateY(-50%);
    z-index: 0;
}

/* Swiper Slide */
.zf-con-steps .con-swiper-slide {
    width: auto;
    flex-shrink: 0;
}

/* Slide */
.con-steps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.con-steps-item.is-reverse {
    flex-direction: column-reverse;
}

/* Navigation */
.con-swiper-nav {
	width: 100vw;
    gap: 20px;
}
.con-nav-btn {
	width: 48px;
    height: 48px;
	border: solid 1px #fff;
    cursor: pointer;
    user-select: none;
}
.con-nav-btn.inactive {
    opacity: 0.3;
	cursor: not-allowed;
    pointer-events: none;
}
.con-nav-btn svg {
	width: 20px
}

/* Step card */
.con-step {
    padding: 20px;
    width: 332px;
	max-width: 100%
    height: 100px;
    border-radius: 16px;
    border: 1px solid #545454;
    background: rgba(100, 100, 100, 0.15);
}

/* Empty spacer */
.con-empty-card {
    width: 332px;
    height: 100px;
}

/* Number circle */
.con-step-number {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #000;
    border-radius: 50%;
}
.con-steps-item.is-reverse .con-step-number {
    background: #000;
    color: #fff;
}
.con-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

/**/
.con-step-text {
	font-size: 20px;
	height: 24px;
}
.con-step-text-empty {
	height: 120px;
}
.con-step-number-con {
	margin: -24px 0;
	flex-direction: column;
    gap: 6px;
}
.con-steps-item.is-reverse .con-step-number-con {
    flex-direction: column-reverse;
}

@media (max-width: 600px) {
	.con-steps-item {
		flex-direction:	column-reverse;
	}
	.con-steps-item .con-step-number-con {
    	flex-direction: column-reverse;
	}
	
	.con-swiper-nav {
		margin-top: -116px;
		z-index: 2;
	}
	
	.zf-con-steps {
		margin-bottom: -116px;
	}
}