#benefits_header{
    background-image: url("../banners/banner_benefits.png");
    background-position-x: 100%;
    background-size: auto 100%;
    background-repeat: no-repeat;

    padding-top: 20px;
    padding-left: 50px;
    padding-bottom: 40px;
    color: whitesmoke;
}

#benefits_header_text{
    background-color: rgba(34, 34, 34, 0.699);
    padding: 15px;
    border-radius: 25px;
    max-width: 600px;
}

#benefits_list{
    background-color: #f3efe8;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

#benefits_list h5{
    font-size: 16px;
}

#benefits_list li{
    display: grid;
    place-items: center;
    width: 1fr;
    margin-left: 20px;
    margin-right: 20px;
    /* max-width: 128px; */
}


@media (max-width: 640px){
    #benefits_header_text{
        margin: 20px;
    }
    #benefits_list li{
        display: grid;
        flex-direction: row;
    }
}