.swiper {
    --activeBulletColor: var(--Blue);
    --arrowColor: var(--Blue);
    --swiper-navigation-sides-offset: 20px;
    --swiper-navigation-size: 20px;
    height: 500px;
    border-radius: 12px;
}

.swiper-slide {
    align-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--arrowColor);
}

.swiper-pagination-bullet-active {
    background: var(--Red);
}

.swiper-zoom-container {}

.swiper-slide .swiper-zoom-container>img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    border-radius:12px;
}

.swiper .overlay-slide,
.swiper .slide-content,
.swiper-slide .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.swiper .swiper-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.swiper .overlay-slide {
    z-index: 2;
    color: #0F0;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.swiper .swiper-slide img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .swiper {
        height: auto !important;
    }

    .swiper img {
        margin-bottom: 30px;
    }
}