.page-gansi-premio-block-storytelling-particles {
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-gansi-premio-block-storytelling-particles .container-fluid {
  width: 100%;
  height: 100%;
}

.storytelling-particles__storytelling-particles-R {
  position: absolute;
}

.storytelling-particles__storytelling-particles-R {
  transform: translateY(0px);
}

.storytelling-particles__storytelling-particles-R > picture > img {
  height: 100%;
  transform:rotate(0deg);
  width: 100%;
}
.special-animation {
  transform: translateY(0px) scale(1);
}

.on-animation-rotate-left {
  animation: 6s animationTraslateY1 infinite linear;
}
.on-animation-rotate-left > picture > img {
  animation: 40s animationRotateLeft infinite linear;
}
.on-animation-rotate-right {
  animation: 6s animationTraslateY2 infinite linear;
}
.on-animation-rotate-right  > picture > img {
  animation: 40s animationRotateRight infinite linear;
}
.on-specia-animation-floating {
  animation: 8s specialAnimationFloating infinite linear;
}
.pause-animation {
  animation-play-state: paused;
}

.pause-animation > picture > img {
  animation-play-state: paused;
}

.storytelling-particles__storytelling-particles-R,
.storytelling-particles__storytelling-particles-R {
  height: 200px;
  width: 200px;
  top: 115px;
  right: -86px;
}

@media (min-width: 768px) {
  .storytelling-particles__storytelling-particles-R,
  .storytelling-particles__storytelling-particles-R {
    height: 225px;
    width: 225px;
    top: 75px;
    right: 0px;
  }
}

@media (min-width: 1024px) {
  .storytelling-particles__storytelling-particles-R,
  .storytelling-particles__storytelling-particles-R {
    top: 320px;
    right: 50px;
  }
}

@media (min-width: 1360px) {
  .storytelling-particles__storytelling-particles-R,
  .storytelling-particles__storytelling-particles-R {
    width: 280px;
    height: 280px;
    top: 350px;
    right: 100px;
  }
}

@media (min-width: 1920px) {
  .storytelling-particles__storytelling-particles-R,
  .storytelling-particles__storytelling-particles-R {
    height: 350px;
    top: 330px;
    right: 250px;
    width: 350px;
  }
}

@keyframes animationTraslateY1 {
   0% { transform: translatey(0px); }
  50% { transform: translatey(-80px); }
  100% { transform: translatey(0px); }
}

@keyframes animationTraslateY2 {
  0% { transform: translatey(0px); }
  50% { transform: translatey(80px); }
  100% { transform: translatey(0px); }
}

@keyframes animationRotateRight {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

@keyframes animationRotateLeft {
  from { transform:rotate(0deg); }
  to { transform:rotate(-360deg); }
}

@keyframes specialAnimationFloating {
  from { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-45px) scale(0.9); }
  to   { transform: translateY(0px) scale(1); }
}

