.hwm-hero {
  min-height: var(--hero-h, 100vh);
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 80px;
}

.hwm-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* tumendus */
}

.hwm-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 48px));
  text-align: center;
  color: #fff;
}

/* .hwm-hero__text h1,
.hwm-hero__text h2,
.hwm-hero__text h3 {
  color: #fff;
  margin: 0 0 12px;
  font-weight: 200;
} */

.hwm-hero__text p {
  margin: 0;
  color: #fff;
}

.hwm-hero__down {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 100px;
  height: 44px;
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.hwm-hero__down img {
  width: 100%;
  height: auto;
  display: block;
}

/* fallback nool kui ikooni pole */
.hwm-hero__chev {
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: hwm-bounce 1.4s infinite;
}

@keyframes hwm-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}

.hwm-hero {
  position: relative;
}
