.aboutDigits{
    display: flex;
    height: 426px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 100%);
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    align-items: flex-end;
    padding: 30px;
    gap: 79px;
    margin-bottom: 40px;
}
.aboutDigits__bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.aboutDigits__item{
    display: block;
    color: var(--text-light);
}
.aboutDigits__value{
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}
.aboutDigits__text{
    display: block;
}
@media screen and (max-width: 768px){
    .aboutDigits{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 20px;
        height: auto;
    }
}