.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.hero__title {
  position: relative;
  text-align: center;
  color: var(--color-secondary);
  width: 20.625rem;
  max-width: 80vw;
  margin: auto;
}
.hero__title .hero__title__welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: opacity 850ms ease;
}
.hero__title .hero__title__welcome.is-active {
  opacity: 1;
}
.hero__video {
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.hero--editor {
  height: 60vh;
}
.hero--editor .hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: var(--color-primary, #111);
  color: var(--color-secondary, #fff);
}
.hero.hero--editor {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 60vh;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.hero.hero--editor .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.hero--editor .hero__main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem;
}
.hero.hero--editor .hero__title {
  position: static;
  width: auto;
  max-width: none;
}
.hero.hero--editor .hero__title .hero__title__welcome {
  position: static;
  display: block;
  transform: none;
  opacity: 0.85;
  outline: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 0.25em 0.5em;
  margin-bottom: 0.5em;
}
.hero.hero--editor .hero__title .hero__title__welcome.is-active {
  opacity: 1;
}

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