I'm struggling with a div that splits in two, where I've placed an image on the left side. However, the image doesn't seem to fill the entire space and there are empty spaces on the sides. I'm using bootstrap, but any CSS solution would work perfectly as well.
<div
class="shadow-box d-flex flex-row overflow-hidden"
style="height: 205px"
>
<div class="col-4 overflow-hidden">
<img src="../../assets/img/bav1.png" alt="" class="h-100" />
</div>
<div class="col-8 p-4">
<div class="col-10">
<p class="font-TolyerBold1 fs-24 fs-md-26">
How can I Improve my Well-being
</p>
</div>
<p class="fs-12 fs-md-14">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Iusto debitis ullam sunt repellat nobis
</p>
</div>
<img
src="../../assets/img/iconork.png"
alt=""
class="tag p-3 p-md-4"
/>
</div>