.rd-showcase-slider-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.rd-showcase-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rd-showcase-slider .swiper-wrapper {
    align-items: center;
}

.rd-showcase-slide {
    width: 68%;
    max-width: 980px;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0.45;
    transition: opacity 0.45s ease, filter 0.45s ease;
}

.rd-showcase-slide.swiper-slide-active {
    opacity: 1;
    z-index: 20;
}

.rd-showcase-slide.swiper-slide-prev,
.rd-showcase-slide.swiper-slide-next {
    opacity: 0.75;
    z-index: 10;
}

.rd-showcase-slide img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.rd-swiper-button {
    position: absolute;
    top: 50%;
    z-index: 40;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
}

.rd-swiper-prev {
    left: calc(50% - 360px);
}

.rd-swiper-next {
    right: calc(50% - 360px);
}

@media (max-width: 992px) {
    .rd-showcase-slide {
        width: 76%;
    }

    .rd-swiper-prev {
        left: 10%;
    }

    .rd-swiper-next {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .rd-showcase-slider-wrap {
        padding: 45px 0;
    }

    .rd-showcase-slide {
        width: 84%;
    }

    .rd-showcase-slide img {
        height: 260px;
    }

    .rd-swiper-prev {
        left: 6%;
    }

    .rd-swiper-next {
        right: 6%;
    }
}