Why isn't my website's mobile logo clickable?

My web site mobile logo not clickable. I check the code. The link is in there

The code like this

My web site mobile logo is not clickable. Check the code, look like the link is in there. Please help
my site ebuilderdirect.com

<div class="site-header__logo"> 
{% if section.settings.logo %}
<a href="{{shop.url}}" class="site-header__logo-image{% if section.settings.align_logo == 'center' %} site-header__logo-image--centered{% endif %}">
{% capture image_size %}{{ section.settings.logo_max_width | escape }}x{% endcapture %} <img src="{{ section.settings.logo | img_url: image_size }}"
srcset="{{ section.settings.logo | img_url: image_size, scale: 2 }} 1x, {{ section.settings.logo | img_url: image_size, scale: 4 }} 1.1x"
alt="{{ section.settings.logo.alt | default: shop.name }}" width ="{{section.settings.logo_max_width}}" height ="{{section.settings.logo_max_width | divided_by: section.settings.logo.aspect_ratio | floor}}"> 
</a> 
{% else %} 
<a class="site-header__logo-link" href="{{shop.url}}">{{ shop.name }}</a>
{% endif %} 
</div>
Thank you

Hi @xiaopei

Use this code. Also can you please share your store URL?

 
{% if section.settings.logo %}
{% capture image_size %}{{ section.settings.logo_max_width | escape }}x{% endcapture %}

 
 
{% else %} 
{{ shop.name }}
{% endif %} 

My url is

My url is ebuilderdirect.com

Hi @xiaopei
You added mobile logo with css

Please remove this.

also remove this css

Thank you Dbuglabpvtltd. I fixed it.

PREVIEW