.HeroItem {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
  overflow: hidden;
  min-height: 80vh;
}

.HeroItem-content {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 13.29%, transparent);
}

.HeroItem-contentWrapper {
  max-width: 35rem;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.HeroItem-contentFrame {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.HeroItem-title {
  font-size: var(--textXxxl);
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 36rem) {
  .HeroItem-title {
    font-size: var(--textLg);
  }
}

.HeroItem-title:last-child {
  margin-bottom: 0;
}

.HeroItem-text {
  color: #fff;
  margin: 0;
}

.HeroItem-text:last-child {
  margin-bottom: 0;
}

.HeroItem img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: var(--layerNegativeZIndex);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 48rem) {
  .HeroItem img {
    min-width: 61.5rem;
  }
}

/*# sourceMappingURL=hero-item.min.css.map */
