.scroll-down-indicator {
  bottom: 24px;
  z-index: 2;
  position: fixed;
  width: 100%;
}

.scroll-down-indicator .scroll-down-animation {
  -webkit-filter: drop-shadow(0px 0px 4px #192328);
  filter: drop-shadow(0px 0px 4px #192328);
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  cursor: pointer;
}

.bottom-bg-gradient {
  bottom: 0px;
  z-index: 1;
  position: fixed;
  width: 100%;
  background: linear-gradient(
      0deg,
      rgba(25, 35, 40, 0.9) 10%,
      rgba(255, 255, 255, 0) 100%
    )
    no-repeat;
  height: 110px;
}

.scroll-down-indicator p {
  display: block;
  margin: auto;
  width: 120px;
  text-align: center;
  margin-top: 10px;
}

.scroll-down-indicator img {
  display: block;
  margin: auto;
  width: 60px;
}

@-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}
