.animated-section-moveToLeft {
  animation: .6s both moveToLeft;
}

.animated-section-moveFromLeft {
  animation: .6s both moveFromLeft;
}

.animated-section-moveToRight {
  animation: .6s both moveToRight;
}

.animated-section-moveFromRight {
  animation: .6s both moveFromRight;
}

.animated-section-moveToTop {
  animation: .6s both moveToTop;
}

.animated-section-moveFromTop {
  animation: .6s both moveFromTop;
}

.animated-section-moveToBottom {
  animation: .6s both moveToBottom;
}

.animated-section-moveFromBottom {
  animation: .6s both moveFromBottom;
}

.animated-section-fade {
  animation: .7s both fade;
}

.animated-section-moveToLeftFade {
  animation: .7s both moveToLeftFade;
}

.animated-section-moveFromLeftFade {
  animation: .7s both moveFromLeftFade;
}

.animated-section-moveToRightFade {
  animation: .7s both moveToRightFade;
}

.animated-section-moveFromRightFade {
  animation: .7s both moveFromRightFade;
}

.animated-section-moveToTopFade {
  animation: .7s both moveToTopFade;
}

.animated-section-moveFromTopFade {
  animation: .7s both moveFromTopFade;
}

.animated-section-moveToBottomFade {
  animation: .7s both moveToBottomFade;
}

.animated-section-moveFromBottomFade {
  animation: .7s both moveFromBottomFade;
}

.animated-section-moveToLeftEasing {
  animation: .7s ease-in-out both moveToLeft;
}

.animated-section-moveToRightEasing {
  animation: .7s ease-in-out both moveToRight;
}

.animated-section-moveToTopEasing {
  animation: .7s ease-in-out both moveToTop;
}

.animated-section-moveToBottomEasing {
  animation: .7s ease-in-out both moveToBottom;
}

