@keyframes showreel-hover {
  0% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

.showreel {
  position: relative;
  top: -40px;
  right: 20px;
}

.showreel__image {
  position: absolute;
  width: 300px;
  height: 200px;
  background: #f1f1f1;
  right: 0;
  top: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  opacity: 0.97;
}

.showreel__image:nth-child(1) {
  top: -140px;
  z-index: 1;
  animation: showreel-hover 2.5s infinite ease-in-out;
}

.showreel__image:nth-child(2) {
  right: 150px;
  top: -50px;
  z-index: 2;
  animation: showreel-hover 3s 0.3s infinite ease-in-out;
}

.showreel__image:nth-child(3) {
  right: -70px;
  top: 20px;
  animation: showreel-hover 2.7s 0.1s infinite ease-in-out reverse;
}

@media only screen and (max-width : 480px) {
  .showreel {
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 0;
    left: 50%;
    margin-top: 10px;
  }

  .showreel__image {
    width: 200px;
    height: 130px;
  }

  .showreel__image:nth-child(2) {
    right: 50px;
    top: -75px;
  }

  .showreel__image:nth-child(3) {
    right: -50px;
    top: -30px;
  }
}