/*
If the file is going to be imported don't add doc comments
*/
#hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 70vh;
  max-height: 600px;
}
#hero .overlay {
  background: black;
}
#hero h1,
#hero h2 {
  max-width: 450px;
  color: white;
}
#hero h1 span,
#hero h2 span {
  display: block;
}
#hero h1 span:nth-child(2),
#hero h2 span:nth-child(2) {
  font-weight: 500;
  border-top: 3px solid #C41D23;
}
#hero .row {
  flex-direction: column;
}
#hero #cycler {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: black;
  left: 0;
  top: 0;
}
#hero #cycler div {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#hero #cycler div.active {
  z-index: 3;
}
#hero #cycler div img {
  display: none;
}/*# sourceMappingURL=hero.css.map */