html, body {
  overflow-x: hidden;
}


.application-process {
    position: relative;
    /* margin: 0 auto; */
    background: linear-gradient(182.69deg, rgba(229, 229, 229, 0.27) 2.12%, rgba(127, 127, 127, 0.2214) 94.62%);
}

.process-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    /* gap: 80px; */
        max-width: 950px;
    margin: 0 auto;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 10px;               /* <<< KEEP THIS VERY SMALL */
    height: 100%;
    transform: translateX(-50%);
    background-image:
        repeating-linear-gradient(
            to bottom,
            #4B4646 0 0px,        /* 2px THICKNESS ALWAYS */
            transparent 2px 42px /* 40px GAP */
        );
}


.step-box {
    width: 44%;
}

.step-label {
    background: var(--primary-color);
    color: #385756;
    font-weight: 700;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
    line-height: 34px;
    /* position: absolute;
    top: 35%; */
    border: 2px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-title {
    margin-bottom: 10px;
    width: fit-content;
}

.process-step.left .step-title {
    margin-left: auto;
}

.process-step,
.process-step.left,
.process-step.right {
    position: relative;
}

/* .process-step:not(:first-child) {
    margin-top: -45px;
} */

.description-text.step-description img{
    border-radius: 9px;
}

/* .process-step.left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    height: 0;
    border-top: 2px dashed #008a34;
    z-index: -1;
    transform: translateY(-50%);
}

.process-step.right::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 0;
    border-top: 2px dashed #008a34;
    z-index: -1;
    transform: translateY(-50%);
} */

/* Left-aligned steps */
.process-step.left .step-box {
    margin-right: auto;
    text-align: right;
}

.process-step.left .step-label {
    position: absolute;
    top: 0;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translateX(-50%);
}

/* Right-aligned steps */
.process-step.right .step-box {
    margin-left: auto;
    text-align: left;
    /* margin-top: -45px; */
}

.process-step.right .step-label {
    position: absolute;
    top: 2%;
    right: 50%;
    transform: translate(50%, -50%);
}

.process-step .no-label .step-label {
    height: 16px;
    width: 16px;
}

/* .process-step:last-child .no-label .step-label {
    background-image: url('../images/verified.svg');
    height: 30px;
    width: 30px;
    border: none;
    background-repeat: no-repeat;
    background-position: center center;
} */

.process-step {
    overflow: visible;
}


.process-step.right .step-box::before {
    content: "";
    position: absolute;
    top: -3%;
    left: 50%;
    height: 100%;
    border: 1px dashed var(--light-black-color);
    transform: translateX(-50%);
}

.process-step.left .step-box::before {
    content: "";
    position: absolute;
    top: -3%;
    right: 50%;
    height: 100%;
    border: 1px dashed var(--light-black-color);
    transform: translateX(50%);
}

.process-step.left:nth-child(1) .step-box::before {
    top: -3%;
}

.process-step.left:last-child .step-box::before,
.process-step.right:last-child .step-box::before {
    top: -2%;
}

/* .process-wrapper h3 {
    color: #000000;
    font-size: var(--font-18);
    font-weight: 600;
} */

.process-wrapper ul {
    margin-left: 20px !important;
    padding: 0;
    margin-bottom: 10px;
}

.process-wrapper ul li::marker {
    color: #BBCE60;
}

.process-step .step-description p {
    margin-bottom: 10px;
}

.process-step .step-description p:last-child {
    margin-bottom: 0;
}

.process-wrapper ul li {
    line-height: 1.4em;
}

.process-wrapper ul li:not(:last-child) {
    padding-bottom: 10px;
}

@media screen and (max-width: 640px) {
    .process-step.left .step-title {
        margin-left: 0;
    }
    .process-step.left .step-box{
        text-align: left;
        margin-right: unset;
    }
    /* .process-step:not(:first-child) {
        margin-top: 0px;
    } */

    .process-step.right::before {
        right: unset;
        left: 6%;
    }

    .step-box {
        width: 95%;
        margin-left: auto;
    }

    .process-step.left .step-label,
    .process-wrapper::before,
    .process-step.left::before {
        left: 1.2%;
    }

    .process-step.right .step-label {
        right: unset;
        left: 1.2%;
        transform: translate(-50%, -50%);
    }


    .process-step.left .step-box::before {
        right: unset;
        left: 1%;
    }

    .process-step.right .step-box::before {
        left: 1.2%;
    }

    .process-step {
        padding-bottom: 50px;
    }

    /* .step-box {
        padding: 15px;
    } */
}

@media screen and (max-width: 640px){
    .process-step.right .step-box::before {
        left: 1.3%;
    }
}