@-webkit-keyframes moveToLeft {
  from {
    
  }

  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes moveToLeft {
  from {
    
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes moveFromLeft {
  from {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes moveToRight {
  from {
    
  }

  to {
    -webkit-transform: translateX(100%);
  }
}

@keyframes moveToRight {
  from {
    
  }

  to {
    transform: translateX(100%);
  }
}

@-webkit-keyframes moveFromRight {
  from {
    -webkit-transform: translateX(100%);
  }
}

@keyframes moveFromRight {
  from {
    transform: translateX(100%);
  }
}

@-webkit-keyframes moveToTop {
  from {
    
  }

  to {
    -webkit-transform: translateY(-100%);
  }
}

@keyframes moveToTop {
  from {
    
  }

  to {
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveFromTop {
  from {
    -webkit-transform: translateY(-100%);
  }
}

@keyframes moveFromTop {
  from {
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveToBottom {
  from {
    
  }

  to {
    -webkit-transform: translateY(100%);
  }
}

@keyframes moveToBottom {
  from {
    
  }

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

@-webkit-keyframes moveFromBottom {
  from {
    -webkit-transform: translateY(100%);
  }
}

@keyframes moveFromBottom {
  from {
    transform: translateY(100%);
  }
}

@keyframes fade {
  from {
    
  }

  to {
    opacity: .3;
  }
}

@-webkit-keyframes moveToLeftFade {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(-100%);
  }
}

@keyframes moveToLeftFade {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(-100%);
  }
}

@-webkit-keyframes moveFromLeftFade {
  from {
    opacity: .3;
    -webkit-transform: translateX(-100%);
  }
}

@keyframes moveFromLeftFade {
  from {
    opacity: .3;
    transform: translateX(-100%);
  }
}

@-webkit-keyframes moveToRightFade {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(100%);
  }
}

@keyframes moveToRightFade {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(100%);
  }
}

@-webkit-keyframes moveFromRightFade {
  from {
    opacity: .3;
    -webkit-transform: translateX(100%);
  }
}

@keyframes moveFromRightFade {
  from {
    opacity: .3;
    transform: translateX(100%);
  }
}

@-webkit-keyframes moveToTopFade {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(-100%);
  }
}

@keyframes moveToTopFade {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveFromTopFade {
  from {
    opacity: .3;
    -webkit-transform: translateY(-100%);
  }
}

@keyframes moveFromTopFade {
  from {
    opacity: .3;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveToBottomFade {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(100%);
  }
}

@keyframes moveToBottomFade {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(100%);
  }
}

@-webkit-keyframes moveFromBottomFade {
  from {
    opacity: .3;
    -webkit-transform: translateY(100%);
  }
}

@keyframes moveFromBottomFade {
  from {
    opacity: .3;
    transform: translateY(100%);
  }
}

.animated-section-scaleDown {
  animation: .7s both scaleDown;
}

.animated-section-scaleUp {
  animation: .7s both scaleUp;
}

.animated-section-scaleUpDown {
  animation: .5s both scaleUpDown;
}

.animated-section-scaleDownUp {
  animation: .5s both scaleDownUp;
}

.animated-section-scaleDownCenter {
  animation: .4s ease-in both scaleDownCenter;
}

.animated-section-scaleUpCenter {
  animation: .4s ease-out both scaleUpCenter;
}

@-webkit-keyframes scaleDown {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.8);
  }
}

@keyframes scaleDown {
  from {
    
  }

  to {
    opacity: 0;
    transform: scale(.8);
  }
}

@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(.8);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(.8);
  }
}

@-webkit-keyframes scaleUpDown {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}

@keyframes scaleUpDown {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
}

@-webkit-keyframes scaleDownUp {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}

@keyframes scaleDownUp {
  from {
    
  }

  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@-webkit-keyframes scaleDownCenter {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.7);
  }
}

@keyframes scaleDownCenter {
  from {
    
  }

  to {
    opacity: 0;
    transform: scale(.7);
  }
}

@-webkit-keyframes scaleUpCenter {
  from {
    opacity: 0;
    -webkit-transform: scale(.7);
  }
}

@keyframes scaleUpCenter {
  from {
    opacity: 0;
    transform: scale(.7);
  }
}

.animated-section-rotateRightSideFirst {
  transform-origin: 0%;
  animation: .8s ease-in both rotateRightSideFirst;
}

.animated-section-rotateLeftSideFirst {
  transform-origin: 100%;
  animation: .8s ease-in both rotateLeftSideFirst;
}

.animated-section-rotateTopSideFirst {
  transform-origin: 50% 100%;
  animation: .8s ease-in both rotateTopSideFirst;
}

.animated-section-rotateBottomSideFirst {
  transform-origin: 50% 0;
  animation: .8s ease-in both rotateBottomSideFirst;
}

.animated-section-flipOutRight {
  transform-origin: 50%;
  animation: .5s ease-in both flipOutRight;
}

.animated-section-flipInLeft {
  transform-origin: 50%;
  animation: .5s ease-out both flipInLeft;
}

.animated-section-flipOutLeft {
  transform-origin: 50%;
  animation: .5s ease-in both flipOutLeft;
}

.animated-section-flipInRight {
  transform-origin: 50%;
  animation: .5s ease-out both flipInRight;
}

.animated-section-flipOutTop {
  transform-origin: 50%;
  animation: .5s ease-in both flipOutTop;
}

.animated-section-flipInBottom {
  transform-origin: 50%;
  animation: .5s ease-out both flipInBottom;
}

.animated-section-flipOutBottom {
  transform-origin: 50%;
  animation: .5s ease-in both flipOutBottom;
}

.animated-section-flipInTop {
  transform-origin: 50%;
  animation: .5s ease-out both flipInTop;
}

.animated-section-rotateFall {
  transform-origin: 0 0;
  animation: 1s ease-in both rotateFall;
}

.animated-section-rotateOutNewspaper {
  transform-origin: 50%;
  animation: .5s ease-in both rotateOutNewspaper;
}

.animated-section-rotateInNewspaper {
  transform-origin: 50%;
  animation: .5s ease-out both rotateInNewspaper;
}

.animated-section-rotatePushLeft {
  transform-origin: 0%;
  animation: .8s both rotatePushLeft;
}

.animated-section-rotatePushRight {
  transform-origin: 100%;
  animation: .8s both rotatePushRight;
}

.animated-section-rotatePushTop {
  transform-origin: 50% 0;
  animation: .8s both rotatePushTop;
}

.animated-section-rotatePushBottom {
  transform-origin: 50% 100%;
  animation: .8s both rotatePushBottom;
}

.animated-section-rotatePullRight {
  transform-origin: 100%;
  animation: .5s both rotatePullRight;
}

.animated-section-rotatePullLeft {
  transform-origin: 0%;
  animation: .5s both rotatePullLeft;
}

.animated-section-rotatePullTop {
  transform-origin: 50% 0;
  animation: .5s both rotatePullTop;
}

.animated-section-rotatePullBottom {
  transform-origin: 50% 100%;
  animation: .5s both rotatePullBottom;
}

.animated-section-rotateFoldRight {
  transform-origin: 0%;
  animation: .7s both rotateFoldRight;
}

.animated-section-rotateFoldLeft {
  transform-origin: 100%;
  animation: .7s both rotateFoldLeft;
}

.animated-section-rotateFoldTop {
  transform-origin: 50% 100%;
  animation: .7s both rotateFoldTop;
}

.animated-section-rotateFoldBottom {
  transform-origin: 50% 0;
  animation: .7s both rotateFoldBottom;
}

.animated-section-rotateUnfoldLeft {
  transform-origin: 100%;
  animation: .7s both rotateUnfoldLeft;
}

.animated-section-rotateUnfoldRight {
  transform-origin: 0%;
  animation: .7s both rotateUnfoldRight;
}

.animated-section-rotateUnfoldTop {
  transform-origin: 50% 100%;
  animation: .7s both rotateUnfoldTop;
}

.animated-section-rotateUnfoldBottom {
  transform-origin: 50% 0;
  animation: .7s both rotateUnfoldBottom;
}

.animated-section-rotateRoomLeftOut {
  transform-origin: 100%;
  animation: .8s both rotateRoomLeftOut;
}

.animated-section-rotateRoomLeftIn {
  transform-origin: 0%;
  animation: .8s both rotateRoomLeftIn;
}

.animated-section-rotateRoomRightOut {
  transform-origin: 0%;
  animation: .8s both rotateRoomRightOut;
}

.animated-section-rotateRoomRightIn {
  transform-origin: 100%;
  animation: .8s both rotateRoomRightIn;
}

.animated-section-rotateRoomTopOut {
  transform-origin: 50% 100%;
  animation: .8s both rotateRoomTopOut;
}

.animated-section-rotateRoomTopIn {
  transform-origin: 50% 0;
  animation: .8s both rotateRoomTopIn;
}

.animated-section-rotateRoomBottomOut {
  transform-origin: 50% 0;
  animation: .8s both rotateRoomBottomOut;
}

.animated-section-rotateRoomBottomIn {
  transform-origin: 50% 100%;
  animation: .8s both rotateRoomBottomIn;
}

.animated-section-rotateCubeLeftOut {
  transform-origin: 100%;
  animation: .6s ease-in both rotateCubeLeftOut;
}

.animated-section-rotateCubeLeftIn {
  transform-origin: 0%;
  animation: .6s ease-in both rotateCubeLeftIn;
}

.animated-section-rotateCubeRightOut {
  transform-origin: 0%;
  animation: .6s ease-in both rotateCubeRightOut;
}

.animated-section-rotateCubeRightIn {
  transform-origin: 100%;
  animation: .6s ease-in both rotateCubeRightIn;
}

.animated-section-rotateCubeTopOut {
  transform-origin: 50% 100%;
  animation: .6s ease-in both rotateCubeTopOut;
}

.animated-section-rotateCubeTopIn {
  transform-origin: 50% 0;
  animation: .6s ease-in both rotateCubeTopIn;
}

.animated-section-rotateCubeBottomOut {
  transform-origin: 50% 0;
  animation: .6s ease-in both rotateCubeBottomOut;
}

.animated-section-rotateCubeBottomIn {
  transform-origin: 50% 100%;
  animation: .6s ease-in both rotateCubeBottomIn;
}

.animated-section-rotateCarouselLeftOut {
  transform-origin: 100%;
  animation: .8s both rotateCarouselLeftOut;
}

.animated-section-rotateCarouselLeftIn {
  transform-origin: 0%;
  animation: .8s both rotateCarouselLeftIn;
}

.animated-section-rotateCarouselRightOut {
  transform-origin: 0%;
  animation: .8s both rotateCarouselRightOut;
}

.animated-section-rotateCarouselRightIn {
  transform-origin: 100%;
  animation: .8s both rotateCarouselRightIn;
}

.animated-section-rotateCarouselTopOut {
  transform-origin: 50% 100%;
  animation: .8s both rotateCarouselTopOut;
}

.animated-section-rotateCarouselTopIn {
  transform-origin: 50% 0;
  animation: .8s both rotateCarouselTopIn;
}

.animated-section-rotateCarouselBottomOut {
  transform-origin: 50% 0;
  animation: .8s both rotateCarouselBottomOut;
}

.animated-section-rotateCarouselBottomIn {
  transform-origin: 50% 100%;
  animation: .8s both rotateCarouselBottomIn;
}

.animated-section-rotateSidesOut {
  transform-origin: -50%;
  animation: .5s ease-in both rotateSidesOut;
}

.animated-section-rotateSidesIn {
  transform-origin: 150%;
  animation: .5s ease-out both rotateSidesIn;
}

.animated-section-rotateSlideOut {
  animation: 1s both rotateSlideOut;
}

.animated-section-rotateSlideIn {
  animation: 1s both rotateSlideIn;
}

@-webkit-keyframes rotateRightSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: rotateY(15deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.8)translateZ(-200px);
  }
}

