.gsap-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #0D71BC;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: normal;
}

.gsap-cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #0D71BC;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gsap-cursor.is-hidden {
    opacity: 0;
}

.gsap-cursor.is-active {
    width: 42px;
    height: 42px;
    border-color: #0D71BC;
}

@media (max-width: 991px) {
    .gsap-cursor {
        display: none;
    }

}
