.statistics-group>.field-wrapper {
    display: flex;
    gap: 30px;
}

.statistics-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;

    .number {
        color: var(--primary-color);
        font-size: 2rem;
        font-weight: 500;
        font-family: var(--font-heading);
    }

    .text {
        color: var(--color-grey);
        font-size: 14px;
        font-weight: 400;
        font-family: var(--font-heading);
    }
}

.statistics-item+.statistics-item::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: 15%;
    width: 1px;
    height: 29px;
    background-color: var(--color-grey);
    opacity: 0.7;
}