/**********************************
GLOBAL
***********************************/

#warning-shield,
#shield-all {
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	width:95%;
	height:100%;
	z-index:99999999;
	background:#f8de71;
	color:#FFF;
	padding:50px 50px;
	font-size:40px;
	line-height:43px;
	text-align:center;
}
#warning-shield {
	padding:50px 30px;
}
#warning-shield .coop-logo {
	margin-bottom:30px;
}
#warning-shield .coop-logo img {
	max-width:100%;
}
#shield-all {
	background:none;
}
#shield-all.hidden {
	z-index:-1;
}

html.js {
	margin-top:0!important;
	background:rgba(255,255,255,1);
}
body {
	margin: 0;
	font-family: 'proxima-nova', Arial, sans-serif;
	background:#b9f4e7;
	font-weight:bold;
	font-size:20px;
	line-height:26px;
	opacity:1;
	transition:opacity 2s;
}
#scene-navs {
	position:fixed;
	z-index:99999;
	top:0px;
	left:50%;
	margin-left:-270px;
	width:540px;
	height:40px;
	opacity:1;
}
.scene-nav {
	cursor:pointer;
	padding:8px 11px 0 11px;
	height:40px;
	text-align:center;
	float:left;
}
.scene-nav svg {
	position:relative;
}
.scene-nav.n0 svg {
	width:18px;
	top:-1px;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
.scene-nav.n0 svg polygon {
	stroke-width:2px;
	fill:none;
	stroke:#fff;
}
.scene-nav.n1 svg {
	width:28px;
	top:-2px;
}
.scene-nav.n2 svg {
	width:26px;
	top:2px;
}
.scene-nav.n3 svg {
	width:24px;
}
.scene-nav.n4 svg {
	width:28px;
	top:1px;
}
.scene-nav.n5 svg {
	width:30px;
}
.scene-nav.n6 svg {
	width:32px;
	top:2px;
}
.scene-nav.n7 svg {
	width:30px;
}
.scene-nav.n8 svg {
	width:28px;
}
.scene-nav.n9 svg {
	width:24px;
}
.scene-nav.n10 svg {
	width:28px;
	top:-2px;
}
.scene-nav path,
.scene-nav rect {
	fill:#FFF;
	transition:all .2s;
}
.scene-nav:hover path,
.scene-nav:hover rect,
.scene-nav.active path,
.scene-nav.active rect {
	fill:#577a81;
}
.scene-nav:hover svg polygon,
.scene-nav.active svg polygon {
	stroke:#577a81;
}
#pinContainer {
	width: 100%; /* width of each panel */
	height: 100vh;
	overflow: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
}
#slideContainer {
	width: 1200%; /* to contain 12 panels, each with 100% of window width */
	height: 100vh;
}
.scene {
	height: 100vh;
	width: 8.33333%; /* relative to parent -> 8.33333% of 1200% = 100% of window width */
	float: left;
	text-align: center;
	position:relative;
}
.top-layer {
	width:100%;
	height:40px;
	position:absolute;
	z-index:80;
	top:0;
	left:0;
	background:rgba(153,221,205,.75);
}



/* sun */
.sun-wrapper {
	width:60px;
	height:60px;
	top:50%;
	left:-60px;
	position: absolute;
	z-index:10;
}
.sun-wrapper.behind {
	z-index:-1;
}
.sun {
	width:60px;
	height:60px;
	background: linear-gradient(to right, rgba(249,236,170,1) 0%,rgba(249,236,170,1) 50%,rgba(249,236,170,1) 51%,rgba(249,236,170,1) 100%);
	border-radius:50%;
	position:absolute;
	z-index:10;
}
.particle {
	position:absolute;
	z-index:9;
	top:20px;
	left:20px;
	width:10px;
	height:10px;
	opacity:.6;
	background:url(../img/particle.svg) no-repeat top left;
}
.particle.yellow {
	background:url(../img/particle-yellow.svg) no-repeat top left;
}
.particle.alt {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}




/* clouds */
.cloud {
	position: absolute;
	z-index:120;
	width:119px;
	height:58px;
	right:-200px;
	top:200px;
	background:url(../img/cloud.svg) no-repeat top left;
}
.cloud.dark {
	width:169px;
	height:55px;
	background:url(../img/cloud-dark.svg) no-repeat top left;
}




/* text layer */
h1 {
	margin: 0;
	font-family: 'proxima-nova', Arial, sans-serif;
	font-weight:bold;
	text-transform:uppercase;
	font-size:20px;
	line-height:26px;
	opacity:0;
}
h2 {
	font-family: 'alternate-gothic-no-3-d', Arial, sans-serif;
	text-transform:uppercase;
	font-size:56px;
	line-height:56px;
	font-weight:normal;
	transition:all .2s;
}
.text-layer {
	text-align:center;
	position:relative;
	z-index:90;
	top:15%;
	margin:0 auto;
}
.text-inner {
	padding:30px 30px 10px 30px;
	opacity:1;
	z-index:91;
	background: rgba(185,244,231,0);
	transition:all .2s;
	border: 0;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 5px transparent;
	position: relative;
	top:-40px;
	vertical-align: middle;
}
.text-inner p {
	opacity:0;
}
.text-inner::before,
.text-inner::after {
	box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    -webkit-transform-origin: center;
}
.text-inner::before {
	border-top: 5px solid rgba(19,172,183,1);
    border-bottom: 5px solid rgba(19,172,183,1);
    transform: scale3d(0,1,1);
    -webkit-transform: scale3d(0,1,1);
}
.text-inner::after {
	border-left: 5px solid rgba(19,172,183,1);
    border-right: 5px solid rgba(19,172,183,1);
    transform: scale3d(1,0,1);
    -webkit-transform: scale3d(1,0,1);
}
.text-inner.active::before,
.text-inner.active::after {
	transform: scale3d(1,1,1);
	-webkit-transform: scale3d(1,1,1);
    transition: transform 1s;
}
.text-inner.active {
	background: rgba(185,244,231,1);
}
.text-layer h2 {
	position:relative;
	z-index:92;
	top:-35px;
	display:inline-block;
	padding:0 25px;
  background:#b9f4e7;
  margin: 0px;
}
.text-layer p {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
    margin-bottom:13px!important;
}




