.color-section {
  position: relative;
  width: 100%;
}
.color-section > .background,
.color-section .color-section-center-col > .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.color-section > .foreground,
.color-section .color-section-center-col > .foreground {
  position: relative;
}
.color-section.parallax {
  min-height: 50vh;
  overflow: hidden;
}
.color-section.parallax > .background,
.color-section.parallax .color-section-center-col > .background {
  transform: translateZ(-1px) scale(3);
}
.color-section.parallax > .foreground,
.color-section.parallax .color-section-center-col > .foreground {
  position: relative;
}
.color-section .color-section-center-col {
  width: 1280px;
  margin: 0 auto;
}
/* All Tablet / Mobile Styles here */
@media only screen and (max-width: 769px) {
  .color-section {
    border-bottom: solid 35px transparent;
  }
  .color-section .color-section-center-col {
    width: 100% !important;
  }
}