.hero {
  height: 70vh;
  max-height: 450px;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    max-height: 250px;
  }
}
.hero.brand-hero .background {
  background-color: var(--color-primary);
}
.hero.brand-hero .background img {
  display: none;
}
.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero .background.type-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .background.type-html_video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .background.type-youtube_video iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero .content {
  z-index: 10;
  position: relative;
  max-width: var(--container-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero .content .title {
  margin: 0;
}
.hero .scroll {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 25;
}
.hero .scroll .scroll-icon {
  width: 30px;
  animation: animateArrow 1.5s infinite linear;
}
.hero .scroll .scroll-icon path {
  stroke: #fff;
}
.hero.style-inner {
  height: 60vh;
  max-height: 380px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero.style-inner {
    height: 50vh;
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .hero.style-inner {
    height: 40vh;
    max-height: 250px;
  }
}
.hero.style-inner .content {
  align-items: start;
}
.hero.style-inner .content h1 {
  color: #fff;
}

@keyframes animateArrow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

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