.numbers-wrapper {
    background: linear-gradient(90deg, #0B052E 0%, #160959 100%);
    width: 100%;
    justify-content: space-between;
    border-radius: clamp(24px, 3vw, 40px);
    padding: clamp(24px, 3vw, 40px);
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    gap: 24px;
    background-image: url(../../img/numbers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    .number-item {
        min-width: clamp(72px, 7vw, 100px);
        .item-number {
            font-size: clamp(24px, 3vw, 32px);
            color: var(--color2);
            font-family: var(--SemiBold);
            &:after {
                content: "+";
            }
        }
        p {
            font-size: clamp(14px, 2vw, 18px);
            font-family: var(--Regular);
            line-height: 30px;
            color: white;
        }
    }
    .number-item:nth-child(5) {
        grid-column: span 2;
    }
}
@media only screen and (min-width: 1024px) {
    .numbers-wrapper {
        grid-template-columns: repeat(5, 1fr);
        gap: clamp(80px, 8vw, 120px);
        .number-item:nth-child(5) {
            grid-column: auto;
        }
    }
}
