.top-image-animation {
  position: absolute;
  height: 740px;
  width: 0px;
  left: 50%;
}

.floating-element {
  position: absolute;
}

.floating-element > .floating-image-wrapper {
  position: relative;
  transition: transform;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translate();
}

.floating-image-wrapper > img {
  position: absolute;
}

.shutterstock-wrapper {
  top: 310px;
  left: 100px;
}
.cube-wrapper {
  top: 400px;
  left: 0px;
}
.chip-face-wrapper {
  top: 100px;
  left: 250px;
}
.chip-full-face-big-wrapper {
  top: 100px;
  left: 600px;
  transform: scale(1.2);
}
.chip-full-face-small-wrapper {
  top: 500px;
  left: -150px;
}
.chip-full-face-small-2-wrapper {
  top: 410px;
  left: 800px;
  transform: scale(0.7);
  rotate: 220deg;
}

.animation-flash {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url('/top-image/flash-small.webp');
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation-duration: 0.5s;
  animation-name: flash;
  animation-iteration-count: 1;
  animation-direction: normal;
}
.animation-flash.variant-1 {
  background-image: url('/top-image/flash-small.webp');
}
.animation-flash.variant-2 {
  background-image: url('/top-image/flash-medium.webp');
}
.animation-flash.variant-3 {
  background-image: url('/top-image/flash-big.webp');
}

@keyframes flash {
  from {
    background-size: 10%;
    opacity: 1;
  }
  10% {
    background-size: 100%;
    opacity: 0.3;
  }
  20% {
    background-size: 30%;
    opacity: 1;
  }

  to {
    background-size: 10%;
    opacity: 0;
  }
}

@media screen and (max-width: 1240px) {
  .top-image-animation {
    transform: scale(0.5);
  }

  .shutterstock-wrapper {
    top: 220px;
    left: -280px;
  }
  .cube-wrapper {
    top: 300px;
    left: -70vw;
  }
  .chip-face-wrapper {
    top: 60px;
    left: 20vw;
  }
  .chip-full-face-big-wrapper {
    top: 60px;
    left: -450px;
    transform: scale(1.2);
  }
  .chip-full-face-small-wrapper {
    top: 600px;
    left: -250px;
  }
  .chip-full-face-small-2-wrapper {
    top: 720px;
    left: 75vw;
    transform: scale(0.7);
    rotate: 220deg;
  }
}

@media screen and (max-width: 700px) {
}

@media screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
}