/* parallax layers */
.l1 {
	background:#819838;
	height:57px;
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	z-index:60;
}
.l1 .inner {
	height:57px;
	width:100%;
	position:absolute;
	bottom:0;
}
.l1 .inner img,
.l1 .inner svg {
	position:relative;
}
.l2 {
	background:#aac140;
	height:90px;
	position:absolute;
	bottom:57px;
	left:0;
	width:100%;
	z-index:50;
}
.l2 .inner {
	height:90px;
	width:100%;
	position:absolute;
	bottom:0;
}
.l2 .inner img,
.l2 .inner svg {
	position:relative;
}
.l3 {
	background:#ccda8b;
	height:59px;
	position:absolute;
	bottom:147px;
	left:0;
	width:100%;
	z-index:40;
}
.l3 .inner {
	height:59px;
	width:100%;
	position:absolute;
	bottom:0;
}
.l3 .inner img,
.l3 .inner svg {
	position:relative;
}
.l4 {
	height:100%;
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	z-index:30;
}
.l4 .inner {
	height:100%;
	position:absolute;
	bottom:0;
}
.l4 .inner img,
.l4 .inner svg,
.l4 .inner .cloud {
	position:relative;
}


/**********************************
SCENE 0 & SCENE 12
***********************************/

.scene.s0 {
	position:absolute;
	width:100vw;
	z-index:100;
}
.s0, .s12 {
	background-color: #f8de71;
	opacity:1;
	transition:all .2s;
}
.s0 .top-layer, .s12 .top-layer {
	background:rgba(249,236,170,.5);
}
.s0 .text-layer {
	width:800px;
	color:#FFF;
}
.s0 .text-layer h1 {
	position:relative;
	top:10px;
	font-family: 'alternate-gothic-no-3-d', Arial, sans-serif;
	text-transform:uppercase;
	font-size:46px;
	line-height:50px;
	font-weight:normal;
	transition:all .2s;
	opacity:1;
}
.s0 .text-inner {
	margin:0 200px;
	border:none;
	padding:0;
	background:none;
	top:0;
}
.s0 .text-inner p, .s12 .text-inner p {
	opacity:1;
}
.s0 .text-layer .divider {
	width:120px;
	position:relative;
	top:-20px;
	display:inline-block;
	height:2px;
	background:#FFF;
}
.s0 .text-layer .divider span {
	position:absolute;
	top:-13px;
	left:50%;
	margin-left:-23px;
	background:#f8de71;
	padding:0 14px;
	transition:all .2s;
	width:20px;
	height:20px;
	display:block;
	animation-name: arrow-down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-fill-mode:both;
	-webkit-animation-name: arrow-down;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode:both;
}
.s0 .text-layer .divider span svg {
	width:100%;
	height:auto;
}
.s0 .text-layer .coop-logo img, .s12 .text-layer .coop-logo img {
	width:137px;
	height:auto;
	margin-top:30px;
}
.s0 .yellow-layer, .s12 .yellow-layer {
	left:-50%;
}
.s0 .l1.yellow-layer, .s12 .l1.yellow-layer {
	background:rgba(255,181,34,1);
	z-index:61;
}
.s0 .l2.yellow-layer, .s12 .l2.yellow-layer {
	background:rgba(244,203,83,1);
	z-index:51;
}
.s0 .l3.yellow-layer, .s12 .l3.yellow-layer {
	background:rgba(248,233,161,1);
	z-index:41;
}
.s0 .intro-layer, .s12 .intro-layer {
	position:absolute;
	z-index:70;
	bottom:0;
	left:0;
	width:100%;
}
.s0 .intro-layer img, .s12 .intro-layer img {
	height:209px;
	position:relative;
	top:9px;
	width:auto;
}

.s12 .text-layer {
	color:#FFF;
	width:650px;
}
.s12 .text-inner {
	margin:0 150px;
	background:none;
}
.s12 .text-inner::before,
.s12 .text-inner::after {
	border-color:#FFFFFF;
}
.s12 h2 {
	background:#f8de71;
}
.s12 .start-over {
	transition:all .2s;
	top:0;
	position:relative;
	margin-top:20px;
	cursor:pointer;
}
.s12 .start-over h2 {
	font-size:30px;
	opacity:1;
	padding:0;
	position:relative;
	background:none;
}
.s12 .start-over span {
	position:absolute;
	top:0;
	left:-22px;
	transition:all .2s;
	opacity:.5;
	width:16px;
	height:20px;
	animation-name: arrow-left;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-fill-mode:both;
	-webkit-animation-name: arrow-left;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode:both;
}
.s12 .start-over.active span {
	opacity:1;
}

@keyframes arrow-down {
  0%, 100% {
    top:-13px;
  }
  10% {
    top:-6px;
  }
  20% {
    top:-13px;
  }
  30% {
    top:-6px;
  }
  40% {
    top:-13px;
  }
}

@keyframes arrow-left {
  0%, 100% {
    left:-22px;
  }
  10% {
    left:-28px;
  }
  20% {
    left:-22px;
  }
  30% {
    left:-28px;
  }
  40% {
    left:-22px;
  }
}

@-webkit-keyframes arrow-down {
  0%, 100% {
    top:-13px;
  }
  10% {
    top:-6px;
  }
  20% {
    top:-13px;
  }
  30% {
    top:-6px;
  }
  40% {
    top:-13px;
  }
}

@-webkit-keyframes arrow-left {
  0%, 100% {
    left:-22px;
  }
  10% {
    left:-28px;
  }
  20% {
    left:-22px;
  }
  30% {
    left:-28px;
  }
  40% {
    left:-22px;
  }
}

/**********************************
SCENE 1
***********************************/


/**********************************
SCENE 2
***********************************/

.s2 .text-layer {
	color:#13acb7;
	width:600px;
}
.s2 .text-inner {
	margin:0 100px;
}


.s2 .l1 .inner {
	left:40%;
}
.s2 .l1 .inner img {
	top:-60px;
	height:60px;
}
.s2 .l4 .inner {
	left:50%;
}
.s2 .l4 .inner .cloud {
	top:50%;
}




/**********************************
SCENE 3
***********************************/

.s3 .text-layer {
	color:#0b9e51;
	width:600px;
}
.s3 .text-inner {
	margin:0 100px;
}
.s3 .text-inner::before,
.s3 .text-inner::after {
	border-color:#0b9e51;
}


.s3 .l1 .inner {
	left:75%;
}
.s3 .l1 .inner img {
	top:-242px;
	height:248px;
	position:absolute;
	left:0;
}
.s3 .l1 .inner svg {
	top:-245px;
	height:245px;
	position:absolute;
	left:65px;
}
.s3 .l1 .inner .water {
	stroke-dasharray: 6;
	stroke-dashoffset: 180;
	animation-name: water;
	animation-direction: normal;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: water;
	-webkit-animation-direction: normal;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}
