.w3s-split-title {
  display: grid;
  place-content: center;
  min-height: 40vh;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1rem + 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.w3s-split-title > div {
  grid-area: 1/1/-1/-1;
}

.w3s-split-title__top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
  color: var(--w3s-green);
}

.w3s-split-title__bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: linear-gradient(177deg, transparent 53%, #ffffff 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}

