.vc-steps {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #FFF;
}

.vc-steps .step-item {
    width: 345px;
    padding: 50px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.vc-steps .step-item .step-number {
    position: absolute;
    display: block;
    top: 10px;
    left: calc(50% - 10px);
    background-color: #0082FF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}

.vc-steps .step-item .step-number::before {
    content: "";
    display: block;
    width: 4px;
    height: 11px;
    position: absolute;
    top: -10px;
    left: calc(50% - 2px);
    background-color: #0082FF;
}

.vc-steps .step-item .step-title {
    flex: 1 1 auto;
    min-height: 80px;
}

.vc-steps .step-item .step-text {
    flex: 1 1 auto;
}

.vc-steps .step-item.step-1 {
    background-color: #001C3A;
}

.vc-steps .step-item.step-2 {
    background-color: #002E5F;
}

.vc-steps .step-item.step-3 {
    background-color: #004A90;
}

.vc-steps .step-item.step-4 {
    background-color: #005FBA;
}

@media (max-width:991px) {
    .vc-steps {
        flex-direction: column;
    }

    .vc-steps .step-item {
        width: 100%;
    }

    .vc-steps .step-item .step-title {
        min-height: 30px;
    }
}