/* START STATISTICS STYLE*/
.statistics {
    background-image: url(../images/st-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.statistics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.308);
}

.statistics .stats-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.statistics .stats-list .stat {
    background-color: rgba(255, 255, 255, 0.356);
    border-radius: var(--radius);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.statistics .stats-list .stat:hover {
    transform: scale(1.05);
    background-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.statistics .stat-icon {
    font-size: 2rem;
    color: var(--main-color);
}

.statistics .stat-value {
    margin: 1rem 0;
    font-size: 3rem;
}

.statistics .stat-label {
    color: var(--main-color);
    font-size: 1.5rem;
    margin: 0;
}

/* END STATISTICS STYLE*/