.kb-zoomin .et-pb-parallax-wrapper {
  animation: zoomin 17s forwards;
}

.kb-zoomout .et-pb-parallax-wrapper {
  animation: zoomout 17s forwards;
}

.kb-zoomin-right .et-pb-parallax-wrapper {
  animation: zoomin-right 17s forwards;
}

.kb-zoomout-right .et-pb-parallax-wrapper {
  animation: zoomout-right 17s forwards;
}

@keyframes zoomin {
  0% {
    transform: scale3d(1.1, 1.1, 1.1);
    animation-timing-function: linear;
  }

  100% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
}

@keyframes zoomout {
  0% {
    transform: scale3d(1.5, 1.5, 1.5);
    animation-timing-function: linear;
  }

  100% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

@keyframes zoomin-right {
  0% {
    transform: scale3d(1.1, 1.1, 1.1) translate3d(0, 0, 0);
    animation-timing-function: linear;
  }

  100% {
    transform: scale3d(1.5, 1.5, 1.5) translate3d(-150px, -20px, 0);
  }
}

@keyframes zoomout-right {
  0% {
    transform: scale3d(1.5, 1.5, 1.5) translate3d(-150px, -20px, 0);
    animation-timing-function: linear;
  }

  100% {
    transform: scale3d(1.1, 1.1, 1.1) translate3d(0, 0, 0);
  }
}