We have an issue with a link not working properly when clicked.
When hovering the button the link shows fine but nothing happens when you click it. (Right-click > Open in new tab works fine)
You can see what I mean on the themes example site here, it is the little comment buttons with a small number hovering over it.
I've tried to fool around in the CSS and PHP files but I can't really make much sense of what the issue is.
You have a e.preventDefault();
in your scripts-vendors.js
file keeping the link from working properly.
It looks like it's meant to scroll to an anchor link on the same page, but since this is actually linking to a different page, it doesn't operate properly.
I suggest to override that functionality with a custom script file and some adjustment to the HTML. Does this make sense?