.reveal {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 0.6s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-feature-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-feature-content {
  pointer-events: none;
}
.parallax {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.parallax-mid {
  position: absolute;
  bottom: -480px;
  right: 1%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  --parallaxY: 0px;
  transform: translate(0, calc(200px + var(--parallaxY)));
  transition: opacity 0.6s ease, transform 1s ease-out;
}
.parallax-mid img {
  width: 100%;
}
.parallax.mid-visible .parallax-mid {
  opacity: 1;
  transform: translate(0, calc(0px + var(--parallaxY)));
}
.lp-feature-copy {
  position: absolute;
  left: 8%;
  width: 60%;
  max-width: 950px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.lp-feature-copy h2 {
  font-weight: 600;
  text-align: left;
  font-size: 128px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1;
}
.lp-feature-copy p {
  width: 70%;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 10px;
}
.lp-feature-copy p span {
  white-space: nowrap;
  text-wrap: nowrap;
}
.btnGroup {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  pointer-events: all;
}
.lp-feature-mbl {
  display: none;
}
.lp-feature-mbl {
  display: none;
}
.content-white-btn {
  border: 1px solid var(--night);
}
@media screen and (max-width: 1500px) {
  .lp-feature-copy h2 {
    font-size: 8vw;
  }
}
@media screen and (max-width: 992px) {
  .lp-feature-container {
    flex-direction: column;
  }
  .lp-feature-copy {
    position: relative;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 30px;
  }
  .lp-feature-copy h2 {
    font-size: 10.66vw;
    margin-top: 20px;
    text-align: center;
  }
  .lp-feature-copy p {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .btnGroup {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .lp-feature-dsktp {
    display: none;
  }
  .lp-feature-mbl {
    display: block;
  }
  .reveal {
        opacity: 1;
    transform: none;
    transition: none;
  }
  .parallax-mid {
    transform: translate(0, calc(0 + var(--parallaxY)));
  }
}