/*CURSOR*/
/*
.cursor-fixed p{
    z-index: 1;
    position: relative;
}
.cursor,.cursor-fixed{
	width:40px;
	height:40px;
    position:fixed;
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,1);
    transform: translate(-50%,-50%);
	pointer-events: none;
    z-index: 1000000;
    transition: width 400ms cubic-bezier(.31, .886, .69, .997),
                height 400ms cubic-bezier(.31, .886, .69, .997),
                top 250ms cubic-bezier(.31, .886, .69, .997),
                left 250ms cubic-bezier(.31, .886, .69, .997);
    animation: cursorAnim 0.5s  1 forwards;

}
.cursor.cursor.cursor--hover{animation:none;}
.cursor-fixed{
    animation:none;
    transition-delay: 200ms;
    background:none;
    border:  rgba(255,255,255,0.3) 1px solid;
    width:40px;
	height:40px;
}*/
/*
.cursor::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    border: 8px solid  rgba(82,255,230,0.1);
    border-radius: 50%;
    animation: cursorAnim2 .5s  1 forwards;
}*/
@keyframes cursorAnim {
    from {
        
        background: rgba(255,255,255,0.3);
        width:40px;
        height:40px;
    }
    to {
        
        background: rgba(255,255,255,0);
        width:0px;
        height:0px;
        	
    }
}
@keyframes cursorAnimFix {
    from {
        
        width:40px;
        height:40px;
    }
    to {
        
        width:50px;
        height:50px;
        	
    }
}
@keyframes cursorBlackAnim {
    from {
        
        background: rgba(34, 34, 34, 0.05);
        width:40px;
        height:40px;
        
    }
    to {
        
        background: rgba(34, 34, 34, 0);
        width:0px;
        height:0px;
        
    }
}
@keyframes cursorAnim2 {
    from {
        transform: scale(1);
        opacity: 0.3;
    }
    to {
        transform: scale(1.4);
        opacity: 0;
    }
}
/*.cursor-fixed::before {
    width:100%;
    height:100%;
    position: absolute;
    top: 0%;
    left: 0%;
    content:attr(data-cursor-info);
   

}*/
/*
.cursor-fixed.cursor--hover {
    width:60px;
    height:60px;
    border: 0px solid #52ffe6;
    background: rgba(255,255,255,0.3);

}
.cursor-fixed.cursor--black.cursor--hover {
   
    background: rgba(34,34,34,0.1);

}
.cursor-fixed.cursor--hover::after {
    width: 0px;
    height: 0px;
    border: 0px solid  rgba(82,255,230,0.1);
    animation: none;
}
.cursor-fixed.cursor--black.cursor--hover::after {
    width: 0px;
    height: 0px;
    border: 0px solid  rgba(82,255,230,0.1);
    animation: none;
}
.cursor-fixed.cursor--black,.cursor.cursor--black{
    background: none;
    border-color: rgba(34,34,34,0.3);
}
.cursor.cursor--black{
    animation-name: cursorBlackAnim;
}
.cursor.cursor--black.cursor--hover{
    animation-name: none;
}
.cursor.cursor--hover{
    width: 0px;
    height:0px;
}
.info-in-cursor{
    width:80px!important;
    height:80px!important;
}
*/
@media screen and (max-width: 1024px) {
    .cursor-fixed, .cursor, .info-in-cursor{display: none!important;}
}