/*
====================================================
SECTION STATISTIQUES
====================================================
*/

.stats{

    padding:120px 0;

    background:#0057B8;

    color:#fff;

}

.stats .section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.stats .section-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.stats .section-header h2{

    font-size:46px;

    margin:20px 0;

    color:#fff;

}

.stats .section-header p{

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.85);

}

/*
====================================================
GRILLE
====================================================
*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*
====================================================
CARTE
====================================================
*/

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    backdrop-filter:blur(8px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.14);

}

/*
====================================================
CHIFFRES
====================================================
*/

.stat-number{

    display:block;

    font-size:56px;

    font-weight:700;

    color:#fff;

    margin-bottom:18px;

    line-height:1;

}

.stat-card h3{

    font-size:22px;

    font-weight:600;

    color:#fff;

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:1200px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .stats{

        padding:80px 0;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stats .section-header{

        margin-bottom:50px;

    }

    .stats .section-header h2{

        font-size:34px;

    }

    .stats .section-header p{

        font-size:16px;

    }

    .stat-card{

        padding:40px 25px;

    }

    .stat-number{

        font-size:46px;

    }

}