.cursor {
    position: fixed;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: var(--color1);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease, top 0.8s ease, left 0.8s ease;
    z-index: 9999;
    mix-blend-mode: difference;
}
.cursor.active {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
}
.cursor ~ .after {
    content: '';
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--color1);
    border-radius: 50px;
    transition: 1s;
    pointer-events: none;
    transform: translate(-50%, -50%);
        transition:width 0.8s ease, height 0.8s ease, top 0.8s ease, left 0.8s ease;
    z-index: 9999;
}

.joie:hover g circle {
    animation: rotate_alogo .5s linear infinite
}
a.joie svg {
    width: 115px;
    height: auto;
    margin: -14px 7px;
}
.joie:hover g>:nth-child(2n) circle {
    animation: rotate_alogo .4s linear infinite
}
@keyframes rotate_alogo {
    0% {
        transform: rotate(0) translate(8px) rotate(0)
    }

    to {
        transform: rotate(360deg) translate(8px) rotate(-360deg)
    }
}


a.joie svg g {
    filter: none
}

a.joie svg path~g path {
    stroke-width: 24px;
    filter: brightness(0)
}
a.joie {
    width: 100%;
    text-align: center;
    display: block;
    padding: 24px;
    background: transparent;
    color: #000000;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-top: 0;
    padding-top: 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    width: fit-content;
    border-radius: 15px;
    margin-bottom: 0;
    text-decoration: none;
    color: #fff;
}