/*==================================
STATISTICS
==================================*/

.statistics{
    padding:100px 0;
    background:#0b4d2d;
}

.statistics .section-title{
    text-align:center;
    color:#fff;
    margin-bottom:60px;
}

.statistics .section-title span{
    color:#c99717;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.statistics .section-title h2{
    color:#fff;
    font-size:42px;
    margin:20px 0;
}

.statistics .section-title p{
    max-width:700px;
    margin:auto;
    color:#ddd;
    line-height:1.8;
}

.statistics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:15px;
    padding:40px 20px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:#c99717;
}

.stat-box h2{
    font-size:52px;
    color:#fff;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    color:#fff;
    font-size:18px;
    font-weight:500;
}

@media(max-width:992px){

.statistics-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.statistics-grid{
    grid-template-columns:1fr;
}

.statistics .section-title h2{
    font-size:32px;
}

.stat-box h2{
    font-size:40px;
}

}