@keyframes rotateRightSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    animation-timing-function: ease-out;
    transform: rotateY(15deg);
  }

  100% {
    opacity: 0;
    transform: scale(.8)translateZ(-200px);
  }
}

@-webkit-keyframes rotateLeftSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: rotateY(-15deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.8)translateZ(-200px);
  }
}

@keyframes rotateLeftSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    animation-timing-function: ease-out;
    transform: rotateY(-15deg);
  }

  100% {
    opacity: 0;
    transform: scale(.8)translateZ(-200px);
  }
}

@-webkit-keyframes rotateTopSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: rotateX(15deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.8)translateZ(-200px);
  }
}

@keyframes rotateTopSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    animation-timing-function: ease-out;
    transform: rotateX(15deg);
  }

  100% {
    opacity: 0;
    transform: scale(.8)translateZ(-200px);
  }
}

@-webkit-keyframes rotateBottomSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: rotateX(-15deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.8)translateZ(-200px);
  }
}

@keyframes rotateBottomSideFirst {
  0% {
    
  }

  40% {
    opacity: .8;
    animation-timing-function: ease-out;
    transform: rotateX(-15deg);
  }

  100% {
    opacity: 0;
    transform: scale(.8)translateZ(-200px);
  }
}

@-webkit-keyframes flipOutRight {
  from {
    
  }

  to {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateY(90deg);
  }
}

