.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: var(--bg-off-white);
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  top: 7.2rem;
  left: 2.4rem;
  width: calc(100% - 4.8rem);
  height: calc(100% - 9.6rem);
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 1440px) {
  .hero-image {
    left: 3.6rem;
    height: calc(100% - 10.8rem);
    width: calc(100% - 7.2rem);
  }
}

.hero-image-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-mobile {
    display: none;
  }

  .hero-image-desktop {
    display: block;
  }
}

.hero-content {
  position: absolute;
  bottom: 4.8rem;
  left: 3.6rem;
  right: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.4rem 1.2rem;
  background-color: rgba(247, 250, 248, 0.9);
  border-radius: 1.2rem;
}

@media (min-width: 768px) {
  .hero-content {
    bottom: 7.2rem;
    left: 7.2rem;
    right: auto;
    max-width: 45rem;
    padding: 3.6rem 2.4rem;
    border-radius: 2.4rem;
  }
}

@media (min-width: 1280px) {
  .hero-content {
    max-width: 60rem;
    padding: 3.6rem;
  }
}

@media (min-width: 1400px) {
  .hero-content {
    bottom: 9.6rem;
    left: 9.6rem;
    max-width: calc(50% - 9.6rem);
    padding: 4.8rem;
  }
}

.hero-title {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.8rem;
  }
}

.hero-text {
  margin-bottom: 4.8rem;
}
