@font-face {
    font-family: GothamGR;
    src: url(../fonts/GothamGRLight.woff);
}
@font-face {
    font-family: GothamGR;
    font-style: italic;
    src: url(../fonts/GothamGRLightItalic.woff);
}
@font-face {
    font-family: GothamGR;
    font-weight: 300;
    src: url(../fonts/GothamGRXLight.woff);
}
@font-face {
    font-family: GothamGR;
    font-weight: 600;
    src: url(../fonts/GothamGRMedium.woff);
}
@font-face {
    font-family: GothamGR;
    font-weight: 600;
    font-style: italic;
    src: url(../fonts/GothamGRMediumItalic.woff);
}
@font-face {
    font-family: GothamGR;
    font-weight: 900;
    src: url(../fonts/GothamGRBold.woff);
}

html {
	min-height: -webkit-fill-available;
}

body {
    margin: 0;
    font-size: 14px;
    font-family: GothamGR;
    line-height: 1.3;
    color: #fefefe;
	background-color: #040707;
	width: 100vw;
	height: 100vh;
	min-height: -webkit-fill-available;
	overflow: hidden;
}
a {
    color: #fefefe;
    text-decoration: none;
    -webkit-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}
a:hover {
    color: #ee4399;
}
img {
    max-width: 100%;
    max-height: 100%;
}
p:first-of-type,
h2:first-of-type {
	margin-top: 0;
}
p:last-of-type {
	margin-bottom: 0;
}
.experience {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background-color: #040707;
	display: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 60px;
    padding: 0 10px;
    background-color: #040707;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: no-repeat center center / cover;
}
.site {
    position: absolute;
    top: 0;
    left: 10px;
}
.campaign {
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.campaign .logo {
    max-width: 50vw;
}
.campaign .sponsored {
    max-height: 35%;
    position: absolute;
    bottom: 55%;
    right: 0;
}
.share {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    height: 20px;
    margin: auto;
}
.share a {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: no-repeat center center / contain;
    cursor: pointer;
}
.share a:not(:first-of-type) {
    margin-left: 5px;
}
.share svg {
    width: 20px;
    height: 20px;
    fill: #fefefe;
    -webkit-transition: fill .2s ease;
    -o-transition: fill .2s ease;
    transition: fill .2s ease;
}
.share a:hover svg {
    fill: #ee4399;
}
.underline {
    text-decoration: underline;
}
.bold {
    font-weight: 600;
}
#main .hidden {
    opacity: 0;
    visibility: hidden;
}
.hidden-mobile {
    display: none;
}
.active .box.on-left,
.active .box.on-right {
	left: 0;
	right: 100%;
}
.active .box.on-left {
    -webkit-animation: on-left-in 1s forwards;
            animation: on-left-in 1s forwards;
}
.out .box.on-left {
    -webkit-animation: on-left-out 1.5s forwards;
            animation: on-left-out 1.5s forwards;
}
.active .box.on-right {
    -webkit-animation: on-right-in 1s forwards;
            animation: on-right-in 1s forwards;
}
.out .box.on-right {
    -webkit-animation: on-right-out 1.5s forwards;
            animation: on-right-out 1.5s forwards;
}
.active .box.on-top {
    -webkit-animation: on-top-in 1.5s forwards;
    animation: on-top-in 1.5s forwards;
}
.out .box.on-top {
    -webkit-animation: on-top-out 1.5s forwards;
            animation: on-top-out 1.5s forwards;
}
.active .box.on-bottom {
    -webkit-animation: on-bottom-in 1s forwards;
            animation: on-bottom-in 1s forwards;
}
.out .box.on-bottom {
    -webkit-animation: on-bottom-out 1s forwards;
            animation: on-bottom-out 1s forwards;
}
.anim {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.wait .anim {
	-webkit-animation-delay: 1s;
	        animation-delay: 1s;
}
.delay {
	-webkit-transition-delay: .5s;
	     -o-transition-delay: .5s;
	        transition-delay: .5s;
}
.delay .delay {
	-webkit-transition-delay: 1s;
	     -o-transition-delay: 1s;
	        transition-delay: 1s;
}
.anim-top {
	-webkit-transform: translateY(-5vh);
	    -ms-transform: translateY(-5vh);
	        transform: translateY(-5vh);
}
.anim-bottom {
	-webkit-transform: translateY(5vh);
	    -ms-transform: translateY(5vh);
	        transform: translateY(5vh);
}
.anim-left {
	-webkit-transform: translateX(-5vh);
	    -ms-transform: translateX(-5vh);
	        transform: translateX(-5vh);
}
.anim-right {
	-webkit-transform: translateX(5vh);
	    -ms-transform: translateX(5vh);
	        transform: translateX(5vh);
}
.in .anim {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0, 0) !important;
	    -ms-transform: translate(0, 0) !important;
	        transform: translate(0, 0) !important;
}
#main {
    height: calc(100% - 90px) !important;
}
#counter {
    position: fixed;
    bottom: 35px;
    left: 10px;
    z-index: 1;
    font-size: 1.25em;
    width: 1.333em;
    text-align: center;
}
#counter .length {
    border-top: 2px solid;
}
#controls .control {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: auto 0;
    background-color: #040707;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
