#flow-slider {
    margin-top: 20px
}

.flow-space {
    padding-top: 140px;
    padding-bottom: 140px
}

.flow-title {
    padding-bottom: 60px;
    position: relative;
    z-index: 9
}

.flow-title h2  {
    font-size: 18px;
    color: #fff;
    font-weight: 400
}
.workflow_main .flow-title h2{
	color: #202020 !important;
}

.flow-title h3 {
    font-size: 50px;
    font-weight: 400;
    color: #fff
}

.flow-line {
    top: 24.1%;
    left: 0;
    position: relative
}

.flow-line::before {
    content: '';
    width: 70px;
    height: 2px;
    background-color: #54b946;
    position: absolute;
    top: 62px;
    left: 0;
    transition: .3s;
    z-index: 9999;
    animation: moveLeftToRight 15s linear infinite
}

@keyframes moveLeftToRight {
    0% {
        left: 0%
    }

    100% {
        left: 100%
    }
}

.workflow-slide {
    position: relative
}

.workflow-slide::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    top: 61.5px;
    background-color: #1e1e1e
}

.workflow-slide::after {
    content: '';
    position: absolute;
    top: 18%;
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #54b946;
    border: 2px solid #fff;
    z-index: 999;
    animation: wcBubble 1.5s 1s infinite;
    transition: .3s
}

@keyframes wcBubble {
    0% {
        transform: scale(1.1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1.1)
    }
}

.workflow-slide h4 {
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    padding-bottom: 50px;
    font-weight: 400;
    text-transform: capitalize
}
.workflow_main .workflow-slide h4{
	color: #202020 !important;
}
.workflow-slide h5 {
    font-size: 85px;
    color: #1a1a1a;
    font-weight: 500
}

.workflow-slide h6 {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 15px
}
.workflow_main .workflow-slide h6{
	color: #202020 !important;
}

.workflow-slide p {
    max-width: 230px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    font-weight: 400
}