I am currently designing a webpage with a Bootstrap carousel that includes a paragraph caption and two buttons. However, the buttons are not functioning as clickable links - when clicked, nothing happens.
{% block body %}
<div id ="car-container">
<div class="container-fluid" style= "padding-right: 0px;
padding-left: 0px;">
<div id="carousel-home" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div id = "carousel-inner">
<div class="carousel-item active">
<div class = "overlay-background">
<div class="overlay">
<img class="d-block w-100 carousel-home-img" src="empImg1.jpg" alt="First slide">
</div>
</div>
<div id = "cap_one" class="carousel-caption ">
<div id = "cap-head">
<h5 id ="h5">The People Award</h5>
</div>
<p> We have been awarded ‘The People Award’ three years running due to our high levels of customer service.</p>
<a href="{{ path('emp_services_lettings') }}" target="_blank" class="btn btn-primary btn-lg btn-md" role="button" style = "background-color: #2b459c!important; color: #FFFFFF!important">Find a property</a>
<button type="button" class="btn btn-primary btn-lg btn-md" style = "background-color: #d39e00!important; color: #FFFFFF!important">Valuation</button>
</div>
</div>