.workflow-page{

    padding: 180px 0 120px;

    background: #f8f9fa;

}

.workflow-header{

    margin-bottom: 120px;

}

.workflow-header h1{

    font-size: 68px;
    font-weight: 800;

    color: #1D3557;

    margin: 20px 0;

}

.workflow-header p{

    font-size: 18px;

    color: #6c757d;

    max-width: 850px;

    margin: auto;

    line-height: 1.9;

}

/* =========================================
   TIMELINE
========================================= */

.timeline-wrapper{

    position: relative;

    max-width: 1200px;

    margin: auto;

}

.timeline-wrapper::before{

    content: '';

    position: absolute;

    width: 6px;

    background:
    linear-gradient(
        180deg,
        #F7E887,
        #1D3557
    );

    top: 0;
    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    border-radius: 30px;

}

.timeline-item{

    position: relative;

    width: 50%;

    padding: 30px 60px;

}

.timeline-item.left{

    left: 0;

}

.timeline-item.right{

    left: 50%;

}

.timeline-content{

    position: relative;

    background: #fff;

    padding: 45px;

    border-radius: 35px;

    box-shadow: 0 15px 60px rgba(0,0,0,0.08);

    transition: 0.4s ease;

}

.timeline-content:hover{

    transform: translateY(-10px);

}

.timeline-number{

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        #F7E887,
        #1D3557
    );

    color: #fff;

    font-size: 26px;
    font-weight: 800;

    margin-bottom: 30px;

}

.timeline-content h2{

    font-size: 36px;
    font-weight: 800;

    color: #1D3557;

    margin-bottom: 20px;

}

.timeline-content p{

    color: #6c757d;

    line-height: 1.9;

}

@media(max-width:991px){

    .timeline-wrapper::before{

        left: 20px;

    }

    .timeline-item{

        width: 100%;

        left: 0 !important;

        padding-left: 70px;

        padding-right: 0;

    }

}

@media(max-width:768px){

    .workflow-header h1{

        font-size: 42px;

    }

    .timeline-content{

        padding: 35px;

    }

}