.home-spin-dot {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 40%;
  left: calc(50% - 16px)
}

.home-spin-dot i {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #35D46A;
  transform: scale(0.75);
  display: block;
  position: absolute;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
  transform-origin: 50% 50%;
}

.home-spin-dot i:nth-child(1) {
  left: 0;
  top: 0;
}

.home-spin-dot i:nth-child(2) {
  right: 0;
  top: 0;
  animation-delay: 0.4s;
}

.home-spin-dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

.home-spin-dot i:nth-child(4) {
  left: 0;
  bottom: 0;
  animation-delay: 1.2s;
}

.home-spin-dot-spin {
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}

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

@keyframes antRotate {
  to {
    transform: rotate(405deg);
  }
}
