.stats {
    position: relative;
    margin: 25px 0;
    color: #333333;
}

.stats__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 15px 24px;
}

.stats__col {
    width: calc(255px - 78px);
    text-align: center;
    margin-left: -12px;
    margin-right: -12px;
}

.stats__col h4 {
    margin: 0;
    padding: 0 0 4px;
    color: #ED1C24;
    font-size: 25px;
    font-weight: 700;
    font-family: "Montserrat", serif;
    line-height: normal;
}

.stats__col p {
    line-height: 1.375em;
}

@media(min-width: 768px) {
    .stats {
        margin: 22px 0;
    }
    
    .stats__wrap {
        gap: 15px 32px;
    }
    
    .stats__col {
        width: auto;
        margin: 0;
        max-width: 155px;
    }
    
    .stats__col h4 {
        padding: 0 0 2px;
        font-size: 30px;
    }
}

@media(min-width: 1200px) {
    .stats__wrap {
        gap: 15px 40px;
        justify-content: flex-start;
    }
    
    .stats__col {
        max-width: inherit;
    }
    
    .stats__col h4 {
        font-size: 35px;
    }
}
