Apologies for the inconvenience.
The vertical brown bar is coming directly from the template code, not SP Page Builder.
You will find it in:
/templates/justice/scss/theme.scss
Around lines 3619–3640, in the .hero-section pseudo-element definition:
.hero-section,
.hero-section .sppb-row-overlay {
&:before {
content: "";
position: absolute;
width: 116px;
max-width: 10%;
max-height: 80%;
height: 0px;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 98.9%, 0 100%);
transition: all 0.6s ease-in-out;
}
&.start-animation:before {
top: 48%;
height: 635px;
}
}
To remove the bar completely, you should delete (or comment out) the &:before block and its corresponding .start-animation:before rule.
However, please note this is part of the core template SCSS file, so any direct changes will be overwritten during future template updates.
We appreciate your patience and understanding.