Trying to replicate a similar design from this website: . One issue I'm facing is that the white columns I created disappear when I resize my screen. Here's the code:
<div class="pokaz">
<div class="container">
<div class="row pt-5">
<div class="col-lg-6 bg-white" style="text-align: center;">
<svg ...> ... </svg>
<h1 ...>Lorem ipsum</h1>
<h4 ...>Lorem ipsum dolor sit amet...</h4>
<button type="button" class="btn btn-outline-secondary">Read more</button>
</div>
<div class="col-lg-6 bg-white">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 bg-white"></div>
<div class="col-lg-6 bg-white" style="text-align: center;">
<svg ...> ... </svg>
<h1 ...>Lorem ipsum</h1>
<h4 ...>Lorem ipsum dolor sit amet...</h4>
<button type="button" class="btn btn-outline-secondary">Read more</button>
</div>
</div>
</div>
<div class="container pb-5">
<div class="row">
<div class="col-lg-6 bg-white" style="text-align: center;">
<svg ...> ... </svg>
<h1 ...>Lorem ipsum</h1>
<h4 ...>Lorem ipsum dolor sit amet...</h4>
<button type="button" class="btn btn-outline-secondary">Read more</button>
</div>
<div class="col-lg-6 bg-white">
</div>
</div>
</div>
</div>
<p>Need some assistance with this. Link to Codepen will be provided in the comments.</p>