/* www.maetwerk.nl */
@import url(https://fonts.googleapis.com/css?family=Reenie+Beanie);
.ani {
  /* Make all animations smooth, since chrome is horrible in scrolling.... */
  -moz-transition: all linear 0.13s;
  -o-transition: all linear 0.13s;
  -webkit-transition: all linear 0.13s;
  transition: all linear 0.13s; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

@font-face {
  font-family: 'FontAwesome';
  src: url(/fonts/FontAwesome.otf) format("opentype"); }
body {
  font-family: 'Glegoo', serif; }

.wrapper {
  width: 90%;
  margin: 0 5%;
  /* For wide screens, limit the width */ }
  @media only screen and (min-width: 1140px) {
    .wrapper {
      width: 1026px;
      /* 1140px - 10% for margins */
      margin: 0 auto; } }

.main {
  padding: 30px 0; }

.page {
  padding-top: 15vh;
  top: 0;
  left: 0;
  height: 100vh;
  min-height: 480px;
  border-bottom: 11px solid black; }

.toolbar-container {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  text-align: center; }
  .toolbar-container a {
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #aaa;
    display: inline-block;
    float: right;
    padding: 5px 10px 0 0;
    text-decoration: none;
    -moz-transition: color linear 0.15s;
    -o-transition: color linear 0.15s;
    -webkit-transition: color linear 0.15s;
    transition: color linear 0.15s; }
  .toolbar-container a:hover {
    color: #f06824; }

/* ========================================================================= 
    Header bar 

    <div class="header-bar">
       <h1>My title</h1>
    </div>

    should show a title with a background and a tilted border to the right.
   =========================================================================
*/
.header-bar {
  /* Responsive font sizes */
  position: relative;
  clear: none;
  white-space: nowrap;
  height: 3em;
  margin-top: 0.5em; }
  @media only screen and (max-width: 480px) {
    .header-bar {
      font-size: 12px;
      font-weight: normal; } }
  .header-bar .header {
    display: inline-block;
    white-space: nowrap; }
  .header-bar h1 {
    display: inline-block;
    margin: 0;
    padding: 0.5em 2em 0.5em 0;
    font-size: 2em;
    color: white;
    position: relative; }
  .header-bar .header::after {
    content: '';
    font-size: 2em;
    margin-left: -100vw;
    padding: 0.5em 2em 0.5em 100vw;
    height: 1em;
    margin-bottom: -0.5em;
    width: 0;
    display: inline-block;
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #4bb847; }

/*
    animations mixin

    Usage:
    @include keyframes(slide-down) {
        0% { opacity: 1; }
        90% { opacity: 0; }
        }

    .element {
        width: 100px;
        height: 100px;
        background: black;
        @include animation('slide-down 5s 3');
    }
*/
/*
    animations mixin

    Usage:
    @include keyframes(slide-down) {
        0% { opacity: 1; }
        90% { opacity: 0; }
        }

    .element {
        width: 100px;
        height: 100px;
        background: black;
        @include animation('slide-down 5s 3');
    }
*/
/*
    animations
*/
@-webkit-keyframes screen-turn-on {
  0% {
    -moz-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 0, 0);
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    -moz-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    -moz-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    -moz-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -ms-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -o-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@-moz-keyframes screen-turn-on {
  0% {
    -moz-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 0, 0);
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    -moz-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    -moz-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    -moz-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -ms-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -o-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@-ms-keyframes screen-turn-on {
  0% {
    -moz-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 0, 0);
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    -moz-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    -moz-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    -moz-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -ms-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -o-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@-o-keyframes screen-turn-on {
  0% {
    -moz-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 0, 0);
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    -moz-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    -moz-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    -moz-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -ms-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -o-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@keyframes screen-turn-on {
  0% {
    -moz-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 0, 0);
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    -moz-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, 100%, 0);
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    -moz-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -ms-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -o-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    -webkit-transform: scale(1, 0.8) translate3d(0, -100%, 0);
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    -moz-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -ms-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -o-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@-webkit-keyframes screen-turn-off {
  0% {
    -moz-transform: scale(1, 1.3);
    -ms-transform: scale(1, 1.3);
    -o-transform: scale(1, 1.3);
    -webkit-transform: scale(1, 1.3);
    transform: scale(1, 1.3);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    -moz-transform: scale(1.3, 0.001);
    -ms-transform: scale(1.3, 0.001);
    -o-transform: scale(1.3, 0.001);
    -webkit-transform: scale(1.3, 0.001);
    transform: scale(1.3, 0.001);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    -moz-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transform: scale(0, 0.0001);
    -ms-transform: scale(0, 0.0001);
    -o-transform: scale(0, 0.0001);
    -webkit-transform: scale(0, 0.0001);
    transform: scale(0, 0.0001);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
@-moz-keyframes screen-turn-off {
  0% {
    -moz-transform: scale(1, 1.3);
    -ms-transform: scale(1, 1.3);
    -o-transform: scale(1, 1.3);
    -webkit-transform: scale(1, 1.3);
    transform: scale(1, 1.3);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    -moz-transform: scale(1.3, 0.001);
    -ms-transform: scale(1.3, 0.001);
    -o-transform: scale(1.3, 0.001);
    -webkit-transform: scale(1.3, 0.001);
    transform: scale(1.3, 0.001);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    -moz-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transform: scale(0, 0.0001);
    -ms-transform: scale(0, 0.0001);
    -o-transform: scale(0, 0.0001);
    -webkit-transform: scale(0, 0.0001);
    transform: scale(0, 0.0001);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
@-ms-keyframes screen-turn-off {
  0% {
    -moz-transform: scale(1, 1.3);
    -ms-transform: scale(1, 1.3);
    -o-transform: scale(1, 1.3);
    -webkit-transform: scale(1, 1.3);
    transform: scale(1, 1.3);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    -moz-transform: scale(1.3, 0.001);
    -ms-transform: scale(1.3, 0.001);
    -o-transform: scale(1.3, 0.001);
    -webkit-transform: scale(1.3, 0.001);
    transform: scale(1.3, 0.001);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    -moz-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transform: scale(0, 0.0001);
    -ms-transform: scale(0, 0.0001);
    -o-transform: scale(0, 0.0001);
    -webkit-transform: scale(0, 0.0001);
    transform: scale(0, 0.0001);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
@-o-keyframes screen-turn-off {
  0% {
    -moz-transform: scale(1, 1.3);
    -ms-transform: scale(1, 1.3);
    -o-transform: scale(1, 1.3);
    -webkit-transform: scale(1, 1.3);
    transform: scale(1, 1.3);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    -moz-transform: scale(1.3, 0.001);
    -ms-transform: scale(1.3, 0.001);
    -o-transform: scale(1.3, 0.001);
    -webkit-transform: scale(1.3, 0.001);
    transform: scale(1.3, 0.001);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    -moz-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transform: scale(0, 0.0001);
    -ms-transform: scale(0, 0.0001);
    -o-transform: scale(0, 0.0001);
    -webkit-transform: scale(0, 0.0001);
    transform: scale(0, 0.0001);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
@keyframes screen-turn-off {
  0% {
    -moz-transform: scale(1, 1.3);
    -ms-transform: scale(1, 1.3);
    -o-transform: scale(1, 1.3);
    -webkit-transform: scale(1, 1.3);
    transform: scale(1, 1.3);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    -moz-transform: scale(1.3, 0.001);
    -ms-transform: scale(1.3, 0.001);
    -o-transform: scale(1.3, 0.001);
    -webkit-transform: scale(1.3, 0.001);
    transform: scale(1.3, 0.001);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    -moz-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -moz-transform: scale(0, 0.0001);
    -ms-transform: scale(0, 0.0001);
    -o-transform: scale(0, 0.0001);
    -webkit-transform: scale(0, 0.0001);
    transform: scale(0, 0.0001);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
/* 
    Virtual screen
*/
.screen-container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 5vh 5vw; }
  .screen-container .screen {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border: 2px solid #cfe9fc;
    border-radius: 10px;
    background: rgba(36, 155, 240, 0.2);
    overflow: hidden;
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    /* all svg size to their parent container */
    /* Spinning circles*/ }
    .screen-container .screen::after {
      content: " ";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: linear-gradient(rgba(36, 155, 240, 0) 50%, rgba(15, 128, 210, 0) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
      background-size: 100% 2px, 3px 100%;
      pointer-events: none; }
    .screen-container .screen div {
      padding: 0; }
    .screen-container .screen svg {
      width: 100%;
      height: 100%; }
    .screen-container .screen a {
      color: #0a588f;
      text-decoration: none;
      /* Chrome has some issues with transition 'all', it shows the button after the screen is 'off' */
      -moz-transition: color 0.5s, border 0.5s;
      -o-transition: color 0.5s, border 0.5s;
      -webkit-transition: color 0.5s, border 0.5s;
      transition: color 0.5s, border 0.5s; }
    .screen-container .screen a:hover {
      -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
      -moz-animation: neon1 1.5s ease-in-out infinite alternate;
      -o-animation: neon1 1.5s ease-in-out infinite alternate;
      animation: neon1 1.5s ease-in-out infinite alternate;
      color: white; }
    .screen-container .screen .button {
      top: 32%;
      left: 57%;
      padding: 15px 35px;
      position: absolute;
      display: block;
      border: 2px solid #cfe9fc;
      border-radius: 6px;
      background: rgba(36, 155, 240, 0.2); }
    .screen-container .screen .button:hover {
      border: 2px solid white; }
    .screen-container .screen .outer-circle {
      position: absolute;
      top: 40%;
      left: 70%;
      width: 300px;
      height: 300px;
      -moz-animation: spin-cw 3350ms linear infinite;
      -o-animation: spin-cw 3350ms linear infinite;
      -webkit-animation: spin-cw 3350ms linear infinite;
      animation: spin-cw 3350ms linear infinite; }
      .screen-container .screen .outer-circle svg {
        width: 100%;
        height: 100%; }
      .screen-container .screen .outer-circle circle {
        fill: none;
        stroke: rgba(36, 155, 240, 0.2);
        stroke-width: 30;
        stroke-dasharray: 250 189; }
    .screen-container .screen .inner-circle {
      position: absolute;
      top: 40px;
      left: 40px;
      width: 220px;
      height: 220px;
      -moz-animation: spin 4000ms linear infinite;
      -o-animation: spin 4000ms linear infinite;
      -webkit-animation: spin 4000ms linear infinite;
      animation: spin 4000ms linear infinite; }
      .screen-container .screen .inner-circle circle {
        fill: none;
        stroke: rgba(36, 155, 240, 0.2);
        stroke-width: 30;
        stroke-dasharray: 250 189; }
    .screen-container .screen .inner-circle2 {
      position: absolute;
      top: 40px;
      left: 40px;
      width: 140px;
      height: 140px;
      -moz-animation: spin-cw 8200ms linear infinite;
      -o-animation: spin-cw 8200ms linear infinite;
      -webkit-animation: spin-cw 8200ms linear infinite;
      animation: spin-cw 8200ms linear infinite; }
      .screen-container .screen .inner-circle2 circle {
        fill: none;
        stroke: rgba(36, 155, 240, 0.2);
        stroke-width: 30;
        stroke-dasharray: 100 189; }
    .screen-container .screen .rollinline1 {
      position: absolute;
      top: 8vh;
      left: -10vw; }
      .screen-container .screen .rollinline1 p {
        font-size: 2em;
        color: #cfe9fc;
        -moz-animation: scroll-h-blur 2230ms linear infinite;
        -o-animation: scroll-h-blur 2230ms linear infinite;
        -webkit-animation: scroll-h-blur 2230ms linear infinite;
        animation: scroll-h-blur 2230ms linear infinite; }
    .screen-container .screen .rollinline2 {
      position: absolute;
      top: 10vh;
      left: -10vw; }
      .screen-container .screen .rollinline2 p {
        font-size: 1.9em;
        color: #c7e5f9;
        -moz-animation: scroll-h-blur 3610ms linear infinite;
        -o-animation: scroll-h-blur 3610ms linear infinite;
        -webkit-animation: scroll-h-blur 3610ms linear infinite;
        animation: scroll-h-blur 3610ms linear infinite;
        -moz-animation-direction: reverse;
        -o-animation-direction: reverse;
        -webkit-animation-direction: reverse;
        animation-direction: reverse; }
    .screen-container .screen .rollinline3 {
      position: absolute;
      top: 6vh;
      left: -10vw; }
      .screen-container .screen .rollinline3 p {
        font-size: 1.8em;
        color: #c0e0f7;
        -moz-animation: scroll-h-blur 4235ms linear infinite;
        -o-animation: scroll-h-blur 4235ms linear infinite;
        -webkit-animation: scroll-h-blur 4235ms linear infinite;
        animation: scroll-h-blur 4235ms linear infinite;
        -moz-animation-direction: alternate-reverse;
        -o-animation-direction: alternate-reverse;
        -webkit-animation-direction: alternate-reverse;
        animation-direction: alternate-reverse; }
    .screen-container .screen .map {
      position: absolute;
      width: 300px; }
      .screen-container .screen .map svg {
        fill: rgba(36, 155, 240, 0.2) !important;
        stroke: #cfe9fc !important;
        stroke-width: 0.5px !important; }
      .screen-container .screen .map .station {
        fill: #cfe9fc; }
      .screen-container .screen .map .selectionline {
        fill: none;
        stroke-width: 5;
        stroke: #cfe9fc; }
    .screen-container .screen .databox {
      position: absolute;
      top: 175px;
      left: 250px;
      color: #0a588f;
      font-size: 11px; }
      .screen-container .screen .databox td, .screen-container .screen .databox th {
        padding: 0 4px; }
      .screen-container .screen .databox th {
        background-color: rgba(36, 155, 240, 0.2);
        font-weight: normal;
        text-transform: uppercase; }
      .screen-container .screen .databox td {
        background: transparent; }
      .screen-container .screen .databox .poweredby {
        font-size: smaller; }
    .screen-container .screen .graph {
      position: absolute;
      top: 58%;
      left: 600px;
      right: 30%;
      height: 100px;
      width: auto;
      overflow: hidden;
      -webkit-filter: brightness(2);
      filter: brightness(2); }
      .screen-container .screen .graph svg {
        width: 3000px;
        height: 100px;
        animation: scroll-h 100s steps(600, start) infinite; }
      .screen-container .screen .graph .bar {
        stroke: rgba(36, 155, 240, 0.2);
        stroke-width: 2px; }
      .screen-container .screen .graph .axis {
        stroke-width: 1px;
        stroke: #a0d3f8; }

.off-add.screen {
  -moz-animation: screen-turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  -o-animation: screen-turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation: screen-turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  animation: screen-turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.on-add.screen {
  -moz-animation: screen-turn-on 0.74s linear;
  -o-animation: screen-turn-on 0.74s linear;
  -webkit-animation: screen-turn-on 0.74s linear;
  animation: screen-turn-on 0.74s linear;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.screen.off {
  visibility: hidden;
  -moz-transition-delay: 0.55s;
  -o-transition-delay: 0.55s;
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s; }

/*
    RESPONSIVE LAYOUT
*/
@media only screen and (max-width: 768px) {
  .screen .map {
    left: 0%;
    top: 45%; }

  .screen .databox {
    visibility: hidden; }

  .screen .selectionline {
    visibility: hidden; } }
@media only screen and (min-width: 768px) {
  .map {
    left: 10%;
    top: 30%; } }
@media only screen and (max-width: 1024px) {
  .screen .graph {
    visibility: hidden; } }
/* ==========================================================================
   Page 1: Title
   ========================================================================== */
/*
    Neon glow
*/
/*
    animations mixin

    Usage:
    @include keyframes(slide-down) {
        0% { opacity: 1; }
        90% { opacity: 0; }
        }

    .element {
        width: 100px;
        height: 100px;
        background: black;
        @include animation('slide-down 5s 3');
    }
*/
/* Orange: 
$neon1-color1 : hsla(20, 87%, 90%, 1);
$neon1-color2 : hsla(20, 87%, 80%, 1);
$neon1-color3 : hsla(20, 87%, 70%, 1);
$neon1-color4 : hsla(20, 87%, 60%, 1);
$neon1-color5 : hsla(20, 87%, 50%, 1);
$neon1-color6 : hsla(20, 87%, 50%, 1);
    */
@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: inset 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: inset 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: inset 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: inset 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-ms-keyframes neon1 {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: inset 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: inset 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-o-keyframes neon1 {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: inset 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: inset 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@keyframes neon1 {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee;
    box-shadow: inset 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee;
    box-shadow: inset 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-webkit-keyframes neon-text {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-moz-keyframes neon-text {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-ms-keyframes neon-text {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@-o-keyframes neon-text {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
@keyframes neon-text {
  from {
    text-shadow: 0 0 4px #cfe9fc, 0 0 10px #a0d3f8, 0 0 15px #fff, 0 0 20px #70bef5, 0 0 35px #40a8f2, 0 0 40px #1192ee, 0 0 50px #1192ee; }
  to {
    text-shadow: 0 0 2px #cfe9fc, 0 0 5px #a0d3f8, 0 0 7px #fff, 0 0 10px #70bef5, 0 0 17px #40a8f2, 0 0 20px #1192ee, 0 0 25px #1192ee; } }
/*
    Neon glow
*/
/*
    animations mixin

    Usage:
    @include keyframes(slide-down) {
        0% { opacity: 1; }
        90% { opacity: 0; }
        }

    .element {
        width: 100px;
        height: 100px;
        background: black;
        @include animation('slide-down 5s 3');
    }
*/
@-webkit-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-ms-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-o-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes spin-cw {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  75% {
    -moz-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@-moz-keyframes spin-cw {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  75% {
    -moz-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@-ms-keyframes spin-cw {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  75% {
    -moz-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@-o-keyframes spin-cw {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  75% {
    -moz-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes spin-cw {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  75% {
    -moz-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
/*
    scrolling
*/
@-webkit-keyframes scroll-h {
  100% {
    transform: translateX(-1800px); } }
@-moz-keyframes scroll-h {
  100% {
    transform: translateX(-1800px); } }
@-ms-keyframes scroll-h {
  100% {
    transform: translateX(-1800px); } }
@-o-keyframes scroll-h {
  100% {
    transform: translateX(-1800px); } }
@keyframes scroll-h {
  100% {
    transform: translateX(-1800px); } }
/* blur-in, scroll, blur-out */
@-webkit-keyframes scroll-h-blur {
  from, 0% {
    opacity: 0;
    filter: blur(30px); }
  10%, 90% {
    opacity: 0.4; }
  20%, 80% {
    filter: blur(0); }
  to, 100% {
    text-indent: 100px;
    opacity: 0;
    filter: blur(30px); } }
@-moz-keyframes scroll-h-blur {
  from, 0% {
    opacity: 0;
    filter: blur(30px); }
  10%, 90% {
    opacity: 0.4; }
  20%, 80% {
    filter: blur(0); }
  to, 100% {
    text-indent: 100px;
    opacity: 0;
    filter: blur(30px); } }
@-ms-keyframes scroll-h-blur {
  from, 0% {
    opacity: 0;
    filter: blur(30px); }
  10%, 90% {
    opacity: 0.4; }
  20%, 80% {
    filter: blur(0); }
  to, 100% {
    text-indent: 100px;
    opacity: 0;
    filter: blur(30px); } }
@-o-keyframes scroll-h-blur {
  from, 0% {
    opacity: 0;
    filter: blur(30px); }
  10%, 90% {
    opacity: 0.4; }
  20%, 80% {
    filter: blur(0); }
  to, 100% {
    text-indent: 100px;
    opacity: 0;
    filter: blur(30px); } }
@keyframes scroll-h-blur {
  from, 0% {
    opacity: 0;
    filter: blur(30px); }
  10%, 90% {
    opacity: 0.4; }
  20%, 80% {
    filter: blur(0); }
  to, 100% {
    text-indent: 100px;
    opacity: 0;
    filter: blur(30px); } }
.title-page {
  top: 0;
  left: 0;
  height: 100vh;
  min-height: 480px;
  border-bottom: 11px solid black;
  /*
  .title-gradient {
      // Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent
      background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); // FF3.6+ 
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); // Chrome,Safari4+
      background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); // Chrome10+,Safari5.1+
      background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); // Opera 11.10+
      background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); // IE10+
      background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); // W3C
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); // IE6-9
  }
  */ }
  .title-page .background {
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-attachment: local;
    background: url("/img/title-bg-1280.jpg") no-repeat center center fixed;
    background-size: cover; }
    @media only screen and (max-height: 800) {
      .title-page .background {
        background: url("/img/title-bg-800.jpg") no-repeat center center fixed; } }
  .title-page .screen-container {
    position: fixed; }
  .title-page .title-container {
    position: fixed;
    z-index: 100;
    width: 100%;
    white-space: nowrap;
    min-height: 85px;
    /* calculated: */
    top: 25%;
    height: 40%;
        /*  Dit is de groene balk achter de titel. De 'skew' transform zorgt er voor
            dat hij een schuine rand krijgt. 

            Door een bug in Chrome kunnen we de balken niet over elkaar leggen. De oranje balk
            komt over de groene, ook al heeft de groene een hogere z-index.
        */ }
    .title-page .title-container .width-limit {
      position: absolute;
      float: left;
      height: 100%;
      min-width: 512px;
      /* calculated: */
      width: 100%; }
    .title-page .title-container .left {
      position: relative;
      z-index: 90;
      float: left;
      clear: none;
      background: #F06522;
      height: 20%;
      /* allow overlay */
      margin-top: 11px;
      margin-right: -5%;
      /* extend bar to the left */
      margin-left: -100vw;
      padding-left: 100vw;
      /* calculated: */
      width: 15%;
   /* The green bar, with the text must be sized to the text, if it gets too high, then 
  text width will increase and not fit on screen. So height should not exceed a certain
  percentage of the width. This goes for .left and .right bars
*/
      max-height: 20vw; }
    .title-page .title-container .right::before {
      float: right;
      content: '';
      z-index: 99;
      width: 110%;
      height: 100%;
      background: #4bb847;
      -webkit-transform: skew(-30deg);
      -ms-transform: skew(-30deg);
      -moz-transform: skew(-30deg);
      -o-transform: skew(-30deg);
      transform: skew(-30deg);
      /* move a bit to the left */
      margin-left: -100%;
      /* extend bar to the right */
      margin-right: -100vw;
      padding-right: 100vw; }
    .title-page .title-container .right {
      float: right;
      clear: none;
      background: none;
      height: 30%;
      width: 70%;
      white-space: nowrap;
      max-height: 20vw;
      position: absolute;
      bottom: 0;
      right: 0;
      margin-bottom: 11px; }
    .title-page .title-container .title {
      position: relative;
      z-index: 100;
      padding-top: 2%;
      margin-bottom: -2%;
      color: white; }
    .title-page .title-container .subtitle {
      position: relative;
      z-index: 100;
      color: white; }
    .title-page .title-container h1, .title-page .title-container h2 {
      margin: 0; }

/* ==========================================================================
   Page 2: Introduction, what we do
   ========================================================================== */
.intro-page {
  background: url("/img/intro-bg-1920.jpg") no-repeat top center fixed;
  background-size: cover;
  background-attachment: fixed; }
  @media only screen and (max-width: 1280) {
    .intro-page {
      background: url("/img/intro-bg-1280.jpg") no-repeat top center fixed; } }
  @media only screen and (max-width: 800) {
    .intro-page {
      background: url("/img/intro-bg-800.jpg") no-repeat top center fixed; } }
  .intro-page.mobile-safari {
    background-attachment: local; }
  .intro-page .intro-container {
    width: 100%;
    overflow: visible;
    white-space: nowrap; }
  .intro-page h1, .intro-page h2, .intro-page a {
    color: white;
    text-align: center; }
  .intro-page h1 {
    font-weight: bolder; }
  .intro-page h2 {
    font-weight: normal; }
  .intro-page .scroll-down {
    display: block;
    text-align: center;
    left: 50%;
    bottom: 10%; }
    .intro-page .scroll-down a {
      display: inline-block;
      line-height: 32px;
      width: 32px;
      border: 2px solid white;
      border-radius: 20px;
      font-family: 'FontAwesome';
      font-size: 30px;
      text-decoration: none;
      -moz-transition: all linear 0.15s;
      -o-transition: all linear 0.15s;
      -webkit-transition: all linear 0.15s;
      transition: all linear 0.15s; }
    .intro-page .scroll-down a:hover {
      color: #f06824;
      border-color: #f06824; }
  @media only screen and (max-width: 480px) {
    .intro-page h1 {
      padding-top: 48px;
      font-size: 20px; }
    .intro-page h2 {
      font-size: 16px; } }
  @media only screen and (min-width: 481px) {
    .intro-page h1 {
      padding-top: 32px;
      font-size: 32px; }
    .intro-page h2 {
      font-size: 24px; } }
  @media only screen and (min-width: 768px) {
    .intro-page h1 {
      font-size: 48px; }
    .intro-page h2 {
      font-size: 32px; } }

/* ==========================================================================
   Page 3: Techniek, how we do it
   ========================================================================== */
/* This is the total space between items */
.hx-page {
  background: url("/img/hx-bg-1920.jpg") no-repeat top center fixed;
  background-size: cover;
  background-attachment: fixed;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 90vh;
  padding: 5vh; }
  @media only screen and (max-width: 1280) {
    .hx-page {
      background: url("/img/hx-bg-1280.jpg") no-repeat top center fixed; } }
  @media only screen and (max-width: 800) {
    .hx-page {
      background: url("/img/hx-bg-800.jpg") no-repeat top center fixed; } }
  @media only screen and (max-width: 568px) {
    .hx-page {
      padding: 2vh 1vw 2vh 1vw; } }
  .hx-page.mobile-safari {
    background-attachment: local; }
  .hx-page .screen-container {
    margin: 0 !important;
    padding: 0 !important;
    height: 90vh;
    width: 100%; }
  .hx-page .screen-container .screen {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: -2px;
    right: -2px; }
  .hx-page .screen-container .screen::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("/img/hx-bg-1920.jpg") no-repeat top center fixed;
    background-size: cover;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    float: left;
    border-radius: 10px;
    pointer-events: none;
    /* OVERRIDES: */ }
    @media only screen and (max-width: 1280) {
      .hx-page .screen-container .screen::before {
        background: url("/img/hx-bg-1280.jpg") no-repeat top center fixed; } }
    @media only screen and (max-width: 800) {
      .hx-page .screen-container .screen::before {
        background: url("/img/hx-bg-800.jpg") no-repeat top center fixed; } }
    @supports not ((filter: blur(20px)) or (-webkit-filter: blur(20px))) {
      .hx-page .screen-container .screen::before {
        background: rgba(36, 155, 240, 0.2); } }
  .hx-page .hx-container {
    position: relative;
    width: 100%;
    white-space: nowrap;
    top: 10vh;
    left: 0; }
    .hx-page .hx-container .header-bar .header::after {
      background-color: rgba(36, 155, 240, 0.2); }
  .hx-page .hx-grid {
    margin-top: 20px;
    width: 100%;
    max-width: 140vh; }
    @media only screen and (max-width: 1024px) {
      .hx-page .hx-grid {
        max-width: 120vh; } }
    @media only screen and (max-width: 768px) {
      .hx-page .hx-grid {
        max-width: 80vh; } }
  .hx-page .hx-row {
    width: 100%;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    /* Caculations:
        wide    : 9 items
        <768px  : 7 items
        <480px  : 5 items
    */
    /* item: based on 9 items max per row */ }
    .hx-page .hx-row:nth-child(even) {
      -moz-transform: translateX(5.28158%);
      -ms-transform: translateX(5.28158%);
      -o-transform: translateX(5.28158%);
      -webkit-transform: translateX(5.28158%);
      transform: translateX(5.28158%); }
    .hx-page .hx-row:last-child {
      -moz-transform: translateX(47.53421%);
      -ms-transform: translateX(47.53421%);
      -o-transform: translateX(47.53421%);
      -webkit-transform: translateX(47.53421%);
      transform: translateX(47.53421%); }
    .hx-page .hx-row .hx-item {
      width: 9.86316%;
      margin: 0.30311% 0.35% -2.54414% 0.35%; }
    @media only screen and (max-width: 1024px) {
      .hx-page .hx-row:nth-child(even) {
        -moz-transform: translateX(6.69%);
        -ms-transform: translateX(6.69%);
        -o-transform: translateX(6.69%);
        -webkit-transform: translateX(6.69%);
        transform: translateX(6.69%); }
      .hx-page .hx-row:last-child {
        -moz-transform: translateX(33.45%);
        -ms-transform: translateX(33.45%);
        -o-transform: translateX(33.45%);
        -webkit-transform: translateX(33.45%);
        transform: translateX(33.45%); }
      .hx-page .hx-row .hx-item {
        width: 12.68%;
        margin: 0.30311% 0.35% -3.35729% 0.35%; }
      .hx-page .hx-row .hx-item.c8, .hx-page .hx-row .hx-item.c9 {
        visibility: hidden; } }
    @media only screen and (max-width: 768px) {
      .hx-page .hx-row:nth-child(even) {
        -moz-transform: translateX(9.12273%);
        -ms-transform: translateX(9.12273%);
        -o-transform: translateX(9.12273%);
        -webkit-transform: translateX(9.12273%);
        transform: translateX(9.12273%); }
      .hx-page .hx-row:last-child {
        -moz-transform: translateX(9.12273%);
        -ms-transform: translateX(9.12273%);
        -o-transform: translateX(9.12273%);
        -webkit-transform: translateX(9.12273%);
        transform: translateX(9.12273%); }
      .hx-page .hx-row .hx-item {
        width: 17.54545%;
        margin: 0.30311% 0.35% -4.76183% 0.35%; }
      .hx-page .hx-row .hx-item.c6, .hx-page .hx-row .hx-item.c7 {
        visibility: hidden; } }
    .hx-page .hx-row .hx-item {
      font-size: medium;
      display: inline-block;
      overflow: hidden;
      padding: 0;
      -moz-transition: transform linear 500ms;
      -o-transition: transform linear 500ms;
      -webkit-transition: transform linear 500ms;
      transition: transform linear 500ms; }
      .hx-page .hx-row .hx-item > .hx-outer {
        width: 100%;
        /* padding bottom increases the size*/
        padding-bottom: 115%;
        position: relative !important;
        overflow: hidden;
        -webkit-transform: rotate(120deg);
        -moz-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        -o-transform: rotate(120deg);
        transform: rotate(120deg); }
        .hx-page .hx-row .hx-item > .hx-outer > .hx-inner {
          position: absolute !important;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          -webkit-transform: rotate(120deg);
          -moz-transform: rotate(120deg);
          -ms-transform: rotate(120deg);
          -o-transform: rotate(120deg);
          transform: rotate(120deg); }
          .hx-page .hx-row .hx-item > .hx-outer > .hx-inner .hx-bg {
            background: rgba(36, 155, 240, 0.2);
            color: white;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            -webkit-transition: all 0.2s ease-in;
            -moz-transition: all 0.2s ease-in;
            -o-transition: all 0.2s ease-in;
            transition: all 0.2s ease-in;
            /* OVERRIDES: */ }
            @supports not ((filter: blur(20px)) or (-webkit-filter: blur(20px))) {
              .hx-page .hx-row .hx-item > .hx-outer > .hx-inner .hx-bg {
                background: #f06824; } }
            .hx-page .hx-row .hx-item > .hx-outer > .hx-inner .hx-bg .hx-content {
              position: relative;
              -webkit-transform: rotate(120deg);
              -moz-transform: rotate(120deg);
              -ms-transform: rotate(120deg);
              -o-transform: rotate(120deg);
              transform: rotate(120deg);
              height: 100%;
              width: 100%;
              text-align: center; }
              .hx-page .hx-row .hx-item > .hx-outer > .hx-inner .hx-bg .hx-content .hx-text {
                position: relative;
                display: flex;
                height: 100%;
                vertical-align: middle;
                justify-content: center;
                align-items: center;
                -moz-transition: text-shadow ease-in-out 1400ms;
                -o-transition: text-shadow ease-in-out 1400ms;
                -webkit-transition: text-shadow ease-in-out 1400ms;
                transition: text-shadow ease-in-out 1400ms; }
              .hx-page .hx-row .hx-item > .hx-outer > .hx-inner .hx-bg .hx-content .hx-text:hover {
                -webkit-animation: neon-text 1s ease-in-out infinite alternate;
                -moz-animation: neon-text 1s ease-in-out infinite alternate;
                -o-animation: neon-text 1s ease-in-out infinite alternate;
                animation: neon-text 1s ease-in-out infinite alternate; }
  .hx-page .scroll-down {
    position: absolute;
    display: block;
    text-align: center;
    left: 50%;
    bottom: 3%; }
    .hx-page .scroll-down a {
      display: inline-block;
      line-height: 32px;
      width: 32px;
      border: 2px solid white;
      border-radius: 20px;
      font-family: 'FontAwesome';
      font-size: 30px;
      text-decoration: none;
      -moz-transition: all linear 0.15s;
      -o-transition: all linear 0.15s;
      -webkit-transition: all linear 0.15s;
      transition: all linear 0.15s;
      color: #cfe9fc; }
    .hx-page .scroll-down a:hover {
      color: #cfe9fc;
      border-color: #cfe9fc; }
  @media only screen and (min-width: 481px) {
    .hx-page .scroll-down {
      height: 48px; } }
  @media only screen and (min-width: 768px) {
    .hx-page .scroll-down {
      height: 64px; } }

/* ==========================================================================
   Contact
   ==========================================================================
*/
.contact-page {
  position: relative;
  min-height: 100vh;
  background: url("/img/contact-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-size: 1em;
  /* from http://mentormate.com/blog/css-postit-note/ */
  /* -------------------------- */ }
  .contact-page .wrapper {
    padding-top: 20vh; }
  .contact-page .rotate-2 {
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
  .contact-page .postit {
    float: left;
    text-align: center;
    width: 250px;
    margin-bottom: -120px;
    min-height: 225px;
    max-height: 225px;
    padding-top: 25px;
    position: relative;
    border: 1px solid #E8E8E8;
    border-top: 60px solid #fdfd86;
    font-family: 'Reenie Beanie';
    font-size: 28px;
    border-bottom-right-radius: 60px 5px;
    display: inline-block;
    background: #ffff88;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(81%, #ffff88), color-stop(82%, #ffff88), color-stop(82%, #ffff88), color-stop(100%, #ffffc6));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* IE10+ */
    background: linear-gradient(135deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffff88', endColorstr='#ffffc6',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */ }
    .contact-page .postit:after {
      content: "";
      position: absolute;
      z-index: -1;
      right: -0px;
      bottom: 20px;
      width: 200px;
      height: 25px;
      background: rgba(0, 0, 0, 0.2);
      box-shadow: 2px 15px 5px rgba(0, 0, 0, 0.4);
      -moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
      -webkit-transform: matrix(-1, -0.1, 0, 1, 0, 0);
      -o-transform: matrix(-1, -0.1, 0, 1, 0, 0);
      -ms-transform: matrix(-1, -0.1, 0, 1, 0, 0);
      transform: matrix(-1, -0.1, 0, 1, 0, 0); }
  .contact-page .contact-image {
    float: right;
    position: relative;
    right: 0;
    top: 0; }
  .contact-page .contact-foto {
    float: right;
    width: 300px;
    max-height: 70vh;
    margin-bottom: -190px;
    margin-left: -40px;
    /* Add a polaroid effect */
    background: #FFFFFF;
    padding: 12px 11px 50px 10px;
    -webkit-box-shadow: 0 5px 10px #aaa;
    -moz-box-shadow: 0 5px 10px #aaa;
    box-shadow: 0 5px 10px #aaa;
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  .contact-page .vcard {
    float: left;
    bottom: 0;
    background-color: white;
    padding: 30px 15px 15px 50px;
    margin-bottom: 20px;
    margin-right: -40px;
    width: 400px;
    height: 200px;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 10px rgba(2, 2, 2, 0.5);
    -moz-box-shadow: 0 5px 10px rgba(2, 2, 2, 0.5);
    box-shadow: 0 5px 10px rgba(2, 2, 2, 0.5);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg); }
    @media only screen and (max-width: 568px) {
      .contact-page .vcard {
        width: 300px; } }
    @media only screen and (min-width: 1050px) {
      .contact-page .vcard {
        margin-top: 150px; } }
    .contact-page .vcard p {
      line-height: none;
      margin: 0; }
    .contact-page .vcard .fn {
      font-weight: bold;
      font-size: 1.4em; }
    .contact-page .vcard .email {
      font-style: italic;
      text-decoration: none; }
    .contact-page .vcard .adr {
      margin-top: 1em; }
    .contact-page .vcard .org {
      display: block;
      margin-top: 1em;
      position: relative;
      height: 80px;
      width: 300px;
      color: white;
      padding-top: 15px;
      line-height: 1em; }
      .contact-page .vcard .org::before {
        content: " ";
        position: absolute;
        top: 0;
        height: 80px;
        width: 80px;
        left: -80px;
        background-color: #f06824;
        z-index: -3; }
      .contact-page .vcard .org::after {
        content: " ";
        position: absolute;
        left: -15px;
        top: 0px;
        height: 80px;
        width: 999px;
        background-color: #4bb847;
        -moz-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
        -o-transform: skew(-30deg);
        -webkit-transform: skew(-30deg);
        transform: skew(-30deg);
        z-index: -2; }
  .contact-page .footer-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 10px solid #F06522;
    background: #4CB848; }
    .contact-page .footer-container .wrapper {
      padding-top: 0; }
    .contact-page .footer-container .left {
      float: left; }
    .contact-page .footer-container .right {
      float: right; }
  .contact-page .footer-container footer {
    color: white; }
    @media only screen and (max-width: 758px) {
      .contact-page .footer-container footer {
        font-size: 0.8em; } }

/* ==========================================================================
   Debug
   ========================================================================== */
.debug {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: small;
  position: fixed;
  z-index: 255;
  background: #aaa;
  padding: 10px;
  margin: 10px;
  bottom: 0;
  right: 0;
  min-width: 300px; }
  .debug td {
    padding: 0 5px;
    font-size: 10px; }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (min-width: 768px) {
 /* ============
 WIDE: Main
============ */
  .main article {
    float: left;
    width: 57%; } }
/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }

/*# sourceMappingURL=main.css.map */
