.picture_block
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: calc(1 * var(--rad));
    min-height: 300px;
    margin-bottom: calc(4 * var(--rad));
}
    .picture_block > *
    {
        border: 3px solid var(--blue_30);
        border-radius: calc(3 * var(--rad));
        display: flex;
        position: relative;
        justify-content: center;
        align-items: flex-end;
        text-align: center;
        box-sizing: border-box;
        padding: calc(1 * var(--rad));
        background-position: center calc(2 * var(--rad));
        background-repeat: no-repeat;
        background-size: 80px;
        background-color: rgba(255,255,255, 0.8);
        font-size: 1rem;
        height: 150px;
    }
    .picture_block > *.selected
    {
        background-color: var(--blue_80);
        color: white;
    }
    .picture_block > *:before
    {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        border-bottom-left-radius: calc(2 * var(--rad));
        border-bottom-right-radius: calc(2 * var(--rad));
        background-color: var(--blue_30);
    }
    .picture_block > *:hover
    {
        cursor: pointer;
    }
    .picture_block > *:hover:before
    {
        z-index: -1;
    }
    .picture_block > *.init_bathroom_remodels { background-size: 90px; }
    .picture_block > *.init_commercial_space { background-size: 90px; background-position-y: 30px}
    .picture_block > *.init_drywall { background-size: 69px; }
    .picture_block > *.init_flooring { background-size: 100px; background-position-y: 25px; }
    .picture_block > *.init_painting { background-size: 55px; }
    .picture_block > *.init_windows { background-size: 60px; }
    .picture_block > *.init_whole_home_remodels { background-size: 50px; }

    #bath_type.picture_block > *
    {
        background-size: 50px;
    }
        #bath_type.picture_block > *:before
        {
            height: 50%;
        }
        .picture_block > *.bath_shower_updates      { background-size: 45px; }
        .picture_block > *.bath_liner               { background-size: 52px;}
        .picture_block > *.bath_shower_enclosure    { background-size: 37px; }
    /*
    .picture_block > *.bath_full_remodel        { background-size: 50px }
    .picture_block > *.bath_shower_conversion   { background-size: 50px; }
    .picture_block > *.bath_shower_updates      { background-size: 50px; }
    .picture_block > *.bath_walk_in_shower      { background-size: 50px; }
     */