.stat-neo__container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stat-neo__item {
    text-align: center;
    color: var(--main-blue);
    font-family: inherit;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.stat-neo__item .subtitle-2 {
    text-align: center;
}

.stat-neo__value {
    position: relative;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 22px;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 4rem;
}

.stat-neo__value::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(69, 119, 216, 0.4);
    transform: translateX(-50%);
}

@media (max-width: 1200px) {


    .stat-neo {
        padding: 30px 0;
    }

    .stat-neo__container {
        grid-template-columns: 1fr;
        row-gap: 24px;

    }

    .stat-neo__value {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .stat-neo__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 30px;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .stat-neo__container {
        max-width: 100%;
        padding: 0 16px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 28px;
        justify-items: center;
        align-items: start;
    }

    .stat-neo__item {
        width: 100%;
        max-width: 170px;
    }

    .stat-neo__value {
        font-size: 2.4rem;
        margin-bottom: 14px;
        padding-bottom: 8px;
        line-height: 1;
    }

    .stat-neo__value::after {
        width: 110px;
    }
}