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

.bg-video .bg-mask {
  position: absolute;
  inset: 0;
  display: flex;
  background: rgba(0, 0, 0, .5);
}

.bg-video .bg-content {
  margin-top: auto;
  margin-right: 20px;
  margin-bottom: auto;
}

.bg-video .bg-content .slogan,
.bg-video .bg-content a {
  color: #fff;
}


@media (min-width:1201px) {
  .bg-video {
    height: 100vh;
  }

  .bg-video .bg-content {
    margin-left: 20vw;
  }

  .bg-video .bg-content .slogan {
    margin: 0 0 100px;
    font-size: 48px;
    line-height: 62px;
  }
}

@media (min-width:1001px) and (max-width:1200px) {
  .bg-video {
    height: 100vh;
  }

  .bg-video .bg-content {
    margin-left: 14vw;
  }

  .bg-video .bg-content .slogan {
    margin: 0 0 80px;
    font-size: 42px;
    line-height: 54px;
  }
}

@media (min-width:769px) and (max-width:1000px) {
  .bg-video {
    height: 80vh;
  }

  .bg-video .bg-content {
    margin-left: 10vw;
  }

  .bg-video .bg-content .slogan {
    margin: 0 0 60px;
    font-size: 36px;
    line-height: 46px;
  }

}

@media (max-width:768px) {
  .bg-video {
    height: 360px;
  }

  .bg-video .bg-content {
    margin-left: 8vw;
  }

  .bg-video .bg-content .slogan {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 26px;
  }

  .bg-video .bg-content a {
    font-size: 14px;
    line-height: 16px;
  }

  .bg-video .bg-content a i {
    font-size: 14px;
  }
}

.slogan-fade-in {
  animation: sloganFadeIn ease 1s forwards;
}

.slogan-fade-out {
  animation: sloganFadeOut ease 1s forwards;
}

@keyframes sloganFadeIn {
  from {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes sloganFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
}