.main-banner .swiper-pagination-bullets {
    display: none;
}
.main-banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.main-banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}
.active-slide {
    animation: slideActive 1s ease-out;
}

@media screen and (min-width: 560px) {
.main-banner .swiper-pagination-bullet {
        background: transparent;
        opacity: 1;
        width: 100%;
    }

.main-banner .swiper-horizontal>.swiper-pagination-bullets {
        width: fit-content;
        top: 50%;
        transform: translateY(-50%);
        bottom: unset;
        left: unset;
        right: -10px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

.main-banner .swiper-pagination-bullet {
        font-family: 'Bruno Ace SC',
            sans-serif;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        color: var(--color-white);
        line-height: 1;
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

.main-banner .swiper-pagination-bullet:after {
        content: '';
        display: block;
        width: calc(var(--container-space) - 10px);
        height: 1px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, .8);
    }

.main-banner .swiper-pagination-bullet-active {
        font-size: 1.33rem;
    }
}
@media screen and (min-width: 1281px) {

.main-banner .swiper-pagination-bullet:after {
    width: calc(var(--container-space) - 25px);
}
}
@media screen and (min-width: 1600px) {
    .main-banner .swiper-horizontal>.swiper-pagination-bullets {
        gap: 60px;
    }
}


@media screen and (min-width: 1800px) {
    .main-banner .swiper-pagination-bullet {
        font-size: 1.1rem;
    }
    .main-banner .swiper-pagination-bullet-active {
        font-size: 1.4rem;
    }
}
@keyframes slideActive {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }

}