.hero--fixed > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero--fade .hero__list {
  position: relative;
  overflow: hidden;
}
.hero--fade .hero__list::before {
  display: block;
  padding-top: 40%;
  content: "";
}
.hero--fade .hero__list > li {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
.hero--fade .hero__list > li:nth-of-type(1) {
  opacity: 0;
  z-index: 3;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.hero--fade .hero__list > li:nth-of-type(2) {
  opacity: 1;
  z-index: 2;
}
.hero--fade .hero__list > li:nth-of-type(3) {
  opacity: 1;
  z-index: 1;
}
.hero--scroll .hero__list {
  position: relative;
  overflow: hidden;
}
.hero--scroll .hero__list::before {
  display: block;
  padding-top: 35%;
  content: "";
}
.hero--scroll .hero__list > li {
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: left 1s ease;
  transition: left 1s ease;
}
.hero--scroll .hero__list > li:nth-of-type(1) {
  left: -100%;
}
.hero--scroll .hero__list > li:nth-of-type(2) {
  left: 0%;
}
.hero--scroll .hero__list > li:nth-of-type(3) {
  left: 100%;
}