strong.highlight {
  position: relative;
  overflow: hidden;
}

strong.highlight span {
  position: relative;
  z-index: 1;
}

strong.highlight::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 80%;
  left: -2px;
  bottom: 0;
  z-index: 0;

  background-image: linear-gradient(to right, #DFFD7C, #EEFD6B);
  border-radius: 6px;
  padding: 3px 6px;

  transform: rotate(-1.2deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease;
}

strong.highlight.active::before {
  transform: rotate(-1.2deg) scaleX(1);
}

.demo-wrapper {
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.wrapper img {
  width: 500px;
  height: auto;
}

.wrapper li {
  flex: 0 0 auto;
}

.demo-gallery:not(.last) {
  padding-bottom: 0.5rem;
}

.demo-text .text {
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 1;
  font-weight: 900;
  color:#FAFAFA;
  /*
  background: linear-gradient(to right, #DFFD7C, #EEFD6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  */
}

.demo-gallery .wrapper li {
  width: 500px;
}


.rw_menu {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: #fff;
    border-radius: 15px;
    flex: auto;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    width: 100%;
    max-width: 750px;
    height: 100%;
    padding: 0 10px 0 15px;
    display: flex;
    position: static;
    box-shadow: 0 2px 8px #0000001a;
}
