.swiper-pagination-bullet-custom {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}

.swiper-pagination-bullet-custom-active {
    color: #fff;
    background: #007aff;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.bg-opacity-01 {
    background: rgba(0,0,0, 0.1);
}

.bg-opacity-03 {
    background: rgba(0,0,0, 0.3);
}

.bg-opacity-05 {
    background: rgba(0,0,0, 0.5);
}

.bg-opacity-07 {
    background: rgba(0,0,0, 0.7);
}

.bg-opacity-09 {
    background: rgba(0,0,0, 0.9);
}


.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}
