* {
  cursor: url("../imgs/arrow-main.png"), auto;
}

svg path {
  cursor: url("../imgs/pointer-main.png"), pointer;
}

svg g {
  z-index: 2;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.nav-arr {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80px;
  max-height: 60px;
  width: 5%;
  height: 10%;
  z-index: 1000;
  cursor: url("../imgs/pointer-main.png"), auto;
}