.hero-wrapper {
  position: relative;
  z-index: 0;
  max-height: 350px;
  overflow: hidden;
}
.template--collection .hero-wrapper {
  max-height: none;
}
.hero-wrapper img {
  min-height: 500px;
  object-fit: cover;
  width: 100%;
  display: block;
}
.hero-wrapper .hero_content {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  z-index: 11;
}

@media all and (max-width: 480px) {
  .hero-wrapper img {
    min-height: 300px;
  }
}