.smiSwiper {
    overflow: hidden;
    width: 100%;
}

.smiSwiper .swiper-wrapper {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    transform: translate3d(0, 0, 0);
    height: 64px !important;
}

.smiSwiper .swiper-slide {
    flex: 0 0 417px;
    margin-right: 15px;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    border: 1px solid #C0D8DF;
    border-radius: 10px;
    padding: 17px 0px;
}

.smi__top {
    display: flex;
    justify-content: space-between;
}

.smi__btn {
    background: none;
    border: 1px solid #0196BB;
    padding: 12px 40px;
    color: #0196BB;
    font-size: 16px;
    font-weight: 500;
    margin: auto 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.smi__btn:hover {
    background: #0196BB;
    color: #fff;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .smi-slider__wrp {
        display: flex;
        flex-direction: column;
    }

    .smiSwiper .swiper-wrapper {
    height: 54px !important;
}

    .smi__top {
        display: contents;
    }

    .section-title {
        order: 1;
    }

    .smi-slider__wrp > div:not(.smi__top) {
        order: 2;
        margin-bottom: 24px;
    }

    .smi__btn {
        order: 3;
        width: 100%;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }

    .smiSwiper .swiper-slide {
        flex: 0 0 353px;
        margin-right: 10px;
    }
}