
.stats-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1.875rem;
}

.stats-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-item p {
    color: var(--black-additional);
}

.count-animated {
    display: inline-block;

}

.count-animated_right {
    text-align: end;
}

.stats-item__title {
    font-weight: 600;
    font-size: 3rem;
    line-height: 3.375rem;
    color: var(--light-blue-main);
}


@media (max-width:1000px) {

    .stats-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width:768px) {

    .stats-item__title {
        font-size: 1.875rem;
        line-height: 2rem;
    }

    .stats-item p {
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 500;
    }
}