How To Fix my Breadcrumb?

I had explained the problem in image..
URL: redpandaoutdoor.in

breadcrumb.liquid Code which im using is:

.breadcrumbs { margin: 0 0 2em; background-color: {{ settings.breadcrumb_bg_color }}; padding-top: {{ settings.padding_top }}px; padding-bottom: {{ settings.padding_bottom }}px; padding-left: 20px; } .breadcrumbs__list { list-style-type: none; margin: 0; padding: 0; } .breadcrumbs__item { display: inline-block; } .breadcrumbs__item:not(:last-child):after { display: inline-block; content: '\00bb'; margin: 0 .6em; color: #959fa5; font-size: {{ settings.font_size }}px; } .breadcrumbs__link { text-decoration: none; color: {{ settings.breadcrumb_text_color }}; font-size: {{ settings.font_size }}px; } .breadcrumbs__link:hover { text-decoration: none; } .breadcrumbs__link[aria-current="page"] { color: #999 !important; font-weight: normal; text-decoration: none; } .breadcrumbs__link[aria-current="page"]:hover, .breadcrumbs__link[aria-current="page"]:focus { text-decoration: none; } .breadcrumbs__item:last-child:after { content: ''; } .disabled-breadcrumb { color: #999 !important; pointer-events: none !important; text-decoration: none !important; }

{% unless template == ‘index’ or template == ‘cart’ or template == ‘404’ %}

{% assign t = template | split: ‘.’ | first %}

  1. Home

  2. {% case t %}

    {% when ‘page’ %}

  3. {{ page.title }}

  4. {% when ‘product’ %}

  5. Collections

  6. {% unless collection %}

  7. Products

  8. {% endunless %}

    {% if collection %}

  9. {{ collection.title }}

  10. {% endif %}

  11. {{ product.title }}

  12. {% when ‘collection’ %}

  13. Collections

  14. {{ collection.title }}

  15. {% if current_tags %}

  16. {{ collection.title }}

  17. {{ current_tags | join: ’ + ’ }}

  18. {% endif %}

    {%- when ‘blog’ -%}

    {%- if current_tags -%}

  19. {{ blog.title | link_to: blog.url, class: “breadcrumbs__link” }}

  20. {%- capture tag_url -%}{{ blog.url }}/tagged/{{ current_tags | join: “+” }}{%- endcapture -%}

    {{ current_tags | join: ’ + ’ }}

  21. {%- else -%}

  22. {{ blog.title }}

  23. {%- endif -%}

    {%- when ‘article’ -%}

  24. {{ blog.title | link_to: blog.url, class: “breadcrumbs__link” }}

  25. {{ article.title }}

  26. {%- else -%}

  27. {{- page_title -}}

  28. {%- endcase -%}

{% endunless %}

Hello @Emiway ,
Could you provide theme name.