@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-12deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
.rotateIn.animated {
  animation-duration: 1.9s;
}
.rotateIn.animated.animated-fast {
  animation-duration: 0.8s;
}
.rotateIn.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: translateY(-7vh) rotate(8deg) rotateX(65deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
.rotateInDownLeft.animated {
  animation-duration: 1.9s;
}
.rotateInDownLeft.animated.animated-fast {
  animation-duration: 0.8s;
}
.rotateInDownLeft.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: translateY(-7vh) rotate(-8deg) rotateX(65deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
.rotateInDownRight.animated {
  animation-duration: 1.9s;
}
.rotateInDownRight.animated.animated-fast {
  animation-duration: 0.8s;
}
.rotateInDownRight.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: translateY(7vh) rotate(-8deg) rotateX(65deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
.rotateInUpRight.animated {
  animation-duration: 1.9s;
}
.rotateInUpRight.animated.animated-fast {
  animation-duration: 0.8s;
}
.rotateInUpRight.animated.animated-slow {
  animation-duration: 2.9s;
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft, uicoreFadeIn;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.rotateInUpLeft.animated {
  animation-duration: 1.9s;
}
.rotateInUpLeft.animated.animated-fast {
  animation-duration: 0.8s;
}
.rotateInUpLeft.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes rotateInUpLeft {
  0% {
    transform: translateY(7vh) rotate(8deg) rotateX(65deg);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.fadeIn {
  animation-name: uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}
@keyframes uicoreFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInUp {
  animation-name: uicoreFadeInUp, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.fadeInUp.animated {
  animation-duration: 1.9s;
}
.fadeInUp.animated.animated-fast {
  animation-duration: 0.8s;
}
.fadeInUp.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreFadeInUp {
  0% {
    transform: translate3d(0, 7vh, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: uicoreFadeInDown, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.fadeInDown.animated {
  animation-duration: 1.9s;
}
.fadeInDown.animated.animated-fast {
  animation-duration: 0.8s;
}
.fadeInDown.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreFadeInDown {
  0% {
    transform: translate3d(0, -7vh, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: uicoreFadeInLeft, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.fadeInLeft.animated {
  animation-duration: 1.9s;
}
.fadeInLeft.animated.animated-fast {
  animation-duration: 0.8s;
}
.fadeInLeft.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreFadeInLeft {
  0% {
    transform: translate3d(-7vh, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: uicoreFadeInRight, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.fadeInRight.animated {
  animation-duration: 1.9s;
}
.fadeInRight.animated.animated-fast {
  animation-duration: 0.8s;
}
.fadeInRight.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreFadeInRight {
  0% {
    transform: translate3d(7vh, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.zoomOut {
  animation-name: uicoreZoomOut, uicoreFadeIn !important;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.zoomOut.animated {
  animation-duration: 1.9s;
}
.zoomOut.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomOut.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomOut {
  0% {
    transform: matrix(1.2, 0, 0, 1.2, 0, 0);
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.zoomOutDown {
  animation-name: uicoreZoomOutDown, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.zoomOutDown.animated {
  animation-duration: 1.9s;
}
.zoomOutDown.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomOutDown.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomOutDown {
  0% {
    transform: matrix3d(
      1.2,
      0,
      0,
      0,
      0,
      1.03,
      0.34,
      0.0003,
      0,
      -0.34,
      0.94,
      0,
      0,
      -60,
      0,
      1
    );
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.zoomOutUp {
  animation-name: uicoreZoomOutUp, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.zoomOutUp.animated {
  animation-duration: 1.9s;
}
.zoomOutUp.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomOutUp.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomOutUp {
  0% {
    transform: matrix3d(
      1.2,
      0,
      0,
      0,
      0,
      1.03,
      0.34,
      -0.0003,
      0,
      -0.34,
      0.94,
      0,
      0,
      60,
      0,
      1
    );
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.zoomOutLeft {
  animation-name: uicoreZoomOutLeft, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.zoomOutLeft.animated {
  animation-duration: 1.9s;
}
.zoomOutLeft.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomOutLeft.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomOutLeft {
  0% {
    transform: matrix3d(
      1.2,
      0,
      0,
      0.0003,
      0,
      1.03,
      0.34,
      0,
      0,
      -0.34,
      0.94,
      0,
      -40,
      0,
      0,
      1
    );
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.zoomOutRight {
  animation-name: uicoreZoomOutRight, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1),
    cubic-bezier(0, 0, 0.2, 1);
}
.zoomOutRight.animated {
  animation-duration: 1.9s;
}
.zoomOutRight.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomOutRight.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomOutRight {
  0% {
    transform: matrix3d(
      1.2,
      0,
      0,
      -0.0003,
      0,
      1.03,
      0.34,
      0,
      0,
      -0.34,
      0.94,
      0,
      40,
      0,
      0,
      1
    );
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.zoomIn {
  animation-name: uicoreZoomIn, uicoreFadeIn !important;
  animation-fill-mode: forwards;
}
.zoomIn.animated {
  animation-duration: 1.9s;
}
.zoomIn.animated.animated-fast {
  animation-duration: 0.8s;
}
.zoomIn.animated.animated-slow {
  animation-duration: 2.9s;
}
@keyframes uicoreZoomIn {
  0% {
    transform: matrix(0.85, 0, 0, 0.85, 0, 0);
  }
  to {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
/*# sourceMappingURL=style1.css.map */
