.section-steps {
    padding-top: clamp(60px, 12vw, 172px);
    background: linear-gradient(180deg, #F1F5F9 0%, rgba(241, 245, 249, 0.5) 50%, rgba(241, 245, 249, 0) 100%);
    .s-title {
        text-align: center;
        margin-bottom: clamp(32px, 4vw, 44px);
    }
    .swiper-slide {
        height: auto;
        border-radius: 32px;
        overflow: hidden;
        .item-steps {
            position: relative;
            height: 100%;
            width: 100%;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}
@media only screen and (min-width: 992px) {
    .section-steps {
        .s-title {
            text-align: right;
        }
        .swiper-navigation {
            position: absolute;
            bottom: calc(100% + 52px);
            left: 0;
        }
    }
}