@charset "UTF-8";

.scroll-down-container {
  position: absolute;
  right: 30px;
  bottom: 45px;
  width: 50px;
  height: 50px;
  z-index: 10;
}

.arrow {
  position: absolute;
  width: 80%;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

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

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

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.arrow:before {
  left: 12%;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: -12%;
  width: 51%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.scroll-down-text {
  display: block;
  padding-top: 65px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
  text-decoration: none;
  text-align: center;
}

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

@media screen and (max-width: 1024px) {
  .scroll-down-container {
    right: calc(50% - 15px);
    width: 30px;
    height: 30px;
  }
  .scroll-down-text {
    margin-left: -7.5px;
    padding-top: 55px;
  }
  .arrow {
    height: 4.5px;
  }
}