.slick-arrow {
  position: absolute;
  color: #fff;
  height: 40px;
  width: 20px;
  font-size: 40px;
  z-index: 20;
  line-height: 1;
  cursor: pointer;
}

.panel--white .slick-arrow {
  color: #000;
}

.slick-prev {
  top: 40%;
  left: -10px;
  z-index: 99;
  -webkit-animation: arrowleft 1s infinite;
  animation: arrowleft 1s infinite;
}

.slick-next {
  top: 40%;
  right: -5px;
  z-index: 99;
  -webkit-animation: arrowright 1s infinite;
  animation: arrowright 1s infinite;
}

.tabs-box a {
  cursor: pointer;
}

@-webkit-keyframes arrowleft {
  0%, 100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}

@keyframes arrowleft {
  0%, 100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}

@-webkit-keyframes arrowright {
  0%, 100% {
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
}

@keyframes arrowright {
  0%, 100% {
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
}

.kv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.kv .display__none {
  display: none;
}

.kv__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  z-index: 4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kv__header-item {
  width: 30%;
  max-width: 150px;
  padding: 0 20px;
}

.kv__header-item:last-child {
  width: auto;
  max-width: initial;
  padding: 0 0px 0 20px;
}

.kv__header-item:last-child img {
  max-height: 53px;
}

.kv__title {
  width: 100%;
  position: absolute;
  z-index: 5;
  height: 100vh;
  pointer-events: none;
}

.kv__title-item {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.kv__title-item svg {
  position: relative;
}

.kv__title-item::before {
  position: absolute;
  width: 100%;
  height: 50vh;
  content: "";
  display: block;
  bottom: 95%;
  background: white;
}

.kv__title-item::after {
  position: absolute;
  width: 100%;
  height: 50vh;
  content: "";
  display: block;
  top: 95%;
  background: white;
}

.kv__title-container {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  pointer-events: auto;
}

.kv__title-chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
  animation: move 3s ease-out infinite;
}

.kv__title-chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
  animation: move 3s ease-out 1s infinite;
}

.kv__title-chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
  animation: move 3s ease-out 2s infinite;
}

.kv__title-chevron:before, .kv__title-chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.kv__title-chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
  transform: skew(0deg, 30deg);
}

.kv__title-chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
  transform: skew(0deg, -30deg);
}

.kv__title-text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  -webkit-animation: pulse 2s linear alternate infinite;
  animation: pulse 2s linear alternate infinite;
}

.kv__blackcover {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: 4;
  pointer-events: none;
}

.kv__background {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
  min-width: 1920px;
}

@media (max-width: 767px) {
  .kv__background {
    top: 40%;
    left: 100%;
  }
}

.kv__subtitle {
  position: absolute;
  width: 80%;
  max-width: 800px;
  top: 10%;
  left: 2%;
}

.kv__subtitle img {
  -webkit-filter: drop-shadow(0 0 2px #fff);
  filter: drop-shadow(0 0 2px #fff);
}

@media (max-width: 767px) {
  .kv__subtitle {
    top: 70%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.kv__nexttitle {
  position: absolute;
  color: #000;
  top: 40%;
  font-size: 40px;
  font-weight: 700;
  left: 3%;
  text-shadow: 0 0 1px #fff;
}

@media (max-width: 1440px) {
  .kv__nexttitle {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .kv__nexttitle {
    font-size: 20px;
    top: 80%;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .kv__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kv__header-item:last-child img {
    max-width: none !important;
    width: auto !important;
    height: 53px;
  }
}

.kv__word {
  position: absolute;
  color: #fff;
  width: 50%;
  max-width: 900px;
  top: 57%;
  font-size: 16px;
  left: 3%;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .kv__word {
    width: 94%;
    top: 73%;
  }
}

@media (max-width: 767px) {
  .kv__word {
    top: 68%;
  }
}

@media (max-width: 575px) {
  .kv__word {
    top: 65%;
  }
}

@media (max-width: 575px) {
  .kv__word {
    top: 63%;
    font-size: 14px;
    line-height: 1.2;
  }
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@-webkit-keyframes pulse {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=ranaddstelth.css.map */