
* {
    -webkit-font-smoothing: antialiased;
    outline: none;
    box-sizing: border-box;
}

html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    background: #000;
    padding: 0px;
    font-family: rukou,sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    -webkit-overflow-scrolling: touch;
}

#bg {
    position: fixed;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

#bg.one {
    z-index: 1;
    background: url("../img/bg1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#bg.two {
    z-index: 2;
    background: url("../img/bg2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.logo {
    width: 400px;
    height: auto;
    position: fixed;
    top: 60px;
    left: 40px;
    mix-blend-mode:screen;
    z-index: 10;
}

#loading {
    background-size: 34px;  
    background: #000 url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}


a {
    text-decoration: none;
    color: #f7e9ce;
}


.menu {
    position: fixed;
    bottom: 60px;
    left: 55px;
    font-family: "Rukou";
    font-size: 20px;
    z-index: 11;
    text-transform: uppercase;
}

.menu a {
    padding: 6px 12px;
    display: inline;
    margin: 0px 12px 0px 0px;
    text-align: left;
    color: #f7e9ce;
    border-radius: 3px;
}

.menu a:hover {
    background: #f7e9ce;
    color: #000;
}

.socials {
    position: fixed;
    top: 30px;
    left: 55px;
    font-size: 16px;
    z-index: 11;
    text-transform: uppercase;
}

.socials a {
    padding: 6px 6px;
    display: inline;
    margin: 0px 0px 0px 0px;
    text-align: left;
    color: #f7e9ce;
    border-radius: 3px;
}

.socials a:hover {
    color: #f7e9ce;
}


#mobile {
    display: none;
}

#lightbox {
  z-index: 50;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: 34px;  
  background: #000 url('../img/loading.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
}

.close {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px;
    color: #f7e9ce;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    z-index: 10003;
    display: block;
    font-size: 28px;
    cursor: pointer;
}

#lightbox.privacy, #lightbox.tour {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
    left: 0;
    text-transform: none;
    letter-spacing: 0px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
}

#lightbox .wrap {
    background: rgba(0,0,0,0.95);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
}

#lightbox .container {
    background: transparent;
    position: relative;
    top: 0px;
    width: 700px;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0px 40px;
}


#lightbox.signup .container {
    background: transparent;
    position: relative;
    top: 0px;
    width: 700px;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0;
}

.privacy p {
    font-family: Montserrat, sans-serif;
    color: #f7e9ce;
    font-size: 14px;
    line-height: 25px;
    text-align: left;    
}

.privacy ul li {
    color: #f7e9ce;
    font-size: 13px;
    line-height: 20px;
    text-align: left;   
    margin: 10px 0px;
}

h1 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
    margin: 40px auto;
    max-width: 500px;
    color: #f7e9ce;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}

.tour h1 {
    font-size: 65px;
    line-height: 70px;
    padding-top: 50px;
}

.play {
    position: fixed;
    top: 220px;
    left: 40px;
    color: rgba(247,233,206,1);
    font-family: Rukou;
    z-index: 4;
    transition: 0.3s;
    padding: 15px;
    text-transform: uppercase;
}

.play span {
    position: relative;
    top: -7px;
    left: 20px;
    font-size: 17px;
    color: #f7e9ce;
    transition: 0.3s;
    opacity: 0;
}

.play:hover {
    color: rgba(247,233,206,1);    
}

.play:hover span {
    opacity: 1;
}

.privacy-link {
    position: fixed;
    padding: 15px;
    bottom: 30px;
    right: 30px;
    color: rgba(247,233,206,.5);
    font-size: 14px;
    font-family: Rukou;
    font-weight: 400;
    z-index: 4;
    transition: 0.3s;
}

.privacy-link:hover {
    color: rgba(247,233,206,1);    
}

.movedown {
    -webkit-animation: movedown 2s ease forwards;
    animation: movedown 2s ease forwards;
}

@-webkit-keyframes movedown {
    0% {
        -webkit-transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0);
    }    
}

.moveup {
    -webkit-animation: moveup 2s ease forwards;
    animation: moveup 2s ease forwards;
}

@-webkit-keyframes moveup {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100px);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }    
}

.zoomin {
    -webkit-animation: zoomin 1.5s forwards ease;
    animation: zoomin 1.5s forwards ease;
}

