@media only screen and (min-width: 920px) and (max-width:3600px) {
:root {
  --animatepos: 0;
  --scrollpos: 0;
}

#log {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  padding: .5rem;
  color: #FFF;
}

.scrollimate, .appear, .slide-in, .slide-out, .simplax, .lines:before,
.lines:after, .blur, .parallax-come-forward {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-delay: calc(var(--animatepos) * -1s);
          animation-delay: calc(var(--animatepos) * -1s);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: animation-delay;
}

.scrollic-fallback .scrollimate, .scrollic-fallback .appear, .scrollic-fallback .slide-in, .scrollic-fallback .slide-out, .scrollic-fallback .simplax, .scrollic-fallback .lines:before,
.scrollic-fallback .lines:after, .scrollic-fallback .blur, .scrollic-fallback .parallax-come-forward {
  -webkit-animation-name: none !important;
          animation-name: none !important;
}

.spin {
  -webkit-animation-name: Spinnn;
          animation-name: Spinnn;
  display: block;
  -webkit-transform-origin: 50% 400%;
          transform-origin: 50% 400%;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-timing-function: cubic-bezier(0, 0.85, 1, 0.15);
          animation-timing-function: cubic-bezier(0, 0.85, 1, 0.15);
}

@-webkit-keyframes Spinnn {
  0% {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
}

@keyframes Spinnn {
  0% {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
}
.appear {
  -webkit-animation-name: Appear;
          animation-name: Appear;
}

@-webkit-keyframes Appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes Appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.slide-in {
  -webkit-animation-name: SlideIn;
          animation-name: SlideIn;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
          animation-timing-function: cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes SlideIn {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes SlideIn {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slide-out {
  -webkit-animation-name: SlideOut;
          animation-name: SlideOut;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
          animation-timing-function: cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes SlideOut {
  20% {
    -webkit-transform: translateX();
            transform: translateX();
  }
  100% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}

@keyframes SlideOut {
  20% {
    -webkit-transform: translateX();
            transform: translateX();
  }
  100% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
/*.simplax {
  -webkit-animation-name: Simplax;
          animation-name: Simplax;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes Simplax {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes Simplax {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}*/
.lines:before,
.lines:after {
  -webkit-animation-name: Lines;
          animation-name: Lines;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  border: 2px solid transparent;
}

.blur {
  -webkit-animation-name: Blur;
          animation-name: Blur;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  will-change: animation-delay, filter;
}

@-webkit-keyframes Blur {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  50% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
}

@keyframes Blur {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  50% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Open Sans";
}

.home-page section {
  height: 100vh;
  position: relative;
  -webkit-animation-delay: calc(var(--animatepos) * -1s);
          animation-delay: calc(var(--animatepos) * -1s);
}

.fixer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  clip: rect(0, auto, auto, 0);
}

.fixed {
  position: fixed;
  width: 100vw;
  top: 0%;
  left: 0%;
  height: 100vh;
  font-weight: bold;
}

#wrapper {
  overflow-x: hidden;
}

.parallax {
  -webkit-perspective-origin: 50% calc( var(--animatepos) * 100%);
          perspective-origin: 50% calc( var(--animatepos) * 100%);
  -webkit-perspective: 10px;
          perspective: 10px;
  will-change: perspective-origin;
  overflow: hidden;
}

.Safari .parallax {
  overflow: hidden;
}

.Safari .parallax .fixer {
  clip: initial;
}

@-webkit-keyframes parallax {
  from {
    -webkit-perspective-origin: 50% 0%;
            perspective-origin: 50% 0%;
  }
  to {
    -webkit-perspective-origin: 50% 100%;
            perspective-origin: 50% 100%;
  }
}

@keyframes parallax {
  from {
    -webkit-perspective-origin: 50% 0%;
            perspective-origin: 50% 0%;
  }
  to {
    -webkit-perspective-origin: 50% 100%;
            perspective-origin: 50% 100%;
  }
}
.parallax-image {
  -webkit-transform: translateZ(-40px) scale(5);
          transform: translateZ(-40px) scale(5);
}

.fill {
  min-width: 100%;
  min-height: 100%;
}

.parallax-foreground {
  -webkit-transform: translateZ(5px) scale(0.5);
          transform: translateZ(5px) scale(0.5);
  z-index: 10;
  width: 30vh;
  height: 30vh;
  line-height: 30vh;
  background: #FFF;
  position: absolute;
  left: calc(50% - 15vh);
  top: 0%;
  font-size: 30vh;
}

.parallax-come-forward {
  -webkit-animation-name: comeForward;
          animation-name: comeForward;
  will-change: transform, animation-delay;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  z-index: 5;
  width: 30vh;
  height: 30vh;
  line-height: 30vh;
  background: #FFF;
  position: absolute;
  left: calc(50% - 15vh);
  top: calc(50% - 15vh);
  font-size: 10vh;
}

@-webkit-keyframes comeForward {
  0% {
    -webkit-transform: translateZ(-40px);
            transform: translateZ(-40px);
  }
  50% {
    -webkit-transform: translateZ(0px);
            transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(5px);
            transform: translateZ(5px);
    opacity: 0;
  }
}

@keyframes comeForward {
  0% {
    -webkit-transform: translateZ(-40px);
            transform: translateZ(-40px);
  }
  50% {
    -webkit-transform: translateZ(0px);
            transform: translateZ(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(5px);
            transform: translateZ(5px);
    opacity: 0;
  }
}

}