.inner_banner_section,
.banner_section {
  position: relative;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

/* Arrow */
.scroll-down span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid #00aeef;
  border-right: 2px solid #00aeef;
  transform: rotate(45deg);
  margin: -6px auto;
  animation: scrollArrow 1.5s infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

/* Text */
.scroll-down p {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
          color: #ffffff;
  text-transform: uppercase;
  animation: fadeText 1.5s infinite;
      font-weight: 600;
}

/* Arrow animation */
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

/* Text fade animation */
@keyframes fadeText {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}