.cursor {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #272727;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

@media screen and (max-width:1200px){
    .cursor,
    .cursor2{
        display: none !important;
    }
}



.cursor2 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color:#FD2155;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 2500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  display: none;
}
.cursor2  span{
    margin-top: 20px;
      animation: Scale 2s linear infinite;
}



.hover {
  background: #ffffff;
  width: 60px;
  height: 60px;
   -moz-mix-blend-mode: difference;
  -webkit-mix-blend-mode: difference;
   mix-blend-mode: difference;
}
.hover1{
/*  -webkit-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  mix-blend-mode: multiply;*/
  width: 200px;
  height: 200px;
  position: fixed;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
   overflow: hidden;
}
.hover1:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    background: url(../img/hovered-bg.png);
    background-size: cover;
    background-position:top center;
    background-repeat: no-repeat;
}
@keyframes ShiftBg{
    50%{
        background-position: bottom center;
    }
}
@keyframes bubble {
    0%,
    100% {
        border-radius: 64% 46% 37% 73% / 55% 58% 42% 45%;
    }

    25% {
        border-radius: 43% 47% 47% 38% / 43% 46% 64% 27%;
    }

    50% {
        border-radius: 48% 72% 44% 56% / 49% 40% 60% 51%;
    }

    75% {
        border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
    }
}


@-webkit-keyframes bubble {
    0%,
    100% {
        border-radius: 64% 46% 37% 73% / 55% 58% 42% 45%;
    }

    25% {
        border-radius: 43% 47% 47% 38% / 43% 46% 64% 27%;
    }

    50% {
        border-radius: 48% 72% 44% 56% / 49% 40% 60% 51%;
    }

    75% {
        border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
    }
}
.hover2{
  width: 200px;
  height: 200px;
  position: fixed;
  background:#000000;
  overflow: hidden;
}
.hover2:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
      -webkit-animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    background: url(../img/left-div-banner.png);
    background-size: cover;
    background-position:top center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}
.cusor-span{
    position: absolute;
    white-space: nowrap;
    background:rgba(0,0,0,0.9);
    padding:0px 10px;
    width: 100px;
    height: 100px;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.5s;
}
.cusor-span.visible{
    opacity: 1;
}
.hover3{
  width: 200px;
  height: 200px;
  position: fixed;
  background: transparent;
}
.hover3:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    animation: ShiftBg 20s linear infinite, bubble 5s linear infinite;
    background: url(../img/hovered-bg3.jpg);
    background-size: cover;
    background-position:top center;
    background-repeat: no-repeat;
}