/** LOADING **/
.loadingCover{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index: 10;
	opacity: 1;
	transition: opacity 2s;
}
.loadingCover:after{
	width: 40px;
	height: 40px;
	border: 6px solid rgba(0, 0, 0, 0.8);
	border-top: 6px solid #FABE00;
	border-radius: 50%;	
	z-index: 15;
	content: '';
	animation: spin 1s infinite linear;
}
@keyframes spin {
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}





/** HEADER **/
header{
	z-index: 100;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100px;
	overflow: hidden;
	background: rgba(255,255,255,0.0);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	user-select: none;
	-webkit-user-select: none;
}
#header{
	display: flex;
	flex-wrap: wrap;
}

#logo{
	display: flex;
	align-items: center;
	height: 100px;
	margin-right: auto;
}

nav{
	display: flex;
	align-items: center;
	height: 100px;
	margin-left: auto;
}
nav a{
	margin: 0px 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 12pt;
	letter-spacing: 1.25px;
	text-transform: uppercase;
	color: #333;
	transition: color 0.3s;
}
nav a:first-of-type{
	margin-left: 0px;
}
nav a:last-of-type{
	margin-right: 0px;
}
nav a.active{
	color: #FABE00;
}
@media (hover: hover){
	nav a:hover,
	nav a:focus,
	nav a:active{
		color: #FABE00;
	}
}


#navToggle{
	display: none;
	align-items: center;
	height: 100px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
#navToggle span,
#navToggle span:before,
#navToggle span:after{
	content: '';
	display: block;
	width: 25px;
	height: 5px;
	margin: 0px;
	background: #333;
}
#navToggle span{
	position: relative;
	transition-property: background;
	transition-duration: 0s;
	transition-delay: 0.125s;
}
#navToggle span:before,
#navToggle span:after{
	position: absolute;
	transition-property: margin, transform;
	transition-duration: 0.125s;
	transition-delay: 0.125s, 0s;
}
#navToggle span:before{
	margin-top: -10px;
}
#navToggle span:after{
	margin-top: 10px;
}

#navToggle.open span{
	background: rgba(0,0,0,0);
}
#navToggle.open span:before{
	margin-top: 0px;
	transform: rotate(45deg);
	transition-delay: 0s, 0.125s;
}
#navToggle.open span:after{
	margin-top: 0px;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.125s;
}

@media (max-width: 1000px){
	header{
		background: rgba(255,255,255,0.7)	!important;
		backdrop-filter: blur(10px)			!important;
		-webkit-backdrop-filter: blur(10px)	!important;
	}
	header.open{
		height: auto 						!important;
	}
	nav{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: auto 						!important;
		margin: 10px 0px 					!important;
		padding: 0px 						!important;
		border: 0px 						!important;
	}
	nav a{
		margin: 10px 0px;
	}
	#navToggle{
		display: flex;
	}
}





/** FOOTER **/
footer{
	width: 100%;
	padding: 40px 0px;
	background: #2A2A2A;
}
#footer{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#subscribe p{
	margin: 20px 0px;
}
#subscribe input{
	width: 300px;
}
#subscribeFeedback{
	color: #FABE00;
}


#social, #social p{
	text-align: right;
}
#social img{
	width: 165px;
	margin-bottom: 20px;
}

#socialIcons{
	margin-top: 20px;
}
#socialIcons a{ 
	display: inline-block;
	width: 40px;
	height: 40px;
	font-style: normal;
	font-size: 20px;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	color: #DDD;
	transition: background-color 0.3s;
}

@media (max-width: 900px){
	#subscribe{
		width: 100%;
		margin-bottom: 50px;
		text-align: center;
	}
	#subscribe p{
		text-align: center;
		font-size: 12px;
	}
	#subscribe input{
		width: 250px;
		margin-bottom: 20px;
	}

	#social, #social p{
		width: 100%;
		text-align: center;
	}
}





/** MAIN LAYOUT **/
.sectionHeader{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}
.sectionHeaderWrapper{
	text-align: center;
}