@keyframes flipOutRight {
  from {
    
  }

  to {
    opacity: .2;
    transform: translateZ(-1000px)rotateY(90deg);
  }
}

@-webkit-keyframes flipInLeft {
  from {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateY(-90deg);
  }
}

@keyframes flipInLeft {
  from {
    opacity: .2;
    transform: translateZ(-1000px)rotateY(-90deg);
  }
}

@-webkit-keyframes flipOutLeft {
  from {
    
  }

  to {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateY(-90deg);
  }
}

@keyframes flipOutLeft {
  from {
    
  }

  to {
    opacity: .2;
    transform: translateZ(-1000px)rotateY(-90deg);
  }
}

@-webkit-keyframes flipInRight {
  from {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateY(90deg);
  }
}

@keyframes flipInRight {
  from {
    opacity: .2;
    transform: translateZ(-1000px)rotateY(90deg);
  }
}

@-webkit-keyframes flipOutTop {
  from {
    
  }

  to {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateX(90deg);
  }
}

@keyframes flipOutTop {
  from {
    
  }

  to {
    opacity: .2;
    transform: translateZ(-1000px)rotateX(90deg);
  }
}

@-webkit-keyframes flipInBottom {
  from {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateX(-90deg);
  }
}

@keyframes flipInBottom {
  from {
    opacity: .2;
    transform: translateZ(-1000px)rotateX(-90deg);
  }
}

