/* Wrapper row */
.ct-process-row {
    position: relative;
}

/* Horizontal line across ALL steps */
.ct-process-row::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

/* Each step */
.ct-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon styling */
.ct-step .vc_icon_element i {
    font-size: 28px;
    color: #000;
}

/* Hover effect */
.ct-step:hover .vc_icon_element {
    border-color: #f5b400;
}

/* Titles */
.ct-step h4 {
    font-size: 14px;
    margin-bottom: 0px;
}

/* Description */
.ct-step p {
    font-size: 14px;
    opacity: 0.7;
}

.ct-pill-btn {
    border-radius: 40px !important;
}