<div class="section"></div>
.section {
background: url('...') 50% 50% / cover no-repeat #color;
position: relative;
z-index: 1;
}
.section:after {
content: "";
position: absolute;
bottom: 0;
width: 100%;
left: 0;
z-index: 2;
background: url('...')... // png либо svg
}
<div class="section">
<svg></svg>
</div>
.section {
background: url('...') 50% 50% / cover no-repeat #color;
position: relative;
z-index: 1;
}
.section svg {
content: "";
position: absolute;
bottom: 0;
width: 100%;
left: 0;
z-index: 2;
}