/* rotate around */
.rotation-wrapper {
  width: 100%;
  height: 425px;
  @media (width > 640px) {
    height: 600px;
  }
}

.center-div,
.rotation-path {
  background-color: transparent;
  border: solid #6852d9 3px;
  border-radius: 9999px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-div {
  animation: scaleAnimation 1s ease-in-out infinite alternate;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
}
.circle-1 {
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  width: 200px;
  height: 200px;
}
.parent-rotate-1 {
  animation: pathRotate 20s infinite linear;
  width: 200px;
  height: 200px;
}
.child-rotate-1 {
  z-index: 9999;
  animation: childRotate 20s infinite linear;
}
.circle-2 {
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
  height: 300px;
}
.parent-rotate-2 {
  animation: pathRotate 20s infinite linear;
  width: 270px;
  height: 270px;
}
.child-rotate-2 {
  z-index: 9999;
  animation: childRotate 20s infinite linear;
}
.circle-3 {
  top: calc(50% - 200px);
  left: calc(50% - 200px);
  width: 400px;
  height: 400px;
}
.parent-rotate-3 {
  animation: pathRotate 20s infinite linear;
  width: 340px;
  height: 340px;
}
.child-rotate-3 {
  z-index: 9999;
  animation: childRotate 20s infinite linear;
}
.circle-4 {
  top: calc(50% - 250px);
  left: calc(50% - 250px);
  width: 500px;
  height: 500px;
}
.parent-rotate-4 {
  animation: pathRotate 20s infinite linear;
  width: 470px;
  height: 360px;
}
.child-rotate-4 {
  z-index: 9999;
  animation: childRotate 20s infinite linear;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.75);
  }
}
@keyframes pathRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes childRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