@-webkit-keyframes zoomin {
    0% {-webkit-transform: scale(0)}
    100% {-webkit-transform: scale(1)}
}

@keyframes zoomin {
    0% {transform: scale(0)}
    100% {transform: scale(1)}
}

.zoomout {
    -webkit-animation: zoomout 1.5s forwards ease;
    animation: zoomout 1.5s forwards ease;
}

@-webkit-keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}

@keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}


.flicker {
  -webkit-animation: flickr 2s infinite ease;
  animation: flickr 2s infinite ease;
}

@-webkit-keyframes flickr {
    0% { opacity: 0.2 }
    10%   { opacity: 0.5; }
    12%   { opacity: 0.1; }
    15%   { opacity: 0; }
    20%   { opacity: .4; }
    25%   { opacity: .2; }
    30%,75%   { opacity: 0.3; }
    40% {opacity: 0.1}
    50% {opacity: 0.3}
    60% {opacity: 0.2}
    79%   { opacity: 0; }
    80%   { opacity: 0.2; }
    100% { opacity: 0.5;    }
  }

@keyframes flickr {
    0% { opacity: 0.2 }
    10%   { opacity: 0.5; }
    12%   { opacity: 0.1; }
    15%   { opacity: 0; }
    20%   { opacity: .4; }
    25%   { opacity: .2; }
    30%,75%   { opacity: 0.3; }
    40% {opacity: 0.1}
    50% {opacity: 0.3}
    60% {opacity: 0.2}
    79%   { opacity: 0; }
    80%   { opacity: 0.2; }
    100% { opacity: 0.5;    }
  }


#signupform {
	color: #f7e9ce;
	margin: 0px auto;
	font-weight: normal;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	letter-spacing: 4px;
	z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#signupform input {
	display: inline-block;
	outline: none;
    -webkit-appearance: none;
}

#signupform .email {
	background: transparent;
    border: none;
    border-bottom: 2px solid #f7e9ce;
	width: 370px;
	padding: 0px 10px 5px 10px;
	font-size: 20px;
    letter-spacing: 0px;
	color: #f7e9ce;
	line-height: 25px;
    text-align: center;
	vertical-align: bottom;
	margin: 0px;
    font-weight: normal;
    font-family: Rukou, 'Arial Black', sans-serif;
    text-transform: uppercase;
}

#signupform .button2 {
    color: #f7e9ce;
    border: 0px;
    font-size: 20px;
    line-height: 20px;
    vertical-align: bottom;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 7px;
    display: table;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px auto 0px auto;
    cursor: pointer;
    width: 370px;
    background: transparent;
    font-family: Rukou, 'Arial Black', sans-serif;
}


#signupform .button2:hover {
    color: #6a6d73;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Rukou, 'Arial Black', sans-serif;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Rukou, 'Arial Black', sans-serif;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Rukou, 'Arial Black', sans-serif;
}
:-moz-placeholder { /* Firefox 18- */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Rukou, 'Arial Black', sans-serif;
}


body#presavepage {
    overflow: auto
}


.presaveimg {
    width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

body#presavepage .logo, body#presavepage .socials {
    position: relative;
}

body#presavepage .logo {
    margin-top: 40px;
    top: auto;
}

#presave {
    position: fixed;
    top: 220px;
    left: 55px;
    font-family: "Rukou";
    font-size: 20px; 
    z-index: 10;
    color: #f7e9ce;
}

#presave h1 span {
    font-size: 30px;
    color: #f7e9ce;
    line-height: 20px;
    margin: 0px auto !important;
    display: block;
    text-align: center;
}

#presave span {
    text-align: left;
    display: block;
    margin: 25px auto;
    color: #f7e9ce;
}

#presave .main {
    font-size:40px;
        text-transform: none;
}

#presave .sub {
    font-size: 20px;
    text-transform: none;
}

#presave .sub a {
    font-size: 15px;
}

#presave a {
    display: block;
    margin: 6px auto;
    text-transform: uppercase;
}

#presave a.privacy {
    text-decoration: underline;
}

#presave a.privacy {
    display: inline;
    margin: 0px;
}


form {
  font-size: 13px;
  line-height: 13px;
  color: #f7e9ce;
    max-width: 430px;
    text-align: left;    
}

.float {
    float: left;
    display: inline;
    margin-top: 0px;
    margin-bottom: 20px;
}

.float.left {
    width: 25px;
    margin-left: 30px;
}

