/* Card Swiper Widget CSS */
.card-swiper-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card-swiper {
    width: 750px;
    height: 351px;
    margin: 0 auto;
}

.card-swiper .swiper-slide {
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #1a2843;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}

.card-swiper .slide-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 110px;
    height: 64px;
}

.card-swiper .slide-content {
    width: 100%;
    text-align: center;
}

.card-swiper .slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-swiper .slide-description {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}

/* RTL support */
body.rtl .card-swiper .slide-icon {
    right: auto;
    left: 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .card-swiper {
        width: 100%;
        height: 400px;
    }

    .card-swiper .slide-title {
        font-size: 20px;
    }

    .card-swiper .slide-description {
        font-size: 16px;
    }

    .card-swiper .slide-icon {
        width: 80px;
        height: 45px;
    }
}
.swiper-3d .swiper-slide-shadow {
    background: #fbeee6 !important;
}