.onovo-hero {
  position: relative;
  height: 90vh;
  background: #000;
}

.onovo-hero .image,
.onovo-hero .image video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.onovo-hero .image video {
  object-fit: cover;
  object-position: center;
}

.onovo-hero .image .ovrl,
.onovo-hero .video .ovrl,
.onovo-intro .image .ovrl,
.onovo-intro .video .ovrl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.99;
  z-index: 1;
}

.onovo-hero .container {
  padding-top: 100px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 1;
}

.onovo-hero .title {
   position: absolute;
  left: 10px;
  bottom: 83px;
  margin: 0;
  font-size: 80px;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: -1px;
}
.ospan {
  margin: 0;
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -1px;
}

.onovo-sep {
  margin: -10px 0 0 15px;
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  width: 34px;
  height: 1em;
}

.onovo-sep .sep-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.onovo-hero .subtitle {
  margin: 50px 0 40px 710px;
  max-width: 560px;
  font-size: 28px;
  line-height: 38px;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 1);
}

.onovo-hero .subtitle.subtitle--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.onovo-hero .subtitle.subtitle--left {
  margin-left: 0;
}

.onovo-play-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 83px;
  width: 67px;
  height: 67px;
  z-index: 3;
}

.onovo-play-btn .play-circles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 4px solid #fff;
}

.onovo-play-btn.play--black .play-circles {
  border-color: #000;
}

.onovo-play-btn .play-circles::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  border: 4px solid #fff;
  opacity: 0.31;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  animation: onovo-play-btn-wave 2s infinite ease-in-out;
}

.onovo-play-btn.play--black .play-circles::after {
  border-color: #000;
}

@keyframes onovo-play-btn-wave {
  0% {
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.31;
  }
  50% {
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    opacity: 0;
  }
  51% {
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0;
  }
  100% {
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.31;
  }
}
.onovo-play-btn .play-lines {
  margin: -8px 0 0 -9px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 17px;
}

.onovo-play-btn .play-lines span {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: #fff;
}

.onovo-play-btn.play--black .play-lines span {
  background: #000;
}

.onovo-play-btn .play-lines span:nth-child(1) {
  left: 0;
  height: 17px;
}

.onovo-play-btn .play-lines span:nth-child(2) {
  left: 5px;
  height: 14px;
}

.onovo-play-btn .play-lines span:nth-child(3) {
  left: 10px;
  height: 10px;
}

.onovo-play-btn .play-lines span:nth-child(4) {
  left: 15px;
  height: 12px;
}

.onovo-play-btn.active .play-lines span:nth-child(1) {
  animation: onovo-play-btn-lines-1 1s infinite ease-in-out;
}

.onovo-play-btn.active .play-lines span:nth-child(2) {
  animation: onovo-play-btn-lines-2 0.8s infinite ease-in-out;
}

.onovo-play-btn.active .play-lines span:nth-child(3) {
  animation: onovo-play-btn-lines-3 0.4s infinite ease-in-out;
}

.onovo-play-btn.active .play-lines span:nth-child(4) {
  animation: onovo-play-btn-lines-4 0.6s infinite ease-in-out;
}

@keyframes onovo-play-btn-lines-1 {
  0% {
    height: 17px;
  }
  100% {
    height: 2px;
  }
}
@keyframes onovo-play-btn-lines-2 {
  0% {
    height: 14px;
  }
  100% {
    height: 2px;
  }
}
@keyframes onovo-play-btn-lines-3 {
  0% {
    height: 10px;
  }
  100% {
    height: 2px;
  }
}
@keyframes onovo-play-btn-lines-4 {
  0% {
    height: 12px;
  }
  100% {
    height: 2px;
  }
}

