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

@font-face {
    font-family: 'EngraversOldEnglishMTW01';
    src: url('fonts/EngraversOldEnglishMTW01.woff2') format('woff2'),
        url('fonts/EngraversOldEnglishMTW01.woff') format('woff'),
        url('fonts/EngraversOldEnglishMTW01.ttf') format('truetype'),
        url('fonts/EngraversOldEnglishMTW01.svg#EngraversOldEnglishMTW01') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: 'Libre Baskerville', serif;
    cursor: url(../img/cursor.png) , default !important;
}

body {
    background: #121214;
}


#loading {
    background-size: 34px;  
    background: #121214 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: #fff;
}

#mobile {
    display: none;
}

#kills {
    width: 320px;
    height: auto;
    display: block;
    margin: 0px auto;
}

#info {
    width: auto;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) scale(1,0);    
    text-align: center;
    color: #e4999b;
    animation: revealtext 1s forwards;
}

#info span {
    display: block;
    margin: 0 auto;
}

#info .small {
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-style: italic;
    color: #b1dbd2;
}

#info .medium {
    font-size: 1.8rem;
    font-style: italic;
    margin-top: 10px;
}

#info .big {
    font-size: 3rem;
    font-style: italic;
}

#info .verybig {
    font-size: 5rem;
    font-style: italic;
    color: #b1dbd2;
}

#info .verybig.gothic {
    font-family: 'EngraversOldEnglishMTW01';
    font-style: normal;
}

.textbox {
    display: block;
    margin: 60px auto 0px auto;
    width: 720px;
    text-align: center;
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 2rem;
    color: #b1dbd2;
}

#cards {
    position: fixed;
    display: flex;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 50vh;
    animation: reveal 1s forwards;
}

@keyframes reveal {
    0% {width: 0px}
    100% {width: 72vh}
}

@keyframes revealtext {
    0% {transform: translateX(-50%) scale(1,0)}
    100% {transform: translateX(-50%) scale(1,1)}
}


@media (min-width: 800px) and (max-width: 1200px) {
    #info {
        top: 0px;
    }
    @keyframes revealtext {
        0% {transform: translateX(-50%) scale(0.8,0)}
        100% {transform: translateX(-50%) scale(0.8,0.8)}
    }    
}

h1 {
    text-align: center;
    font-size: 5rem;
    font-family: 'EngraversOldEnglishMTW01';
    text-decoration: underline;
    margin: 0px auto 100px auto;
    color: #e5261a;
    font-weight: normal;
    display: block;
}

.main {
    font-size: 1.5rem;
    line-height: 1.8rem;
    text-align: center;
    margin: 0px auto 70px auto;
    color: #e5261a;
    display: block;
}

.sub {
    display: block;
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: center;
    margin: 0px auto 20px auto;
    color: #e5261a;color: #e5261a;
}

.subsub {
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: center;
    font-style: italic;
    margin: 0px auto 0px auto;
    color: #e5261a;
    display: block;
}

.sub a, .sub  a:hover {
    color: #e5261a;
    text-decoration: underline;
}

.sub a:hover {
    color: #1a1a1a;
}

.sub, .subsub {
    max-width: 90%;
}

#cards a {
    flex: 1;
    margin: 20px;
    cursor: url(../img/pointer.png) , default !important;
}

#cards a img {
    height: calc(50vh - 40px);
}

#cards a.card1 {
    background: url("../img/nyc2.jpg");
    background-size: cover;
    background-position: 50% 50%;
}

#cards a.card2 {
    background: url("../img/la2.jpg");
    background-size: cover;
    background-position: 50% 50%;
}

#cards a.card1 img, #cards a.card2 img {
    display: block;
    width: 100%;
}

#cards a.card1:hover img, #cards a.card2:hover img {
    display: none;
}

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

.close {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px 13px 20px;
    color: #fff;
    background: #e5261a;
    -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: 3rem;
    text-align: center;
    margin: 50px auto;
    color: #fff;
    text-transform: uppercase;
    max-width: 400px;
}

.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: 'Libre Baskerville', 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;
    margin: 40px auto;
    max-width: 500px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

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

.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;
    bottom: 30px;
    right: 30px;
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
    font-family: 'Libre Baskerville';
    font-weight: bold;
    z-index: 4;
    transition: 0.3s;
}

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

