    /* START - buying guide table of contents flex grid */

    .buyers-guide-desktop-header-image {
        display: inline-block;
        padding-bottom: 4%;
    }

    .buyers-guide-mobile-header-image {
        display: none;
        padding-bottom: 4%;
    }


    @media only screen and (max-width: 800px) {

        .buyers-guide-desktop-header-image {
            display: none;
        }

        .buyers-guide-mobile-header-image {
            display: inline-block;
        }

    }

