html,
body {
  height: 100%;
}
.hero-block {
  height: 100%;
  position: relative;
}

.hero-left {
    position: absolute;
    z-index: 1;
    height: 100%;
    left:0px;
    width: 100%;
}

.hero-right {
    z-index: 3;
    height: 100%;
    position: absolute;
    right: 0px;
    width: 42%;
}
.hero-slant{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;

  z-index: -1;
}
.slant-l-r::before{
  -webkit-transform: skew(-40deg);
  -ms-transform: skew(-40deg);
  transform: skew(-40deg);
}

.content {
    height: 100%;
}

.hero.floating-content {
    position: relative;
    z-index: 10;
    display: block;
}