.hero {
  position: relative;
  color: var(--color-neutral--0);
}
.hero--large {

}
.hero__wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.hero__title {
  max-width: 920px;
}
.hero__description {
  max-width: 676px;
}
.hero__description p{
  line-height: var(--content-line-height);
  font-weight: 300;
  font-size: var(--content-size-m);
}
.hero__image {
  position: relative;
}
.hero__image::before {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 48.44%, rgba(0, 0, 0, 0.00) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}
@media all and (min-width: 1000px){
  .hero__title {
    max-width: 600px;
  }
  .hero__description p{
    font-size: var(--content-size-l);
  }
}
@media all and (min-width: 1600px){
  .hero__title {
    max-width: 920px;
  }
}
