.heading {
    color: #597383;
    font-size: 2.1rem;
    margin: 1.5rem auto;
    text-align: center;
}

.item-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    padding: 1rem;
}

.item-icon .svg {
    color: #2f4a84;
    height: 6rem;
    width: 6rem;
}

.item-icon .credit-cards {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-icon .credit-cards .visa {
    margin: 1rem;
    width: 5rem;
}

.item-icon .credit-cards .mastercard {
    margin: 1rem;
    width: 3rem;

}

.item-title {
    font-size: 1.5rem;
    color: #2f4a84;
    margin: .5rem 0;
}

.item-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: .5rem 0;
}

.list {
    color: #636363;
    margin: 1rem 0;
    padding-left: 4rem;
}

.list li {
    line-height: 1.5;
    margin: 0;
}

.logo-header {
    margin-bottom: 2rem;
    width: 15rem;
}

.svg-support {
    color: #586575;
    width: 14rem;
}

@media (max-width: 768px) {
    .grid-cols-3, .grid-cols-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .heading {
        font-size: 1.7rem;
    }

    .item-icon {
        margin: .25rem;
        padding: .25rem;
    }

    .logo-header {
        margin: 1rem 0;
        max-width: 10rem;
    }

    .list {
        padding-left: 2rem;
    }

    .svg-large {
        max-width: 100%;
    }
}