.section {
  background-image: url('../images/industrial-bg.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  font-size: 14px;
  position: static;
}

.heading {
  font-family: Oswald, sans-serif;
  font-size: 106px;
  line-height: 112px;
  position: static;
  top: 75px;
  left: 60px;
}

.heading-2 {
  margin-top: 0;
  line-height: 51px;
  position: static;
}

.headline-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  flex-flow: column;
  display: flex;
  position: absolute;
  top: 100px;
  left: 250px;
}

.bold-text {
  color: #03045e;
  font-family: Oswald, sans-serif;
  font-size: 39px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 68px;
    line-height: 71px;
  }

  .heading-2 {
    line-height: 35px;
  }

  .headline-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    top: 40px;
    left: 60px;
  }

  .bold-text {
    font-size: 24px;
    line-height: 0;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 36px;
    line-height: 49px;
  }

  .headline-wrapper {
    left: 20px;
  }

  .bold-text {
    font-size: 22px;
    line-height: 0;
  }
}


