.bg_obj {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.bg_obj img {
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.snowFlake_wrap {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

/*=====================
snowf-flakes
=====================*/
.snowfall-flakes {
  animation: spin 2.0s linear infinite;
  z-index: 10 !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}