.wowe-interactive-links {
  position: relative;
  overflow: hidden;
  height: clamp(480px, 70vw, 820px);
  background-color: #fff;
}
.wowe-interactive-links .wowe-item-wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: clamp(20px, 5vw, 40px);
}
.wowe-interactive-links .wowe-item {
  display: table;
}
.wowe-interactive-links .wowe-title,
.wowe-interactive-links .wowe-line,
.wowe-interactive-links .wowe-subtitle {
  position: relative;
  z-index: 1;
}
.wowe-interactive-links .wowe-subtitle {
  font-family: "Roboto", Sans-serif;
  font-weight: 300;
  opacity: 0.3;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
  margin: 0;
  font-size: clamp(15px, 2vw, 20px);
}
.wowe-interactive-links .wowe-line {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1px;
  margin-left: clamp(20px, 3vw, 35px);
  opacity: 0.2;
  background-color: #000;
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-title {
  font-family: "popins", sans-serif;
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  padding: clamp(15px, 2vw, 20px) clamp(20px, 3vw, 35px);
  color: transparent;
  -webkit-text-stroke: 2px #4e4e4f;
  text-stroke: 2px #4e4e4f;
  transition-duration: 0.5s;
  margin: 0;
  cursor: pointer;
}
.wowe-interactive-links .wowe-title:after {
  content: attr(data-link-text);
  white-space: nowrap;
  position: absolute;
  left: clamp(20px, 3vw, 35px);
  bottom: clamp(15px, 2vw, 20px);
  width: 0;
  height: calc(100% - clamp(15px, 2vw, 20px) * 2);
  -webkit-text-fill-color: #000;
  transition-duration: 0.4s;
  overflow: hidden;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-title a {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.wowe-interactive-links .wowe-img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition-duration: 0.3s;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
}
.wowe-interactive-links .wowe-item.active .wowe-subtitle {
  opacity: 1;
  transform: translateX(calc(clamp(20px, 3vw, 35px) * 2 - 5px));
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-item.active .wowe-line {
  opacity: 0;
  transform: scale(0);
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-item.active .wowe-title {
  -webkit-text-stroke: 0 #4e4e4f !important;
  text-stroke: 0 #4e4e4f !important;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-item.active .wowe-title::after {
  width: calc(100% - clamp(20px, 3vw, 35px) * 2);
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.wowe-interactive-links .wowe-item.active .wowe-img {
  opacity: 1;
  transition-duration: 0.3s;
}