/* .cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #222;   
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, border-color 0.2s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor::after {
  content: "";
  width: 6px;
  height: 6px;
  background: red;   
  border-radius: 50%;
} */
body {
  /* cursor: none;  */
}

/* Hide custom cursor on small devices */
@media (max-width: 768px) {
  .cursor {
    display: none !important;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor img {
  width: 60px;   /* size of logo */
  height: 60px;
  display: block;
}
