/* ========================================= */
/* PROCESS PAGE */
/* ========================================= */

.timeline-section{

    padding:120px 0;

}

.timeline-wrapper{

    position:relative;

    max-width:1200px;

    margin:auto;

}

/* ========================================= */
/* CENTER LINE */
/* ========================================= */

.timeline-line{

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:4px;

    transform:translateX(-50%);

    background:#95DB17;

    border-radius:50px;

    box-shadow:
    0 0 10px rgba(149,219,23,0.6),
    0 0 25px rgba(149,219,23,0.4);

}

/* ========================================= */
/* TIMELINE ITEM */
/* ========================================= */

.timeline-item{

    position:relative;

    display:flex;

    width:100%;

    margin-bottom:80px;

}

.timeline-item.left{

    justify-content:flex-start;

}

.timeline-item.right{

    justify-content:flex-end;

}

/* ========================================= */
/* DOT */
/* ========================================= */

.timeline-dot{

    position:absolute;

    left:50%;

    top:50%;

    width:22px;

    height:22px;

    transform:translate(-50%,-50%);

    background:#95DB17;

    border-radius:50%;

    z-index:10;

    box-shadow:
    0 0 12px rgba(149,219,23,0.8),
    0 0 25px rgba(149,219,23,0.5);

}

/* ========================================= */
/* CARD */
/* ========================================= */

.timeline-card{

    width:45%;

    background:#ffffff;

    padding:40px;

    border-radius:28px;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

    transition:0.4s ease;

}

.timeline-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,0.08);

}

/* GLOW */

.timeline-card::before{

    content:'';

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(149,219,23,0.08);

    top:-120px;

    right:-120px;

    filter:blur(70px);

}

/* NUMBER */

.timeline-card span{

    display:block;

    font-size:60px;

    font-weight:800;

    color:rgba(149,219,23,0.15);

    margin-bottom:10px;

    line-height:1;

}

/* TITLE */

.timeline-card h3{

    font-size:32px;

    margin-bottom:18px;

}

/* TEXT */

.timeline-card p{

    color:#7C7C7C;

    line-height:1.8;

    margin:0;

}

/* ========================================= */
/* CTA FIX */
/* ========================================= */

.cta-section{

    padding:120px 0;

}

.cta-box{

    background:linear-gradient(
        135deg,
        rgba(149,219,23,0.12),
        rgba(149,219,23,0.04)
    );

    border-radius:32px;

    padding:80px;

    text-align:center;

}

.cta-box h2{

    margin:20px 0;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 30px;

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:991px){

    .timeline-line{

        left:25px;

    }

    .timeline-dot{

        left:25px;

    }

    .timeline-item{

        justify-content:flex-start !important;

        padding-left:70px;

    }

    .timeline-card{

        width:100%;

    }

}

@media(max-width:767px){

    .timeline-section{

        padding:80px 0;

    }

    .timeline-card{

        padding:30px;

    }

    .timeline-card span{

        font-size:48px;

    }

    .timeline-card h3{

        font-size:26px;

    }

    .cta-box{

        padding:50px 25px;

    }

}