/*==================================
        WAYS YOU CAN HELP
===================================*/

.ways-help{
    padding:4rem 0;
    position:relative;
}

.section-heading{
    max-width:720px;
    margin:0 auto 2rem;
}

.section-heading h2{
    font-size:clamp(2.3rem,5vw,3.4rem);
    font-weight:400;
    margin:1rem 0;
}

.section-heading p{
    color:#000000;
    margin:0;
}

.section-badge{
    display:inline-block;
    padding:.5rem 1rem;
    border-radius:999px;
    background:var(--light);
    color:var(--primary);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/*==================================
            CARD
===================================*/

.help-card{

    height:100%;

    background:var(--white);

    border:1px solid rgba(0,37,42,.15);

    border-radius:var(--radius);

    padding:2rem;

    display:flex;

    flex-direction:column;

    box-shadow:0 5px 0 #00252A;

    transition:var(--transition);

}

.help-card:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 0 #00252A;

}

/*==================================
            ICON
===================================*/

.help-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:72px;

    height:72px;

    margin-bottom:1.5rem;

    border-radius:50%;

    background:var(--light);

    color:var(--primary);

    font-size:2rem;

    transition:var(--transition);

}

.help-card:hover .help-icon{

    transform:scale(1.1);

}

/*==================================
            TEXT
===================================*/

.help-card h3{

    font-size:1.55rem;

    font-weight:500;

    margin-bottom:.8rem;

}

.help-card p{

    color:#000000;

    margin-bottom:2rem;

    flex-grow:1;

}

/*==================================
            BUTTON
===================================*/

.help-card .btn-donate{

    width:100%;

    justify-content:center;

}

.help-link{
    color:#009893;
}

/*==================================
        RESPONSIVE
===================================*/

@media (max-width:991.98px){

    .ways-help{

        padding:4rem 0;

    }

    .section-heading{

        margin-bottom:3rem;

    }

    .help-card{

        padding:1.75rem;

    }

}

@media (max-width:767.98px){

    .ways-help{

        padding:0.5rem 0;

    }

    .section-heading{

        margin-bottom:2.25rem;

    }

    .section-heading h2{

        font-size:2.2rem;

    }

    .help-icon{

        width:60px;

        height:60px;

        font-size:1.6rem;

        margin-bottom:1.2rem;

    }

    .help-card h3{

        font-size:1.35rem;

    }

}

@media (min-width:992px){

    .ways-help .row{

        --bs-gutter-y:3.5rem;

    }

}