/*cursor Css Start */

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    border: 2px solid #000;
    transition: 0.3s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
  }
  .cursor2 {
    position: fixed;
    width: 4px;
    height: 4px;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    background-color: #000;
    transform: translate(-50%, -50%);
    transition: 0.1s;
    pointer-events: none;
    z-index: 1000;
  }
  
  .grow,
  .grow-small {
    transform: scale(3);
    background: white;
    mix-blend-mode: difference;
    border: none;
  }
  
  .grow-small {
    transform: scale(1.7);
  }