main {
  margin-top: 8rem;
}
@media screen and (max-width: 999px) {
  main {
    margin-top: 6rem;
  }
}

.hero {
  background-image: url(../images/service/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100vw;
}
.hero:before {
  content: "";
  display: block;
  padding-top: 33.33333%;
}
.hero > * {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.hero_holder {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.hero_heading {
  color: white;
  display: inline-block;
  font-size: 3.6rem;
}
@media screen and (max-width: 999px) {
  .hero_heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 479px) {
  .hero_heading {
    font-size: 1.8rem;
  }
}

.info_header {
  border-bottom: 1px solid #c2c2c2;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
.info_update {
  margin-right: 1.2rem;
}
.info_entry {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 999px) {
  .info_entry {
    font-size: 1.4rem;
  }
}