#controls .control.prev {
    left: 0;
}
#controls .control.next {
    right: 0;
}
#controls .control:hover {
    background-color: #222;
}
#controls .control svg {
    fill: #fefefe;
}
#fullpage {
    width: 100%;
	-webkit-transform: none!important;
	    -ms-transform: none!important;
	        transform: none!important;
    top: 0 !important;
    z-index: 0;
}
.section,
.fp-tableCell {
    height: 100% !important;
}
.fp-tableCell {
    display: block;
}
.section,
.section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.section {
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    display: block !important;
}
.section.active {
    z-index: 1;
}
.section.active,
.section.active:before {
    opacity: 1;
    visibility: visible;
}
.section:before {
    content: "";
    background: no-repeat center center / cover;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    overflow: hidden;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.video-wrapper .player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-height: -webkit-fill-available;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.section .box {
    position: relative;
}
.section .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
h2 {
	font-size: 1.25em;
}
#s0:before {
    background-image: url(../img/s0_bg.jpg);
}
#s0 .box {
    padding: 1em 50px 0 40px;
}
#s0 .box h2 {
    max-width: 900px;
    margin: .5em 0;
    font-weight: 900;
}
#s0 .box .content {
    max-width: 950px;
}
#s0 .box .content img {
	max-width: 70vw;
	max-height: 10vh;
}
#s1:before {
    background-image: url(../img/s1_bg.jpg);
}
.box.on-left,
.box.on-right {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 1em 10px;
}
.box.on-right {
    text-align: right;
}
#s11 .content,
#s16 .content {
        max-width: 400px;
        margin-left: auto;
}
#s1 .box:before {
    background-color: rgba(64, 156, 218, .8);
}
#s1 .img,
#s4 .imgs {
	margin-top: 1em;
}
#s2:before {
    background-image: url(../img/s2_bg.jpg);
}
#s2 .box {
    text-align: center;
    padding: 0 40px;
}
#s2 h2 {
    font-weight: 300;
    margin: .5em 0;
}
#s2 .faces {
    max-width: 1600px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-filter: drop-shadow(10px 10px 30px #000);
    filter: drop-shadow(10px 10px 30px #000);
}
#s2 .face {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: .5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#s2 .face img {
	max-width: 15vw;
	max-height: 13vh;
}
#s2 .face h3 {
	font-size: .875em;
	margin: .2em 0;
}
#s2 .face div {
	display: none;
	font-size: .875em;
	margin-top: .5em;
}
#s2 .face .border-top {
    position: relative;
    padding-top: .5em;
}
#s2 .face .border-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 2px;
    margin: 0 auto;
    background-color: #fefefe;
}
.video {
    text-align: center;
}
.video .box {
    padding: 2em 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.video .box:before {
    background-color: rgba(56, 90, 97, .7);
    mix-blend-mode: multiply;
}
.video h2 {
    font-size: 1.25em;
    margin: 0 0 .5em;
}
.video .info {
    font-weight: 600;
    font-style: italic;
}
#s4:before {
    background-image: url(../img/s4_bg.jpg);
}
#s4 .box:before,
#s15 .box:before,
#s20 .box:before {
    background-color: rgba(178, 9, 107, .8);
}
#s4 .imgs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#s4 .imgs .img {
	text-align: center;
	font-size: 3vw;
}
#s4 .imgs .img img {
	padding: 0 1em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#s5:before {
    background-image: url(../img/s5_bg.jpg);
}
.box.on-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 50px;
}
.box.on-bottom:before,
#s26 .box:before {
    background-color: rgba(102, 1, 63, .7);
    mix-blend-mode: multiply;
}
.box.on-bottom .content {
	text-align: center;
	max-width: 950px;
	padding: 1.5em 0;
}
.box.on-bottom h2 {
	font-size: 1.25em;
	font-weight: normal;
	font-style: italic;
	margin: 0 0 1em;
}
.box.on-bottom .info {
	font-weight: 600;
}
#s7:before {
    background-image: url(../img/s7_bg.jpg);
}
#s8:before {
    background-image: url(../img/s8_bg.jpg);
}
#s8 .box,
#s8 .content,
#s9 .box,
#s9 .content,
#s26 .box {
    height: 100%;
}
#s8 .box,
#s9 .box {
	padding: 0 45px;
}
#s8 .content,
#s9 .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
}
#s8 h2,
#s9 h2 {
	font-size: 1.5em;
	font-weight: 300;
	margin: 0;
}
#s8 h3,
#s9 h3 {
    font-size: 1.125em;
    margin: 0;
    margin: 0;
}
#s8 p {
	max-width: 900px;
	margin: 0 auto 1em;
}
#s8 .img {
	height: 3em;
}
#s8 .yellow {
    color: #ffde00;
    font-size: 1.125em;
    margin: 0 auto 1em;
}
#s8 .skills {
	max-height: 30vh;
}
#s9 .infos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#s9 .info {
	padding: .5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#s9:before {
    background-image: url(../img/s9_bg.jpg);
}
#s9 p {
	font-size: 1em;
	max-width: 450px;
	margin: 0 auto 1em;
}
#s9 .info {
    color: #009fe2;
    max-width: 300px;
}
#s9 .h1 {
    font-size: 3em;
    font-weight: bold;
    line-height: 1;
}
#s9 .h2 {
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1;
}
#s9 .h3 {
    font-weight: 100;
}
#s11:before {
    background-image: url(../img/s11_bg.jpg);
}
#s11 .box:before,
#s17 .box:before,
#s23 .box:before {
    background-color: rgba(0, 0, 0, .8);
}
#s11 .head {
    max-width: 350px;
    margin-left: auto;
}
#s11 img,
#s15 img,
#s16 img,
#s17 .col img,
#s20 img,
#s23 img {
	display: block;
	max-height: 15vh;
}
#s11 img,
#s15 img,
#s16 img,
#s20 img,
#s23 img {
	margin: 2em auto 0;
}
#s13:before {
    background-image: url(../img/s13_bg.jpg);
}
#s14:before {
    background-image: url(../img/s14_bg.jpg);
}
#s14 .content {
    text-align: center;
    max-width: 1200px;
}
#s14 h2{
    font-size: 1.125em;
    font-style: normal;
    margin-bottom: 0;
}
#s15:before {
    background-image: url(../img/s15_bg.jpg);
}
#s15 ul {
	padding-left: 20px
}
#s16:before {
    background-image: url(../img/s16_bg.jpg);
}
#s16 .box:before {
    background-color: rgba(59, 130, 175, .85);
}
#s11 .box,
#s16 .box,
#s23 .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
#s17:before {
    background-image: url(../img/s17_bg.jpg);
}
#s17 .box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-height: 0;
}
#s17 .content {
    padding: 1em 50px;
}
#s17 .col {
	padding: .75em 0;
}
#s17 .col:first-of-type .inner {
	max-width: 770px;
	margin-left: auto;
}
#s17 .col img {
	margin: 0 auto;
}
#s19:before {
    background-image: url(../img/s19_bg.jpg);
}
#s20:before {
    background-image: url(../img/s20_bg.jpg);
}
#s20 h2 {
    display: inline;
}
#s22:before {
    background-image: url(../img/s22_bg.jpg);
}
#s23:before {
    background-image: url(../img/s23_bg.jpg);
}
#s23 .inner {
	max-width: 500px;
	margin-left: auto;
}
#s25:before {
    background-image: url(../img/s25_bg.jpg);
}
#s25 .content {
	text-align: center;
	max-width: 1100px;
}
#s25 .link {
    font-weight: bold;
    background-color: #000;
    padding: 10px 15px;
    margin-top: 1em;
    display: inline-block;
}
#s26:before {
    background-image: url(../img/s26_bg.jpg);
}
#s26 .box {
    font-size: .8em;
    max-width: 1600px;
    padding: 1em 40px;
    margin: 0 auto;
}
#s26 .col {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: inline;
}
#s26 .col li {
	display: inline;
}
#s26 .thanx {
	margin-top: 1em;
	text-align: center;
}
#s27:before {
    background-image: url(../img/s27_bg.jpg);
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #040707;
    text-align: center;
    padding: 0 20px;
    line-height: 30px;
    font-size: 12px;
}

