@charset "utf-8";

header
{
	position: relative;
	width: 100%;
	height: 75vh;
	z-index: 1;
}

header div.wrapper
{
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	bottom: 0;
}

header div.content
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	flex-direction: column;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
}

header div.content h1.logo
{
	display: block;
	line-height: 0;
	margin: 0;
	padding: 0;
}

header div.content h1.logo img
{
	width: 300px;
    margin: 0 0 15px;
}

header div.content h1.logo + div > div
{
	position: relative;
}

header div.content h1.logo + div > div > div
{
	margin-top: 20px;
}

header div.content a
{
	color: #fff;
	font-weight: 200;
	font-size: 14pt;
	text-decoration: none;
	text-shadow: 0 1px 3px #000;
}

header div.content a:hover
{
	text-decoration: underline;
}

header div.content a.button
{
	display: inline-block;
	position: relative;
	padding: 25px 40px;
	font-size: 18pt;
	text-transform: uppercase;
	-webkit-transition: background-color .25s ease;
	transition: background-color .25s ease;
	text-decoration: none;
}

header div.content a.button::before
{
	content: '';
	display: block;
	position: absolute;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	top: -1px;
	left: -1px;
	width: 75%;
	height: 75%;
	-webkit-transition: width .125s ease-out, height .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out;
}

header div.content a.button::after
{
	content: '';
	display: block;
	position: absolute;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	bottom: -1px;
	right: -1px;
	width: 75%;
	height: 75%;
	-webkit-transition: width .125s ease-out, height .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out;
}

header div.content a.button:hover
{
	background: rgba(255,255,255,.1);
}

header div.content a.button:hover::before,
header div.content a.button:hover::after
{
	width: calc(100% + 1px);
	height: calc(100% + 1px);
}

header div.video
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