@-webkit-keyframes flipOutBottom {
  from {
    
  }

  to {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateX(-90deg);
  }
}

@keyframes flipOutBottom {
  from {
    
  }

  to {
    opacity: .2;
    transform: translateZ(-1000px)rotateX(-90deg);
  }
}

@-webkit-keyframes flipInTop {
  from {
    opacity: .2;
    -webkit-transform: translateZ(-1000px)rotateX(90deg);
  }
}

@keyframes flipInTop {
  from {
    opacity: .2;
    transform: translateZ(-1000px)rotateX(90deg);
  }
}

@-webkit-keyframes rotateFall {
  0% {
    -webkit-transform: rotateZ(0);
  }

  20% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: rotateZ(10deg);
  }

  40% {
    -webkit-transform: rotateZ(17deg);
  }

  60% {
    -webkit-transform: rotateZ(16deg);
  }

  100% {
    -webkit-transform: translateY(100%)rotateZ(17deg);
  }
}

@keyframes rotateFall {
  0% {
    transform: rotateZ(0);
  }

  20% {
    animation-timing-function: ease-out;
    transform: rotateZ(10deg);
  }

  40% {
    transform: rotateZ(17deg);
  }

  60% {
    transform: rotateZ(16deg);
  }

  100% {
    transform: translateY(100%)rotateZ(17deg);
  }
}

@-webkit-keyframes rotateOutNewspaper {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateZ(-3000px)rotateZ(360deg);
  }
}

@keyframes rotateOutNewspaper {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateZ(-3000px)rotateZ(360deg);
  }
}

@-webkit-keyframes rotateInNewspaper {
  from {
    opacity: 0;
    -webkit-transform: translateZ(-3000px)rotateZ(-360deg);
  }
}

@keyframes rotateInNewspaper {
  from {
    opacity: 0;
    transform: translateZ(-3000px)rotateZ(-360deg);
  }
}

@-webkit-keyframes rotatePushLeft {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}

