.stepNumber {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stepNumber span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.stepWrapper {
    display: flex;
    padding: 0 20px;
    z-index: 2;
}

.stepProcess.padV200 {
    padding-bottom: 160px;
}

.stepRow .col-sm-4 {
    margin-bottom: 40px;
}

.stepNumber:after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    right: -50%;
    z-index: 1;
    background: var(--wpr-bg-c3aa250a-7726-406b-8250-ee14a8049c24) repeat-x;
    background-size: 100% auto;
}

.stepRow>div:last-child .stepNumber:after {
    display: none;
}

.stepRow .col-sm-4 {
    position: relative;
}

.stepWrapper span.btn {
    pointer-events: none;
    padding: 13px 35px;
    font-weight: 400 !important;
    font-size: 22px;
    line-height: 30px;
    border-radius: 30px;
    background-color: transparent !important;
    color: var(--brandCol-2);
    font-family: var(--fontHeading);
    border: 3px solid var(--brandCol-2)
}

.stepContent {
    font-size: 18px;
    line-height: 22px;
}

.stepTitle h4 {
    margin-bottom: 0 !important;
}

@media screen and (max-width:1024px) {
    .stepProcess.padV200 {
        padding-bottom: 80px
    }
}

@media screen and (max-width:767px) {
    .stepNumber:after {
        display: none;
    }

    .stepNumber {
        margin-bottom: 10px
    }

    .stepContent>p {
        margin-top: 8px
    }

    .stepRow .col-sm-3:after {
        content: '';
        display: block;
        height: 50px;
        width: 1px;
        position: absolute;
        left: calc(50% - 1px);
        border-right: 1px dashed #AAAAAA;
        z-index: 1;
        bottom: -75px;
    }

    .stepRow .col-sm-3 {
        margin-bottom: 100px;
        position: relative;
    }

    .stepRow .col-sm-3:last-child {
        margin-bottom: 0px;
    }


    .stepRow .col-sm-3:last-child:after {
        display: none;
    }
}