header div.video video
{
	position: absolute;
	display: block;
	min-width: 100%;
	bottom: 0;
	min-height: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

nav
{
	position: absolute;
	top: 0;
	left: 50%;
	width: 950px;
	margin: 0 auto;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
}

nav > button
{
	display: none !important;
}

nav > ul
{
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	justify-content: center;
	border-bottom: 1px solid rgba(255,255,255,.25);
}

nav > ul > li
{
	display: block;
	text-align: center;
	flex: 1;
}

nav > ul > li > a
{
	position: relative;
	display: block;
	padding: 25px 40px;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: 200;
	font-size: 14pt;
	text-decoration: none;
	color: #fff;
	-webkit-transition: box-shadow .5s ease, text-shadow .5s ease;
	transition: box-shadow .5s ease, text-shadow .5s ease;
}

nav > ul > li > a::before
{
	content: '';
	display: block;
	position: absolute;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	visibility: hidden;
	-webkit-transition: width .125s ease-out, height .125s ease-out, visibility .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out, visibility .125s ease-out;
}

nav > ul > li > a::after
{
	content: '';
	display: block;
	position: absolute;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	bottom: 10px;
	right: 10px;
	width: 0;
	height: 0;
	visibility: hidden;
	-webkit-transition: width .125s ease-out, height .125s ease-out, visibility .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out, visibility .125s ease-out;
}

nav > ul > li > a:hover::before,
nav > ul > li > a:hover::after
{
	width: calc(75% - 20px);
	height: calc(75% - 20px);
	visibility: visible;
}

main
{
	width: 100%;
	position: relative;
	background-color: #000;
	min-height: 25vh;
	box-shadow: 0 0 75px 100px rgb(0,0,0);
	z-index: 2;
}

main > div
{
	padding: 10px 0;
}

main > div > ul
{
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 25px 0;
	padding: 0;
	justify-content: center;
}

main > div > ul > li
{
	text-align: center;
	white-space: nowrap;
	flex: 0;
}

main > div > ul > li a
{
	text-decoration: none;
	color: #fff;
}

main > div > ul > li a:hover
{
	text-decoration: underline;
	color: #30a2e4;
}

main > div > ul > li::after
{
	content: '\00B7';
	color: #666;
	display: inline-block;
	padding: 0 10px;
}

main > div > ul > li:last-child::after
{
	display: none;
}

main > div > ul.social i
{
	font-size: 25pt;
}

main > div > ul.social > li
{
	margin: 0 20px;
}

main > div > ul.social > li::after
{
	display: none;
}

main > ul
{
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	position: relative;
	height: 25vh;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

main > ul > li
{
	position: relative;
	text-align: center;
	flex: 1;
}

main > ul > li > a
{
	display: block;
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	-webkit-transition: background-color .25s ease;
	transition: background-color .25s ease;
}

main > ul > li > a::before
{
	content: '';
	display: block;
	position: absolute;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	top: -1px;
	left: -1px;
	width: 75%;
	height: 75%;
	z-index: 1;
	-webkit-transition: width .125s ease-out, height .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out;
}

main > ul > li > a::after
{
	content: '';
	display: block;
	position: absolute;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	bottom: -1px;
	right: -1px;
	width: 75%;
	height: 75%;
	z-index: 1;
	-webkit-transition: width .125s ease-out, height .125s ease-out;
	transition: width .125s ease-out, height .125s ease-out;
}

main > ul > li > a:hover
{
	background: rgba(255,255,255,.03);
}

main > ul > li > a:hover::before,
main > ul > li > a:hover::after
{
	width: calc(100% + 1px);
	height: calc(100% + 1px);
}

main > ul > li div
{
	display: block;
	position: absolute;
	max-width: calc(100% - 80px);
	top: 50%;
	left: 50%;
	color: #fff;
	z-index: 2;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

main > ul > li div[data-label]::before
{
	content: attr(data-label);
	position: absolute;
	top: -10px;
	right: -10px;
	padding: 3px 6px;
	border-radius: 4px;
	background: #c00;
	color: #fff;
}

main > ul > li > a
{
	text-decoration: none;
}

main > ul > li i
{
	font-size: 45pt;
	text-shadow: 0 0 20px rgba(255,255,255,.35);
}

main > ul > li h2
{
	margin: 10px 0 5px;
	font-size: 16pt;
	font-weight: 200;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

main > ul > li span
{
	display: block;
	font-weight: 200;
	font-size: 10pt;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* HEIGHT */
@media screen and (max-height: 850px)
{
	header div.content
	{
		flex-direction: row;
		width: 950px;
		margin: 0 auto;
	}

	header div.content > h1,
	header div.content > div
	{
		flex: 1;
	}

	header div.content h1.logo img
	{
		margin: 0;
	}

	header div.content h1.logo + div > div
	{
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	header div.content h1.logo + div > div > div
	{
		margin: 0;
	}

	header div.content h1.logo + div > div > div:last-child
	{
		margin-top: 20px;
	}
}

@media screen and (max-height: 800px)
{
	main > ul > li > a
	{
		top: 5px;
		bottom: 5px;
	}

	main > ul > li i
	{
		font-size: 35pt;
	}
}

@media screen and (max-height: 630px)
{
	main > ul > li i
	{
		font-size: 25pt;
	}
}

@media screen and (max-height: 600px)
{
	header div.content
	{
		top: auto;
		transform: translateX(-50%);
		bottom: 90px;
	}

	header div.content h1.logo img
	{
		height: 150px;
	}
}

/* WIDTH */
@media screen and (max-width: 1400px)
{
	main > ul > li > a
	{
		left: 5px;
		right: 5px;
	}

	main > ul > li div
	{
		max-width: calc(100% - 20px);
	}
}

@media screen and (max-width: 1000px)
{
	header
	{
		height: 60vh;
	}

	main
	{
		min-height: 50vh;
		box-shadow: 0 0 65px 75px rgb(0,0,0);
	}

	main > ul
	{
		flex-wrap: wrap;
		height: 40vh;
	}

	main > ul > li
	{
		flex: 0 50%;
	}
	
	main > ul > li > a
	{
		left: 10px;
		right: 10px;
		top: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 950px)
{
	header div.content
	{
		width: 100%;
		margin: 0;
	}

	header div.content > h1.logo
	{
		flex: 0;
		margin: 0 0 0 50px;
	}

	nav
	{
		width: 100%;
		left: 0;
		-webkit-transform: none;
		transform: none;
	}

	nav > ul > li > a
	{
		padding: 25px 15px;
	}

	header div.content h1.logo img
	{
		width: 300px;
	}
}

@media screen and (max-width: 830px)
{
	header div.content > h1.logo
	{
		margin: 0 30px;
	}

	header div.content h1.logo img
	{
		width: 200px;
	}

	header div.content > div
	{
		margin: 0 30px 0 0;
	}
}

@media screen and (max-width: 750px)
{
	nav > ul > li > a
	{
		padding: 25px 10px;
		font-size: 12pt;
	}
}

@media screen and (max-width: 600px)
{
	header
	{
		height: 100vh;
	}
	
	header div.wrapper
	{
		top: 20px;
	}

	header div.content
	{
		flex-direction: column;
	}

	header div.content h1.logo
	{
		margin: 0 0 75px;
		padding: 0 30px;
		box-sizing: border-box;
	}

	header div.content h1.logo img
	{
		width: 100%;
		max-width: 300px;
	}

	header div.content > div
	{
		margin: 0;
		padding: 0 30px;
		box-sizing: border-box;
	}

	header div.content h1.logo + div > div
	{
		top: auto;
		-webkit-transform: none;
		transform: none;
	}

	nav > button 
	{
		display: inline-block !important;
	}

	nav
	{
		position: fixed;
		text-align: right;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(0,0,0,.35);
		z-index: 1000;
		overflow: hidden;
		height: 80px;
		-webkit-transition: height .35s ease-out, background .35s ease;
		transition: height .35s ease-out, background .35s ease;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	nav.open
	{
		height: 100vh;
		background: rgba(0,0,0,.75);
	}

	nav ul
	{
		text-align: left;
		border: none;
		flex-direction: column;
	}

	nav > ul > li
	{
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
		opacity: 0;
		-webkit-transition: opacity .5s ease, -webkit-transform .35s ease-out;
		transition: opacity .5s ease, -webkit-transform .35s ease-out;
		transition: transform .35s ease-out, opacity .5s ease;
		transition: transform .35s ease-out, opacity .5s ease, -webkit-transform .35s ease-out;
	}

	nav > ul > li:nth-child(1)
	{
		-webkit-transition-delay: 0.0s;
		transition-delay: 0.0s;
	}

	nav > ul > li:nth-child(2)
	{
		-webkit-transition-delay: 0.05s;
		transition-delay: 0.05s;
	}

	nav > ul > li:nth-child(3)
	{
		-webkit-transition-delay: 0.1s;
		transition-delay: 0.1s;
	}

	nav > ul > li:nth-child(4)
	{
		-webkit-transition-delay: 0.15s;
		transition-delay: 0.15s;
	}

	nav > ul > li:nth-child(5)
	{
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}

	nav.open > ul > li
	{
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	nav > ul > li > a
	{
		padding: 25px 50px;
		font-size: 16pt;
		text-align: left;
		-webkit-transition: background .35s ease, color .35s ease;
		transition: background .35s ease, color .35s ease;
	}

	nav > ul > li > a::before,
	nav > ul > li > a::after
	{
		display: none;
	}

	nav > ul > li > a:hover
	{
		background: #fff;
		color: #000;
	}

	main 
	{
		padding-top: 25px;
	}

	main > ul
	{
		flex-direction: column;
		height: 100vh;
	}

	main > ul > li
	{
		flex: 1;
	}
}

@media screen and (max-width: 500px)
{
	main > div
	{
		padding: 10px 20px;
	}
}

@media screen and (max-height: 700px)
{
	header div.content h1.logo img
	{
		max-width: 200px;
	}
}

/* BOTH */
@media screen and (max-width: 1000px) and (max-height: 700px) and (orientation: landscape)
{
	header
	{
		height: 100vh;
	}

	main > ul
	{
		height: 50vh;
	}
}

@media screen and (max-width: 1000px) and (max-height: 550px) and (orientation: landscape)
{
	main > ul
	{
		height: 100vh;
	}
}