.sucess_stories {
    position: relative;
    padding-bottom: 0;
}

.sucess_stories::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../../images/sucess-stories/sucess-bg.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: -1;
}

.sucess_stories .container {
    position: relative;
}

.main_title {
    position: absolute;
    width: 100%;
    top: -20px;
}

.main_title h2 {
    display: flex;
    justify-content: space-between;
    color: red;
    font-size: 10rem;
    -webkit-text-stroke: 3px #DADADA;
    -webkit-text-fill-color: white;
    letter-spacing: -0.50vw;
    width: 100%;
    margin: auto;
    line-height: 1;
}

.success_left_col {
    flex: 0 0 32%;
    padding-top: 210px;
}

.success_middle_col {
    flex: 0 0 47%;
}

.success_right_col {
    flex: 0 0 21%;
    padding-top: 210px;
    overflow: hidden;
}

.success_left_col h3 {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 30px;
    max-width: 264px;
}

.success_middle_col img {
    width: 91%;
    margin-left: 4%;
}

/* === Stories Area Start == */
.success_right_col .item {
    text-align: right;
}

.success_right_col .item p {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-400);
    font-size: 16px;
}

.success_right_col .item h5 {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 24px;
}

/* === Stories Area End == */

/* === Play Button Area == */
.sucess_stories .playBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0px 0px 0px 0px var(--primary);
    animation: video_pulse_blue 2s infinite;
    position: absolute;
    bottom: 10%;
}

.sucess_stories .playBtn i {
    color: var(--white);
    font-size: 30px;
}

@keyframes video_pulse_blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 98, 242, .5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 24px rgba(255, 82, 82, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}