.process-section .main-title{
    margin-bottom: 48px;
}

.process-section .process-count{
    background-color: var(--secondary-color);
    font-size: var(--font-24);
    color: var(--white-color);
    font-weight: 700;
    font-family: var(--primary-font);
    padding: 25px;
    border-radius: 50%;
    display: inline-block;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;

}       

.process-section .process-name{
    color: #2C3641;
    font-weight: 700;
    font-size: var(--font-18);
    margin-top: 24px;
    font-family: var(--secondary-font);
}


.process-section .process-list {
    position: relative;
}


.process-section .process-list::before {
    content: "";
    position: absolute;
    top: 40px; 
    left: calc(16.666% / 2);
        right: calc(3.666% / 2);
    border-top: 2px dashed #c9b3e5;
    z-index: 1;
}


.process-section .process-list::after {
    content: "❯";
    position: absolute;
    top: 27.5px;
    right: 17px;
    color: #c9b3e5;
    font-size: 18px;
    font-weight: 300;
    z-index: 1;
}


/* Arabic Language Style Start */
[lang="ar"] .process-section .process-list::before {
    content: "";
    position: absolute;
    top: 40px;
    /* right: calc(16.666% / 3);   
    left: calc(3.666% / 3);  */

    right: calc(16.666% / 2);
        left: calc(3.666% / 2);
    border-top: 2px dashed #c9b3e5;
    z-index: 1;
}

[lang="ar"] .process-section .process-list::after{
    left: 17px;
    right: unset;
}



@media screen and (max-width: 991px) {
    .process-section .process-count{
        height: 60px;
        width: 60px;
    }
    .process-section .process-list::before{
        top: 30px;
    }

    .process-section .process-list::after{
        top: 17.5px;
    }
}

@media screen and (max-width: 767px) {

    .process-section .process-list::before {
        top: 0;
        left: 45px;
        right: auto;
        width: 0;
        height: 100%;
        border-top: none;
        border-left: 2px dashed #c9b3e5;
        transform: translateX(-50%);
    }

    .process-section .process-name{
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .process-section .process-list::after {
        content: "❯";
        top: auto;
        bottom: -15px;
        left: 45px;
        right: auto;
        transform: translateX(-50%) rotate(90deg);
    }

    .process-section .process-item{
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .process-section .process-count{
        height: 60px;
        width: 60px;
    }
}


@media screen and (max-width: 640px){
   
}