@keyframes water {
	0%, 100% {
		stroke-width:8px;
	}
	50% {
		stroke-width:4px;
	}
	0% {
		stroke-dashoffset: 180;
	}
	100% {
		stroke-dashoffset: 0;
	}
	10%, 30%, 50%, 70%, 90% {
		stroke:#20c2c6;
	}
	0%, 20%, 40%, 60%, 80%, 100% {
		stroke:#15acb7;
	}
}
@-webkit-keyframes water {
	0%, 100% {
		stroke-width:8px;
	}
	50% {
		stroke-width:4px;
	}
	0% {
		stroke-dashoffset: 180;
	}
	100% {
		stroke-dashoffset: 0;
	}
	10%, 30%, 50%, 70%, 90% {
		stroke:#20c2c6;
	}
	0%, 20%, 40%, 60%, 80%, 100% {
		stroke:#15acb7;
	}
}
.s3 .l2 .inner {
	left:20%;
}
.s3 .l2 .l2-1 svg {
	top:-78px;
	height:78px;
}
.s3 .l2 .l2-1 svg rect,
.s3 .l2 .l2-1 svg polygon,
.s3 .l2 .l2-1 svg path {
	transition:all .5s;
}
.s3 .l2 .l2-1.active svg path,
.s3 .l2 .l2-1.active svg rect {
	fill:#FFFFFF!important;
}
.s3 .l2 .l2-2 img {
	top:-43px;
	height:43px;
}
.s3 .l3 .inner {
	left:20%;
}
.s3 .l3 .inner img {
	top:-36px;
	height:36px;
}
.s3 .l2 .l2-1 {
	z-index:52;
}
.s3 .l4 .inner {
	left:30%;
}
.s3 .l4 .inner .cloud.c1 {
	top:40%;
}
.s3 .l4 .inner .cloud.c2 {
	top:45%;
}



.energy-1 {
	background:#f8de71;
	height:9px;
	position:absolute;
	z-index:51;
	top:-9px;
	width:0;
	left:50%;
	transition:all .5s;
}
.energy-1.active {
	background:#FFF;
}



/**********************************
SCENE 4
***********************************/

.s4 .text-layer {
	color:#ff8308;
	width:600px;
	z-index:30;
}
.s4 .text-inner {
	margin:0 100px;
}
.s4 .text-inner::before,
.s4 .text-inner::after {
	border-color:#ff8308;
}


