how to hide empty fields of post category description?

Wrap the div with a if condition like this. It should do the job!

<?php if($qo->description):?>
<div class="row">
    <div class="col-sm-8 mx-auto py-5">
        <?php echo nl2br($qo->description) ?>
    </div>
</div>
<?php endif; ?>