.hero {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero .container {
  height: 100%;
}
.hero .container .hero-tit {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-family: var(--fontFamily2);
  font-weight: 300;
  z-index: 1;
}
.hero > picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero > picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(71, 10, 104, 0.6);
}
.hero > picture .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1024px) {
  .hero {
    height: 260px;
  }
  .hero .hero-tit {
    max-width: 662px;
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: 160px;
  }
  .hero .hero-tit {
    max-width: 422px;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 120px;
  }
  .hero .hero-tit {
    font-size: 20px;
    line-height: 24px;
  }
}/*# sourceMappingURL=hero.css.map */