
.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.line::after,
.line::before {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  -webkit-animation: drop 7s 0s infinite;
  animation: drop 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) {
  left: 5%;
}

.line:nth-child(1)::after {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.line:nth-child(2)::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.line:nth-child(1)::before {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.line:nth-child(2)::before {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.line:nth-child(2) {
  right: 5%;
}

@-webkit-keyframes drop {
  0% {
    top: 0%;
  }

  100% {
    top: 110%;
  }

}

@keyframes drop {
  0% {
    top: 0%;
  }

  100% {
    top: 110%;
  }
}



/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;

  z-index: 1000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.ca>main {
  transform: scale(0.8);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}


.frame {
  padding: 3rem 5vw;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.frame__title {
  font-size: 1.5rem;
  font-weight: 200 !important;
  margin: 0 0 1rem;
  font-weight: normal;
}

.frame__title img {
  transform: rotate(45deg);
  padding: 0 10px;

}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 13rem);
  position: relative;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (min-width: 53em) {
  .message {
    display: none;
  }

  .frame {
    position: fixed;
    text-align: left;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 3rem;
    pointer-events: none;
    grid-template-columns: 75% 25%;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title links"
      "... ..."
      "... demos";
  }

  .frame__title-wrap {
    grid-area: title;
    display: flex;
  }

  .frame__title {
    margin: 0;
  }

  .content {
    height: 100vh;
    justify-content: center;
  }
}

/* plugin css */
.rgbKineticSlider {
  display: block;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

canvas {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.marquee h1{
  font-size: 5em;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase
}