.about-us-solar .solar-system .circle-image {
    height: 40px;
    width: 40px;
    background-color: #f2fbff;
    border-radius: 100%;
  }
  .about-us-solar .solar-system {
    height: 380px;
    position: relative;
  }
  .about-us-solar .circle {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .about-us-solar .circle1 {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .about-us-solar .circle2 {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .about-us-solar .earthzero {
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .about-us-solar .earth1 {
    height: 40px;
    width: 40px;
    animation: earth-rotate1 12s linear infinite;
  }
  .about-us-solar .earth11 {
    height: 40px;
    width: 40px;
    animation: earth-rotate1 10s linear infinite;
  }
  .about-us-solar .earth2 {
    height: 40px;
    width: 40px;
    animation: earth-rotate2 5s linear infinite;
  }
  .about-us-solar .sun {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .about-us-solar .earth {
    height: 40px;
    width: 40px;
    animation: earth-rotate 10s linear infinite;
  }
  .about-us-solar .earthone {
    height: 40px;
    width: 40px;
    animation: earth-rotate 14s linear infinite;
  }
  .about-us-solar .earthtwo {
    height: 40px;
    width: 40px;
    animation: earth-rotate 12s linear infinite;
  }
  .about-us-solar .earththree {
    height: 40px;
    width: 40px;
    animation: earth-rotate 9s linear infinite;
  }
  @keyframes earth-rotate {
    from {
      transform: rotate(0) translateX(160px) rotate(0);
    }
    to {
      transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
  }
  @keyframes earth-rotate1 {
    from {
      transform: rotate(00deg) translateX(90px) rotate(00deg);
    }
    to {
      transform: rotate(360deg) translateX(90px) rotate(-360deg);
    }
  }
  @keyframes earth-rotate2 {
    from {
      transform: rotate(0) translateX(60px) rotate(0);
    }
    to {
      transform: rotate(360deg) translateX(60px) rotate(-360deg);
    }
  }