.number-stats {
    background: var(--primary);
}

.number-stats__wrap {
    margin-top: -42px;
    position: relative;
    z-index: 5;
}

.number-stats__wrap .row {
    --bs-gutter-x: 33px;
    gap: 25px 0;
}

.number-stat {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px 0 rgba(48, 16, 99, 0.08);
    padding: 30px 10px 26px;
    text-align: center;
    height: 100%;
}

.number-stat__number {
    margin: 0 0 5px;
    padding: 1px 0;
    font-size: 32px;
    line-height: 1.2em;
    color: var(--primary);
    font-weight: 700;
    display: block;
    position: relative;
    z-index: 1;
}

.number-stat__number::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F3EDFC;
    border-radius: 20px;
    z-index: -1;
}

.number-stat__info {
    margin: 0 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--text-color);
    font-weight: 400;
    display: block;
}

@media (min-width: 768px){
    .number-stats__wrap {
        margin-top: -42px;
    }

    .number-stats__wrap .row {
        --bs-gutter-x: 32px;
        gap: 32px 0;
    }

    .number-stat {
        padding: 38px 12px 38px;
    }

    .number-stat__number {
        margin: 0 0 2px;
        padding: 0 0 6px;
        font-size: 50px;
        line-height: 1em;
    }

    .number-stat__number::before {
        left: 50%;
        top: 12px;
        width: 192px;
        height: 40px;
        transform: translate(-50%, 0);
    }

    .number-stat__info {
        font-size: 20px;
        line-height: 1.2em;
    }

}

@media (min-width: 1200px){
    .number-stats__wrap {
        margin-top: -50px;
    }

    .number-stat {
        padding: 57px 12px 58px;
    }

    .number-stat__number {
        margin: 0 0 0;
        padding: 0 0 6px;
        font-size: 65px;
    }

    .number-stat__number::before {
        top: 24px;
        width: 212px;
    }

    .number-stat__info {
        font-size: 20px;
        line-height: 1.2em;
    }

}