.s4 .l1 .inner {
	left:65%;
}
.s4 .l1 .inner img {
	top:-61px;
	height:61px;
}
.s4 .l2 .inner {
	left:30%;
}
.s4 .l2 .inner img {
	top:-202px;
	height:261px;
}
.s4 .l2 .l2-2 {
	z-index:52;
}
.s4 .l3 .l3-1 {
	left:20%;
}
.s4 .l3 .l3-1 img {
	top:-70px;
	height:70px;
	left:0;
	position:absolute;
}
.s4 .l3 .l3-2 {
	left:15%;
}
.s4 .l3 .l3-2 .poles {
	position:absolute;
	left:35%;
	top:-58px;
	height:58px;
}
.s4 .l3 .l3-2 svg {
	position:absolute;
	left:35%;
	top:-58px;
	height:58px;
}
.s4 .l3 .wires {
	opacity:0;
}
.s4 .l3.active .wires {
	opacity:1;
}
.s4 .l3.active .wires path {
	animation-name: wires;
	animation-direction: normal;
	animation-duration: 3.4s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
	-webkit-animation-name: wires;
	-webkit-animation-direction: normal;
	-webkit-animation-duration: 3.4s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-out;
}
@keyframes wires {
  0%, 50%, 100% {
    stroke:rgba(118,149,153,0);
    stroke-width:1px;
  }
  25%, 75% {
    stroke:rgba(246,222,113,.6);
    stroke-width:8px;
  }
}
@-webkit-keyframes wires {
  0%, 50%, 100% {
    stroke:rgba(118,149,153,0);
    stroke-width:1px;
  }
  25%, 75% {
    stroke:rgba(246,222,113,.6);
    stroke-width:8px;
  }
}
.s4 .l4 .inner {
	left:75%;
}
.s4 .l4 .inner .cloud {
	top:45%;
}
.windmill {
	height:34px;
	width:34px;
	animation-name: spin;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-fill-mode:both;
	animation-timing-function: linear;
	-webkit-animation-name: spin;
	-webkit-animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-fill-mode:both;
	-webkit-animation-timing-function: linear;
}
.s4 .l3 .inner .windmill-1 {
	top:-84px;
	left:92px;
}
.s4 .l3 .inner .windmill-2 {
	top:-84px;
	left:130px;
	animation-duration: 5.3s;
	-webkit-animation-duration: 5.3s;
}
.s4 .l3 .inner .windmill-3 {
	top:-84px;
	left:167px;
	animation-duration: 4.7s;
	-webkit-animation-duration: 4.7s;
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

.energy-2 {
	z-index:49;
}
.energy-2 svg {
	width:135px;
	height:65px;
	top: -101px;
    left: -238px;
	position:relative;
}




/**********************************
SCENE 5
***********************************/

.s5 .text-layer {
	color:#07a1a5;
	width:600px;
	z-index:30;
}
.s5 .text-inner {
	margin:0 90px;
}
.s5 .text-inner::before,
.s5 .text-inner::after {
	border-color:#07a1a5;
}


.s5 .l1 .inner {
	left:35%;
	width:150%;
}
.s5 .l1 .inner a {
	display:block;
}
.s5 .l1 .inner a:hover .bb {
	fill:#78d864!important;
	animation-duration:0!important;
	animation-name:none!important;
	-webkit-animation-duration:0!important;
	-webkit-animation-name:none!important;
}
.s5 .l1 .inner a:hover .pm {
	fill:#FFFFFF!important;
	animation-duration:0!important;
	animation-name:none!important;
	-webkit-animation-duration:0!important;
	-webkit-animation-name:none!important;
}
.s5 .l1 .billboard {
	top:-255px;
	height:165px;
	position:absolute;
	left:-20%;
	z-index:62;
}
/*
.billboard .bb {
	transition:all .2s;
	animation-name: billboard;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
.billboard .pm {
	animation-name: billboard-text;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
@keyframes billboard {
  8%, 9%, 10%, 30.5%, 33% {
    fill:#56b146;
  }
  8.5%, 9.5%, 10.5%, 30%, 31% {
    fill:#3b722e;
  }
}
@keyframes billboard-text {
  8%, 9%, 10%, 30.5%, 33% {
    fill:rgba(255,255,255,1);
  }
  8.5%, 9.5%, 10.5%, 30%, 31% {
    fill:rgba(255,255,255,.5);
  }
}
*/

.s5 .l1 .inner img {
	top:-471px;
	height:476px;
  z-index:61;
  vertical-align: middle;
}
.s5 .l1 .inner img.kite {
	z-index:62;
	height:132px;
	top:-670px;
	left:-160px;
	position:relative;
	animation-name: kite;
	animation-duration: 5s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: kite;
	-webkit-animation-duration: 5s;
	-webkit-animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
}
@keyframes kite {
  0%, 100% {
    top:-670px;
  }
  20% {
    top:-662px;
  }
  50% {
  	top:-668px;
  }
  80% {
  	top:-658px;
  }
}
@-webkit-keyframes kite {
  0%, 100% {
    top:-670px;
  }
  20% {
    top:-662px;
  }
  50% {
  	top:-668px;
  }
  80% {
  	top:-658px;
  }
}

.s5 .l2 .inner {
	left:25%;
}
.s5 .l2 .inner img {
	top:-173px;
	height:173px;
}

.s5 .l4 .inner {
	left:25%;
	width:100%;
}
.s5 .l4 .inner .cloud.c1 {
	top:40%;
	height:35px;
	position:absolute;
}
.s5 .l4 .inner .cloud.c2 {
	top:25%;
	left:50%;
	height:62px;
	position:absolute;
}
.s5 .l4 .inner .cloud.c3 {
	top:26%;
	left:47%;
	height:50px;
	position:absolute;
}




/**********************************
SCENE 6
***********************************/

/* no text layer in this scene */

.s6 .l1 .inner {
	left:105%;
}
.s6 .l1 .inner img {
	top:-100px;
	height:162px;
}
.s6 .l2 .inner {
	left:50%;
}
.s6 .l2 .inner img {
	top:-246px;
	height:260px;
}
.s6 .l3 .inner {
	left:-40%;
	width:160%;
	height:58px;
	top:-58px;
	background:#b9f4e7 url(../img/lines.svg) repeat-x top left;
}
.s6 .l4 .inner {
	left:25%;
	width:100%;
}
.s6 .l4 .inner .cloud.c1 {
	top:35%;
	height:75px;
	width:155px;
	position:absolute;
}
.s6 .l4 .inner .cloud.c2 {
	top:47%;
	left:65%;
	height:40px;
	position:absolute;
}
.s6 .l4 .inner .cloud.c3 {
	top:45%;
	left:57%;
	height:75px;
	width:155px;
	position:absolute;
}
.s6 .l4 .inner .cloud.c4 {
	top:30%;
	left:72%;
	height:30px;
	position:absolute;
}






/**********************************
SCENE 7
***********************************/

.s7 .text-layer {
	color:#13acb7;
	width:650px;
}
.s7 .text-inner {
	margin:0 50px;
}
 
.s7 .l1 .inner {
	left:20%;
}
.s7 .l1 .l1-1 img {
	top:-600px;
	height:724px;
	width:100%;
	z-index:62;
}
.s7 .l1 .l1-2 .truck-container {
	top:-453px;
	height:453px;
	left:100%;
	z-index:61;
	position:absolute;
	width:auto;
}
.s7 .l1 .l1-2 .truck-container img {
	height:453px;
}
.s7 .l1 .l1-2 img.man {
	opacity:0;
	transition:1s all;
	height:282px;
	top:-260px;
	z-index:61;
	position:absolute;
	left:23%!important;
}
.s7 .l1 .l1-2.active img.man {
	opacity:1;
}
.s7 .l1 .l1-2 svg {
	position:absolute;
	height:46px;
	top:0;
	right:63px;
	transform-origin: right 95%;
	-webkit-transform-origin: right 95%;
	animation-name: armwave;
	animation-duration: 3s;
	animation-direction: normal;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: armwave;
	-webkit-animation-duration: 3s;
	-webkit-animation-direction: normal;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
}
@keyframes armwave {
  0%, 25%, 55%, 85%, 100% {
    transform: rotate(-5deg); 	
  }
  40%, 70% {
  	transform: rotate(15deg);
  }
}
@-webkit-keyframes armwave {
  0%, 25%, 55%, 85%, 100% {
    -webkit-transform: rotate(-5deg); 	
  }
  40%, 70% {
  	-webkit-transform: rotate(15deg);
  }
}
.s7 .l3 .inner {
	left:10%;
	width:150%;
	height:58px;
	top:-58px;
	background:#b9f4e7 url(../img/wires-single.svg) repeat-x top left;
}





/**********************************
SCENE 8
***********************************/

.s8 .text-layer {
	color:#13acb7;
	width:650px;
	z-index:3;
}
.s8 .text-inner {
	margin:0 100px;
}

.s8 .l1 .inner {
	left:120%;
}
.s8 .l1 .inner img {
	top:-194px;
	height:247px;
}
.s8 .l2 .inner {
	left:30%;
}
.s8 .l2 .inner img {
	top:-70px;
	height:108px;
}
.s8 .l3 .inner {
	left:15%;
}
.s8 .l3 .l3-1 img {
	top:-25px;
	height:50px;
}
.s8 .l3 .l3-2 {
	left:0;
	width:150%;
	height:58px;
	top:-58px;
	background:#b9f4e7 url(../img/wires-single.svg) repeat-x top left;
}
.s8 .l4 .inner {
	left:15%;
	width:100%;
}
.s8 .l4 .inner .cloud.c1 {
	top:36%;
	left:5%;
	height:58px;
	position:absolute;
}
.s8 .l4 .inner .cloud.c2 {
	top:37%;
	left:0;
	height:68px;
	width:140px;
	position:absolute;
}
.s8 .l4 .inner .cloud.c3 {
	top:42%;
	left:56%;
	height:75px;
	width:155px;
	position:absolute;
}





/**********************************
SCENE 9
***********************************/

.s9 .text-layer {
	color:#13acb7;
	width:650px;
}
.s9 .text-inner {
	margin:0 100px;
}

.s9 .l1 .inner {
	left:100%;
}
.s9 .l1 .inner img {
	top:-194px;
	height:247px;
}
.s9 .l2 .inner {
	left:35%;
}
.s9 .l2 .inner img {
	top:-40px;
	height:40px;
}
.s9 .l3 .inner {
	left:25%;
}
.s9 .l3 .l3-1 img {
	top:-345px;
	height:377px;
}
.s9 .l3 .l3-2 {
	left:0;
	width:130%;
	height:58px;
	top:-58px;
	background:#b9f4e7 url(../img/wires-single.svg) repeat-x top left;
}
.s9 .l4 .inner {
	left:15%;
	width:100%;
}
.s9 .l4 .inner .cloud.c1 {
	top:10%;
	left:50%;
	height:58px;
	position:absolute;
}
.s9 .l4 .inner .cloud.c2 {
	top:45%;
	left:0;
	height:58px;
	position:absolute;
}




/**********************************
SCENE 10
***********************************/
.day {
	height: 100vh;
    width: 100%;
    text-align: center;
    position: relative;
}
.day .text-layer {
	color:#09914d;
	width:650px;
}
.day .text-inner {
	margin:0 90px;
}
.day .text-inner::before,
.day .text-inner::after {
	border-color:#09914d;
}

.day .l1 .inner {
	left:5%;
}
.day .l1 .inner img {
	top:-419px;
	height:690px;
}
.day .l1 .inner img.bird {
	top:-440px;
	height:24px;
	left:30%;
	position:absolute;
	animation-name: bird;
	animation-duration: 6s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: bird;
	-webkit-animation-duration: 6s;
	-webkit-animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
}
@keyframes bird {
  0%, 100% {
    top:-440px;
    left:30%;
  }
  20% {
    top:-449px;
    left:31%;
  }
  50% {
  	top:-434px;
  }
  80% {
  	top:-444px;
  	left:29%;
  }
}
@-webkit-keyframes bird {
  0%, 100% {
    top:-440px;
    left:30%;
  }
  20% {
    top:-449px;
    left:31%;
  }
  50% {
  	top:-434px;
  }
  80% {
  	top:-444px;
  	left:29%;
  }
}

.day .l3 .inner {
	left:60%;
	width:60%;
	height:58px;
	top:-58px;
	background:#b9f4e7 url(../img/lines.svg) repeat-x top left;
}

.s10 .l4 .inner {
	left:20%;
	width:100%;
}
.s10 .l4 .inner .cloud.c1 {
	top:45%;
	left:0;
	height:70px;
	width:200px;
	position:absolute;
}
.s10 .l4 .inner .cloud.c2 {
	top:15%;
	left:70%;
	height:80px;
	width:200px;
	position:absolute;
}

.night {
	position:absolute;
	opacity:0;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#31595c;
}
.night .text-layer {
	color:#f9ecaa;
	width:650px;
}
.night h2 {
	background:#31595c;
}
.night .text-inner {
	margin:0 90px;
	background:#31595c;
}
.night .text-inner::before,
.night .text-inner::after {
	border-color:#f9ecaa;
}
.night .l3 {
	background:#25494d;
}
.night .l2 {
	background:#173a42;
}
.night .l1 {
	background:#133238;
}
.night .top-layer {
	background:#173a42;
}

.night .l1 .inner {
	left:-45%;
}
.night .l1 .inner img {
	top:-419px;
	height:690px;
}
.night .l3 .inner {
	left:40%;
	width:60%;
	height:58px;
	top:-58px;
	background:#31595c url(../img/lines-dark.svg) repeat-x top left;
}
.night .l2 .inner {
	right:80px;
	width:100%;
	text-align:right;
}
.night .l2 .inner img {
	top:-200px;
	height:141px;
}


/**********************************
SCENE 11
***********************************/
.s11 {
	background:#f8de71;
}
.s11 .top-layer {
	background:rgba(249,236,170,.5);
}
.s11 .l1 {
	background:rgba(255,181,34,1);
	z-index:61;
}
.s11 .l2 {
	background:rgba(244,203,83,1);
	z-index:51;
}
.s11 .l3 {
	background:rgba(248,233,161,1);
	z-index:41;
}
.s11 .cover, .s12 .cover {
	position:absolute;
	z-index:120;
	opacity:1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#31595c;
}
.s11 .cover.hide, .s12 .cover.hide {
	z-index:0;
}
.s11 .cover .l3, .s12 .cover .l3 {
	background:#25494d;
}
.s11 .cover .l2, .s12 .cover .l2 {
	background:#173a42;
}
.s11 .cover .l1, .s12 .cover .l1 {
	background:#133238;
}
.s11 .cover .top-layer, .s12 .cover .top-layer {
	background:#173a42;
}


.s12 a {
	color:#FFF;
	transition:all .2s;
	text-decoration:underline;
}
.s12 a:hover {
	text-decoration:none;
}
.s12 p {
	position:relative;
	z-index:999;
}




/**********************************
BEGIN MOBILE
***********************************/

/* mobile nav */
html.touch #mobile-nav div {
	position:fixed;
	z-index:999;
	top:0;
	height:100%;
	width:80px;
	color:#FFF;
	background:rgba(255,255,255,.15);
}
html.touch #mobile-nav div.previous-nav {
	left:0;
}
html.touch #mobile-nav div.next-nav {
	right:0;
}
html.touch #mobile-nav span {
	display:inline-block;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-15px;
	margin-top:-10px;
	text-align:center;
}
html.touch #mobile-nav span svg {
	height:26px;
	-webkit-filter: drop-shadow( 0px 0px 3px rgba(87,122,129,.3) );
    filter: drop-shadow( 0px 0px 3px rgba(87,122,129,.3) );
}
html.touch #mobile-nav div.next-nav span {
	margin-left:-10px;
}
html.touch #mobile-nav span polygon {
	stroke-width:3px;
	fill:none;
	stroke:#fff;
}
html.touch #slideContainer {
	transition:left .6s, right .6s;
	position:relative;
	left:0;
}
html.touch .scene {
	width: 8.333333333333333%;
}
html.touch .text-inner p {
	opacity:1;
}
html.touch .text-layer h2 {
	z-index:122;
	top:-7px;
}
html.touch .s0 .text-inner::before,
html.touch .s0 .text-inner::after {
	border:none;
}
html.touch #scene-navs {
	display:none!important;
}
html.touch .top-layer {
	display:none;
}
html.touch .s0 .text-layer .divider span {
	display:none;
}
html.touch h1 {
	opacity:1;
}
html.touch .sun-wrapper {
	top:80px;
	left:-50px;
	transition:all .6s;
}
html.touch .s11 {
	z-index:1;
}
html.touch .night {
	opacity:1;
	left:100%;
	z-index:98;
}
html.touch .s11 .cover, .s12 .cover {
	opacity:0;
	left:-100%;
}
html.touch .day {
	z-index:99;
}
html.touch .day .l3 .inner {
	background:none;
}
html.touch .text-layer {
	z-index:120!important;
}

