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;
  }
}

.news_heading {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 999px) {
  .news_heading {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.news_media {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 999px) {
  .news_media {
    margin-bottom: 0;
  }
}
.news_link {
  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;
}
.news_link a {
  color: #eb2256;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .news_link a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.6rem 0;
  }
}
@media screen and (max-width: 479px) {
  .news_link a {
    display: inline-block;
    text-align: right;
    width: 100%;
  }
}
.news_link a:hover {
  text-decoration: underline;
}
.news_link a::after {
  background-image: url("/images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  content: '';
  display: inline-block;
  height: 1.6rem;
  margin-left: .8rem;
  vertical-align: bottom;
  width: 1.4rem;
}
