/* ==========================================================
   STATISTICS
========================================================== */

.home-statistics{
    padding:100px 0;
    background:#7B1113;
}

/* Section Header */

.home-statistics .section-header .section-tag,
.home-statistics .section-header h2,
.home-statistics .section-header p{
    color:#fff;
}

/* Grid */

.statistics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Card */

.stat-card{
    padding:40px 20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;

    background:rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        background .35s ease;
}

.stat-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
}

/* Number */

.stat-number{
    display:block;
    margin-bottom:15px;

    font-size:3rem;
    font-weight:700;
    line-height:1;

    color:#fff;
}

/* Label */

.stat-card h3{
    margin:0;
    color:#fff;
    font-size:1.2rem;
    font-weight:500;
}

