/* CSS Document */
html, body {
	background-position:center;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height:100vh;
	/*min-height:100%;*/
	max-width: 100vw;
	position:relative;
	/*overflow-x: hidden;*/
	overflow:hidden;
	font-family: "AdobeMyungjoStdM", Times;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-o-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-size: 1em;
}

#preloader{
	width: 100vw;
	height: 0vh;
	position: absolute;
	bottom: calc(50% - 2.5em);
	background-color: white;
	z-index: 2;
	}
#preloader_logo_black{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	height: 5em;
	transform: translate(-50%,-50%);
}
#preloader_logo_outline{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	height: 5em;
	transform: translate(-50%,-50%);
}

#main{
	height: 100%;
	width: 100vw;
	margin: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	position: fixed;
	/*-webkit-overflow-scrolling: touch;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;*/
	display: none;
	z-index: 80;
}

.footer{
	height: 2rem;
}

#footer{
	position: relative;
	left: 1rem;
	bottom: 1rem;
	text-align: left;
	height: 2rem;
}

.details_imgs{
	position: relative;
	width: calc(100% - 2rem);
	height: auto;
	margin: 1rem;
	flex: 0 0 auto;
}

.content_sequencer{
	position: relative;
	width: calc(100% - 2rem);
	height: auto;
	margin: 1rem;
	flex: 0 0 auto;
	/*background-color: red;*/
}

.content_sequencer_small{
	position: relative;
	width: calc(100% - 2rem);
	height: auto;
	margin: 1rem;
	flex: 0 0 auto;
	/*background-color: red;*/
}


.content_sequencer_big{
	position: relative;
	width: calc(100% - 2rem);
	height: auto;
	margin: 1rem;
	flex: 0 0 auto;
	/*background-color: red;*/
}

@media only screen and (min-width : 500px){
	.details_imgs{
		position: relative;
		width: calc(100% - 2rem);
		height: auto;
		margin: 1rem;
		flex: 0 0 auto;
	}
	.content_sequencer{
		position: relative;
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		max-width: calc(86vh * 0.888);
		max-height: 86vh;
		margin: 1rem;
		flex: 0 0 auto;
		/*background-color: red;*/
	}

	.content_sequencer_small{
		position: relative;
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		max-width: calc(70vh * 0.888);
		max-height: 70vh;
		margin: 1rem;
		flex: 0 0 auto;
		/*background-color: red;*/
	}


	.content_sequencer_big{
		position: relative;
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		max-width: calc(120vh * 0.888);
		max-height: 120vh;
		margin: 1rem;
		flex: 0 0 auto;
		/*background-color: red;*/
	}
}

.details{
	position: relative;
	height: auto;
	width: 100%;
}

.sequencer{
	position: relative;
	height: auto;
	width: 100%;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000;
}

.sequencer_small{
	position: relative;
	height: auto;
	width: 100%;
}


.sequencer_big{
	position: relative;
	height: auto;
	width: 100%;
}



#mouse_icon{
	display: none;
}

@media only screen and (min-width : 800px){
	#mouse_icon{
		position: absolute;
		bottom: 1rem;
		/*left: 50%;
		transform: translate(-50%,0%);*/
		right: 1.5rem;
		fill:#fff;
		animation: bounce 3s infinite;
		-webkit-animation: bounce 3s infinite;
		-moz-animation: bounce 3s infinite;
		-o-animation: bounce 3s infinite;
		display: block;
	}
	@-webkit-keyframes bounce {
		0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
		40% {-webkit-transform: translateY(-10px);}
		60% {-webkit-transform: translateY(-5px);}
	}
	@-moz-keyframes bounce {
		0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
		40% {-moz-transform: translateY(-10px);}
		60% {-moz-transform: translateY(-5px);}
	}
	@-o-keyframes bounce {
		0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
		40% {-o-transform: translateY(-10px);}
		60% {-o-transform: translateY(-5px);}
	}
	@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
		40% {transform: translateY(-10px);}
		60% {transform: translateY(-5px);}
	}
}

#stages{
	/*-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0,0,0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translate3d(0,0,0);
	transform: translateZ(0);*/
	
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transition: 0.5s;
	min-height: calc(100% - 0rem);
	margin-bottom: -2rem;
	overflow-x: hidden;
}

#stages.blur{
	-webkit-filter: blur(15px);
	filter: blur(15px);
}

#menu_address{
	position: absolute;
	right: 5rem;
	top: 0.8rem;
	z-index: 101;
	display: none;
}
@media only screen and (min-width : 800px){
	#menu_address{
		display: block;
	}
}

