.numbers-block .container-numbers {
    padding: 100px 260px;
    background-color: #FBFBFB;
}

.numbers-block__icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.numbers-circle {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.numbers-block__icon-title h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: black;
    text-transform: uppercase;
}

.numbers-block__grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 53px;
    align-items: stretch;
}

.card_number {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.card_number__title {
    font-size: 82px;
    font-weight: bold;
    line-height: 64px;
    color: black;
    margin-bottom: 100px;
}

.card_number__content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    height: 100%;
}

.card_number__content p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: black;
    height: 180px;
}

.card_number__content p strong {
    font-weight: bold;
    color: #6327E4;
}

.card_number {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 60px 0 40px;
}

.card_number a {
    word-break: break-all;
    overflow-wrap: anywhere;
}

.card_number__disclaimer p {
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    color: black;
}

.card_number__disclaimer a {
    font-size: 13px;
    font-weight: 300;
    line-height: normal;
    color: black;
}

@media (min-width: 1200px) and (max-width: 1670px) {
    .numbers-block .container-numbers {
        padding: 100px 99px;
    }

    .numbers-block__icon-title {
        align-items: baseline;
    }

    .numbers-circle {
        width: 14px;
        height: 14px;
    }

    .numbers-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .card_number {
        padding: 30px 0 30px;
    }

    .card_number__title {
        font-size: 62px;
        line-height: 44px;
        margin-bottom: 50px;
    }

    .card_number__content-wrapper {
        gap: 30px;
    }

    .card_number__content p {
        font-size: 12px;
        line-height: 16px;
        height: 140px;
    }

    .card_number__disclaimer p, .card_number__disclaimer a {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .numbers-block .container-numbers {
        padding: 40px 20px;
    }

    .numbers-block__icon-title {
        margin-bottom: 40px;
        margin-top: 0;
    }

    .numbers-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .numbers-circle {
        width: 12px;
        height: 12px;
        margin-top: 5px;
    }

    .numbers-block__grid-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 30px;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .numbers-block__grid-container::-webkit-scrollbar {
        display: none;
    }

    .card_number {
        width: 240px;
        padding: 40px 0;
    }

    .card_number__title {
        font-size: 56px;
        line-height: 64px;
        margin-bottom: 30px;
    }

    .card_number__content-wrapper {
        gap: 30px;
    }

    .card_number__content p {
        font-size: 15px;
        line-height: 22px;
        font-weight: 400;
        font-style: normal;
        height: 200px;
    }

    .card_number__disclaimer p {
        font-size: 15px;
        line-height: 22px;
    }
}