.sectionHeader img{
	height: 50px;
}
.sectionHeader h1{
	padding-bottom: 5px;
	border-bottom: 2px solid #FABE00;
}
.sectionHeader h2{
	padding-top: 5px;
	text-align: center;
}
.sectionHeader p{
	padding-top: 5px;
	text-align: center;
}

.description{
	max-width: 650px;
	margin: auto;
}





/** SPLASH **/
#splash{
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}
.scrollContainer{
	position: relative;
	width: 100%;
	height: 100%;
	will-change: contents;
}
.scrollContainer > div{
	position: absolute;
	width: 100%;
	height: 100%;
	user-select: none;
	-webkit-user-select: none;
}
.scrollContainer > div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

#splashTagline{
	padding: 30vh 20px 0px;
	text-shadow: 0px 0px 10px #111;
}
#splashTagline h1{
	font-size: 72px;
	color: #FFF;
}
#splashTagline h2{
	font-size: 25px;
	color: #FFF;
}

#splashVideo{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 12vh;
}
#splashVideo div{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px 50px;
}
#splashVideo a{
	position: relative;
	width: 350px;
	height: 200px;
	border-radius: 10px;
	border: 3px solid #222;
	overflow: hidden;
}
#splashVideo h2{
	margin-top: 12px !important;
	color: #FFF;
	text-shadow: 0px 0px 5px #111;
}
#splashVideo span{
	position: absolute;
	top: calc(50% - 35px);
	left: calc(50% - 35px);
	width: 70px;
	height: 70px;
	padding: 19px 0px 0px 24px;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
	font-size: 32px;
	color: #FABE00;
	z-index: 5;
	transition: all 0.3s;
}
#splashVideo img{
	position: absolute;
	width: 105%;
	height: 105%;
	object-fit: cover;
	transition: all 0.3s;
}
#splashVideo a:hover span{
	background: rgba(0,0,0,0.9);
}
#splashVideo a:hover img{
	transform: scale(1.05);
}

@media (max-width: 900px){
	#splashTagline{
		padding: 20vh 20px 0px;
	}
	#splashTagline h1{
		font-size: 48px;
	}
	#splashTagline h2{
		font-size: 22px;
	}
	#splashVideo{
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		padding-bottom: 5vh;
	}
	#splashVideo div{
		padding: 10px 0px;
	}
}
@media (max-width: 600px){
	#splashTagline h1{
		font-size: 32px;
	}
	#splashTagline h2{
		font-size: 20px;
	}
	#splashVideo a{
		width: 280px;
		height: 160px;
	}
}





/** DOWNLOAD **/
#download{
	background:	linear-gradient(
					rgba(0,0,0,0.75),
					rgba(0,0,0,0.75)
				),
				url(../images/backgrounds/download.jpg) no-repeat center / cover;
}

#download .platform{
	display: flex;
	flex-direction: column;
	align-items: center;
}
#download .platform > div{
	gap: 20px;
}
#download .platform > img{
	width: 100%;
	max-width: 700px;
	margin-bottom: -10%;
}
#download .platform a img{
	width: 165px;
	border-radius: 10px;
	border: 3px solid #888;
	opacity: 0.8;
	transition: border 0.3s;
}
#download .platform a img:hover{
	border-color: #FABE00;
}
#download .platform h2{
	margin-bottom: 20px;
	color: #FABE00;
	text-align: center;
}
#download .platform p{
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 900px){
	#download #platforms{
		grid-template-columns: 1fr;
	}
}





/** EXPLORE **/
#explore{
	background: linear-gradient(
					rgba(235,235,235, 1.0) 10%,
					rgba(235,235,235, 1.0) 40%,
					rgba(220,220,220, 0.7) 60%
				),
				url(../images/backgrounds/explore.jpg) repeat;
}


