I needed to eliminate the padding from the bootstrap grid column classes.
So I went ahead and did just that
.col-x {
padding: 0;
}
However, this action ended up causing the entire layout to break as a horizontal scrollbar appeared.
I've put together a codepen to demonstrate this issue.
What is actually triggering the appearance of the horizontal scrollbar and how can it be remedied?