
/*help-card*/
.help-card{
    background: var(--color-sage-1);
    color: var(--color-black);
    padding: 1.5rem 1rem;
    border-radius: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.help-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}
.help-card__content .small-card__img {
    margin-bottom: 1rem;
}
.help-card__content .small-card__img {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
}
.help-card__content .small-card__img img {
    margin-bottom:-1.5rem;
    margin-right: -1.5rem;
    width: 2rem;
}
@media (max-width: 768px) {
    .help-card >.row {
        gap: 2rem;
    }

}
@media (max-width: 575px){
    .help-card {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}
@media (min-width: 576px) {
    .help-card {

        border-radius: var(--image-border-radius);
        padding: 2rem 2.5rem;
    }

}