@media (min-width: 992px) and (max-width:1024px) { 
	@keyframes kite {
	  0%, 100% {
	    top:-970px;
	  }
	  20% {
	    top:-977px;
	  }
	  50% {
	  	top:-982px;
	  }
	  80% {
	  	top:-966px;
	  }
	}
	@-webkit-keyframes kite {
	  0%, 100% {
	    top:-970px;
	  }
	  20% {
	    top:-977px;
	  }
	  50% {
	  	top:-982px;
	  }
	  80% {
	  	top:-966px;
	  }
	}
}

@media (min-width: 1025px) { 
	html.touch .s5 .l1 .inner img.kite {
		left:-161px!important;
	}
	html.touch .s6 .l2 .inner img {
	    top: -213px!important;
	    height: 212px!important;
	}
	html.touch .day .l1 .inner, 
	html.touch .night .l1 .inner {
	    left: -5%!important;
	}
	html.touch .day .l1 .inner img:not(.bird), 
	html.touch .night .l1 .inner img:not(.bird) {
	    top: -297px!important;
	    height: 512px!important;
	}
}

@media (min-width: 992px) { 
	html.touch .s2 .l1 .inner,
	html.touch .s3 .l4 .inner,
	html.touch .s3 .l1 .inner,
	html.touch .s3 .l2 .inner,
	html.touch .s3 .l3 .inner {
		left:0;
	}

	html.touch .s4 .l1 .inner,
	html.touch .s4 .l4 .inner {
		left:0;
	}
	html.touch .s4 .l3 .l3-1 {
		left:10%;
	}
	html.touch .energy-1 {
		width:150%;
	}

	html.touch .s3 .l4 .inner .cloud.c2 {
		right:-250px;
	}
	html.touch .s5 .l1 .inner {
		left:0;
	}
	html.touch .s5 .l1 .billboard {
		left:5%;
	}
	html.touch .s5 .l1 .inner img.kite {
	    top: -970px;
	    left: 442px;
	}
	html.touch .s5 .l2 .inner {
		left:10%;
	}
	html.touch .s6 .l1 .inner {
		left:0;
	}
	html.touch .s6 .l2 .inner {
		left:0;
	}
	html.touch .s6 .l2 .inner img {
	    top: -195px;
	    height: 183px;
	}
	html.touch .s6 .l4 .inner {
		left:0;
	}

	html.touch .s7 .l1 .inner,
	html.touch .s7 .l3 .inner {
		left:0;
	}
	html.touch .s7 .l1 .l1-2 .truck-container {
		left:29%;
	}
	html.touch .s7 .l1 .l1-2 img.man {
		opacity:1;
		left:14%!important;
	}

	html.touch .s8 .l3 .inner,
	html.touch .s8 .l1 .inner {
		left:0;
	}
	html.touch .s8 .l2 .inner {
		left:-8%;
	}
	html.touch .s8 .l1 .inner img {
	    top: -136px;
	    height: 165px;
	}
	html.touch .s8 .l2 .inner img {
	    top: -50px;
	    height: 85px;
	}
	html.touch .s8 .l3 .l3-1 img {
	    top: -15px;
	    height: 38px;
	}

	html.touch .s9 .l1 .inner,
	html.touch .s9 .l2 .inner {
		left:0;
	}
	html.touch .s9 .l1 .inner img {
	    top: -127px;
	    height: 155px;
	}
	html.touch .s9 .l3 .inner {
		left:20%;
	}
	html.touch .s9 .l3 .l3-1 img {
	    top: -284px;
	    height: 307px;
	}

	html.touch .s9 .l4 .inner .cloud.c1 {
	    top: 13%;
	    left: 58%;
	}
	html.touch .s9 .l3 .l3-2 {
		width:170%;
	}

	html.touch .day .l1 .inner,
	html.touch .night .l1 .inner {
		left:-17%;
	}
	html.touch .day .l1 .inner img:not(.bird),
	html.touch .night .l1 .inner img:not(.bird) {
	    top: -246px;
	    height: 436px;
	}

	html.touch .s10 .l4 .inner {
		left:0;
	}

	html.touch .night .l3 .inner {
		left:0;
		width:100%;
	}
	html.touch .night .l2 .inner {
		text-align:left;
		right:auto;
		left:15%;
	}
	html.touch .night .l2 .inner img {
		top:-320px;
	}

}