@-webkit-keyframes on-left-in {
    0% {
        left: 0;
        right: 100%;
    }
    50% {
        left: 0;
        right: 40px;
    }
    100% {
        left: 40px;
        right: 40px;
    }
}

@keyframes on-left-in {
    0% {
        left: 0;
        right: 100%;
    }
    50% {
        left: 0;
        right: 40px;
    }
    100% {
        left: 40px;
        right: 40px;
    }
}

@-webkit-keyframes on-left-out {
    0%, 40% {
        left: 40px;
        right: 40px;
    }
    70% {
        left: 40px;
        right: 0;
    }
    100% {
        left: 100%;
        right: 0;
    }
}

@keyframes on-left-out {
    0%, 40% {
        left: 40px;
        right: 40px;
    }
    70% {
        left: 40px;
        right: 0;
    }
    100% {
        left: 100%;
        right: 0;
    }
}

@-webkit-keyframes on-right-in {
    0% {
        left: 0;
        right: 100%;
    }
    50% {
        left: 0;
        right: 40px;
    }
    100% {
        left: 40px;
        right: 40px;
    }
}

@keyframes on-right-in {
    0% {
        left: 0;
        right: 100%;
    }
    50% {
        left: 0;
        right: 40px;
    }
    100% {
        left: 40px;
        right: 40px;
    }
}

