.stats-section {
    padding-top: 50px;
}

.stat-card {
    background-color: #E8E1E1;
    border: 1.5px solid rgba(200, 16, 46, .4);
    border-radius: var(--radius);
    padding: 30px 16px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(200, 16, 46, .4);
}

.stat-value {
    display: block;
    color: var(--primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

.stats-section .row > div:nth-child(1) .stat-card {
    transition-delay: 0s;
}

.stats-section .row > div:nth-child(2) .stat-card {
    transition-delay: .1s;
}

.stats-section .row > div:nth-child(3) .stat-card {
    transition-delay: .2s;
}

.stats-section .row > div:nth-child(4) .stat-card {
    transition-delay: .3s;
}
