.orbit-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.orbit-core {
  position: relative;
  width: 300px;
  height: 300px;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.orbit-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

/* Precise orbiting */
.orbiting-icon {
  --radius: 120px;
  /* Keep enough space */
  --angle: 0deg;
  --duration: 20s;

  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
  transform-origin: center;
  animation: orbit var(--duration) linear infinite;
}

.orbiting-icon.reverse {
  animation-direction: reverse;
}

.orbiting-icon img {
  width: 72%;
  height: 72%;
  display: block;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #1a1a1a;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  padding: 4px;
  box-sizing: border-box;
  /* Important for consistent sizing */
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
  }

  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}


.sponsors {
  margin-top: 30px;
  overflow-x: hidden;
  width: 100%;
}

.translator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: translator 20s linear infinite;

}

@keyframes translator {
  from {
    transform: translate(200%);
  }

  to {
    transform: translate(-200%);
  }
}

.sponsors img {
  margin: 2px 20px;
}


.eagle_box {
  width: 100%;
}

.eagle_box .box {
  height: 350px;
}

.eagle_box .eagle {
  height: 150px;
  animation: rise 7s linear infinite;
}



@keyframes rise {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
