.section {
  align-items: center;
  height: 100vh;
  padding-left: 50%;
  display: flex;
  overflow: hidden;
}

.body {
  background-color: #222;
}

.imgwrap {
  padding-top: 132%;
  position: relative;
  overflow: hidden;
}

.img {
  filter: grayscale();
  cursor: crosshair;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .325s;
  position: absolute;
  inset: 0%;
}

.img:hover {
  filter: grayscale(0%);
}

.wrap {
  display: flex;
}

.item {
  width: 25vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}

.img---size {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 20%;
  transform: translate(-20%);
}

.img---move {
  position: absolute;
  inset: 0%;
}

.scenesticky {
  position: sticky;
  top: 0;
}

.scenetrigger {
  height: 500vh;
}

.scenetrigger.x-01 {
  height: 50vh;
}

.scenetrigger.x-00 {
  margin-top: -33.333vh;
}

.scene---extra {
  height: 42vh;
}

.scene---trigger-01 {
  height: 100vh;
}

.scene---subtrigger {
  outline-offset: 0px;
  outline: 1px solid red;
  height: 12vh;
}

.itemwrap {
  transform: translate(-12.5vw);
}

.h1 {
  z-index: 99999;
  color: #bbb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 0;
  position: fixed;
  inset: 48px auto auto 48px;
}

.h2 {
  z-index: 99999;
  color: #bbb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 0;
  position: fixed;
  inset: auto auto 48px 48px;
}

.text-span {
  text-decoration: line-through;
}

@media screen and (max-width: 991px) {
  .item {
    width: 40vw;
  }
}

@media screen and (max-width: 767px) {
  .section {
    height: auto;
    padding-left: 0%;
    display: block;
  }

  .imgwrap {
    padding-top: 132%;
  }

  .wrap {
    margin-left: 42px;
    display: block;
  }

  .item {
    width: 60vw;
    margin-bottom: 24px;
  }

  .scenesticky {
    position: static;
  }

  .scenetrigger {
    height: 300vh;
    display: none;
  }

  .scene---extra {
    display: none;
  }

  .itemwrap {
    padding-top: 140px;
    position: static;
    inset: 0% auto auto 50%;
    transform: none;
  }

  .h1 {
    position: absolute;
  }

  .h2 {
    position: absolute;
    inset: 72px auto auto 48px;
  }
}

@media screen and (max-width: 479px) {
  .h1 {
    font-size: 14px;
  }

  .h2 {
    font-size: 14px;
    line-height: 0;
    top: 68px;
  }
}