@-webkit-keyframes on-right-out {
    0%, 40% {
        left: 40px;
        right: 40px;
    }
    70% {
        left: 50px;
        right: 0;
    }
    100% {
        left: 100%;
        right: 0;
    }
}

@keyframes on-right-out {
    0%, 40% {
        left: 40px;
        right: 40px;
    }
    70% {
        left: 50px;
        right: 0;
    }
    100% {
        left: 100%;
        right: 0;
    }
}

@-webkit-keyframes on-top-in {
    0% {
		max-height: 0;
    }
    100% {
		max-height: 100%;
    }
}

@keyframes on-top-in {
    0% {
		max-height: 0;
    }
    100% {
		max-height: 100%;
    }
}

@-webkit-keyframes on-top-out {
    0%, 40% {
		max-height: 100%;
    }
    100% {
		max-height: 0;
    }
}

@keyframes on-top-out {
    0%, 40% {
		max-height: 100%;
    }
    100% {
		max-height: 0;
    }
}

@-webkit-keyframes on-bottom-in {
    0% {
		max-height: 0;
	}
    100% {
		max-height: 100%;
	}
}

@keyframes on-bottom-in {
    0% {
		max-height: 0;
	}
    100% {
		max-height: 100%;
	}
}

@-webkit-keyframes on-bottom-out {
    0%, 40% {
		max-height: 100%;
    }
    100% {
		max-height: 0;
    }
}

