Hi chetan,
To apply font-awesome icon you must have 2 classes, the fa class and the class that identifies the desired icon fa-paint-brush, fa-shopping-cart etc.
You can place Font Awesome icons just about anywhere using the CSS Prefix fa and the icon's name. Font Awesome is designed to be used with inline elements like the <i> tag, but using a <span> is also correct.
Apply the class to your span element.
For more details and icons list refer below links.
https://www.w3schools.com/icons/fontawesome_icons_webapp.asp
https://fontawesome.com/icons?d=gallery
Check this example. Now please take its reference and correct your code.
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<div class="col-lg-7 col-md-7 col-sm-6 col-xs-12">
<div class="hero-text-box">
<div class="category-section">
<div class="category-list1 owl-carousel owl-theme" id="main-section-slider">
<div class="catz_iconz">
<a href="https://listing.downtown-directory.com/categories/arts-entertainment/" class="icon-entertainment-and-arts new_v1">
</a><span class="fa fa-paint-brush"><a href="https://listing.downtown-directory.com/categories/arts-entertainment/">
Arts </a></span>
</div>
<div class="catz_iconz">
<a href="https://listing.downtown-directory.com/categories/automotive/" class="icon-antique new_v1">
</a><span class="fa fa-automobile"><a href="https://listing.downtown-directory.com/categories/automotive/">
Automotive </a></span>
</div>
<div class="catz_iconz">
<a href="https://listing.downtown-directory.com/categories/shopping/" class="icon-shopping-venues new_v1">
</a><span class="fa fa-shopping-cart"><a href="https://listing.downtown-directory.com/categories/shopping/">
Shopping </a></span>
</div>
<div class="catz_iconz">
<a href="https://listing.downtown-directory.com/categories/travel/" class="icon-travel-and-lodging new_v1">
</a><span class="fa fa-suitcase"><a href="https://listing.downtown-directory.com/categories/travel/">
Travel </a></span>
</div>
</div>
</div>
</div>
</div>
Demo