<div class="section">
<div class="container">
<div class="row">
<div class="col-12 col-lg-7">
<!-- тут текст -->
</div>
</div>
</div>
</div>
.section {
position: relative;
padding: 2rem 0;
min-height: 320px;
background: #111;
}
.section::before {
content: '';
position: absolute;
width: 50%;
height: 80%;
background: url( '../images/bg.png' ) center / cover no-repeat;
right: 0;
top: 50%;
transform: translateY(-50%);
}