.support-tabs {
    padding: 60px 0;
}

.support-tabs h2 {
    display: block;
    width: 100%;
    font-weight: 300;
    line-height: 130%;
    padding-bottom: 30px;
}

.support-tabs ul {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

@media (min-width: 768px) {
    .support-tabs ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.support-tabs ul li a {
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #d62329;
    line-height: 130%;
    cursor: pointer;
}

.support-tabs ul li a img {
    display: block;
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 20px;
}

.support-tabs ul li a.active,
.support-tabs ul li a :hover {
    color: black;
}