.hero_menu {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  z-index: 2;
}
.hero_menu .option {
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 10px;
  cursor: pointer;
}
.hero_menu .option .title,
.hero_menu .option .subtitle {
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}
.hero_menu .option .title {
  position: relative;
  z-index: 1;
}
.hero_menu .option .title:before{
  content: '';
  position: absolute;
  top:-7px;
  left: 0;
  width: 0px;
  height: 2px;
  background-color: #fff;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}
.hero_menu .option:hover .title:before{
  width: 25px;
}

.hero_menu .option a{
  display: block;
  position: absolute;
  left: 0;
  top: 0; width: 100%;
  height: 100%;
  z-index: 2;
}

.hero_menu .option .subtitle {
  opacity: 0;
  position: absolute;
  bottom: 0;
  font-size: 0.85rem;
  line-height: 0.85rem;
  pointer-events: none;
  z-index: 0;
  min-width: 110px;
}
.hero_menu .option:hover .title {
  transform: translateY(-1.5rem);
}
.hero_menu .option:hover .subtitle {
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .bg,
.hero_video_stage,
.first_video_container,
.dynamic_video_container {
  position: absolute;
  inset: 0;
}

.first_video_container,
.dynamic_video_container {
  width: 100%;
  height: 100%;
}

.hero .bg img,
.hero-video,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero_video_stage {
  z-index: 1;
}

.first_video_container {
  z-index: 1;
}

.dynamic_video_container {
  z-index: 2;
  pointer-events: none;
}

.dynamic_video_inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  overflow: hidden;
  opacity: 1;
  transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */ 
  transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
  will-change: height;
}

.dynamic_video_inner.ready {
  height: 100%;
  opacity: 1;
}

.dynamic_media_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-video {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.dynamic_video_inner.video-ready .hero-video {
  opacity: 1;
}