@keyframes on-bottom-out {
    0%, 40% {
		max-height: 100%;
    }
    100% {
		max-height: 0;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
	.experience {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media only screen and (min-width: 576px) {
	.box.on-left,
	.box.on-right {
		padding: 4em 30px;
	}
	#s1 .img,
	#s4 .imgs {
		margin-top: 2em;
	}
	#s2 h2 {
		font-size: 2em;
		margin: 1em 0;
	}
	#s4 .imgs .img {
		font-size: .75em;
	}
	.video .box {
		top: 60%;
		bottom: auto;
	}
	.video h2 {
		font-size: 1.5em;
	}
	#s26 .thanx {
		margin-top: 3em;
	}

	@-webkit-keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 30%;
		}
		100% {
			left: 50px;
			right: 30%;
		}
	}

	@keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 30%;
		}
		100% {
			left: 50px;
			right: 30%;
		}
	}

	@-webkit-keyframes on-left-out {
		0%, 40% {
			left: 50px;
			right: 30%;
		}
		70% {
			left: 50px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-left-out {
		0%, 40% {
			left: 50px;
			right: 30%;
		}
		70% {
			left: 50px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@-webkit-keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 50px;
		}
		100% {
			left: 30%;
			right: 50px;
		}
	}

	@keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 50px;
		}
		100% {
			left: 30%;
			right: 50px;
		}
	}

	@-webkit-keyframes on-right-out {
		0%, 40% {
			left: 30%;
			right: 50px;
		}
		70% {
			left: 30%;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-right-out {
		0%, 40% {
			left: 30%;
			right: 50px;
		}
		70% {
			left: 30%;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}
}

@media only screen and (min-width: 768px) {
	.hidden-mobile {
		display: block;
	}
	.comma {
		display: none;
	}
	h2 {
		font-size: 1.5em;
	}
	.header {
		padding: 0 20px;
	}
	.campaign .logo {
		max-width: 35vw;
	}
	.campaign .sponsored {
		position: relative;
		bottom: 0;
		max-width: 20vw;
		max-height: none;
		margin-left: 10px;
	}
	.site,
	#controls .control.prev {
		left: 20px;
	}
	.share,
    #controls .control.next {
		right: 20px;
	}
	#counter {
		bottom: 40px;
		left: 20px;
	}
    #controls .control {
        width: 50px;
        height: 50px;
    }
    #controls #controls .control.next svg {
        width: 30px;
        height: 30px;
    }
    .video .box {
    	padding: 2em 100px;
    }
    #s0 .box {
        padding: 3em 150px 0 40px;
    }
	#s0 .box h2 {
		margin-bottom: 2em;
	}
	#s2 .box,
	#s8 .box,
	#s9 .box {
		padding: 0 70px;
	}
	#s2 .face {
		-ms-flex-preferred-size: 25%;
		    flex-basis: 25%;
	}
	#s2 .face h3 {
		font-size: 1em;
	}
	#s2 .face div {
		display: block;
	}
	#s8 h2,
	#s9 h2 {
		font-size: 3em;
	}
	#s8 h3,
	#s9 h3 {
		font-size: 2em;
	}
	#s8 p {
		font-size: 1.25em;
		margin-bottom: 2em;
	}
	#s8 .img {
		height: 4em;
	}
	#s8 .yellow {
		font-size: 1.5em;
		max-width: 550px;
	}
	#s9 .info {
		padding: 1em;
	}
	#s9 .h1 {
		font-size: 4em;
	}
	#s9 .h2 {
		font-size: 2em;
	}
	#s9 .h3 {
		font-size: 1.5em;
	}
	#s9 p {
		font-size: 1.25em;
		margin-bottom: 2em;
	}
	#s14 .content {
		font-size: 1.25em;
	}
	#s14 h2 {
		font-size: 1.5em;
	}
	#s15 img,
	#s16 img,
	#s20 img {
		margin-top: 4em;
	}
	#s17 .content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 1em 50px;
		max-width: 1000px;
		margin: 0 auto;
	}
	#s17 .col {
		padding: 20px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#s17 .col:first-of-type {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 35%;
		flex: 0 0 35%;
	}
	#s17 .col:last-of-type {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 65%;
		flex: 0 0 65%;
	}
	#s25 .link {
		font-size: 1.125em;
		margin-top: 1.5em;
	}
	#s26 .box {
	 	font-size: 1em;
		padding: 2em 80px;
	}
	#s26 .cols {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#s26 .col {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 50%;
				flex: 0 0 50%;
		padding: 20px;
		margin: 0;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		list-style-type: none;
		display: block;
	}
	#s26 .col li {
		display: block;
		margin: .75em 0;
	}
	.box.on-bottom {
		padding: 0 120px;
	}
	.box.on-bottom h2 {
		font-size: 1.5em;
	}
	.footer {
		font-size: 14px;
	}
	
	@-webkit-keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 40%;
		}
		100% {
			left: 110px;
			right: 40%;
		}
	}
	
	@keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 40%;
		}
		100% {
			left: 110px;
			right: 40%;
		}
	}

	@-webkit-keyframes on-left-out {
		0%, 40% {
			left: 110px;
			right: 40%;
		}
		70% {
			left: 110px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-left-out {
		0%, 40% {
			left: 110px;
			right: 40%;
		}
		70% {
			left: 110px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@-webkit-keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 110px;
		}
		100% {
			left: 40%;
			right: 110px;
		}
	}

	@keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 110px;
		}
		100% {
			left: 40%;
			right: 110px;
		}
	}

	@-webkit-keyframes on-right-out {
		0%, 40% {
			left: 40%;
			right: 110px;
		}
		70% {
			left: 40%;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-right-out {
		0%, 40% {
			left: 40%;
			right: 110px;
		}
		70% {
			left: 40%;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@-webkit-keyframes on-bottom-in {
		0% {
			top: 100%;
		}
		100% {
			top: 50%;
		}
	}

	@keyframes on-bottom-in {
		0% {
			top: 100%;
		}
		100% {
			top: 50%;
		}
	}

	@-webkit-keyframes on-bottom-out {
		0%, 40% {
			top: 50%;
		}
		100% {
			top: 100%;
		}
	}

	@keyframes on-bottom-out {
		0%, 40% {
			top: 50%;
		}
		100% {
			top: 100%;
		}
	}
}



@media only screen and (min-width: 768px) and (orienrtation: portrait) {
	body {
		font-size: 16px;
	}
}

@media only screen and (min-width: 992px) {
    .share a,
    .share svg {
        width: 25px;
        height: 25px;
    }
    .share a:not(:first-of-type) {
        margin-left: 10px;
    }
    #counter {
        font-size: 1.5em;
    }
    #controls .control {
        width: 60px;
        height: 60px;
    }
    #controls #controls .control.next svg {
        width: 30px;
        height: 30px;
    }
	#s0 .box h2 {
		font-size: 1.778em;
	}
	#s2 h2 {
		font-size: 2.5em;
	}
	#s2 .face h3 {
		font-size: 1.125em;
	}
}

