@charset "utf-8";
/* CSS Document */

.kv_h1_wrapper {
  position: absolute;
  width: 56%;
  top: 0%;
  left: 55%;
  transform: translate(-48%, 23%);
  animation-name: kv_h1_wrapper;
  animation-duration: 0.4s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  animation-timing-function: cubic-bezier(.25,.1,.25,1);
  filter: blur(10px);
}
@keyframes kv_h1_wrapper {
  from {
    left: 55%;
    filter: blur(10px);
  }
  to {
    left: 50%;
    filter: blur(0px);
  }
}

.kv_h1 {
    position: relative;
    width: 100%;
    top: 0%;
    transform: translate(-53%, 0%);
}

.kv_clock {
    position: absolute;
    width: 6%;
    top: 12%;
    left: 53.6%;
}

.kv_clock1 {
    position: absolute;
    animation-name: kv_clock1;
    animation-duration: 8s;
    transform-origin: 50% 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes kv_clock1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.kv_clock2 {
    position: absolute;
    animation-name: kv_clock2;
    animation-duration: 2s;
    transform-origin: 50% 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes kv_clock2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.kv_lights_wrapper {
    position: absolute;
    width: 33%;
    top: 30%;
    left: 50%;
}

.kv_light1 {
    position: absolute;
    margin-top: 0%;
    animation-name: kv_light1;
    animation-duration: 0.7s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}
@keyframes kv_light1 {
  0% {
    transform: translate(10%, 0%);
    opacity: 1;
  }
  80% {
    transform: translate(50%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(50%, 0%);
    opacity: 0;
  }
}

.kv_light2 {
    position: absolute;
    margin-top: 16%;
    animation-name: kv_light2;
    animation-duration: 0.7s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}
@keyframes kv_light2 {
  0% {
    transform: translate(15%, 0%);
    opacity: 0;
  }
  20% {
    transform: translate(18%, 0%);
    opacity: 1;
  }
  80% {
    transform: translate(55%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(55%, 0%);
    opacity: 0;
  }
}

.kv_light3 {
    position: absolute;
    margin-top: 25%;
    animation-name: kv_light3;
    animation-duration: 0.7s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}
@keyframes kv_light3 {
  0% {
    transform: translate(25%, 0%);
    opacity: 0;
  }
  20% {
    transform: translate(28%, 0%);
    opacity: 1;
  }
  80% {
    transform: translate(45%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(45%, 0%);
    opacity: 0;
  }
}

.kv_light4 {
    position: absolute;
    margin-top: 45%;
    animation-name: kv_light4;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}
@keyframes kv_light4 {
  0% {
    transform: translate(25%, 0%);
    opacity: 0;
  }
  20% {
    transform: translate(28%, 0%);
    opacity: 1;
  }
  80% {
    transform: translate(35%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(35%, 0%);
    opacity: 0;
  }
}

.kv_light5 {
    position: absolute;
    margin-top: 50%;
    animation-name: kv_light5;
    animation-duration: 0.4s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    opacity: 0;
}
@keyframes kv_light5 {
  0% {
    transform: translate(25%, 0%);
    opacity: 0;
  }
  20% {
    transform: translate(28%, 0%);
    opacity: 1;
  }
  80% {
    transform: translate(35%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(35%, 0%);
    opacity: 0;
  }
}

@media all and (max-width: 550px) {
  .kv {
    position: relative;
  }
  .kv_h1_wrapper {
    width: 130%;
    top: -5%;
    eft: 65%;
  }
  @keyframes kv_h1_wrapper {
    from {
      left: 65%;
      filter: blur(10px);
    }
    to {
      left: 57%;
      filter: blur(0px);
    }
  }
}
