/* Reset
================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
    
/* Default styles
================================================== */   
body{
    background: white;
    color: black;
    line-height: 1.5em;
}

a,
a:link,
a:active,
a:visited,
a:hover{
    color: #333;
    text-decoration: underline;
}
a:hover{
    text-decoration: none;
}

/* Main
================================================== */ 

body {
    font-family: 'helvetica-light', 'Open Sans', helvetica, arial, sans-serif;
    font-size: 20px;
    line-height: 1.8em;
    color: #333;
}

strong {
    font-weight: bold;
}

.header{
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
}

#logo{
    font-size: 32px;
    letter-spacing: -1px;
    font-family: 'kepler-std';
    position: fixed;
    color: white;
    left: 30px;
    top: 25px;
    z-index: 1000; 

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#logo a{
    text-decoration:none;
    color: white;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.intro-hidden #logo a,
.menu-open #logo a{
    color:#333;
}

.intro-hidden.bottom-reached.menu-open #logo a{
    color:#333;
}

.intro-hidden.bottom-reached #logo a{
    color: white;
}

.header .menu {
    position: fixed;
    right: 50%;
    top: 50%;
    bottom: 50%;
    left: 50%;

    left: 0;
    right: 0;
    bottom: 0;
    top: 0;

    background: white;
    color: black;
    text-align: center;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;

    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.menu-open .header .menu{
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;

    pointer-events: auto;

    transform: translate(0, 0);
    opacity: 1;
}

.header .menu ul{
    position: absolute;
    display: block;

}

.menu-open .header .menu ul li{
    opacity: 1;
    line-height: 1.8em;
}

.header .menu ul li{
    line-height: 1.8em;
    color: #333;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;

    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -ms-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;

    opacity: 0;
}

.header .menu ul li a{
    color: #333;
    font-size: 1em;
    font-family: 'helvetica-light', helvetica;
    text-decoration: none;
    display: inline-block;
    padding: 0.2em;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header .menu ul li a span{
    border-bottom: 2px solid #fff;
}

.header .menu ul li.selected a span{
    border-bottom: 2px solid #666;
}

.header .menu ul li a:hover{
    color: black;
}

.header .menu ul li.selected a:hover span{
    border-bottom: 2px solid #000;
}

.header .open{
    position: fixed;
    right: 0;
    margin-right: 30px;
    top: 30px;
    display: block;
    width: 40px;
    height: 40px;
    z-index: 4;

    border-bottom: none;
    text-decoration: none;
}

.header .open .title{
    color: white;
    text-decoration: none;
    border-bottom: none;

    position: absolute;
    left: -62px;
    top: 0;

    font-size: 18px;
    line-height: 28px;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header .open span{
    display: block;
    height: 4px;
    background: white;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.intro-hidden .header .open span,
.menu-open .header .open span{
    background: #333;
}

.menu-open.bottom-reached.intro-hidden .header .open span{
    background: #333;
}

.intro-hidden.bottom-reached .header .open span{
    background: white;
}

.intro-hidden .header .open .title{
    color: #333;
}

.intro-hidden.bottom-reached .header .open .title{
    color: white;
}

.header .open span{
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.header .open span:last-child{
    margin-bottom: 0;
}

.header .open span.first{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
}

.header .open span.second{
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -o-transform: translate(8px);
    -ms-transform: translate(8px);
}

.header .open span.third{
    transform: translateY(16px);
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -o-transform: translate(16px);
    -ms-transform: translate(16px);
}

.menu-open .header .open span.first{
    transform: translateY(12px) rotate(45deg);
    -webkit-transform:translateY(12px) rotate(45deg);
    -moz-transform: translateY(12px) rotate(45deg);
    -o-transform:translateY(12px) rotate(45deg);
    -ms-transform:translateY(12px) rotate(45deg);
}

.menu-open .header .open span.second{
    opacity: 0;
}

.menu-open .header .open span.third{
    transform: translateY(4px) rotate(-45deg);
    -webkit-transform: translateY(4px) rotate(-45deg);
    -moz-transform: translateY(4px) rotate(-45deg);
    -o-transform: translateY(4px) rotate(-45deg);
    -ms-transform: translateY(4px) rotate(-45deg);
}

.intro{
    position: fixed;
    color: white;
    background: black;
    z-index: 2;
    background: url(../images/backg-1.jpg) no-repeat center center;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.footer .social,
.intro .social{
    position: absolute;
    right: 30px;
    bottom: 30px;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.hide-intro .intro .social{
    bottom: 60px;
    opacity: 0;
}

.footer .social li,
.intro .social li{
    float: left;
}

.footer .social li a,
.intro .social li a{
    text-indent: -99999px;
    display: block;
    width: 35px;
    height: 35px;
    margin-left: 10px;
}

.footer .social li.twitter a,
.intro .social li.twitter a{
    background: url(../images/twitter_light.svg) no-repeat center center;
    background-size: 35px 35px;
}

.footer .social li.github a,
.intro .social li.github a{
    background: url(../images/github_light.svg) no-repeat center center;
    background-size: 35px 35px;
}

.footer .social li.linkedin a,
.intro .social li.linkedin a{
    background: url(../images/linkedin_light.svg) no-repeat center center;
    background-size: 35px 35px;
}

.intro .scroll{
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -17px;
    width: 35px;
    height: 35px;
    background: url(../images/down_light.svg) no-repeat center center;
    background-size: 35px 35px;
    z-index: 2;
    text-indent: -99999px;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.hide-intro .scroll{
    bottom: 5px;
    opacity: 0;
}

.intro .progress {
    width: 100%;
    height: 5px;
    background: rgba(255,255, 255, .3);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 200;
}

.intro .progress span{
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: white;
    opacity: .5;
}

.intro .progress .bar{
    display: block;
    width: 0%;
    height: 100%;
    background: white;

    -webkit-transition: all 1.5s linear; 
    -moz-transition: all 1.5s linear; 
    -ms-transition: all 1.5s linear;
    -o-transition: all 1.5s linear;
    transition: all 1.5s linear;
}

.intro-hidden .intro .background-container{
    /*
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(51,51,51,.43);
    */
    display: none;
}

.intro .background-container .background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro .background-container .background .cover{
    background: -moz-radial-gradient(center, ellipse cover,  rgba(51,51,51,0.5) 0%, rgba(51,51,51,0.7) 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(51,51,51,0.5)), color-stop(100%,rgba(51,51,51,0.7))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(51,51,51,0.5) 0%,rgba(51,51,51,0.7) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  rgba(51,51,51,0.5) 0%,rgba(51,51,51,0.7) 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  rgba(51,51,51,0.5) 0%,rgba(51,51,51,0.7) 100%); /* IE10+ */
    background: radial-gradient(ellipse at center,  rgba(51,51,51,0.5) 0%,rgba(51,51,51,0.7) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80333333', endColorstr='#b3333333',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    background: rgba(0,0,0,0);
    position: absolute; left: 0; right: 0; bottom: 0; top: 0;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .background-container .background .cover.active{
    background: rgba(51,51,51,.4);
}

.intro .background-title{
    position: absolute;
    bottom: 35px;
    left: 30px;
    z-index: 2;
    line-height: 1em;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.animate{
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .background-title ul {
    position: absolute;
    left: 105%;
    top: 0;

    min-width: 500px;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .background-title ul li{
    opacity: 0;
    pointer-events:none;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .background-title ul li.selected{
    opacity: 1;
    pointer-events: auto;
}

.hide-intro .intro .background-title {
    bottom: 60px;
    opacity: 0;
}

.centered{
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.accel{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
     backface-visibility: hidden;

     -webkit-perspective: 1000;
     -moz-perspective: 1000;
     -ms-perspective: 1000;
     perspective: 1000;
}

.intro a{
    color: white;
}

.intro .description {
    position: absolute;
    width: 100%;
    max-width: 800px;
    z-index: 2;
    font-size: 1.2em;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .smalldescription{
    text-align: center;
    line-height: 1.4em;
    opacity: 1.0;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.intro .smalldescription a{
    text-decoration: none;
    border-bottom: 2px solid white;    
}

.hide-intro .smalldescription{
    margin-top: -50px;
    opacity: 0;
    pointer-events:none;
}

.intro .smalldescription p{
    margin-bottom: 0.5em;
}

.intro .smalldescription h1{
    font-family: 'Kepler std';
    font-size: 32px;
    line-height: 1em;
    padding-bottom: 0.5em;
}

.hide-intro .intro .description{
    opacity: 0;
    margin-top: -50px;
}

.intro .background-title a,
.intro .description a{
    text-decoration: none;
    border-bottom: 2px solid white;
}

.projects{
    position: relative;
    margin-top: 100vh;
    z-index: 3;
    background: white;
}

.projects .project{
    margin: 0 auto;
    min-height: 100vh;    
    box-sizing: border-box;
    position: relative;
}

.projects .project .anchor{
    position: absolute;
    top: 1px;
    left: 0;
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0);
}

.projects .project .video-container{
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.projects .project .video-container .mobileonly img,
.projects .project .video-container img.mobileonly{
    display: block;
    width: 100%;
    height: auto;
}

.projects .project .video-container .video{
    position: relative;
    display: inline-block;
}

.projects .project .video-container .video img{
    display: block;
    width: 100%;
    height: 100%;
    height: auto;
}

.projects .project .video-container .video .video-wrap{
    position: absolute;
    left:4.1%;
    top: 5.373525557012%;
    width: 91.8%;
    display: block;
    overflow:hidden;
}

.projects .project .video-container .video .video-wrap video{
    width: 100.3%;
    height: 100%;
    margin-top:-1px;
    display: block;
}

.projects .project .normal{
    width: 100%;
    max-width: 800px;
    padding: 10% 0 0 0;
    margin: 0 auto;
}

.projects .project .normal .images{
    margin-bottom: 3em;
}

.projects .project .normal .images img{
    display: block;
}

.projects .project .normal .images ul li{
    margin-bottom: 2em;
}

.projects .project .normal .description{
    padding-bottom: 3em;
}

.projects .project h3{
    text-align: center;
    margin-bottom: 1.8em;
    font-weight: normal;
    color: black;
    font-size: 1.5em;
}

.projects .project p {
    margin-bottom: 0.5em;
}

.projects .project p:last-child {
    margin-bottom: 0;
}

.projects .project.dark {
    background: #f7f6f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.projects .project{
    padding: 5em 0 5em 0;
    border-bottom: 1px solid #f2f2f2;
}

.projects .project .copy .content{
    margin: 0 auto;
    width: 60%;
    color: #333;
    max-width: 840px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.projects .project .copy .content p{
    margin-bottom: 1em;
}

.projects .project .copy .content a{
    text-decoration: none;
    border-bottom: 2px solid #ccc;
}

.projects .project .images {
    padding: 0;
    box-sizing: border-box;
    background: white;
}

.projects .project .images.cover img{
    display: block;
    width: 100%;
    height: auto;
}
.projects .project .images.center img{
    display: block;
    margin: 0 auto;
    height: auto;
    width: 75%;
}

.projects .project .images{
    width: 100%;
    overflow: hidden;
}

.projects .project .images.center .respslides{
    width: 200%;
    overflow: hidden;
}

.projects .project .images.center .respslides li{
    width: 50%;
    float: left;
}

.projects .project .images.center .respslides li img{
    display: block;
    width: 80%;
    max-width: 1023px;
    height: auto;

    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

.grab{
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.grabbed {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.projects .project .images.center .slides{
    width: 200%;
    margin-left: 0;
    display: block;
}

.projects .project .images.center .slides li{
    width: 50%;
    float: left;
    box-sizing: border-box;
} 

.projects .project .images.center .navigation{
    text-align: center;
    padding-top: 2em;
}

.projects .project .images.center .navigation li{
    display: inline-block;
    margin: 0;
    padding: 0;
}

.projects .project .images.center .navigation li.selected a span{
    background: #666;
}

.projects .project .images.center .navigation a{
    display: block;
    padding: 8px;
}

.projects .project .images.center .navigation a span{
    display: block;
    text-indent: -99999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #ccc;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.projects .project .images.center .navigation a:hover span{
    background: #666;
}

.projects .project .copy {
    background: white;
    padding: 4em 0 0 0;
}

.projects .project .copy h1{
    text-align: center;
    padding-bottom: 1.8em;
    line-height: 1em;
    font-size: 1.4em;
    color: #333;
}

.projects .project .copy .links{
    text-align: center;
    padding-top: 1em;
}

.projects .project .copy .links a{
    display: inline-block;
    text-decoration: none;
    border-bottom: none;
    margin: 0 0.8em;
    line-height: 36px;

    background: url(../images/link_dark.svg) no-repeat top left;
    background-size: 35px 35px;
    padding-left: 48px;

    outline: none;
}

.projects .project .copy .links a:hover{
    background-image: url(../images/link_dark_inverted.svg);
    color: #333;
}

.projects .project .copy .links a span{
    border-bottom: 2px solid #ccc;
}

.projects .project .copy .links a.source{
    background: url(../images/code_dark.svg) no-repeat top left;
    background-size: 35px 35px;
}

.projects .project .copy .links a.source:hover{
    background-image: url(../images/code_dark_inverted.svg);
}
.projects .project .copy .links a.appstore:hover{
    background-image: url(../images/link_dark_inverted.svg);
}
.projects .project .copy .links a.playstore:hover
{
    background-image: url(../images/link_dark_inverted.svg);
}

.projects .project .copy .links a.playstore{
    background: url(../images/link_dark.svg) no-repeat top left;
    background-size: 35px 35px;
}

.projects .project .copy .links a.appstore{
    background: url(../images/link_dark.svg) no-repeat top left;
    background-size: 35px 35px;
}

.projects .project .copy .links a.popup-youtube{
    background: url(../images/play_dark.svg) no-repeat top left;
    background-size: 35px 35px;
}

.projects .project .copy .links a.popup-youtube:hover{
    background-image: url(../images/play_dark_inverted.svg);
}

.center{
    text-align: center;
}

.projects .description{
    text-align: justify;
}

.projects .description a{
    text-decoration: none;
    border-bottom: 2px solid #666;
}

.projects .description.center{
    text-align: center;
}

.projects .description .tags{
    padding: 1em 0;
}

.projects .description span{
    background: #333;
    color: white;
    display: inline-block;
    border-radius: 3px;
    margin: 4px 8px 4px 0;
    line-height: 1em;
    padding: 9px 10px 6px 10px;
}

.footer{
    color: white;
    position: relative;
    font-size: 1em;
    text-align: center;
    z-index: 5;
    height: 100vh;
    background: url(../images/map.jpg) no-repeat center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.footer h1{
    color: white;
    line-height: 1em;
    font-size: 46px;
    letter-spacing: -2px;
    font-family: 'kepler-std';
    margin-bottom: 2em; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer h3{
    color: white;
    padding-bottom: 0.5em;
    font-size: 32px;
    letter-spacing: -2px;
    font-family: 'kepler-std';
    -webkit-font-smoothing: antialiased;
}

.footer p{
    padding-bottom: 1.5em;
}

.footer a{
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
}

.intro .social,
.footer .social{
    position: static;
    clear: both;
}

.intro .social ul li,
.footer .social ul li{
    display: inline-block;
    float: none;
    border: none;
    margin: 5px; 
}

.intro .social ul li a,
.footer .social ul li a{
    margin: 0;
    text-decoration: none;
    border: none;
}

.slide-menu{
    position: fixed;
    right: -26%;
    top: 0;
    width: 25%;
    height: 100%;
    z-index: 3000;
    background: #ffffff rgba(255, 255, 255, 1.0);
    border-left: 1px solid #f2f2f2;
}

.menu-open .slide-menu{
    right: 0;
}

.menu-open .wrapper{
    width: 75%;
}

.menu-open .intro{
    width: 75%;
}

.menu-open .intro .background-title{
    opacity: 0;
}

.slide-menu ul li{
    line-height: 2em;
    float: none;
}

.slide-menu ul li.spacer{
    color: white;
}

.slide-menu ul li a{
    display: block;
    float: none;
    color: #333;

    text-decoration: none;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slide-menu ul li a span{
    border-bottom: 2px solid #fff;
}

.slide-menu ul li a:hover span{
    border-bottom: 2px solid #ccc;
}

.slide-menu .logo,
.slide-menu h1{
    font-family: 'kepler-std';
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1em;
    color: #333333;
    margin-bottom: 1.4em;
    /*
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    */
    cursor: pointer;
 
}

.menu-open #logo{
    left: -200px;
    opacity: 0;
}

.menu-open #logo a{
    color:#fff;
}

.menu-open.intro-hidden #logo a{
    color: #333;
}

.intro-hidden.bottom-reached.menu-open #logo a{
    color:#fff;
}

.intro-hidden.bottom-reached #logo a{
    color: white;
}

.menu-open .header .open span{
    background: #fff;
}

.intro-hidden.menu-open .header .open span{
    background: #333;
}

.intro-hidden.bottom-reached.menu-open .header .open span{
    background: #fff;
}

.menu-open .header .open{
    position: fixed;
    right: 25%;
    margin-right: 25px;
    top: 30px;
}

.wrapper{
    width: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.intro{
    -webkit-transition: width .2s ease-out;
    -moz-transition: width .2s ease-out;
    -ms-transition: width .2s ease-out;
    -o-transition: width .2s ease-out;
    transition: width .2s ease-out;
}

.header .open,
.slide-menu{
    -webkit-transition: right .2s ease-out;
    -moz-transition: right .2s ease-out;
    -ms-transition: right .2s ease-out;
    -o-transition: right .2s ease-out;
    transition: right .2s ease-out;
}

.header .open{
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.projects .project .copy h1{
    font-size: 32px;
    letter-spacing: -1px;
    font-family: 'kepler std';
}

#logo{
    left: 40px;
    top: 35px;
}

.header .open{
    position: fixed;
    right: 0;
    margin-right: 40px;
    top: 40px;
}

.menu-open .header .open{
    margin-right: 35px;
    top: 40px;
}

.intro .background-title {
    bottom: 45px;
    left: 40px;
}

.intro .scroll{
    bottom: 40px;
}

.mobileonly{
    display: none;
}

.megaonly{
    display:none;
}

.projects .project .images img.megaonly,
.projects .project .images .megaonly{
    display: none;
}

.projects .project .megaonly.desktoponly,
.projects .project .images img.megaonly.desktoponly{
    display: block;
}

.projects .project .images img.mobileonly,
.projects .project .images .mobileonly{
    display: none;
}

.projects .project .video-container .mobileonly img,
.projects .project .video-container img.mobileonly{
    display: none;
}

/* Image popup
================================================== */   

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out; 
    -moz-transition: all 0.15s ease-out; 
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out; 
    -moz-transition: all 0.15s ease-out; 
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* Grid
================================================== */   
.grid{
    padding: 0 10px;
}

.grid .one-half,
.grid .one-third,
.grid .one-fourth,
.grid .one-third,
.grid .one-sixth{
    float:left;
    padding:25px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.grid .one-half .image,
.grid .one-third .image,
.grid .one-fourth .image,
.grid .one-third .image,
.grid .one-sixth .image{
    display: block;
    background-color: red;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.grid .one-half{
    width: 50%;
}
.grid .one-third{
    width: 33.333%;
}
.grid .one-fourth{
    width: 25%;
}
.grid .one-fifth{
    width: 20%;
}
.grid .one-sixth{
    width: 15%;
}

/* Media Queries
================================================== */


@media only screen and (min-width: 1441px) {
    .projects .project .images img.megaonly,
    .projects .project .images .megaonly{
        display: block;
    }

    .projects .project .images img.megaonly{
        max-width: 1900px;
        margin: 0 auto;
    }

    .projects .project .images img.desktoponly,
    .projects .project .images .desktoponly{
        display: none;
    }

    .projects .project .megaonly.desktoponly,
    .projects .project .images img.megaonly.desktoponly{
        display: block;
    }
}

@media only screen and (max-width: 1200px) {
    .intro .description{
        width: 100%;
        padding: 0 40px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

}
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 1000px) {
   

    .slide-menu{
        padding-top: 3em;

    }
    .slide-menu .centered{
        position: static;

        padding: 60px 40px 40px 40px;

        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
   }
   .menu-open .header .open span{
        background-color: #333;
        border-color: #333;
   }
   .menu-open .header .open .title{
        color: #333;
   }

   .slide-menu .logo{
        display: none;
   }

   .menu-open .slide-menu{
       right: -26%;
   }

    .menu-open #logo{
        left: 40px;
        color: #333;
        opacity: 1.0;
    }

    .menu-open #logo a{
        color: #333;
    }

    .intro-hidden.menu-open #logo a,
    .intro-hidden.bottom-reached.menu-open #logo a{
        color:#333;
    }
 
    
   .menu-open .wrapper{
        width: 100%;
    }
    .menu-open .intro{
        width: 100%;
    }


   .menu-open .slide-menu{
       text-align: center;
        left: 0;
        width: 100%;
        overflow: scroll;
   }
    .menu-open .header .open{
        z-index: 5000;
        right: 4px;
        color: #333;
    }

}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 900px) {
    .intro .background-title{
        display: none;
    }

    .intro .description{
        font-size: 1em;
        line-height: 1.5em;
    }

    .intro .background-container .background{
        display: none;
    }
    .intro .progress{
        display:none;
    }

    .projects .project .copy .content{
        width: 80%;
    }

    .project .centered,
    .footer .centered{
        position: static;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        padding: 0 40px;
    }

   .footer{
        min-height: 0;
        height: auto;
        padding: 80px 40px;
        font-size: 18px;
   }
    .projects .project{
        min-height: 0;
    }
   

}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {

   .projects .project .copy .content{
        width: 100%;

        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 40px;

        font-size: 18px;
   }

   .projects .project .copy h1{
        font-size: 28px;
        padding-bottom:1em;
   }

   .projects .project{
        padding: 2em 0 1em 0;
        min-height: 0;
        font-size: 18px;
   }

   .projects .project .copy{
        padding-top: 2em;
   }

   .projects .project .copy .links{
       padding-bottom: 0.5em;
   }

   .projects .project .copy .links a{
        display: block;
        text-align: left;
        margin-left: 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .projects .project .images.center .navigation{
       padding-top: 1em;
    }
    .projects .project h3{
        margin-bottom: 1em;
        font-size: 1.2em;
    }
    .projects .description{
        padding-bottom: 1em;
    }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

    .header .open{
        right: 0;
        top: 22px;
        margin-right: 20px;
    }

    .menu-open .header .open{
        right: 0;
        top: 22px;
        margin-right: 20px;
    }

    #logo{
        display:none;
    }

    .slide-menu{
        padding-top: 0;
    }

    .intro .description{
        display:none;
    }

    .menu-open .header .open .title{
        display: none;
    }

    .slide-menu .centered{
        padding-top: 40px;
    }

    .mobileonly{
        display: block;
    }

    .desktoponly{
        display: none;
    }

    .projects .project .images.center .navigation{
        display: none;
    }

    .projects .project .images.center img{
        width: 100%;
    }

    .projects .project .video-container .video.desktoponly{
        display: none;
    }

    .projects .project .images img.megaonly,
    .projects .project .images .megaonly{
        display: none;
    }

    .projects .project .images img.desktoponly,
    .projects .project .images .desktoponly{
        display: none;
    }


    .projects .project .megaonly.desktoponly,
    .projects .project .images img.megaonly.desktoponly{
        display: none;
    }

    .projects .project .images img.mobileonly,
    .projects .project .images .mobileonly{
        display: block;
    }

    .projects .project .video-container .mobileonly img,
    .projects .project .video-container img.mobileonly{
        display: block;
    }

}

/* Clearfix
================================================== */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

