.main .iconFixed {
  display: block;
  width: 100px;
  position: fixed;
  z-index: 200;
  right: 3%;
  bottom: 10%;
  animation: iconAnimate 3s linear Infinite;
}

.main .iconFixed img{
width: 100%;
height: 100%;
object-fit: cover;
}


@keyframes iconAnimate {
  0% {
    bottom: 10%;
    filter: drop-shadow(0 0 20px rgb(247, 5, 255));
  }
  50% {
    bottom: 5%;
    filter: drop-shadow(0 0 0px rgb(64, 127, 221));
  }

  100% {
    bottom: 10%;
    filter: drop-shadow(0 0 20px rgb(247, 5, 255));
  }
}

@media (max-width: 960px) {
  .main .iconFixed {
    width: 50px;
  }
}

