.how-can-help {
    padding: 3.5rem 0;
}

.common-title {
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-dark-one);
    margin-bottom: 2.5rem;
}

.how-can-help-item {
    background-repeat: no-repeat;
    background-size: cover;
    /* background: var(--color-green); */
    height: 12.125rem;
    border-radius: 1rem;
    padding: 1.25rem;
    color: var(--color-white);
}

.how-can-help-content-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.how-can-help-content-title h3 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: .75rem;
}

.how-can-help-content-title a {
    transition: transform 0.3s ease;
}

.how-can-help-content-title a:hover {
    transform: scale(1.05);
}

.how-can-help-item p {
    font-weight: 500;
    font-size: 1.5rem;
}

/* Media Queries */
@media(max-width: 1399.98px) {
    .how-can-help {
        padding: 2.5rem 0;
    }
    .how-can-help-content-title h3 {
        font-size: 1.5rem;
    }

    .how-can-help-item p {
        font-size: 1.25rem;
    }

    .how-can-help-item {
        height: 10rem;
    }
}

@media(max-width: 991.98px) {
    .how-can-help-item {
        height: 11rem;
    }

    .how-can-help-content-title h3 {
        font-size: 1.25rem;
    }

    .how-can-help-item p {
        font-size: 1rem;
    }
}

@media(max-width: 767.98px) {
    .how-can-help{
        padding: 2rem 0;
    }
    .how-can-help-item {
        height: 8rem;
    }
}
@media (max-width: 575.98px) {
    .how-can-help .common-title{
        font-size: 1.25rem!important;
    }
}