

a {
  color: #333333;
  text-decoration: none;
}

html,
html *,
body,
body * {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	z-index: 9999
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #4d95e4;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(77, 149, 228, 0.5);
}
@media only screen and (max-width: 767px) {

.cursor-dot,
.cursor-dot-outline {
	display: none !important
	}
}