

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

/* MAIN WRAPPER */
.process-wrapper{
    width:100%;
    /*max-width:1500px;*/
    margin:30px auto;
    padding:18px;
    background:#0C1D49;
    border-radius:20px;
    box-shadow:0 3px 15px rgba(0,0,0,0.05);
    overflow:hidden;
}

/* SCROLL AREA */
.process-scroll{
    width:100%;
    overflow-x:auto;
    scrollbar-width:none;
}

.process-scroll::-webkit-scrollbar{
    display:none;
}

/* ALL STEPS */
.process{
    display:flex;
    align-items:center;
    /*min-width:1420px;*/
    gap:30px;
}

/* EACH BOX */
.step{
    position:relative;
    width:135px;
    /*min-width:135px;*/
    height:190px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    padding:12px 8px;

    border-radius:14px;

    background:#E4E7EB;

    text-align:center;
}

/* Alternate background */
.step:nth-child(even){
    background:#E4E7EB;
}

/* NUMBER */
.step-number{
    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#12427d;
    color:#fff;

    font-size:14px;
    font-weight:bold;

    margin-bottom:13px;
}

/* ICON */
.step-icon{
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#173f72;

    font-size:30px;

    margin-bottom:8px;
}

/* TITLE */
.step-title{
    color:#173b6c;
    font-size:13px;
    line-height:1.4;
    font-weight:700;
}

/* ARROW */
.step:not(:last-child)::after{
    content:"→";

    position:absolute;

    right:-25px;
    top:50%;

    transform:translateY(-50%);

    color:#2874c6;

    font-size:20px;
    font-weight:bold;

    z-index:5;
}

/* FIRST STEP HIGHLIGHT */
.step.active{
    background:#e5f1ff;
    box-shadow:0 4px 12px rgba(30,100,180,0.08);
}

/* RESPONSIVE */
@media(max-width:700px){

    .process-wrapper{
        margin:15px auto;
        padding:12px;
        border-radius:12px;
    }

    .process{
        min-width:1400px;
        gap:15px;
    }

    .step{
        width:125px;
        min-width:125px;
        height:180px;
    }

    .step-title{
        font-size:14px;
    }

}