.cursor2,.cursor{
  display: none;
}
@media (min-width:1200px) {
  .cursor2,.cursor{
    display: inline-block;
  }
  .cursor {
    z-index:9999999;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #0B5735;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
  }
  
  .cursor2 {
    z-index:9999999;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #0B5735;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
  }
  
  .cursor.light{
    border:#ffffff 1px solid;
  }
  .cursor2.light{
    background-color: #ffffff;
  }
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: 0.2;
  }
  .cursor2.hover{
    opacity:0;
  }
}