/*=====================================
PROCESS SECTION
=====================================*/

.process-section{

    padding:110px 0;

    background:#F7F9FC;

}

.process-section .container{

    max-width:1400px;

    margin:auto;

    padding:0 20px;

}

.process-section .section-header{

    text-align:center;

    margin-bottom:70px;

}

.process-section .section-subtitle{

    color:#E53935;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

}

.process-section h2{

    margin:15px 0;

    font-size:44px;

    color:#0E2A57;

    font-weight:800;

}

.process-section .section-header p{

    color:#6E7B8B;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:2;

}

.process-timeline{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:0;

}

.process-item{
    width:250px;

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    min-height:320px;
}
.process-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.process-number{

    position:absolute;

    top:18px;

    left:20px;

    font-size:14px;

    color:#E53935;

    font-weight:700;

}

.process-icon{

    width:82px;

    height:82px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#0E2A57;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.process-item h3{

    color:#0E2A57;

    font-size:22px;

    margin-bottom:12px;

}

.process-item p{

    color:#6E7B8B;

    line-height:1.9;

    font-size:15px;

}

.process-line{

    width:70px;

    height:3px;

    background:#E53935;

    position:relative;

}

.process-line::after{

    content:"⮜;

    position:absolute;

    right:-10px;

    top:-13px;

    color:#E53935;

    font-size:22px;

}

@media(max-width:992px){

.process-timeline{

flex-direction:column;

}

.process-line{

width:3px;

height:60px;

}

.process-line::after{

content:"▼";

left:-8px;

top:42px;

}

.process-item{

width:100%;

max-width:400px;

}

}

.process-number{
    opacity: 0;
}