/* button style */
.swiper-pagination-bullet {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0 10px;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: 0 !important;
}

.swiper-pagination-bullet span {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* button circle */
.progress {
    transform: rotate(-90deg);
    margin-left: -1px;
    margin-top: -1px;
}

.circle-origin {
    fill: transparent;
    stroke: rgb(0, 0, 0);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 125.664px;
    stroke-dashoffset: 125.664px;
}

.swiper-pagination-bullet-active .circle-origin {
    animation: progress 5s;
}

@keyframes progress {
    0% {
        stroke-dashoffset: 125.664px;
    }

    100% {
        stroke-dashoffset: 0;
    }

    /* 100% {
    stroke-dashoffset: -125.664px;
} */
}

.swiper-pagination-bullet {
    width: 41px !important;
    height: 41px !important;
    background-color: transparent !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet span {
    color: #000;
     font-family: "Nunito", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 68px;
}