/* AI video */
.engine .moveBox__video {
  position: absolute;
  top: 49%;
  left: 49%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
}

.engine .moveBox {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.engine .moveBox__bg {
  position: relative;
  width: 100%;
  z-index: 2;

  overflow: hidden;
}

.engine .moveBox__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  display: block;
}

.engine .moveBox__bg-position {
  position: absolute;
  width: 100%;
  z-index: 3;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.engine .moveBox__bg-active {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 1;
}

.engine .moveBox .artist {
  position: absolute;
  width: 100%;
  z-index: 3;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.engine .moveBox .scene {
  max-width: 1920px;
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.7);
  transform: translate(-50%, -50%) scale(1.7);
  width: 29.5vw;
  margin: 0 auto;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  z-index: 5;
}

.engine .moveBox .scene__figure {
  width: 43vw;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -0.5%);
  transform: translate(-50%, -0.5%);
  z-index: 10;
}

.engine .moveBox .scene__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 576px) {
  .engine__btn-item {
    width: auto;
  }

  .engine .textBox__flex .tabText {
    font-size: 24px;
  }

  .engine .moveBox {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
  }

  .engine .moveBox__bg {
    width: 100%;
  }
}

@media (min-width: 996px) {
  .engine .moveBox .scene {
    top: 32.5%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  .engine .moveBox__video {
    width: 55%;
    top: 55%;
    left: 64%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1930px) {
  .engine .moveBox {
    max-width: 100%;
  }

  .engine .moveBox .scene {
    top: 32.8%;
  }
}

/* AI video */