html, body {
  margin: 0;
  font-family: Avenir, Montserrat, sans-serif;
  font-size: 16px;
  font-weight: lighter;
}

header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 10px;
  background-color: #F04A29;
  padding: 0 150px;
  color: white;
  font-size: 14px;
}
header .logo a {
  /* force overlap with .tag */
  grid-column-start: 1;
  grid-column-end: 4;
  height: 150px;
  font-size: 68px;
  line-height: 69px;
  grid-row-start: 1;
  color: white;
  text-decoration: none;
}
header .logo a img {
  position: absolute;
  top: 45px;
  left: 243px;
  transform: scaleX(-1);
  height: 94px;
}
header .tag {
  grid-row-start: 1;
  grid-column-start: 2;
  grid-column-end: 5;
  align-self: end;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
}

header nav {
  grid-column-start: 9;
  grid-column-end: 13;
  align-self: end;
}
header nav ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
header nav li {
  display: inline-block;
  height: 30px;
  width: calc(25% - 13px);
  margin: 0 5px;
  background: linear-gradient(#FFFFFF60, #F06245);
  text-align: center;
}
header nav a {
  vertical-align: sub;
  color: white;
  text-decoration: none;
}

.hero {
  display: block;
  background-repeat: none;
  background-size: cover;
  width: 100%;
  height: 600px;
}

footer {
  background-color: #F04A29;
  color: white;
  font-size: small;
  margin-top: 35px;
  padding: 60px 0 20px 150px;
  position: relative;
}
footer img {
  position: absolute;
  bottom: 30px;
  right: 30px;
  height: 60px;
}

/*# sourceMappingURL=style.css.map */
