.sticky-features__wrap {
  width: 100%;
  padding: 0 9.6em 0em 9.6em;
  box-sizing: border-box;
  position: relative;
  background-color: var(--black, #1E1E1E);
  color: var(--white, #FFFFFF);
}

.sticky-features__scroll {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.sticky-features__container {
  grid-column-gap: 6em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: flex;
}

.sticky-feaures__col {
  position: relative;
}

.sticky-feaures__col.is--img {
  overflow: hidden;
  border-radius: 10px;
  flex: 0 0 45%;
}

.sticky-feaures__col:not(.is--img) {
  flex: 1;
}

.sticky-features__progress-w {
  position: absolute;
  left: 0em;
  right: 0em;
  bottom: 0em;
  height: 0.25em;
  background-color: rgba(255, 255, 255, 0.15);
}

.sticky-features__progress-bar {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
}

.sticky-features__img-collection {
  width: 100%;
}

.sticky-features__img-list {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
}

.sticky-features__img-item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  opacity: 0;
}

/* Show only 1st items on live site */
[data-sticky-feature-visual-wrap]:first-of-type{ 
  opacity: 1;
}

.sticky-features__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sticky-features__text-collection {
  height: 100%;
}

.sticky-features__text-list {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
}

.sticky-features__text-item {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  opacity: 0;
  pointer-events: none;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Show only 1st items on live site */
[data-sticky-feature-item]:first-of-type{ opacity: 1; pointer-events: auto; }

.sticky-features__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'RMNeue-Regular', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: normal;
  line-height: 1;
  color: var(--white, #FFFFFF);
  text-transform: uppercase;
}

.sticky-features__p {
  color: #ffffffb3;
  margin-bottom: 0;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.sticky-features__p.is--link {
  color: #fff;
  text-decoration: underline;
}

.sticky-features__p.is--orange {
  color: var(--orange-primary, #EB6A26);
}

.sticky-features__tag {
  background-color: #ffffff1a;
  border-radius: .25em;
  margin-bottom: 1.5em;
  padding: .5em .625em;
  font-size: 1em;
  line-height: 1;
}

.resource-end {
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .sticky-features__wrap {
      padding: 4em 2em;
  }
}

@media screen and (max-width: 767px) {
  .sticky-features__wrap {
    padding: 2em 1.25em;
  }

  .sticky-features__scroll {
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100svh;
    padding-top: 1.25em;
    padding-bottom: 2.5em;
  }

  .sticky-features__container {
    grid-column-gap: 2em;
    grid-row-gap: 7.25em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .sticky-features__img-list {
    aspect-ratio: 1;
  }

  .sticky-features__text-list {
    min-height: 16em;
    max-height: none;
  }

  .sticky-features__text-item {
    max-width: none;
    grid-column-gap: 0em;
    grid-row-gap: 0em;
  }

  .sticky-features__heading {
    font-size: 2em;
  }

  .sticky-features__p {
    font-size: 0.95em;
  }

  .sticky-features__tag {
    margin-bottom: 5px;
  }
}