@media (max-width: 991px) { 
	html.touch .sun-wrapper {
		top:10px;
	}
	html.touch .text-layer h2 {
		top:-2px;
	}
	body {
		font-size:18px;
		line-height:23px;
	}
	.text-layer {
		top:15px;
		max-width:300px;
		width:auto!important;
	}
	h1 {
		opacity:1;
		font-size:17px;
		line-height:20px;
		text-shadow:-2px -2px 3px rgba(185,244,231,1),  
                2px -2px 3px rgba(185,244,231,1),
                -2px 2px 3px rgba(185,244,231,1),
                2px 2px 3px rgba(185,244,231,1);
	}
	.text-layer h2 {
		z-index:122;
		top:-2px;
		font-size:44px;
		line-height:44px;
		background:none;
		text-shadow:-2px -2px 18px rgba(185,244,231,1),  
                2px -2px 18px rgba(185,244,231,1),
                -2px 2px 18px rgba(185,244,231,1),
                2px 2px 18px rgba(185,244,231,1);
	}
	.text-inner {
		z-index:121;
		padding:25px 25px 5px 25px;
		top:-30px;
		background:rgba(185,244,231,.75);
		margin:0 auto!important;
	}
	.text-inner.active {
		background:rgba(185,244,231,.75);
	}
	.text-inner p {
		opacity:1;
		text-shadow:-1px -1px 10px rgba(185,244,231,.8),  
                1px -1px 10px rgba(185,244,231,.8),
                -1px 1px 10px rgba(185,244,231,.8),
                1px 1px 10px rgba(185,244,231,.8);
	}
	
	.l1 {
		height:32px;
	}
	.l1 .inner {
		height:32px;
	}
	.l2 {
		height:52px;
		bottom:32px;
	}
	.l2 .inner {
		height:52px;
	}
	.l3 {
		bottom:83px;
		height:34px;
	}
	.l3 .inner {
		height:34px;
	}
	.cloud {
		right:auto;
	}

	.s0 .coop-logo img {
		position: fixed;
	    left: 20px;
	    top:100%;
	    margin-top:-90px!important;
	}
	.s0 .text-layer {
		max-width:350px;
	}
	.s0 .text-layer h1 {
		font-size:36px;
		line-height:42px;
		text-shadow:none;
	}
	.s0 .text-layer .divider {
		top:0;
	}
	.s0 .text-inner {
		margin:0 100px;
		top:5px;
		background:none;
	}
	.s0 .text-inner p {
		text-shadow:none;
	}
	
	.s0 .text-layer .coop-logo img, 
	.s12 .text-layer .coop-logo img {
		margin-top:-10px;
	}
	.s0 .intro-layer img, 
	.s12 .intro-layer img {
		height:120px;
	}

	.s2 .text-layer {
		top:40px;
	}
	.s2 .l1 .inner {
		left:0;
	}
	.s2 .l1 .inner img {
		top:-33px;
		height:35px;
	}
	.s2 .l4 .inner {
		left:75%;
	}
	.s2 .l4 .inner .cloud {
		top:50px;
	}
	.s3 .text-layer {
		max-width:350px;
	}
	.s3 .l1 .inner {
		left:0;
	}
	.s3 .l1 .inner img {
		height:146px;
		top:-146px;
	}
	.s3 .l1 .inner svg {
	    top: -153px;
	    height: 153px;
	    left: 32px;
	}
	.s3 .l2 .inner {
		left:0;
	}
	.s3 .l2 .l2-1 svg {
	    top: -40px;
	    height: 40px;
	    left:0;
	}
	.s3 .l2 .l2-2 img {
	    top: -25px;
	    height: 30px;
	}
	.energy-1 {
		width:150%;
		height:5px;
		top:-5px;
	}
	.s3 .l3 .inner {
		left:0;
	}
	.s3 .l3 .inner img {
	    top: -25px;
	    height: 30px;
	}
	.s3 .l4 .inner {
		left:0;
	}
	.s3 .l4 .inner .cloud.c1 {
		top:20%;
	}
	.s3 .l4 .inner .cloud.c2 {
	    top: 20%;
	    left: 480px;
	}

	.s4 .text-layer {
		max-width:350px;
	}
	.s4 .l1 .inner {
		left:0;
	}
	.s4 .l1 .inner img {
		height:35px;
		top:-35px;
	}
	.s4 .l2 .inner {
		left:65%;
	}
	.s4 .l2 .inner img {
	    top: -109px;
	    height: 140px;
	    left:-80px;
	}
	.energy-2 svg {
	    width: 86px;
	    height: 65px;
	    top: -75px;
	    left: -212px;
	}
	.s4 .l3 .l3-1 {
		left:-20px;
	}
	.s4 .l3 .l3-1 img {
		height:50px;
		top:-50px;
	}
	.s4 .l3 .inner .windmill-1 {
	    top: -60px;
	    left: 61px;
	}
	.s4 .l3 .inner .windmill-2 {
		top:-60px;
		left:88px;
	}
	.s4 .l3 .inner .windmill-3 {
		top:-60px;
		left:115px;
	}
	.s4 .l3 .l3-2 .poles,
	.s4 .l3 .l3-2 svg {
	    left: 55%;
	    top: -37px;
	    height: 38px;
	}
	.s4 .l4 .inner .cloud {
		top:25%;
	}

	.s5 .text-layer {
		max-width:400px;
	}
	.s5 .l1 .inner {
		left:0;
		width:668px;
	}
	.s5 .l1 .inner img {
		height:300px;
		top:-300px;
	}
	.s5 .l2 .inner {
		left:150px;
	}
	.s5 .l2 .inner img {
		height:125px;
		top:-100px;
	}
	.s5 .l4 .inner {
		left:30%;
	}
	.s5 .l4 .inner .cloud.c2 {
		top:22%;
		left:50%;
	}
	.s5 .l1 .billboard {
		top:-92px;
		left:65px;
		height:125px;
	}
	.s5 .l1 .inner img.kite {
		height:84px;
		left:270px;
		top:-600px;
	}

	@keyframes kite {
	  0%, 100% {
	    top:-600px;
	  }
	  20% {
	    top:-607px;
	  }
	  50% {
	  	top:-612px;
	  }
	  80% {
	  	top:-594px;
	  }
	}
	@-webkit-keyframes kite {
	  0%, 100% {
	    top:-600px;
	  }
	  20% {
	    top:-607px;
	  }
	  50% {
	  	top:-612px;
	  }
	  80% {
	  	top:-594px;
	  }
	}

	.s6 .l1 .inner {
		left:0;
	}
	.s6 .l1 .inner img {
	    top: -44px;
	    height: 76px;
	}
	.s6 .l2 .inner img {
	    top: -119px;
	    height: 105px;
	}
	.s6 .l2 .inner {
		left:20px;
	}
	.s6 .l3 .inner {
	    height: 38px;
	    top: -37px;
	}
	.s6 .l4 .inner {
		left:0;
	}
	.s6 .l4 .inner .cloud.c1 {
		top:25%;
	}
	.s6 .l4 .inner .cloud.c2 {
		top:27%;
	}
	.s6 .l4 .inner .cloud.c3 {
		top:20%;
		left:35%;
		width:120px;
	}
	.s6 .l4 .inner .cloud.c4 {
		top:31%;
		left:63%;
	}
	.s7 .text-layer {
		max-width:460px;
	}
	.s7 .l1 .inner {
		left:-15px;
	}
	.s7 .l1 .l1-1 img {
	    top: -518px;
	    height: 724px;
	    width: 105%;
	    z-index: 62;
	}
	.s7 .l1 .l1-2 .truck-container {
		height:220px;
		top:-189px;
		left:50%;
	}
	.s7 .l1 .l1-2 .truck-container img {
		height:220px;
	}
	.s7 .l1 .l1-2 svg {
		height:24px;
		right:31px;
	}
	.s7 .l1 .l1-2 img.man {
		opacity:1;
		height:140px;
		top:-88px;
		left:80px!important;
	}
	.s7 .l3 .inner {
		height:38px;
		top:-38px;
	}

	.s8 .l1 .inner {
		left:-20px;
	}
	.s8 .l1 .inner img {
	    top: -98px;
	    height: 117px;
	}
	.s8 .l3 .l3-2 {
		height:38px;
		top:-38px;
	}
	.s8 .text-layer {
		max-width:400px;
	}
	.s8 .l2 .inner {
		left:0;
	}
	.s8 .l2 .inner img {
	    top: -39px;
	    height: 52px;
	}
	.s8 .l3 .inner {
		left:68px;
	}
	.s8 .l3 .l3-1 img {
	    top: -12px;
	    height: 24px;
	}
	.s8 .l4 .inner {
		left:0;
	}
	.s8 .l4 .inner .cloud.c1 {
		top:16%;
	}
	.s8 .l4 .inner .cloud.c2 {
		top:22%;
	}
	.s8 .l4 .inner .cloud.c3 {
		top:24%;
		left:77%;
	}

	.s9 .text-layer {
		max-width:385px;
	}
	.s9 .l1 .inner {
		left:0;
	}
	.s9 .l3 .l3-2 {
		height:38px;
		top:-38px;
	}
	.s9 .l1 .inner img {
	    top: -77px;
	    height: 95px;
	}
	.s9 .l2 .inner {
		left:0;
	}
	.s9 .l2 .inner img {
	    top: -20px;
	    height: 20px;
	}
	.s9 .l3 .inner {
		left:165px;
	}
	.s9 .l3 .l3-1 img {
	    top: -205px;
	    height: 234px;
	}
	.s9 .l4 .inner {
		left:0;
	}
	.s9 .l4 .inner .cloud.c1 {
		top:5%;
	}
	.s9 .l4 .inner .cloud.c2 {
		top:36%;
		left:16px;
	}
	.day .text-layer,
	.night .text-layer {
		max-width:410px;
	}
	.day .l1 .inner,
	.night .l1 .inner {
		left:-163px;
	}
	.day .l1 .inner img,
	.night .l1 .inner img {
		top:-183px;
		height:308px;
	}
	.s10 .l4 .inner {
		left:40px;
	}
	.s10 .l4 .inner .cloud.c1 {
		top:25%;
	}
	.day .l1 .inner img.bird,
	.night .l1 .inner img.bird {
		top:-270px;
	}
	.night h1 {
		text-shadow:-2px -2px 3px rgba(49,89,92,1), 
					2px -2px 3px rgba(49,89,92,1), 
					-2px 2px 3px rgba(49,89,92,1), 
					2px 2px 3px rgba(49,89,92,1);
	}
	.night .text-layer h2 {
		text-shadow:-2px -2px 18px rgba(49,89,92,1),  
                2px -2px 18px rgba(49,89,92,1),
                -2px 2px 18px rgba(49,89,92,1),
                2px 2px 18px rgba(49,89,92,1);
	}
	.night .text-inner p {
		text-shadow:-1px -1px 10px rgba(49,89,92,.8),  
                1px -1px 10px rgba(49,89,92,.8),
                -1px 1px 10px rgba(49,89,92,.8),
                1px 1px 10px rgba(49,89,92,.8);
	}
	.night .text-inner.active {
		background:rgba(49,89,92,.7);
	}
	.night .l2 .inner {
		right:0;
		left:20px;
	}
	.night .l2 .inner img {
		top:-230px;
		height:110px;
		right:-145px;
	}

	@keyframes bird {
	  0%, 100% {
	    top:-270px;
	    left:30%;
	  }
	  20% {
	    top:-279px;
	    left:31%;
	  }
	  50% {
	  	top:-274px;
	  }
	  80% {
	  	top:-284px;
	  	left:29%;
	  }
	}
	@-webkit-keyframes bird {
	  0%, 100% {
	    top:-270px;
	    left:30%;
	  }
	  20% {
	    top:-279px;
	    left:31%;
	  }
	  50% {
	  	top:-274px;
	  }
	  80% {
	  	top:-284px;
	  	left:29%;
	  }
	}

	.s12 h1,
	.s12 .text-inner p {
		text-shadow:none;
	}
	.s12 h2 {
		text-shadow:-4px -4px 20px #f8de71, 
					4px -4px 20px #f8de71, 
					-4px 4px 20px #f8de71, 
					4px 4px 20px #f8de71;
	}
	.s12 .text-inner {
		background:none;
	}

}

