#stats {
    padding-top: 70px;
    text-align: center;
}

#stats h3 {
    margin-bottom: 15px;
}

.stats-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    padding: 35px;
    text-align: center;
}


.stat-title {
    font-size: var(--site-heading-size);
    color: var(--site-black);
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 600;
}

.stat-desc {
    font-family: Caveat;
    font-size: 24px;
    font-weight: bold;  
    color: var(--site-text);
}

#stats .description {

}

.stat-icon {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
}

@media (min-width: 980px) {
   .stat-item:not(:last-child) {
        border-right: 1px solid #E0E0E0;
    }
}

@media (max-width: 980px) {
    #stats {
        padding-bottom: 40px;
        margin: 0px;
    }

   .stats-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}