#cursor {
    display: block;
    position: fixed;
    pointer-events: none;
    width: 30px;
    height: 30px;
    z-index: 999999;
}

#cursor #cursor__inner {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    background-color: #33d8ff;
    border-radius: 50%;
    transition: all 0.4s ease;
    mix-blend-mode: difference;
    border: 0px solid #0096eb;
    transform: scale(.75);
}

@media screen and (max-width: 970px) {
    #cursor #cursor__inner {
        background-color: transparent;
    }

}

#cursor.data-cursor-active #cursor__inner {
    background-color: #7a42a800;
    transform: scale(1.5);
    border: 1px solid #d3d3d3;
}

#cursor.data-cursor-active.data-cursor-type-1 #cursor__inner {
    /* transform: scale(2.2); */
    background-color: #ffffff00;
    box-shadow: 0 0 125px #00000048;

    transform: scale(3);

    color: #00456d;
    position: relative;
    cursor: none;
    transform: scale(5);
    border-radius: 50%;
    backdrop-filter: blur(1px);
    mix-blend-mode: normal;
    border: 0px solid #0096eb;
}

#cursor.data-cursor-active.data-cursor-type-1 #cursor__inner:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    /* background: url(../images/logo.svg) center no-repeat; */
    background-size: 20px auto;
    border-radius: 50%;
    font-size: 7px;
    line-height: 7px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    font-size: 4px;
    mix-blend-mode: normal;

}

#cursor.data-cursor-active.data-cursor-type-2 #cursor__inner {
    transform: scale(6);
    background: transparent;
    border-radius: 50%;
    backdrop-filter: blur(.5px);
    background: #ffffff15;
    border: 0px solid rgba(255, 255, 255, 0.1);
    mix-blend-mode: normal;
    border: 0px solid #0096eb;
    box-shadow: 0 0 125px #00000059;
}


[data-cursor-hover] {
    cursor: none;
}







ul.artists {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.artists li {
    flex: 0 0 33.333333%;
    margin-bottom: 40px;
    font-size: 4em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

ul.artists img {
    position: absolute;
    width: 250px;
    transform: translateX(-50%) translateY(-50%);
    top: 120px;
    left: 150px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}