/* ===========================================
   STATS SECTION
=========================================== */

.stats-section{

    position:relative;

    padding:100px 0;

    background:url("../images/bg/stats-bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.stats-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,35,80,.85);

}

.stats-section .container{

    position:relative;

    z-index:2;

}

.stats-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    color:#fff;

    transition:.35s;

    height:100%;

}

.stats-card:hover{

    transform:translateY(-10px);

    background:#ffffff;

    color:#111;

}

.stats-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffc107;

    color:#111;

    font-size:30px;

    transition:.35s;

}

.stats-card:hover .stats-icon{

    background:#0b4ea2;

    color:#fff;

    transform:rotate(10deg);

}

.stats-card h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:12px;

}

.stats-card h5{

    margin:0;

    font-size:18px;

    font-weight:600;

}

@media(max-width:991px){

    .stats-section{

        padding:70px 0;

    }

}

@media(max-width:576px){

    .stats-card{

        padding:30px 20px;

    }

    .stats-card h2{

        font-size:36px;

    }

}