@keyframes rotatePushLeft {
  from {
    
  }

  to {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

@-webkit-keyframes rotatePushRight {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}

@keyframes rotatePushRight {
  from {
    
  }

  to {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}

@-webkit-keyframes rotatePushTop {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}

@keyframes rotatePushTop {
  from {
    
  }

  to {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}

@-webkit-keyframes rotatePushBottom {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}

@keyframes rotatePushBottom {
  from {
    
  }

  to {
    opacity: 0;
    transform: rotateX(90deg);
  }
}

@-webkit-keyframes rotatePullRight {
  from {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }
}

@keyframes rotatePullRight {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}

@-webkit-keyframes rotatePullLeft {
  from {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}

@keyframes rotatePullLeft {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

@-webkit-keyframes rotatePullTop {
  from {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
  }
}

@keyframes rotatePullTop {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
}

@-webkit-keyframes rotatePullBottom {
  from {
    opacity: 0;
    -webkit-transform: rotateX(90deg);
  }
}

@keyframes rotatePullBottom {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
}

@-webkit-keyframes rotateFoldRight {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(100%)rotateY(90deg);
  }
}

@keyframes rotateFoldRight {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateX(100%)rotateY(90deg);
  }
}

@-webkit-keyframes rotateFoldLeft {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(-100%)rotateY(-90deg);
  }
}

@keyframes rotateFoldLeft {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateX(-100%)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateFoldTop {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%)rotateX(90deg);
  }
}

@keyframes rotateFoldTop {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateY(-100%)rotateX(90deg);
  }
}

@-webkit-keyframes rotateFoldBottom {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(100%)rotateX(-90deg);
  }
}

@keyframes rotateFoldBottom {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateY(100%)rotateX(-90deg);
  }
}

@-webkit-keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%)rotateY(-90deg);
  }
}

@keyframes rotateUnfoldLeft {
  from {
    opacity: 0;
    transform: translateX(-100%)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%)rotateY(90deg);
  }
}

@keyframes rotateUnfoldRight {
  from {
    opacity: 0;
    transform: translateX(100%)rotateY(90deg);
  }
}

@-webkit-keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%)rotateX(90deg);
  }
}

@keyframes rotateUnfoldTop {
  from {
    opacity: 0;
    transform: translateY(-100%)rotateX(90deg);
  }
}

@-webkit-keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%)rotateX(-90deg);
  }
}

@keyframes rotateUnfoldBottom {
  from {
    opacity: 0;
    transform: translateY(100%)rotateX(-90deg);
  }
}

@-webkit-keyframes rotateRoomLeftOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(-100%)rotateY(90deg);
  }
}

@keyframes rotateRoomLeftOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(-100%)rotateY(90deg);
  }
}

@-webkit-keyframes rotateRoomLeftIn {
  from {
    opacity: .3;
    -webkit-transform: translateX(100%)rotateY(-90deg);
  }
}

@keyframes rotateRoomLeftIn {
  from {
    opacity: .3;
    transform: translateX(100%)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateRoomRightOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(100%)rotateY(-90deg);
  }
}

@keyframes rotateRoomRightOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(100%)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateRoomRightIn {
  from {
    opacity: .3;
    -webkit-transform: translateX(-100%)rotateY(90deg);
  }
}

@keyframes rotateRoomRightIn {
  from {
    opacity: .3;
    transform: translateX(-100%)rotateY(90deg);
  }
}

@-webkit-keyframes rotateRoomTopOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(-100%)rotateX(-90deg);
  }
}

@keyframes rotateRoomTopOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(-100%)rotateX(-90deg);
  }
}

@-webkit-keyframes rotateRoomTopIn {
  from {
    opacity: .3;
    -webkit-transform: translateY(100%)rotateX(90deg);
  }
}

@keyframes rotateRoomTopIn {
  from {
    opacity: .3;
    transform: translateY(100%)rotateX(90deg);
  }
}

@-webkit-keyframes rotateRoomBottomOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(100%)rotateX(90deg);
  }
}

@keyframes rotateRoomBottomOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(100%)rotateX(90deg);
  }
}

@-webkit-keyframes rotateRoomBottomIn {
  from {
    opacity: .3;
    -webkit-transform: translateY(-100%)rotateX(-90deg);
  }
}

@keyframes rotateRoomBottomIn {
  from {
    opacity: .3;
    transform: translateY(-100%)rotateX(-90deg);
  }
}

@-webkit-keyframes rotateCubeLeftOut {
  0% {
    
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%)translateZ(-200px)rotateY(-45deg);
  }

  100% {
    opacity: .3;
    -webkit-transform: translateX(-100%)rotateY(-90deg);
  }
}