#hamburger{
	position: fixed;
	right: 1rem;
	top: 0.6rem;
	z-index: 2000;
	cursor: pointer;
	display: none;
}
.bar1, .bar2 {
    width: 30px;
    height: 1px;
    background-color: #000;
    margin: 12px 0;
	-webkit-transform: rotate(-0.01deg);
    transform: rotate(-0.01deg);
    transition: 0.4s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 4.5px);
    transform: rotate(-45deg) translate(-4px, 4.5px);
}
.change .bar2 {
    -webkit-transform: rotate(45deg) translate(-4px, -5px);
    transform: rotate(45deg) translate(-4px, -5px);
}
#menu{
	width: calc(100vw - 2rem);
	position: fixed;
	text-align: left;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	display: none;
	/*background-color: #fff;*/
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 101;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 1rem 1rem 1rem 1rem;
	opacity: 0;
}

#menu a{
	text-decoration: none;
	color: black;
}

#menu a:hover{
	color:#666;
}

#text_logo_desktop a{
	text-decoration: none;
	color: black;
}

#text_logo_desktop a:hover{
	color:#000;
}

#text_logo_mobile a{
	text-decoration: none;
	color: black;
}

#text_logo_mobile a:hover{
	color:#000;
}

#menu_content{
	width: calc(100% - 2rem);
	position: relative;
	/*font-size: 1.6rem;
	line-height: 2.3rem;*/
	font-size: calc(1rem + 3.5vw);
	line-height: calc(1rem + 3.5vw);
	text-transform: uppercase;
}
#menu_social{
	position: absolute;
	bottom: 1rem;
	font-size: 0.8rem;
	line-height: 1.3rem;
}



.an{
	transform: translateY(0);
	-webkit-transition: transform 0.6s;
	-moz-transition: transform 0.6s;
	transition: transform 0.6s;
}

.an.off-canvas { transform: translateY(-7rem); }

.an.fixed {
  transform: translateY(0);
}


#text_logo_desktop{
	left: 1rem;
	top: 1rem;
	position: fixed;
	text-align: left;
	font-size: calc(0.5rem + 3.5vw);
	line-height: calc(0.5rem + 3.5vw);
	display: none;
}
#text_logo_mobile{
	left: 1rem;
	top: 1rem;
	position: relative;
	text-align: left;
	font-size: calc(1rem + 3.5vw);
	line-height: calc(1rem + 3.5vw);
	display: block;
}

.date{
	left: 1rem;
	width: calc(100% - 2rem);
	position: relative;
	margin-bottom: calc(0.5rem + 3.5vw * 0.5);
	text-align: left;
	font-size: calc(1rem + 0.5vw);
	line-height: calc(1rem + 0.5vw);
}

.headline{
	left: 1rem;
	width: calc(100% - 2rem);
	position: relative;
	text-align: left;
	font-size: calc(0.5rem + 3.5vw);
	line-height: calc(0.5rem + 3.8vw);
}

.mag_logos_imgs{
	left: 1rem;
	position: relative;
	margin: calc(0.5rem + 3.5vw  * 0.7) 0rem calc(1rem + 3.5vw * 1.3) 0rem;
	width: calc(100% - 2rem);
}
.mag_logos{
	height: calc(1rem + 3.5vw * 0.7);
	width: auto;
	max-width: 100%;
}

@media only screen and (min-width : 500px){
	#text_logo_desktop{
		display: block;
	}
	#text_logo_mobile{
		display: none;
	}
	#menu_content{
		width: calc(100% - 2rem);
		position: relative;
		/*font-size: 1.6rem;
		line-height: 2.3rem;*/
		font-size: calc(0.5rem + 3.5vw);
		line-height: calc(0.5rem + 3.5vw);
		text-transform: uppercase;
	}
}

.text_logo{
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transition: 0.5s;
}
.text_logo.blur{
	-webkit-filter: blur(15px);
	filter: blur(15px);
}

#multiply{
	padding: calc(0.2rem + 0.3vw) 0rem 0rem calc(0.2rem + 0.3vw);
	width: calc(0.7rem + 3vw);
	height: auto;
}

.text_large_left{
	margin: 0rem 1rem 1rem 1rem;
	position: relative;
	text-align: left;
	font-size: calc(1rem + 0.4vw);
	line-height: calc(1.2rem + 0.48vw);
	text-transform: uppercase;
	flex: 1 1 1px;
}

