I'm trying to align the contents of container-fluid with another container in bootstrap. This image shows how I'd like it to align, with the image flush left and the green background flush right, for a broken grid layout.
But I want the left edge of the background to line up with the gutter of a normal container and the right edge of the copy to line up with the right edge of container.
https://i.stack.imgur.com/2ghz6.jpg
The code below is what I have tried. Am I over thinking this or is not possible with bootstrap?
<div style="background: linear-gradient(90deg, #ffffff 41%, rgba(209,224,215,.4) 41%);padding: 100px 0;margin-bottom: 100px;">
<div class="container-fluid">
<div class="row justify-content-center align-items-center">
<div class="col-lg-6" style="padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0">
<img src="images/hero-03.jpg" alt="" class="img-fluid">
</div>
<div class="col-lg-3">
<p>Lorem Ipsum</p>
</div>
<div class="col-lg-3"></div>
</div>
</div>
</div>