@keyframes rotateCubeLeftOut {
  0% {
    
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateX(-50%)translateZ(-200px)rotateY(-45deg);
  }

  100% {
    opacity: .3;
    transform: translateX(-100%)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateCubeLeftIn {
  0% {
    opacity: .3;
    -webkit-transform: translateX(100%)rotateY(90deg);
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%)translateZ(-200px)rotateY(45deg);
  }
}

@keyframes rotateCubeLeftIn {
  0% {
    opacity: .3;
    transform: translateX(100%)rotateY(90deg);
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateX(50%)translateZ(-200px)rotateY(45deg);
  }
}

@-webkit-keyframes rotateCubeRightOut {
  0% {
    
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(50%)translateZ(-200px)rotateY(45deg);
  }

  100% {
    opacity: .3;
    -webkit-transform: translateX(100%)rotateY(90deg);
  }
}

@keyframes rotateCubeRightOut {
  0% {
    
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateX(50%)translateZ(-200px)rotateY(45deg);
  }

  100% {
    opacity: .3;
    transform: translateX(100%)rotateY(90deg);
  }
}

@-webkit-keyframes rotateCubeRightIn {
  0% {
    opacity: .3;
    -webkit-transform: translateX(-100%)rotateY(-90deg);
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateX(-50%)translateZ(-200px)rotateY(-45deg);
  }
}

@keyframes rotateCubeRightIn {
  0% {
    opacity: .3;
    transform: translateX(-100%)rotateY(-90deg);
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateX(-50%)translateZ(-200px)rotateY(-45deg);
  }
}

@-webkit-keyframes rotateCubeTopOut {
  0% {
    
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%)translateZ(-200px)rotateX(45deg);
  }

  100% {
    opacity: .3;
    -webkit-transform: translateY(-100%)rotateX(90deg);
  }
}

@keyframes rotateCubeTopOut {
  0% {
    
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateY(-50%)translateZ(-200px)rotateX(45deg);
  }

  100% {
    opacity: .3;
    transform: translateY(-100%)rotateX(90deg);
  }
}

@-webkit-keyframes rotateCubeTopIn {
  0% {
    opacity: .3;
    -webkit-transform: translateY(100%)rotateX(-90deg);
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%)translateZ(-200px)rotateX(-45deg);
  }
}

@keyframes rotateCubeTopIn {
  0% {
    opacity: .3;
    transform: translateY(100%)rotateX(-90deg);
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateY(50%)translateZ(-200px)rotateX(-45deg);
  }
}

@-webkit-keyframes rotateCubeBottomOut {
  0% {
    
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(50%)translateZ(-200px)rotateX(-45deg);
  }

  100% {
    opacity: .3;
    -webkit-transform: translateY(100%)rotateX(-90deg);
  }
}

@keyframes rotateCubeBottomOut {
  0% {
    
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateY(50%)translateZ(-200px)rotateX(-45deg);
  }

  100% {
    opacity: .3;
    transform: translateY(100%)rotateX(-90deg);
  }
}

@-webkit-keyframes rotateCubeBottomIn {
  0% {
    opacity: .3;
    -webkit-transform: translateY(-100%)rotateX(90deg);
  }

  50% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: translateY(-50%)translateZ(-200px)rotateX(45deg);
  }
}

@keyframes rotateCubeBottomIn {
  0% {
    opacity: .3;
    transform: translateY(-100%)rotateX(90deg);
  }

  50% {
    animation-timing-function: ease-out;
    transform: translateY(-50%)translateZ(-200px)rotateX(45deg);
  }
}

@-webkit-keyframes rotateCarouselLeftOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(-150%)scale(.4)rotateY(-65deg);
  }
}

@keyframes rotateCarouselLeftOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(-150%)scale(.4)rotateY(-65deg);
  }
}

