How to remove breadcrumb site wide

This article will help you remove the breadcrumb site wide.

So that instead of:

you will have:

For this, please go to Appearance >> Customize >> Custom CSS and JS >> Custom CSS box and add the code below inside your Custom CSS box:

.breadcrumbs li {
display: none;
}

Thank you