.container-padding {
    padding: 0 clamp(0.9375rem, 0.625rem + 1.5625vw, 2.5rem);
    ;
}

.cards-with-numbers-arrows-text__title {
    margin-bottom: 60px;
}

.cards-with-numbers-arrows-text__cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cards-with-numbers-arrows-text__card {
    flex: 0 0 calc(25% - 15px);
    border-top: 1px solid var(--main-blue);
    border: 1px solid #7B7D84;
    border-radius: 20px;
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cards-with-numbers-arrows-text__card:hover .cards-with-numbers-arrows-text__number {
    color: var(--main-blue);
    cursor: pointer;
}

.cards-with-numbers-arrows-text__text {
    font-weight: 300;
    font-style: Light;
    font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
    line-height: 110%;
    padding-left: 35px;
}

.cards-with-numbers-arrows-text__number {
    font-weight: 800;
    font-size: 200px;
    line-height: 100%;
    color: #7B7D84;
}

.arrow-br {
    --size: 35px;
    --th: 3px;
    --color: #0B68F0;

    width: var(--size);
    height: var(--size);
    position: relative;
    box-sizing: border-box;
}

.arrow-br::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--th);
    background: var(--color);
    bottom: 0;
    z-index: 2;
}

.arrow-br::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--th);
    background: var(--color);
    right: 0;
    z-index: 2;
}


.arrow-br .diagline {
    position: absolute;
    left: 3px;
    top: 1px;
    height: var(--th);
    width: calc(var(--size) * 1.25);
    background: var(--color);
    transform-origin: 0 0;
    transform: rotate(45deg);
    z-index: 3;
    margin-top: calc(var(--th) * 0.0);
    margin-left: calc(var(--th) * 0.0);
}

.cards-with-numbers-arrows-text__number-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) {
    .cards-with-numbers-arrows-text__text {
        padding-left: 10px;
    }

    .cards-with-numbers-arrows-text__card {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 900px) {
    .cards-with-numbers-arrows-text__card {
        flex: 0 0 calc(50% - 15px);
    }
}


@media screen and (max-width: 800px) {
    .cards-with-numbers-arrows-text__card {
        flex: 100%;
    }

    .cards-with-numbers-arrows-text__cards {
        flex-direction: column;
    }

    .container-padding {
        padding: 0;
    }
}