.falling-area {
  position: absolute;
  margin-top: 300px;
  top: 0;
  left: 0;
  width: 100%;
  height: 104.5%;
  overflow: hidden;
}

@media screen and(min-width:414px) {
  .falling-area {
    height: 120px;
  }

}

.falling-image {
  position: absolute;
  width: 8%;
  /* Görsel genişliği */
  height: 15%;
  /* Görsel yüksekliği */
  animation: fallAndRotate 6s linear infinite;
  /* Düşme ve dönme animasyonu */
}

/*falling-image:hover{
  display: none;
} */

.falling-image:hover {
  /*display: none;*/
  animation: topla 1s;
}

@keyframes topla {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fallAndRotate {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(2150%) rotate(500deg);
    opacity: 1;
  }
}

@keyframes topla {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}


.wpIconsContainer {
  position: fixed;
  bottom: 50px;
  left: 50px;
  display: inline-block;
  z-index:99999;
}

.wpIconsImages {
  transition: transform 0.5s; /* Animasyon yumuşatma */
  width: 50px;
  z-index:99999;
}

.wpIconsImages:hover {
  transform: translateY(-10px);
}

.wpIconsImages:not(:hover) + .wpIconsText {
  animation: gototop 0.5s forwards;
  opacity: 0;
}
.wpIconsImages:hover .wpIconsText {
  animation: gototop 0.5s forwards;
  opacity: 0;
}
.wpIconsText:hover{
  animation: gototop 0.5s forwards;
  opacity: 0;hvr-shutter-in-horizontal
}

@keyframes gototop {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.wpIconsText {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateY(80%) translateX(0);
  margin-left: 28px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  width: 150px;
  font-size: 20px;
  border-radius: 5px;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 9999;
  
  pointer-events: none; /* Metin kutusu üzerinden geçiş yapılmasını engeller */
}

.wpIconsContainer:hover .wpIconsText {
  opacity: 1;
  transform: translateY(80%) translateX(0);
  margin-left: 28px;
}