.fanCircle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  margin-top: var(--space-md);
  padding: 0;
  background-image: radial-gradient(circle at center,
      rgba(var(--color-secondary), 1) 0%,
      rgba(var(--color-secondary), 1) 40%,
      transparent 60%);
  background-position: center;
  background-size: 100% 100%;
  animation: fanBreath 3s ease-in-out infinite;
}

@keyframes fanBreath {

  0% {
    background-size: 100% 100%;
  }

  50% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }

}
@keyframes cRotate360 {
    from {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}
.fanCircle .fanCircleText {
  display: none;
}

.fanCircle .icon2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
  animation: cRotate360 20s linear infinite;
}

.fanCircle .icon2 text {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: rgba(var(--color-bg), 1);
  dominant-baseline: middle;
}

.fanCircle .icon1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  padding: 2rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(var(--color-secondary), 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fanCircle .icon1 svg {
  width: 2rem;
  height: 2rem;
  margin: 0;
  display: block;
}

.fanCircle .icon1 svg path {
  fill: #fff;
}