Meta Widget won't go away

I cannot figure out how to remove the Meta Widget from the footer of my page http://patriotgraphics.co/.
If I look in Theme -> Customize -> Widgets, none of the locations contain the Meta widget.
If I look in Appearance -> Widgets, none of the widget locations contain the Meta Widget.

Any ideas on what else I can change to get rid of the Meta Widget on the footer?

Hey there

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove meta */
.widget.widget_meta {
    display: none;
}

/*remove widget footer area*/
footer#colophon {
    display: none;
}

Best Regards,
Support