
#hero-10c-item {
  height: 40px;
  width: 40px;
  animation: 
  spin 3s linear infinite 3s,
  change 6s infinite linear 1.5s;
  border-radius: 50%;
  background-size: cover;
  margin: 0 auto;
}

@keyframes change {
  0%,49.99%{
    background-image: url("/images/thirstchange/10c.png");
  }
  50%, 100% {
    background-image: url("/images/thirstchange/CR_LOGO.png");
  }
}

@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }

  45% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  55% {
    transform: rotateY(0deg);
  }

  0% {
    transform: rotateY(0deg);
  }
}



.grow {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: grow 2.2s;
  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}


@keyframes grow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}