https://i.sstatic.net/q1qGi.png
I'm working on a Bootstrap 4 layout where container B needs to overlay part of container A. I want to achieve a design where container B appears on top of container A. Any suggestions or references on how to achieve this layout would be greatly appreciated.
<!-- container A -->
<div class="container-fluid">
<div class="row text-center">
<div class="col-12">
<h4>HOW IT WORKS</h4>
</div>
</div>
<div class="row text-center">
<div class="offset-md-2 col-md-2 px-0">
<div class="card">
<div class="card-header">
card 1 title
</div>
<div class="card-body">
card 1 body
</div>
</div>
</div>
<div class="offset-md-1 col-md-2">
<div class="card">
<div class="card-header">
card 2 header
</div>
<div class="card-body">
card 2 body
</div>
</div>
</div>
<div class="offset-md-1 col-md-2">
<div class="card">
<div class="card-header">
card 3 header
</div>
<div class="card-body">
card 4 body
</div>
</div>
</div>
</div>
</div>
<!-- container B -->
<div class="container rounded-border">
<div class="row">
<div class="col-12 text-center">
<h4 class="display-4">What is Lorem Ipsum</h4>
<p>
ustry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker includin
</p>
</div>
</div>
</div>