.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0.5 auto;
  -ms-flex: 0 0.5 auto;
  flex: 0 0.5 auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.hero-image.green {
  z-index: 9;
  display: block;
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
}

.heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 130px;
  line-height: 1.2em;
}

.paragraph {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  letter-spacing: 0.6px;
}

.paragraph.soon {
  margin-bottom: -33px;
  letter-spacing: 2px;
}

.image {
  margin-top: 12px;
}

.orange {
  position: absolute;
  left: 35%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10;
  display: block;
  max-height: 100vh;
}

.red {
  position: absolute;
  left: 35%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 11;
  display: block;
  max-height: 100vh;
}

.div-block {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 5;
  min-height: 100vh;
  background-color: #fff;
}

.div-block-2 {
  display: block;
}

@media screen and (max-width: 991px) {
  .orange {
    left: 25%;
  }

  .red {
    left: 25%;
  }

  .div-block-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 40px 20px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-image-mask {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .paragraph.soon {
    margin-top: 30px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    padding-right: 0px;
    padding-left: 0px;
  }

  .hero-image-mask {
    width: 100vw;
  }

  .heading {
    font-size: 75px;
  }

  .paragraph {
    white-space: break-spaces;
  }

  .paragraph.soon {
    margin-top: 40px;
    margin-bottom: -15px;
  }

  .orange {
    left: 10%;
    max-height: 85vh;
  }

  .red {
    left: 10%;
    max-height: 85vh;
  }

  .div-block {
    max-height: 90vh;
    min-height: 50vh;
  }

  .div-block-2 {
    display: block;
  }

  .div-block-3 {
    width: 90vw;
  }
}