Repeated Output in Widget

Your widget markup is broken!

Check this line

$phone_link = '<a class="contact-phone" href="https://wordpress.stackexchange.com/questions/221244/tel:%s" itemprop="telephone">%s</span>';

Opening tag is <a> and closing tag is </span>. Correct it with

$phone_link = '<a class="contact-phone" href="https://wordpress.stackexchange.com/questions/221244/tel:%s" itemprop="telephone">%s</a>';