.progress-box {
    background: #EAEDF3;
    color: #000714;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: clamp(130px, 12vw, 170px);
    justify-content: center;
    gap: clamp(12px, 2vw, 16px);
    font-size: 16px;
	text-transform:capitalize;
	text-align:center;
}
.progress-box span {
    font-size: 22px;
    color: var(--color2);
    font-variation-settings: "wght" 600;
	 line-height: 1;
}
.swiper-slide-active .progress-box span {
    font-size: clamp(24px, 2vw, 32px);
    color: var(--color1);
}
.progress-desc {
    align-items: center;
}
.progress-descriptions {
    margin-top: clamp(40px, 4vw, 56px);
}
@media only screen and (min-width: 992px) {
    .section-progress .swiper-navigation .swiper-nav-next,
	.section-progress .swiper-navigation .swiper-nav-prev
	{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
	.section-progress .swiper-navigation .swiper-nav-next{
    left: -48px;
    transform: translateY(-50%) scaleX(-1);
}
	.section-progress .swiper-navigation .swiper-nav-prev{
    right: -48px;
}
}