#socials {
    position: fixed;
    display: table;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;    
}

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

#socials a:hover {
    opacity: 1;
}

h4 {
    font-size: 17px;
    line-height: 35px;
    display: block;
    margin: 0px auto 50px auto;
    text-align: center;
    font-weight: normal;
    width: auto;
    text-transform: uppercase;
    font-family: 'Libre Baskerville', serif;
}

.signup-link {
    position: fixed;
    padding: 15px;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.5;
    font-size: 15px;
    font-family: 'Libre Baskerville';
    font-weight: bold;
    z-index: 4;
    transition: 0.3s;
}

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

.vid-wrap {
    width: 800px;
    display: block;
    margin: 80px auto 0px auto;
}

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
    overflow: scroll;
  background: #121214;  
color: #e5261a;
}

#signupform {
	color: #fff;
	margin: 0px auto;
	font-weight: normal;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	z-index: 4;
    position: relative;
    margin: 0px auto;
    padding: 80px 0px 50px 0px;
}


.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) {
    
    html, body {
        overflow-y: auto;
    }
	
	#desktop {
		display: none;
	}	
    
    #mobile {
        display: block;
    }
    
    .privacy-container {
        width: 100%;
    }

    h1 {
        font-size: 3rem;
        line-height: 3.3rem;
        margin-bottom: 50px;
    }
    
    .main {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin-bottom: 40px;
    }
    
    .sub {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }
    
    .subsub {
        font-size: 0.7rem;
    }
    
    #socials {
        top: 20px;
    }
    
    .signup-link {
        bottom: auto;
        top: 40px;
    }
    
    .vid-wrap {
        width: 90%;
    }
#cards {
    position: relative;
    display: flex;
    margin:60px auto 20px auto;
    width: 100%;
    height: auto;
    animation: none;
    transform: none;
    left: auto;
    bottom: auto;
}    
    
    #cards a img, #cards a.card1 img, #cards a.card2 img, #cards a.card1, #cards a.card2 {
            height: calc(45vw) !important;
    width: 31.95vw !important;
        flex: 0;
    }   
    
    #cards a.card1:hover img, #cards a.card2:hover img {
    display: block;
}    
    
    #cards a.card1 {
        margin-left: 13vw;
    }
        
    
   .center h1 {
        font-size: 1.5rem;
    }
    
    .center h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .center .button img {
        width: 200px;
    }
    
    .center {
        width: 90%;
        top: auto;
        left: 5%;
        -webkit-transform: none;
        transform: none;
    }
    
    
    
 #info {
        margin-top: 0px;
        margin-bottom: 20px;
        transform: translateX(-50%);
        animation: none;
     width: 100%;
     position: relative;
    }
    
    #info .verybig {
        font-size: 10vw;
    }
    

#info .medium {
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 0px;
}    
    
    #kills {
        width: 70%;
    }   
    
    .textbox {
    display: block;
    margin: 20px auto 0px auto;
    width: 80%;
    text-align: left;
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 0px;
    line-height: 1.8rem;

}

}


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

}


@media (min-width: 800px) and (min-aspect-ratio: 3/2.3), (min-width:800px) and (min-aspect-ratio: 1/1){
        @keyframes revealtext {
        0% {transform: translateX(-50%) scale(0.8,0)}
        100% {transform: translateX(-50%) scale(0.8,0.8)}
    }
    #cards {
        transform: scale(0.8) translateX(-60%);
        bottom: -20px;
    }
    
}


@media (min-width: 800px) and (max-height: 650px){
        @keyframes revealtext {
        0% {transform: translateX(-50%) scale(0.7,0)}
        100% {transform: translateX(-50%) scale(0.7,0.7)}
    }
    #info {
        top: -20px;
    }
    #cards {
        transform: scale(0.8) translateX(-60%);
        bottom: -20px;
    }
    
}



@media (min-width: 800px) and (max-height: 600px){
    #info {
        top: -40px;
    }    
        @keyframes revealtext {
        0% {transform: translateX(-50%) scale(0.5,0)}
        100% {transform: translateX(-50%) scale(0.5,0.5)}
    }
    #cards {
        transform: scale(0.8) translateX(-60%);
        bottom: -20px;
    }
    
}