/** LOCATIONS **/
#locationsHead{
	grid-template-columns: 40fr 60fr;
	max-width: 1100px;
	margin: auto;
	padding: 0px 25px;
}
#locationsHead > video{
	width: 100%;
	max-width: 450px;
	margin: auto;
	border: 4px solid #FFF0E0;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
#locationsHead > div{
	margin: auto;
}

#locations #gallery{
	margin: 100px 0px;
	padding: 0px 20px;
	gap: 10px;
}
#locations .location{
	position: relative;
	border: 4px solid #FFF0E0;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
	overflow: hidden;
}
#locations .location img{
	display: block;
	width: 100%;
	transition: transform 0.3s;
}
#locations .location:hover img{
	transform: scale(1.05);
}
#locations .location div{
	position: absolute;
	bottom: -200px;
	left: 0px;
	width: 100%;
	padding: 10px;
	text-align: center;
	background: rgba(0,0,0,0.5);
	transition: bottom 0.3s;
}
#locations .location:hover div{
	bottom: 0px;
}
#locations .location h2{
	color: #FABE00;
}
#locations .location p{
	color: #EEE;
	text-align: center;
}

@media (max-width: 1200px){
	#locations #gallery{
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 900px){
	#locationsHead{
		grid-template-columns: 1fr;
	}
	#locationsHead > video{
		order: 2;
	}
	#locationsHead > div{
		order: 1;
	}
}
@media (max-width: 600px){
	#locations #gallery{
		grid-template-columns: 1fr 1fr;
	}
	#locations .location:nth-child(n+15){
		display: none;
	}
}


/** HOLOPHOTOGRAPHY **/
#holophotography #figures{
	grid-template-columns: 1fr 1fr;
	gap: 0px;
	max-width: 1400px;
	margin: auto;
	margin-top: 60px;
	text-align: center;
}

#holophotography .figure{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align-last: center;
}
#holophotography .figure video, #holophotography .figure img{
	width: 100%;
	max-width: 500px;
}
#holophotography .figure h2{
	margin: 25px 0px 10px;
}
#holophotography .figure p{
	width: 60%;
	margin: 10px 0px;
}
#holophotography .figure img{
	height: 40px;
}

#holophotography_ar video{
	clip-path: polygon(50% 4.5%,  97.5% 27.5%,  97% 71.5%,  50% 96%,  3% 71.5%,  2.5% 27.5%);
}

#holophotography #pitch{
	margin: 100px auto 0px;
	max-width: 1500px;
}
#holophotography #pitch .card{
	display: flex;
	align-items: center;
}
#holophotography #pitch img{
	width: 80px;
	height: 80px;
	margin-right: 20px;
	opacity: 0.8;
}

@media (max-width: 1200px){
	#holophotography #figures{
		grid-template-columns: 1fr;
		gap: 40px;
	}
	#holophotography_ar, #holophotography_vr{
		padding-top: 0px;
	}
	#holophotography_ar{
		order: 1;
	}
	#holophotography_vr{
		order: 2;
	}

	#holophotography #pitch{
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px){
	#holophotography #pitch{
		grid-template-columns: 1fr;
	}
	#holophotography #pitch img{
		width: 60px;
		height: 60px;
	}
}





/** ABOUT **/
#about{
	background: linear-gradient(
					rgba(20,20,20,0.8) 0%,
					rgba(20,20,20,0.8) 50%,
					rgba(20,20,20,1.0) 100%
				),
				url(../images/backgrounds/about.jpg) no-repeat center / cover;
}

#about .sectionContent{
		gap: 80px;
}
#about .sectionContent h2{
	margin-bottom: 10px;
	color: #FABE00;
}

#about .aboutPortrait{
	width: 100%;
	margin: auto;
}
#about .aboutText img{
	width: 50px;
	margin-bottom: 10px;
}

#about .card{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}
#about .card .quote{
	position: relative;
	padding: 0px 40px;
}
#about .card .quote p{
	color: #CCC;
	font-style: italic;
	text-align-last: center;
}

