.help-box {
    gap: 46px;
    display: grid;
    align-items: center;
    grid-template-columns: 27% 38% 26.8%;
}
.help-title h2 {
    margin-bottom: 16px;
    color: var(--primary--color);
    line-height: 48px;
}
.help-title p{
    padding: 0 20px;
    line-height: 26px;
    margin-bottom: 20px;
}
.help-title .generic-btn a{
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    padding: 21px 31px;
    color: var(--white-color);
    background: var(--secondary--color);
    box-shadow: 10px 10px 20px rgb(101 16 242 / 20%);
}
.help-title .generic-btn a:hover{
    background: var(--accent-color);
    box-shadow: 10px 10px 20px rgb(230 194 41 / 20%);
}
/* RESPONSIVE */
@media only screen and (max-width: 1199px) {
    .help-title h2 {
        margin-bottom: 14px;
        line-height: 38px;
    }
    .help-img img{
        width: 100%;
    }
    .help-title p {
        margin-bottom: 18px;
    }
    .help-title .generic-btn a {
        padding: 17px 21px;
    }
}
@media only screen and (max-width: 991px) {
    .help-box {
        gap: 28px;
        grid-template-columns: 24% 43% 23.8%;
    }
    .help-title h2 {
        margin-bottom: 12px;
        line-height: 32px;
    }
    .help-title p {
        margin-bottom: 16px;
        padding: 0;
        line-height: 24px;
    }
    .help-title .generic-btn a {
        font-size: 14px;
        line-height: 14px;
    }
    
}
@media only screen and (max-width: 767px) {
    .help-img{
        display: none;
    }
    .help-box {
        grid-template-columns: 100%;
    }
    .help-title .generic-btn a {
        padding: 14px 16px;
    }
}
@media only screen and (max-width: 575px) {
    .help-title h2 {
        line-height: 28px;
    }
}