@media (min-width:992px){
    .cursor {
        width: 50px;
        height: 50px;
        background: url(../img/cursor.png) center center no-repeat;
        mix-blend-mode: difference;
        transition: all 200ms ease-out;
        position: fixed;
        pointer-events: none;
        left: 0;
        top: 0;
        z-index: 10000;
    }
    .cursor2 {
        width: 0;
        height: 0;
        border-radius: 100%;
        background-color: #fff;
        mix-blend-mode: difference;
        opacity: .6;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        transition: width .3s, height .3s, opacity .3s;
        z-index: 10005;
    }
    .cursor2.cursorinnerhover {
        opacity: .5;
        background-color: #000;
        mix-blend-mode:normal;
    }
    .cursor.darkzone,
    .cursor2.darkzone {
        display: none !important;
    }
}

