
/*=========================================
Process
=========================================*/
.process-section{
    background:#fff;
    }
    .process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    height:100%;
    text-align:center;
    transition:.35s;
    position:relative;
    box-shadow:var(--shadow-sm);
    }
    .process-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .process-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:26px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    }
    .process-card h3{
    margin-bottom:15px;
    font-size:1.35rem;
    }
    .process-card p{
    margin:0;
    color:var(--light-text);
    }
    @media(max-width:767px){
    .process-card{
    padding:30px;
    }
    }