.swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.swiper-wrapper {
    display: flex;
}
.swiper-wrapper a{
    display: inline-block;
    height: 100%;
    width: 100%;
}
.swiper-slide {
    box-sizing: border-box;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper-slide img{
    max-width: 100%;
}
.swiper-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.swiper-pagination-bullet.active {
    background: var(--color-primary);
    opacity: 1;
}
.swiper-pagination-dynamic .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    padding: 0;
}
.swiper-pagination-dynamic .swiper-pagination-bullet-active-main {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    opacity: 1;
}
.swiper-pagination-dynamic .swiper-pagination-bullet-active-next {
    width: 7px;
    height: 7px;
    opacity: 0.7;
}
.swiper-pagination-dynamic .swiper-pagination-bullet-active-prev {
    width: 7px;
    height: 7px;
    opacity: 0.4;
}
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    background: #ffffff5c;
    padding: 8px 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 3px;
    font-size: 20px;
    color: #fff;
    height: 30px;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 0px;
}
.swiper-button-prev {
    left: 10px;
}
.swiper-button-next {
    right: 10px;
}
.img-swipe img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .img-swipe img{
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .swiper-pagination {
        gap: 4px;
    }
    .swiper-button-prev, .swiper-button-next{
        padding: 5px 8px;
        font-size: 15px;
    }
    .img-swipe img{
        width: 100px;
        height: 100px;
    }
}
