.process-item .circle {
    display: flex;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--bs-green);
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 0;
}
.process-item span.counter {
    font-size: 50px;
    font-size: 3.1em;
    font-weight: 700;
    line-height: 50px;
}
.process-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 0 50px;
    margin-bottom: 30px;
}
.dark .process-description {
    color: #fff;
}
span.line-up {
    width: 1px;
    height: 130px;
    position: relative;
    background: #fff;
    top: 15px;
    right: 0;
    display: table;
}
span.line-up:after {
    content: "";
    width: 40px;
    height: 40px;
    background: transparent;
    position: absolute;
    bottom: -48px;
    right: -20px;
    transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
span.line-down {
    width: 1px;
    height: 130px;
    position: relative;
    background: #fff;
    bottom: 14px;
    right: 0;
}

.process-line {
    display: flex;
    flex-direction: column;
    gap: 85px;
    position: absolute;
    right: -5px;
}

.process-item .circle:before {
    width: 30px;
    height: 30px;
    background: #fff;
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 17px;
}

@media(max-width: 992px){
    .process-steps .col {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .process-steps .col.last-item {
        margin-bottom: 34px;
    }
    .process-line {
        flex-direction: row;
        right: 0;
        width: 100%;
        gap: 56px;
        justify-content: center;
        align-items: center;
        bottom: 0;
    }
    span.line-up {
        width: 130px;
        height: 1px;
        top: 0;
        right: auto;
        left: 0;
        display: table;
    }
    span.line-down {
        width: 130px;
        height: 1px;
        bottom: auto;
        right: 0;
    }
    span.line-up:after {
        width: 40px;
        height: 40px;
        bottom: -19px;
        right: -48px;
        transform: rotate(45deg);
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        border-top: 0;
    }
}

@media(max-width: 767px) {

}

@media(max-width: 478px){

}

@media(max-height: 420px) {

}

@media(min-width: 1200px) {
    .process-steps .col:nth-child(3n) span.line-up, .process-steps .col:nth-child(3n) span.line-down {
        display: none;
    }
}