.help_sec {
    position: relative;
}

.help_sec:before {
    content: '';
    width: 100%;
    height: 60%;
    background-color: var(--bs-primary);
    position: absolute;
    top: 0;
    z-index: -1;
}

.help_card {
    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #0000004d;
}

.help_card .card-title {
    font-size: 24px;
}
@media (max-width:1199px) {
    .help_card .card-title {
        font-size: 20px;
    }
}

@media (max-width:991px) {
    .help_card .card-title {
        font-size: 18px;
    }

    .help_card img {
        width: 50px;
    }

    .help_card {
        padding: 0;
    }

}

@media (max-width:767px) {
    .help_sec:before {
        height: 100%;
    }
}

@media (max-width:576px) {
    .help_card .card-title {
        font-size: 16px;
    }
}