.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
.mouse-cursor#cursor-outer {
  margin-left: -13px;
  margin-top: -13px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  border: 2px solid #feae34;
  transition: all 0.08s ease-out;
}
.mouse-cursor#cursor-outer.pointer {
  transition: none;
  border: none;
  border-color: rgba(36, 38, 145, 0.5);
  width: 40px;
  height: 40px;
}
.mouse-cursor#cursor-inner {
  margin-left: -5px;
  margin-top: -5px;
  width: 13px;
  height: 13px;
  z-index: 10000001;
  background: #feae34;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mouse-cursor#cursor-inner.pointer {
  background: #feae34;
  width: 25px;
  height: 25px;
  margin-left: -10px;
  margin-top: -10px;
}



* ::-moz-selection {
  background-color: #feae34;
  color: white;
}
* ::selection {
  background-color: #feae34;
  color: white;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #feae34;
}
 