.swiper-container {
    overflow: hidden;
    position: relative;
}
.wptb-swiper-dots {
    position: relative;
    margin-top: 30px;
    width: auto;
    height: 40px;
    display: block;
    z-index: 1;
}
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, .swiper-pagination-fraction {
    position: relative;
    top: 0;
    bottom: auto;
    margin-top: 0px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background-color: transparent;
    margin: 0 14px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    position: relative;
    opacity: 1;
    font-family: var(--font-family-heading);
    font-size: 14px;
    font-weight: 700;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:before, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-one);
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active , 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--white);
}
.wptb-slider {
    position:relative;
}
.wptb-slider .wptb-slider--item {
    overflow: hidden;
    position: relative;
}
.wptb-slider .wptb-slider--item .container {
    position: relative;
    z-index: 2;
}
.wptb-slider .wptb-slider--image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 4s linear;
    -moz-transition: all 4s linear;
    -ms-transition: all 4s linear;
    -o-transition: all 4s linear;
    transition: all 4s linear;
}
.wptb-slider .swiper-slide .wptb-slider--image {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.wptb-slider .swiper-slide-active .wptb-slider--image {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.wptb-slider .wptb-swiper-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 40px;
    height: 200px;
}
.wptb-slider .swiper-pagination {
    display: grid;
}
@media (max-width: 991px){
    .wptb-slider .wptb-swiper-dots {
        top: unset;
        left: 50%;
        bottom: 2%;
        right: unset;
        width: unset;
        height: unset;
        margin: unset;
        position: absolute;
        text-align: center;
        transform: translate(-50%, 0%);
    }
    .wptb-slider .swiper-pagination {
        display: inline-flex;
    }
}