.swiper-pagination {
    position: relative !important;
}

.swiper-pagination-bullet {
    display: block;
    position: relative;
    width: 22px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #2a2d32;
    width: 5px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: block;
}
.swiper-pagination-bullet .bullet-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 200ms ease-out;
    opacity: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-inner {
    transition-delay: 80ms;
    opacity: 1;
}

.swiper-container {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    min-height: 0;
    min-width: 0;
    overflow-y: clip;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
}

.swiper-slide {
    transition-duration: 500ms !important;
}
