html{
	height: 100vh;
	width: 100%;
}

body{
	width: 100%;
	height: 100%;
	position: absolute;
	padding: 0;
	margin: 0;
	font-family: "Helvetica Neue", helvetica, arial, sans-serif; 
	background-color: #c6c6c6;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
}

.pano{
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: 10;
}

/** FONT SIZES **/

.overlay p, .overlay h2{
	font-size: 38px;
	line-height: 46px;
}

.navigation ul li, li.menuconnect{
	font-size: 45px;
}

.overlay p{
	font-size: 68px;
	line-height: 75px;
}

.overlay h2{
	font-size: 80px;
	line-height: 75px;
}




/** GENERAL STYLES **/

.content{
	z-index: 20;
	color: white;
	position: relative;
	pointer-events: none;
	height: 100%;
}

.pano .logo{
	position: absolute;
	top: 0px;
	left: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
	width: 100%;
	font-size: 100px;
	color: white;
	/*mix-blend-mode: exclusion;*/
	pointer-events: none;
}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: .3;}
}

.pano .logo img{
	opacity: 0;
	display: block;
	width: 220px;
	pointer-events: none;
	-webkit-transition: opacity .1s;
	transition: opacity .1s;
	user-select: none;  
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	animation: fadein 1s forwards;
	animation-delay: 1s;
}

.pano .logo:hover img{
	opacity: 0;
}

.navigation{
	width: 100%;
	position: absolute;
	bottom: 0px;
	height: 60px;
}

.navigation ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.navigation ul li, li.menuconnect{
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	font-weight: 300;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	pointer-events: all;
	margin: 0px 25px;
	cursor: pointer;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

li.menuconnect{
	position: absolute;
	right: 25px;
	top: 0px;
	list-style: none;
	margin-right: 0px;
}

.navigation ul li:hover, li.menuconnect:hover{
	opacity: 0.6;
}

/* STRIKE THROUGH ANIMATION */
/*
.navigation ul li span{
	position: relative;
	display: block;
	cursor: pointer;
}
.navigation ul li span:before, span:after {
	content: '';
	position: absolute;
	width: 0%;
	height: 3px;
	top: 50%;
	margin-top: -0.5px;
	background: #fff;
}
.navigation ul li span:before {
	left: -2.5px;
}
.navigation ul li span:after {
	right: 2.5px;
	background: #fff;
	transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navigation ul li span:hover:before {
	background: #fff;
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.navigation ul li span:hover:after {
	background: transparent;
	width: 100%;
	transition: 0s;
}

.givemespace{
	margin-left: 150px;
}
*/

/** IMPRINT **/

.imprint{
	position: absolute;
	left: -150px;
	top: calc(50% - 20px);
	width: 350px;
	-webkit-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	text-align: center;
	text-align: center;
	font-size: 13px;
	letter-spacing: 1px;
	opacity: 0.7;
	pointer-events: all;
	-webkit-transition: opacity .5s;
	transition: opacity .5s;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;  
}

.imprint:hover{
	opacity: 1;
}

.imprint a{
	color: white;
	text-decoration: none;
}


/** OVERLAY STYLES **/

.overlay{
	pointer-events: all;
	background: rgba(0, 0, 0, 0.3);
	z-index: 90;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 80px;
	overflow-y: scroll; 
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	-webkit-transition-delay: .0s;
	        transition-delay: .0s;
}

.overlay .closebtn{
	position: absolute;
	cursor: pointer;
	top: 18px;
	right: 51px;
	color: white;
	font-size: 90px;
	font-weight: 300;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.overlay .closebtn:hover{
	opacity: .6;
}

.overlay p, .overlay h2{
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 300;
}

.overlay a{
	color: #ffffff;
	text-decoration: none;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

.overlay a:hover{
	opacity: .6;
}

.overlay.show{
	visibility: visible;
	opacity: 1;
}

.overlay h2{
	margin-bottom: 40px;
	margin-top: 90px;
	text-transform: uppercase;
}

.overlay h2:first-child{
	margin-bottom: 40px;
	margin-top: -35px;
	text-transform: uppercase;
}

.overlay h2 b{
	font-weight: 400;
}

.contentconnect i.gimmespace{
	margin-right: 20px;
}

.pano, .content{
	-webkit-transition: -webkit-filter .6s;
	transition: -webkit-filter .6s;
	transition: filter .6s;
	transition: filter .6s, -webkit-filter .6s;
}

.pano.blurred, .content.blurred{
	filter: blur(15px);
	-webkit-filter: blur(15px);

}
.contentimprint, .contentunified, .contentnotion, .contentagency, .contentconnect{
	display: none;
	-webkit-hyphens: auto;
	    -ms-hyphens: auto;
	        hyphens: auto;
}

/** MAILCHIMP TWEWAK **/

#mc_embed_signup{
	background: transparent;
}

#mc_embed_signup form{
	padding: 0
}

#mc_embed_signup .mc-field-group input{
	width: 50%;
	height: 45px;
	font-size: 40px;
	font-weight: 300;
	font-family: "Helvetica Neue", helvetica, arial, sans-serif; 
	
}

#mc_embed_signup .mc-field-group label{
	display: none;
}

#mc_embed_signup .mc-field-group{
	padding-bottom: 20px;
}

#mc_embed_signup .button{
	border-radius: 0px;
	font-size: 40px;
	font-family: "Helvetica Neue", helvetica, arial, sans-serif; 
	font-weight: 300;
	height: 55px;
	background-color: #505050;
	border: 0px;
	color: white;
	margin-bottom: 20px;
}

textarea, select, input, button { outline: none; border: 0px;}