@-webkit-keyframes rotateCarouselLeftIn {
  from {
    opacity: .3;
    -webkit-transform: translateX(200%)scale(.4)rotateY(65deg);
  }
}

@keyframes rotateCarouselLeftIn {
  from {
    opacity: .3;
    transform: translateX(200%)scale(.4)rotateY(65deg);
  }
}

@-webkit-keyframes rotateCarouselRightOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateX(200%)scale(.4)rotateY(65deg);
  }
}

@keyframes rotateCarouselRightOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateX(200%)scale(.4)rotateY(65deg);
  }
}

@-webkit-keyframes rotateCarouselRightIn {
  from {
    opacity: .3;
    -webkit-transform: translateX(-200%)scale(.4)rotateY(-65deg);
  }
}

@keyframes rotateCarouselRightIn {
  from {
    opacity: .3;
    transform: translateX(-200%)scale(.4)rotateY(-65deg);
  }
}

@-webkit-keyframes rotateCarouselTopOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(-200%)scale(.4)rotateX(65deg);
  }
}

@keyframes rotateCarouselTopOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(-200%)scale(.4)rotateX(65deg);
  }
}

@-webkit-keyframes rotateCarouselTopIn {
  from {
    opacity: .3;
    -webkit-transform: translateY(200%)scale(.4)rotateX(-65deg);
  }
}

@keyframes rotateCarouselTopIn {
  from {
    opacity: .3;
    transform: translateY(200%)scale(.4)rotateX(-65deg);
  }
}

@-webkit-keyframes rotateCarouselBottomOut {
  from {
    
  }

  to {
    opacity: .3;
    -webkit-transform: translateY(200%)scale(.4)rotateX(-65deg);
  }
}

@keyframes rotateCarouselBottomOut {
  from {
    
  }

  to {
    opacity: .3;
    transform: translateY(200%)scale(.4)rotateX(-65deg);
  }
}

@-webkit-keyframes rotateCarouselBottomIn {
  from {
    opacity: .3;
    -webkit-transform: translateY(-200%)scale(.4)rotateX(65deg);
  }
}

@keyframes rotateCarouselBottomIn {
  from {
    opacity: .3;
    transform: translateY(-200%)scale(.4)rotateX(65deg);
  }
}

@-webkit-keyframes rotateSidesOut {
  from {
    
  }

  to {
    opacity: 0;
    -webkit-transform: translateZ(-500px)rotateY(90deg);
  }
}

@keyframes rotateSidesOut {
  from {
    
  }

  to {
    opacity: 0;
    transform: translateZ(-500px)rotateY(90deg);
  }
}

@-webkit-keyframes rotateSidesIn {
  from {
    opacity: 0;
    -webkit-transform: translateZ(-500px)rotateY(-90deg);
  }
}

@keyframes rotateSidesIn {
  from {
    opacity: 0;
    transform: translateZ(-500px)rotateY(-90deg);
  }
}

@-webkit-keyframes rotateSlideOut {
  0% {
    
  }

  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px)translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px)translateX(-200%);
  }
}

@keyframes rotateSlideOut {
  0% {
    
  }

  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px)translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px)translateX(-200%);
  }
}

@-webkit-keyframes rotateSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px)translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0)translateX(0);
  }
}

@keyframes rotateSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px)translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0)translateX(0);
  }
}

.animated-section-delay100 {
  animation-delay: .1s;
}

.animated-section-delay180 {
  animation-delay: .18s;
}

.animated-section-delay200 {
  animation-delay: .2s;
}

.animated-section-delay300 {
  animation-delay: .3s;
}

.animated-section-delay400 {
  animation-delay: .4s;
}

.animated-section-delay500 {
  animation-delay: .5s;
}

.animated-section-delay700 {
  animation-delay: .7s;
}

.animated-section-delay1000 {
  animation-delay: 1s;
}
/*# sourceMappingURL=website.537acfe9.css.map */