.text_large_right{
	margin: 0rem 1rem 1rem 1rem;
	position: relative;
	text-align: right;
	font-size: calc(1rem + 0.4vw);
	line-height: calc(1.2rem + 0.48vw);
	text-transform: uppercase;
	flex: 1 1 1px;
}

#stage_text{
	width: calc(100% - 2rem);
	margin: 0rem 1rem 0rem 1rem;
	background-color: #fff;
	color: #000;
	position: relative;
	text-rendering: optimizeLegibility;
	text-align: left;
	font-size: calc(1rem + 0.4vw);
	line-height: calc(1.2rem + 0.48vw);
	max-width: 70rem;
}


@media only screen and (min-width : 1921px){
	#text_logo_desktop, #text_logo_mobile, #menu_content{
		font-size: 75.2px;
		line-height: 75.2px;
	}
	#multiply{
		padding: 9px 0rem 0rem 9px;
		width: 69px;
	}
	.text_large_left, .text_large_right, #stage_text{
		font-size: 24px;
		line-height: 29px;
	}
	.headline{
		font-size: 75.2px;
		line-height: 81px;
	}
	.date{
		font-size: 25.6px;
		line-height: 25.6px;
		margin-bottom: 41.6px;
	}
	.mag_logos{
		height: 63.0312px;
	}
	.mag_logos_imgs{
		margin: 55.04px 0px 103.36px 0px;
	}
}

#logo, #logo_outline{
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 6rem;
}

.light{
	font-family:  "AdobeMyungjoStdM", Times;
}


a{
	/*text-decoration: none;*/
	color: #000;
	text-decoration-thickness: calc(1px + 0vw);
	text-underline-offset: calc(1px + 0.1vw);
	cursor: pointer;
}

a:hover{
	color:#444;
}

.headline a{
	text-decoration-thickness: calc(1px + 0.08vw);
	text-underline-offset: calc(1px + 0.1vw);
}

.white{
	color: white;
}
.black{
	color: black;
}

h1, h2, h3, h4, h5, h6 { /*reset for mobile browsers */
	font-weight: normal;
	text-transform: uppercase;
}

h1{
	margin: 0px;
	font-size: 1.7em;
	line-height: 1.1em;
	padding: 0px;
	margin-bottom: 0.7em;
}

h2{
	margin: 0px;
	font-size: 2em;
	line-height: 0.9em;
	padding: 0px;
	margin-bottom: 0.7em;
}


/*content*/


.flexing{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.flexing_reversed{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: flex-end;
}

#top_spacer{
	width: 0%;
	height: 0rem;
}

.stage{
	width: 100vw;
	min-height: 10vh;
	background-color: #fff;
	color:  #000;
	text-align: left;
	position: relative;
	left: 0;
	margin-top: 4rem;
}
@media only screen and (min-width : 500px){
	.stage{
		width: 70vw;
		min-height: 10vh;
		max-width: calc(100vh * 1.6);
		min-width: 40vw;
		left: min(30vw, 576px);
		margin-top: 5rem;
	}
	#top_spacer{
		width: 100%;
		height: 7rem;
	}
	#stages{
		min-height: calc(100% - 7rem);
		margin-bottom: -2rem;
	}
}

/*black bakground*/

#stage_black{
	width: 100vw;
	min-height: 100vh;
	background-color: #000;
	background-color: rgba(0, 0, 0, 1);
	color: #fff;
	text-align: left;
	position: relative;
	font-size: 1em;
	display: flex;
	flex-direction: column;
	text-rendering: optimizeLegibility;
}

.text{
	position: relative;
	max-width: calc(75vh * 0.888);
	min-width: 12rem;
	line-height: 1.2em;
	margin: 1rem 1rem 3rem 1rem;
	flex: 1 1 1px;
}


.black_link{
	color: #000;
}



/* Webfont: AdobeMyungjoStd-Medium */@font-face {
    font-family: 'AdobeMyungjoStdM';
    src: url('../webfonts/AdobeMyungjoStd-Medium.eot'); /* IE9 Compat Modes */
    src: url('../webfonts/AdobeMyungjoStd-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../webfonts/AdobeMyungjoStd-Medium.woff') format('woff'), /* Modern Browsers */
         url('../webfonts/AdobeMyungjoStd-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../webfonts/AdobeMyungjoStd-Medium.svg#AdobeMyungjoStd-Medium') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
	font-display: swap;
    text-rendering: optimizeLegibility;
}