/*
====================================================
SECTION PROCESSUS
====================================================
*/

.process{

    padding:120px 0;

    background:#f8fbff;

}

.process .section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.process .section-header h2{

    font-size:46px;

    color:#222;

    margin:20px 0;

}

.process .section-header p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

/*
====================================================
GRILLE
====================================================
*/

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

/*
====================================================
CARTE
====================================================
*/

.process-card{

    position:relative;

    background:#fff;

    padding:45px 35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*
====================================================
NUMÉRO
====================================================
*/

.process-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:14px;

    font-weight:700;

    color:#0057B8;

    opacity:.25;

}

/*
====================================================
ICÔNE
====================================================
*/

.process-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#EAF3FF;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    font-size:38px;

    color:#0057B8;

}

/*
====================================================
TEXTE
====================================================
*/

.process-card h3{

    font-size:24px;

    color:#222;

    margin-bottom:18px;

}

.process-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:1200px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .process{

        padding:80px 0;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

    .process .section-header{

        margin-bottom:50px;

    }

    .process .section-header h2{

        font-size:34px;

    }

    .process .section-header p{

        font-size:16px;

    }

    .process-card{

        padding:40px 30px;

    }

}