@keyframes brainBob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes brainBobShadow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.about-brain {
  max-width: 610px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-brain .brain-image {
  width: 100%;
  aspect-ratio: 610/487;
  background-image: url(/wp-content/uploads/2025/04/Brain-Clear-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: brainBob 2s ease-in-out infinite;
}
.about-brain .brain-shadow {
  width: 100%;
  border-radius: 480px;
  background: rgba(77, 78, 83, 0.12);
  filter: blur(6px);
  max-width: 100%;
  height: 20px;
  animation: brainBobShadow 2s ease-in-out infinite;
}
@media screen and (max-width: 991.98px) {
  .about-brain .brain-shadow {
    display: none;
  }
}
