/* WRAPPER1 - 50-50 split blocks */
@media all and (min-width: 801px) {
  .fifty-width > .width-limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fifty-width > .width-limiter > div {
    width: 50%;
  }
}

/* Add full background to left */
.fifty-width {
  position: relative;
}
.fifty-width:before {
  content: '';
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  background: #bbb;
}
.fifty-width .width-limiter > div:first-of-type {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 800px) {
  .fifty-width:before {
    content: none;
  }
  .fifty-width .width-limiter > div:first-of-type {
    background: #bbb;
  }
}

/* Add full background to right */
.fifty-width {
  position: relative;
}
.fifty-width:after {
  content: '';
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  background: #888;
}
.fifty-width .width-limiter > div:last-of-type {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 800px) {
  .fifty-width:after {
    content: none;
  }
  .fifty-width .width-limiter > div:last-of-type {
    background: #888;
  }
}