@media only screen and (min-width: 1024px) {
    .site {
        left: 40px;
    }
    .share {
        right: 40px;
    }
    #controls .control {
        width: 70px;
        height: 70px;
    }
    #controls .control.next svg {
        width: 40px;
        height: 40px;
    }
    #counter {
        bottom: 7vh;
        left: 40px;
        font-size: 1.667em;
    }
    .video .box {
    	padding: 2em 120px;
    }
	#s2 .box,
	#s8 .box,
	#s9 .box {
		padding: 0 110px;
	}
	#s1 .img,
	#s4 .imgs {
		margin-top: 3em;
	}
	#s4 .imgs .img {
		font-size: 1em;
	}
	#s14 .content {
		font-size: 1.5em;
	}
	.box.on-bottom h2 {
		font-size: 1.75em;
	}
	.box.on-bottom .info {
		font-size: 1.125em;
	}
}

@media only screen and (min-width: 1400px) {
	body {
		font-size: 16px;
	}
	#s8 h2,
	#s9 h2 {
		font-size: 4em;
	}
	#s8 h3,
	#s9 h3 {
		font-size: 3em;
	}
	#s8 p {
		font-size: 1.5em;
		margin-bottom: 3em;
	}
	#s8 .yellow {
		font-size: 2em;
		max-width: 900px;
	}
	#s8 .three {
		height: auto;
	}
	#s9 .h1 {
		font-size: 6em;
	}
	#s9 .h2 {
		font-size: 2.5em;
	}
	#s9 .h3 {
		font-size: 2em;
	}
	#s9 p {
		font-size: 1.5em;
		margin-bottom: 3em;
	}
	#s25 .link {
		font-size: 1.25em;
		margin-top: 2em;
	}
	#s26 .box {
	 	font-size: 1.25em;
		padding: 3em 80px;
	}
	.box.on-bottom h2 {
		font-size: 2em;
	}
	.video-wrapper:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
	}

	@-webkit-keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: calc(100% - 750px);
		}
		100% {
			left: 120px;
			right: calc(100% - 750px);
		}
	}
	
	@keyframes on-left-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: calc(100% - 750px);
		}
		100% {
			left: 120px;
			right: calc(100% - 750px);
		}
	}

	@-webkit-keyframes on-left-out {
		0%, 40% {
			left: 120px;
			right: calc(100% - 750px);
		}
		70% {
			left: 120px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-left-out {
		0%, 40% {
			left: 120px;
			right: calc(100% - 750px);
		}
		70% {
			left: 120px;
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@-webkit-keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 120px;
		}
		100% {
			left: calc(100% - 750px);
			right: 120px;
		}
	}

	@keyframes on-right-in {
		0% {
			left: 0;
			right: 100%;
		}
		50% {
			left: 0;
			right: 120px;
		}
		100% {
			left: calc(100% - 750px);
			right: 120px;
		}
	}

	@-webkit-keyframes on-right-out {
		0%, 40% {
			left: calc(100% - 750px);
			right: 120px;
		}
		70% {
			left: calc(100% - 750px);
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}

	@keyframes on-right-out {
		0%, 40% {
			left: calc(100% - 750px);
			right: 120px;
		}
		70% {
			left: calc(100% - 750px);
			right: 0;
		}
		100% {
			left: 100%;
			right: 0;
		}
	}
}

@media only screen and (min-width: 1600px) {
	#s11 img,
	#s15 img,
	#s16 img,
	#s17 .col img,
	#s20 img,
	#s23 img {
		max-height: none;
	}
    #s0 .box {
        padding: 10em 0 0 150px;
    }
	#s2 h2 {
		font-size: 3em;
	}
	#s2 .face {
		padding: 35px;
	}
	#s2 .face img {
		max-width: none;
	}
	#s9 .info {
		max-width: 400px;
	}
	#s17 .content {
		max-width: 1300px;
	}
}

@media only screen and (min-width: 1921px) {
	body {
		font-size: 18px;
	}
}