.float.right {
    width: 360px;
}

span.break {
    display: block;
    height: 0px;
    margin: 0;
}

.checkbox {
    margin: 0px;
    width: 30px;    
}

.button {
  display: table;
  margin: 10px auto;
  text-align: center;
  padding: 13px 0 13px 0;
  border-radius: 6px;
background: #cc3b38;
    color: #f7e9ce;    
  font-size: 22px;
  width: 425px;
  line-height: auto;
  letter-spacing: 0px;
  text-decoration: none;
  font-weight: normal;
  transition: 0.3s;
    font-family: 'rukou', monospace;
    overflow-wrap: break-word;
    word-break: break-word;
    outline: 0;
    border: 0px;
    cursor: pointer;
    -webkit-appearance: none;
  }  

.minibutton {
  display: inline !important;
  margin: 10px 3px !important;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
background: #cc3b38;
    color: #f7e9ce !important;    
  font-size: 18px;
  width: auto;
  line-height: auto;
  letter-spacing: 0px;
  text-decoration: none;
  font-weight: normal;
  transition: 0.3s;
    font-family: 'rukou', monospace;
    overflow-wrap: break-word;
    word-break: break-word;
    outline: 0;
    border: 0px;
    cursor: pointer;
    -webkit-appearance: none;    
}


.button.apple {
    margin-top: 0px;
    clear: both;
}

#mcbutton.button {
    width: auto;
}

.button:hover {
background: #f7e9ce;						  
  color: #cc3b38;
}

  span {
        font-size: 18px;
        max-width: 430px;
    }

span.subb.subbsubb {
    font-size: 15px;
    opacity: 1;
    clear: both;
    text-align: left !important;
    line-height: 18px;
    margin-top: 35px;
}

    #presave .subbsubb, #presave .float.right, #presave a {
        color: #cc3b38;
    }


/****  MEDIA QUERIES ****/ 


@media (max-width: 800px) {
	
	#desktop {
		display: none;
	}	
    
    #mobile {
        display: block;
    }
    
    .container {
        width: 100%;
    }
    
    #signupform .button2 {
        width: 100%;
    }    
    
    #signupform .email {
        width: 90%;
        border-radius: 0px;
        -webkit-appearance: none;
    }        

.logo {
    width: 71%;
    height: auto;
    position: fixed;
    top: 60px;
    left: 40px;
    mix-blend-mode:screen;
    z-index: 10;
}    
    
    .logo, .socials, .play, .menu {
        left: 20px;
    }
    
    .play {
        top: 160px;
        font-size: 11px;
        left: 18px;        
    }
    
    .socials {
        left: 25px;
    }
    
    .menu {
        bottom: 30px;
        font-size: 18px;
    }
    
    .menu a {
        padding: 3px 12px;
    display: block;
    margin: 0px 12px 0px 0px;
    text-align: left;
    color: #f7e9ce;
    border-radius: 3px;        
    }
    
    .menu:hover {
        background: transparent;
    }
    
    .privacy-link {
        bottom: 18px;
    }
    
    h1 {
        max-width: 90%;
    }
    
    #lightbox .container {
        width: 100%;
    }
 
    form {
        max-width: 100%;
    }
    
    #menu.top {
        top: 15px;
    }
    
    #menu a {
        margin: 0 auto;
    }
    
    #menu span.subb {
        text-align: left;
    }
    

body#presavepage #bg {
    display: none;
}    
    
#presave { 
    position: relative;
    top: auto;
    left: 30px;
    font-family: "Rukou";
    font-size: 20px;
    z-index: 10;
    color: #f7e9ce;
    max-width: 80%;
}    
    
    #presave span {
        line-height: 18px;
        margin: 15px auto;
    }    

    
    .button {
        font-size: 17px;
        width: 95%;
        font-size: 15px;
        margin: 0px auto 10px auto;
        padding: 15px 0px;
        text-align: center;
    }          
    
    .button {
        -webkit-appearance: none;
    }

    
    .float {
        float: left;
        display: inline;
    }

    .float.left {
        width: 25px;
        margin-left: 0px;
    }

    .float.right {
        width: calc(100% - 25px);
    }   
    

.minibutton {
  display: block !important;
    padding: 10px 10px;
    margin: 0px !important;
    }
    
    
}


/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 768px)
  and (orientation: landscape) {

}
