/* PC styles */
/* Responsive styles */
/*
@media (max-width: v.$media-large) {}

*
/* Colors */
main {
  background-color: white;
}
main .hero {
  max-width: 1366px;
  margin: 0 auto;
  height: 274px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/hero-company.jpg");
  background-position: center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  main .hero {
    height: 162px;
    background-size: 140%;
  }
}
main .hero h1 {
  font-size: 36px;
  color: white;
  position: relative;
}
@media (max-width: 768px) {
  main .hero h1 {
    font-size: 26px;
  }
}
main .hero h1:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background-color: #EF7E20;
  margin: 6px auto 0;
}
@media (max-width: 768px) {
  main .hero h1:after {
    width: 60px;
    height: 4px;
  }
}/*# sourceMappingURL=template_page_common.css.map */