.numbers__card {
    padding: 16px 20px;
    border-width: 3px;
    border-style: solid;
    border-radius: 14px;
    border: 2px solid transparent;
    background: linear-gradient(#000000, #08090a) padding-box, linear-gradient(145deg, #ffffff38 0%,
            /* white start */
            #1e1e1e5e 15%,
            /* quickly shift to black */
            #000000 100%) border-box;
}


.numbers__card-inner {
    background-image: url(../../images/number-bg.png);
    padding: 32px 24px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.numbers__graph {
    margin-top: 33px;
    margin-bottom: 46px;
    position: relative;
}

.numbers__graph--line {
    position: absolute;
    bottom: 1px;
}

.mobile-graph {
    display: none;
}

.numbers__graph--line svg {
    width: 100%;
}

.numbers__stats {
    display: flex;
    gap: 84px;
}

.numbers__value {
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.numbers__text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.numbers__label {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    position: relative;
    padding-left: 24px;
    font-weight: var(--fw-regular);
}

.numbers__label::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #5461AF;
    position: absolute;
    left: 0;
    margin-top: 3px;
}

.numbers__graph-img--mobile {
    display: none;
}

@media screen and (max-width: 1399px) {
    .numbers__graph--line svg {
        width: 760px;
        height: 180px;
    }
    .numbers__desc{
        max-width: 80%;
    }
    .numbers__desc br{
        display: none;
    }
}

@media screen and (max-width: 1199px) {



    .numbers__graph--line {
        position: absolute;
        bottom: -34px;
    }

    .numbers__graph--line svg {
        width: 610px;
        height: 213px;
    }

    .numbers__stats {
        gap: 70px;
    }

    .numbers__value {
        font-size: 26px;
        line-height: 34px;
    }
}

@media screen and (max-width: 991px) {
    .numbers__graph {
        margin-bottom: 30px;
    }

    .numbers__graph--line svg {
        width: 470px;
        height: 233px;
    }

    .numbers__stats {
        gap: 30px;
    }

    .numbers__value {
        font-size: 22px;
        line-height: 30px;
    }

    .numbers__text {
        font-size: 12px;
    }

    .numbers__graph--line {
        bottom: -60px;
    }



}

@media screen and (max-width: 767px) {
    .numbers__card {
        padding: 10px 10px;
    }

    .numbers__card-inner {
        padding: 20px 20px;
    }

    .numbers__label {
        font-size: 14px;
    }

    .numbers__graph-img--desktop {
        display: none;
    }

    .numbers__graph-img--mobile {
        display: block;
    }

    .desktop-graph {
        display: none;
    }

    .mobile-graph {
        display: block;
        bottom: 0;
    }

    .numbers__graph--line.mobile-graph svg {
        width: 100%;
        height: auto;
    }

    .numbers__stats {
        row-gap: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

}

@media screen and (max-width: 575px) {
    .numbers__desc{
        width: 100%;
    }
    .numbers__stats {
        row-gap: 15px;
    }

    .numbers__label::before {
        width: 13px;
        height: 13px;
    }

    .numbers__label {
        font-size: 12px;
        padding-left: 20px;
    }

    .numbers__value {
        font-size: 20px;
        line-height: 28px;
    }

    .numbers__text {
        font-size: 12px;
        line-height: 16px;
    }
    .numbers__graph--line.mobile-graph svg {
        width: 90%;
    }
    .numbers__graph {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}
