.proc-container {
    position: relative;
    /*overflow: hidden;*/
}
.proc-steps .slick-list {
    padding: 0 !important;
}
.proc-line {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    width: 93%;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.36) 100%);
}
.proc-arrow {
    position: absolute;
    right: -5px;
    top: -13px;
}
.proc-arrow i {
    color: rgba(255, 255, 255, 0.36);
    font-size: 30px;
}
.proc-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 1364px;
    margin: 0 auto;
}
.proc-step {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 20% !important;
    text-align: center;
}
.proc-dot {
    position: relative;
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
    border-radius: 50%;
    border: 4px solid rgb(255 255 255 / 67%);
    background-color: #01a7cf;
    margin: 0 auto 40px;
    transition: border-color 0.9s, background 0.9s, box-shadow 0.9s;
    box-sizing: border-box;
}
.proc-step.active-step .proc-dot {
    border-color: #fff;
    background: #16e2b3;
    box-shadow: 0 0 0 12px rgb(255 255 255 / 39%);
    transition: border-color 0.9s, background 0.9s, box-shadow 0.9s;
}
.proc-step.active-step .proc-dot::after {
    background: #16e2b3;
    border: 3px solid #fff;
}
.proc-label {
    color: #fff;
    word-break: break-word;
    max-width: 238px;
}
.proc-steps .slick-track {
    margin-top: 13px;
}
.proc-steps.slick-slider {
    cursor: e-resize;
}
.has-slider .proc-line {
    top: 29px;
}
@media (max-width: 1500px) {
    .proc-line {
        width: calc(100% - 25px);
    }
}
@media (max-width: 767px) {
    .proc-container {
        padding-top: 30px;
        margin-top: 25px;
    }
    .proc-line {
        top: 0 !important;
        width: 4px;
        height: calc(100% - 80px);
        left: 48px;
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.36) 100%);
    }
    .proc-arrow {
        bottom: 0;
    }
    .proc-steps:not(.slick-slider) {
        flex-direction: column;
    }
    .proc-steps {
        margin-bottom: 50px;
    }
    .proc-steps .slick-track {
        flex-direction: column;
    }
    .proc-step {
        margin: 0 0;
        padding-bottom: 40px;
        width: 100% !important;
        flex-direction: row;
        text-align: left;
        align-items: self-start;
        border: none !important;
        min-height: auto;
    }
    .proc-dot {
        min-width: 30px;
        max-width: 30px;
        min-height: 30px;
        max-height: 30px;
        margin: 0 43px 0 22px;
        background-color: #03d5b1;
    }
    .proc-arrow {
        display: flex;
        align-items: end;
        bottom: 0;
        right: -7px;
    }
    .proc-arrow i {
        transform: rotate(90deg);
        margin-bottom: -7px;
    }
    .proc-label .heading-4 {
        font-size: var(--f-fs-font-20);
        line-height: var(--f-fs-font-20);
    }
    .proc-steps .slick-list {
        padding: 0 0 50px !important;
    }
}