@charset "utf-8";
/* CSS Document */


* {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	
	font-family: rival-sans-narrow, sans-serif;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.5px;
	
	color: #777777;
	background-color: #000;
}

div {
	display: block;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

a:hover {
	cursor: pointer;
}

a.cta_button {
	display: block;
	text-align: center;
	padding: 10px;
	border-radius: 4px;
	color: var(--second_text_color);
	border: 2px solid var(--second_text_color);
}




p {
	line-height: 25px;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.inner {
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}











.vfx {
	opacity: 0.0;
	transform: translate(0px, 50px);
	
	-webkit-transition: transform 1500ms ease-in-out 500ms,
				opacity 1500ms ease-in-out 500ms;
	transition: transform 1500ms ease-in-out 500ms,
				opacity 1500ms ease-in-out 500ms;
}
.vin {		
	opacity: 1.0;
	transform: translate(0px, 0px);
}



#title {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}

#title video {
	position: absolute;
}

.standard #title video {
	min-width: 50%;
	min-height: 50%;
	width: 60vw;
	height: 60vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}
.mobile #title video {
	width: 97vw;
	height: 90vh;
	top: 0;
	left: 1vw;
}




#title .title_overlay {
	background-position: center;
	background-size: contain;
}


.standard .title_overlay {
	min-width: 50%;
	min-height: 50%;
	width: 61vw;
	height: 61vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-image: url(../sources/title_landscape.svg);
}
.mobile .title_overlay {
	width: 100vw;
    height: 90vh;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-size: contain;
	background-image: url(../sources/title_portrait.svg);
}



a.mail {
	display: block;
	position: fixed;
	
	
	padding: 7px 0 0 0;
	
	width: 40px;
	height: 40px;
	
	color: #FFF;
	text-align: center;
	border-radius: 50%;
	
	background-color: #222;
	background-position: center;
	background-size: cover;
}


.standard a.mail {
	left: calc(50% - 20px);
	
}

.mobile a.mail {
	right: 26px;
	bottom: 30px;
	
}




