.numbers {
    position: relative;
    padding: 45px 0;
}

.numbers.dark {
    padding: 120px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    .numbers {
        padding: 120px 0;
    }
}

.numbers.dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.25) 80%, rgba(0,0,0,1));
}

.numbers .inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 35px;
    max-width: 1460px;
    box-sizing: content-box;
}

.numbers .title {
    margin: 0 auto 40px;
    font-size: 30px;
    font-weight: 100;
    text-align: center;
    max-width: 970px;
}

@media (min-width: 1024px) {
    .numbers .title {
        font-size: 70px;
    }
}

.numbers .subhead {
    margin: 0 auto 48px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    max-width: 953px;
}

@media (min-width: 1024px) {
    .numbers .subhead {
        font-size: 30px;
        line-height: 1.8;
    }
}

.numbers .number-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.numbers .number-list .list-item {
    margin-bottom: 30px;
    padding: 0 30px;
    max-width: 232px;
    box-sizing: content-box;
}

.numbers .number-list .number {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
}

.numbers .number-list p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 1024px) {
    .numbers .number-list .number {
        font-size: 60px;
    }
    
    .numbers .number-list p {
        font-size: 20px;
        line-height: 1.8;
    }
}