/* iphone5 */
@media (max-width:600px) {

	.s4 .l2 .inner img {
	    left:-18px;
	}
	.energy-2 svg {
	    left: -153px;
	}
	.s5 .l1 .inner {
		width:575px;
	}
	.s5 .l1 .billboard {
		top:-65px;
		left:65px;
		height:125px;
	}
	.s5 .l1 .inner img {
		height:250px;
		top:-250px;
	}
	.s5 .l1 .inner img.kite {
		top:-500px;
		left:225px;
		height:65px;
	}
	@keyframes kite {
	  0%, 100% {
	    top:-500px;
	  }
	  20% {
	    top:-507px;
	  }
	  50% {
	  	top:-513px;
	  }
	  80% {
	  	top:-497px;
	  }
	}
	@-webkit-keyframes kite {
	  0%, 100% {
	    top:-500px;
	  }
	  20% {
	    top:-507px;
	  }
	  50% {
	  	top:-513px;
	  }
	  80% {
	  	top:-497px;
	  }
	}

	.s6 .l2 .inner {
		left:10px;
	}
	.s6 .l2 .inner img {
	    top: -101px;
	    height: 90px;
	}
	.s7 .l1 .l1-1 img {
	    top: -486px;
	}
	.s7 .l1 .l1-2 .truck-container {
		left:52%;
	}
	.s7 .l1 .l1-2 img.man {
		left:55px!important;
	}

	.s9 .l3 .inner {
		left:170px;
	}
	.s9 .l3 .l3-1 img {
	    top: -168px;
    	height: 191px;
	}
	.s9 .l1 .inner img {
	    top: -60px;
	    height: 83px;
	}
	.day .l1 .inner,
	.night .l1 .inner {
		left:-90px;
	}
	.day .l1 .inner img,
	.night .l1 .inner img {
	    top: -137px;
	    height: 243px;
	}

}


@media screen and (orientation:portrait) { 
 	#warning-shield {
 		display:block;
 	} 
 	.shield-mobile {
 		display:none;
 	}
}
@media screen and (orientation:landscape) { 
	#warning-shield {
 		display:none;
 	}  
 }


