/*--- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
margin-left: 0px!important;
margin-right: 0px!important;
}

/*--- Fix for Fixed Navbar jumping on scroll --*/


/*--- Fixed Landing Page Section --*/
.landing {
  /*position: relative;*/
  width: 100%;
  height: 170vh; /* Change height of landing page image. */
  display: table;
  /*z-index: -1;*/
}
.home-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170vh;
}
.home-inner {
  position: relative; /* Change to relative to remove fixed style. */
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
 
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}




/*--- Prevent WayPoints from Browser Window Scrolling On Mobile --*/
/* Devices under 768px (md) */
@media (max-width: 767px) {
  .row {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}