.tabs-information .howtobuy li {
    align-items: flex-start;
}

.howtobuy__title {
    color: var(--text-black);
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 60px;
}

.howtobuy p {
    color: var(--text-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.12px;
    margin-bottom: 60px;
}

.howtobuy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 80px;
}

.howtobuy__grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid #D0DAEB;
    padding: 30px 30px 60px;
    counter-increment: list;

    color: var(--text-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.12px;
}

.howtobuy__grid li::before {
    display: block;
    content: counter(list);
    color: var(--Light-blue, var(--light-blue, #4B7BC4));
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .howtobuy__title {
        line-height: 36px;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .howtobuy p {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.18px;
        margin-bottom: 40px;
    }

    .howtobuy__grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin-bottom: 60px;
    }

    .howtobuy__grid li {
        padding: 20px 20px 30px;
        gap: 10px;

        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .howtobuy__grid li::before {
        margin-bottom: 10px;
    }
}