#about .card .quote img{
	position: absolute;
	top: 0px;
	height: 20px;
}
#about .card .quote img:first-of-type{
	transform: scale(-1);
	left: 0px;
}
#about .card .quote img:last-of-type{
	right: 0px;
}

#about .card .quoteLogo{
	width: 100%;
	height: 50px;
	border-top: 2px solid #888;
	text-align-last: center;
}
#about .card img{
	height: 30px;
	margin-top: 20px;
}

@media (max-width: 900px){
	#about .sectionContent{
		gap: 40px;
	}
	#about .aboutPortrait{
		order: 1;
	}
	#about .aboutText img{
		order: 2;
	}
	#about .card:nth-child(n+3){
		display: none;
	}
}





/** NEWS **/
#news{
	background: #EEE;
}

#news .card{
	padding: 0px;
}
#news .card img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}

#news .cardInner{
	padding: 20px;
}
#news .cardInner .articleHeader{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 2px solid #DDD;
}
#news .cardInner .articleHeader h2{
	margin-bottom: 10px !important;
}
#news .cardInner .articleHeader p{
	color: #888;
}
#news .cardInner .articleHeader i{
	margin-right: 3px;
	color: #FABE00;
}
#news .cardInner .articleHeader .icon-user{
	margin-left: 20px;
}
#news .cardInner a{
	display: block;
	margin-top: 20px;
	text-align: right;
}


@media (max-width: 1200px){
	#news #articles{
		grid-template-columns: 1fr 1fr;
	}
	#news .card:nth-child(n+3){
		display: none;
	}
}
@media (max-width: 900px){
	#news #articles{
		grid-template-columns: 1fr;
	}
}





/** CONTACT **/
#contact{
	background: url(../images/backgrounds/contact.jpg) no-repeat center / cover;
}

#contactLetter{
	max-width: 1800px;
	margin: auto;
	padding: 60px;
	background: url(../images/backgrounds/contact_letter_stamp.png) no-repeat top right ,
				url(../images/backgrounds/contact_letter_paper.jpg) center / cover;
	border: 10px solid transparent;
	border-image: 	10 repeating-linear-gradient(-45deg,
					rgba(180,0,0,0.8) 0em,
					rgba(180,0,0,0.8) 1.5em,
					transparent 0em,
					transparent 3em,
					rgba(35,85,145,0.8) 0em,
					rgba(35,85,145,0.8) 4.5em,
					transparent 0em,
					transparent 6em);
	border-radius: 10px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}

#contact h1, #contact p{
	text-shadow: 0px 0px 3px #FFF, 0px 0px 3px #FFF, 0px 0px 3px #FFF;
}

#contactName { grid-area: name; }
#contactEmail { grid-area: email; }
#contactPhone { grid-area: phone; }
#contactSubject { grid-area: subject; }
#contactMessage { grid-area: message; }
#contactAddress { grid-area: address; display: none; }
#contactCountry { grid-area: country; display: none; }

#contactInputs{
	grid-template-areas: "name email phone"
						 "subject subject subject"
						 "message message message"
						 "address address country";
	margin: 25px 0px;
}

#contact textarea{
	height: 200px;
}
#contact button{
	display: block;
	margin: auto;
}
#contactFeedback{
	margin-top: 10px;
	text-align: center;
}

@media (max-width: 900px){
	#contactLetter{
		padding: 20px;
	}
	#contactInputs{
		grid-template-areas: "name name name"
							 "email email email"
							 "phone phone phone"
							 "subject subject subject"
							 "message message message"
							 "botCheck botCheck botCheck";
	}
}





/** CAREERS **/
#careersSplash{
	background: linear-gradient(
					rgba(255,255,255,0.3) 0%,
					rgba(238,238,238,1.0) 100%
				),
				url(../images/backgrounds/careers.jpg) no-repeat center top / cover;
}
#careersListings{
	padding-top: 0px;
}
#careersListings .card a{
    display: block;
    margin-top: 20px;
    text-align: right;
}
.jobDescription{
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0px;
}