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

html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: Michroma, sans-serif;
}


body {
    background: url("../img/bg.jpg?nc=1");
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    background-size: cover;
}

#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;
}


.playme {
    z-index: 10;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: transparent;
}

.gradient {
    position: fixed;
    bottom: 0px;
    opacity: 1;
    left: 0px;
    height: 35vh;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}   

.gradient.top {
    bottom: auto;
    top: 0px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);    
}

#menu {
    position: fixed;
    z-index: 50;
    right: 30px;
    bottom: 40px;
}

#menu a {
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    vertical-align: bottom;
    text-transform: uppercase;
    padding: 7px 20px;
    letter-spacing: 1px;
    margin: 0px 5px;
    transition: 0.5s;
    cursor: pointer;
    font-family: Michroma, sans-serif, sans-serif;
}

#menu a:hover {
    color: #cfa6a9;
    text-shadow: 0px 0px 10px #fff;
}


#play-pause-button:hover {
    opacity: 1;
}

.noise {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    opacity: 0.6;
    z-index: 3;
    background: url("../img/noise.gif");
    background-repeat: repeat;
    background-size: 300px;
    mix-blend-mode: multiply;
}

.logo {
    height: 15dvh;
    width: auto;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 4;
}


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

#mobile {
    display: none;
}

#lightbox {
  z-index: 50;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: 34px;  
  background: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
}

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

#lightbox.privacy, #lightbox.signup, #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%;
}

.privacy-wrap, .tourcontainer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
}

.tourwrapper {
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.5rem;
    text-align: center;
    margin: 50px auto;
    color: #cfa6a9;
    text-transform: uppercase;
    max-width: 560px;
}


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

.privacy-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;
}

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

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

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

.play {
    position: fixed;
    bottom: 20px;
    left: 30px;
    color: #fff;
    opacity: 0.5;
    font-family: Michroma;
    z-index: 4;
    transition: 0.3s;
    padding: 15px;
}

.play svg {
    height:30px;
    width: auto;
    fill: #fff;
}

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

.play:hover {
    opacity: 1;  
}

.play:hover span {
    opacity: 1;
}

.privacy-link {
    position: fixed;
    padding: 15px;
    top: 53px;
    right: 10px;
    color: #fff;
    opacity: 0.5;
    font-size: 7px;
    font-family: Michroma;
    font-weight: bold;
    z-index: 4;
    transition: 0.3s;
    text-transform: uppercase;
}

.privacy-link:hover {
    opacity: 1;   
}

#socials {
    position: fixed;
    display: table;
    top: 30px;
    right: 20px;
    z-index: 50;    
}

#socials a {
    color: #fff;
    opacity: 0.5;
    font-size: 20px;  
    padding: 10px;
    background: transparent;
}

#socials a svg {
    height: 17px;
    width: auto;
    fill: #fff;
}

#socials a:hover {
    opacity: 1;
    text-shadow: 0px 0px 10px #fff;
}

h4 {
    font-size: 17px;
    letter-spacing: 3px;
    line-height: 35px;
    display: block;
    margin: 0px auto 50px auto;
    text-align: center;
    font-weight: normal;
    width: auto;
    text-transform: uppercase;
    font-family: Michroma, sans-serif;
}


#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;  
}

#signupform, #mobilenotice {
	color: #fff;
	margin: 0px auto;
	font-weight: normal;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	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, #signupform label  {
	display: block;
	outline: none;
    -webkit-appearance: none;
    border: none;
    margin: 0px auto;
    text-align: center;
}

#signupform label {
    padding-bottom: 3px;
}

#signupform input {
    margin-bottom: 20px;
color: #cfa6a9;
    border: 0px;
    font-size: 15px;
    line-height: 15px;
    vertical-align: bottom;
    transition: 0.3s;
    padding: 7px 20px;
    display: table;
    text-align: center;
    letter-spacing: 1px;
    margin: 0px auto 20px auto;
    z-index: 1000;
    border-radius: 10px;
    background: rgba(195,170,186, 0.25);
    font-family: Michroma, sans-serif, sans-serif;    
}

#signupform #mc-embedded-subscribe {
color: #000;
    border: 0px;
    font-size: 15px;
    line-height: 15px;
    vertical-align: bottom;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 7px 20px;
    display: table;
    text-align: center;
    letter-spacing: 1px;
    margin: 10px auto 0px auto;
    cursor: pointer;
    z-index: 1000;
    background: #cfa6a9;
    font-family: Michroma, sans-serif, sans-serif;
}

#mc-embedded-subscribe:hover {
    background: white;
}


input.signupbutton {
    color: black;
    background: #cfa6a9;
    padding: 15px 30px;
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 0px;
}

#signupform .signupbutton:hover {
    color: #fff;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
  text-transform: uppercase;
  font-family: Michroma, sans-serif, sans-serif;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  text-transform: uppercase;
  font-family: Michroma, sans-serif, sans-serif;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
  text-transform: uppercase;
  font-family: Michroma, sans-serif, sans-serif;
}
:-moz-placeholder { /* Firefox 18- */
  color: #fff;
  text-transform: uppercase;
  font-family: Michroma, sans-serif, sans-serif;
}
.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 2s forwards ease;
    animation: zoomin 2s forwards ease;
}

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

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


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

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

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


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


@media (max-width: 800px) {
	
	#desktop {
		display: none;
	}	
    
body {
    background: url("../img/bg-mobile.jpg?nc=1");
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    background-size: cover;
}
    .noise {
        mix-blend-mode: multiply;
        background-size: 100px;
        opacity: 1;
    }
    
    #mobile {
        display: block;
    }
    
    #menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 85dvw;
    }
    
    #menu a {
        font-size: 2.5dvw;
        margin: 0px auto;
        padding: 7px 1.5dvw;
        text-align: center;
    }
    
    .privacy-container {
        width: 100%;
    }
    
    .cycle.one, .cycle.two {
        width: 95vw;
        height: 95vw;
        top: 55%;
    }
    
    .logo {
        height: 20dvh;
        width: auto;
        top: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .focus {
        display: none;
    }

    #signupform {
        width: 290px;
        margin: 0 auto;
        z-index: 9;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .play svg {
        height: 23px;
    }


        

    #signupform .signupbutton {
        opacity: 1;
        top: 1px;
        right: 15px;
    }
    
    #socials {
        min-width: 250px;
        top: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    #socials a svg {
        height: 15px;
    }
    
    #socials a {
        font-size: 15px;
        opacity: 0.5;
    }
    
    
    .play {
        bottom: 120px;
        font-size: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .play span {
        display: none;
    }
    
    .logo {
        top: 50px;
    }

}

@media (max-width: 380px) {
    #menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: table;
    }
    
    #menu a {
        display: table-cell;
        font-size: 2.5dvw;
        margin: 0px auto;
        padding: 7px 1.5dvw;
        text-align: center;
    }
}