
/********************************************************************************/ /* Success Story */
.success-story .section-head .d-flex {
    width: calc(100% - 570px);
}

.success-story .section-head-btns-wrap {
    width: 570px;
    justify-content: end;
    gap: 40px;
}

.success-story .section-head .d-flex .mid-line {
    width: calc(100% - 220px - 112px);
    margin: 0 auto;
}

.success-story .mid-line:after,
.success-story .mid-line:before,
.success-story .mid-line {
    background: color-mix(in srgb, var(--dark_gray_color) 20%, transparent);
}

.section-head .section-left-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: var(--dark_gray_color);
}

.section-head .section-left-text em {
    color: var(--primary_color);
    font-weight: 500;
    font-style: normal;
}

.video-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.video-box .play-video i.play {
    font-size: 24px;
    width: 56px;
    height: 56px;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
    opacity: 0.6;
    filter: blur(14px);
}

.video-box .play-video {
    width: 56px;
    height: 56px;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    background: transparent;
}

.video-box .video-box-inner {
    content: " ";
    width: 100%;
    height: 100%;
    background: var(--primary_color);
    position: absolute;
    inset: 0;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.video-box .video-box-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all .3s ease;
}

.video-box .video-box-text b {
    color: #F6F8FE;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.video-box .video-box-text span {
    display: block;
    color: #F6F8FE;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
}

.video-box .play-video,
.video-box .video-box-text {
    visibility: hidden;
    opacity: 0;
}

.success-story .video-swiper {
    width: calc(100% - 80px);
    height: 340px;
    margin: 0 auto;
    border-radius: 24px;
}

.success-story .swiper-wrapper {
    display: flex;
    align-items: center;
}

.backdrop-wrap {
    position: relative;
}

.backdrop {
    width: 100%;
    height: 140px;
    background: var(--primary_color);
    opacity: 0.08;
    border-radius: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-slide-active .video-box .video-box-inner {
    background: linear-gradient(to bottom, #01040900 0%, #010409 100%);
}

.swiper-slide-active .video-box img {
    filter: unset;
    opacity: 1;
}

.video-swiper .swiper-slide {
    position: unset;
}

.swiper-slide-active .video-box .play-video,
.swiper-slide-active .video-box .video-box-text {
    visibility: visible;
    opacity: 1;
}

.video-swiper .swiper-slide {
    width: auto !important;
}

.video-swiper .swiper-slide .video-box .video-box-inner,
.video-swiper .swiper-slide .video-box img {
    width: 247px;
    height: 340px;
}

.video-swiper .swiper-slide.swiper-slide-active .video-box .video-box-inner,
.video-swiper .swiper-slide.swiper-slide-active .video-box img {
    width: 400px;
    height: 340px;
}

@media (max-width: 991px) {
    .success-story {
        padding-bottom: 80px;
        position: relative;
    }

    .success-story .section-head,
    .success-story .section-head .d-flex {
        max-width: 100%;
        width: 100%;
        display: block !important;
        padding: 0;
    }

    .success-story .swiper-buttons:before {
        display: none;
    }

    .success-story .swiper-buttons {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .success-story .section-head-btns-wrap {
        display: block;
        max-width: 100%;
        width: 100%;
    }


    .success-story .video-swiper {
        width: 100%;
        height: auto;
    }

    .video-swiper .swiper-slide .video-box .video-box-inner,
    .video-swiper .swiper-slide .video-box img {
        width: 100%;
        height: auto;
    }

    .video-swiper .swiper-slide.swiper-slide-active .video-box .video-box-inner,
    .video-swiper .swiper-slide.swiper-slide-active .video-box img {
        width: 100%;
        height: auto;
    }

    .backdrop {
        display: none;
    }
}

@media (max-width: 575px) {

    .video-swiper .swiper-slide {
        width: 100% !important;
    }
}