.percentages {
    background-color: #181818;    
}

.percentages--transparent {
    background-color: transparent;    
}

.percentages__content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
}

.percentages__item {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

@media (min-width: 768px) {
    .percentages__item {
        column-gap: 32px;
    }
}

.percentages__item--stacked {
    flex-direction: column;
}

.percentages__label {
    font-size: 12.8px;
    font-weight: 250;
    line-height: 19.2px;
    letter-spacing: 0.2em;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .percentages__label {
        font-size: 14px;
        font-weight: 250;
        line-height: 24px;
        letter-spacing: 0.2em;
        text-align: center;
    }
}

.percentages__value {
    background-image: linear-gradient(151.56deg, #FF0E69 20.63%, #FF6726 125.78%);
    color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 35px;
    line-height: 30px;
}

@media (min-width: 768px) {
    .percentages__value {
        font-size: 61.04px;
        line-height: 76.3px;
    }
}