.swiper-slide {
    text-align: center;
    font-size: 16px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: -2;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination {
    z-index: 1;
}
.swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper-button-prev {
    background-image: url('/website/2023/images/arrow-left-circle.svg');
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    content: unset!important;
}
.swiper-button-next {
    background-image: url('/website/2023/images/arrow-right-circle.svg');
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--color-green) !important;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}