.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 150px;
    width: 100%;
    height: 230px;
    background-color: #A80532;
    margin: 0;
}

.stats-item {
    color: white;
    text-align: center;
}

.stats-title,
.stats-number {
    margin-bottom: 30px;
}

.stats-number {
    margin-bottom: 10px;
    font-size: 44px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .stats-row {
        padding: 64px 32px;
        height: 422px;
        display: grid;
        gap: 32px;
        grid-template-rows: auto;
        grid-template-columns: repeat(2, 150px);
        justify-content: center;
    }

    .space {
        height: 450px;
    }
}