.helpCard {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    padding: 0;
}

.helpCard .sepHori {
    display: none;
} 

.helpCol {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 25px;
}

.helpCol h2 {
    font-size: 1.75rem;
}

.helpCol a {
    font-weight: bold;
    color: var(--text-3);
    font-size: 1.2rem;
}

.helpCol a:hover {
    color: var(--text-4);
}

@media screen and (max-width: 979px) {
    .helpCard {
        grid-template-columns: 1fr auto 1fr;
    }
    .helpCard div:nth-child(5),
    .helpCard div:nth-child(7) {
        display: block;
    }
}

@media screen and (max-width: 759px) {
    .helpCard {
        grid-template-columns: 1fr;
    }
    .helpCard .sepVert {
        display: none;
    } 
    .helpCard div:nth-child(7) {
        display: none;
    }
    .helpCard .sepHori {
        display: block;
    } 
}