html, body{
	background: #fbe4f3;
	color: #000;
	font-family: "Nunito", sans-serif;
	margin: 0;
	min-height: 100vh;
}

body{
}

*{
	box-sizing: border-box;
}

#main{
	min-height: calc(100vh - 165px);
	clear: both;
}

header{
	margin: 0 auto;
}

header{
	/*position: fixed;*/
	/*background: rgba(255,255,255,0.85);*/
	top: 0;
	width: 100vw;
	z-index: 100;
}

header nav{

}

header nav, #main, footer{
	margin: 0 auto;
	padding: 0 30px;
	/*max-width: 1600px;*/
	clear: both;
}
footer{
	text-align: right;
	padding: 20px 40px;
}
footer .inner{

}


header nav #logo{
	background-image: url(logo.png?v=2);
	background-repeat: no-repeat;
	background-size: contain;
	height: 80px;
	margin: 10px 0;
	width: 250px;
	display: block;
	float: left;
	color: transparent;
}

header nav ul{
	list-style: none;
	float: right;
	text-align: right;
	margin-top: 28px;
}
header nav li{
	list-style: none;
	display: inline-block;
	border-right: solid 5px #d56;
}
header nav li:last-child{
	border: none;
}
header nav li a{
	text-decoration: none;
	padding: 20px;
	font-size: 26px;
	font-weight: bold;
	color: #000;
}
header nav li a:hover{
	color: #555;
}





h1{
	font-size: 5em;
	text-align: right;
}


h2{
	margin-top: 1.3em;
}

#main > section:first-child{
	/*margin-top: 140px;*/
}


section#content{
	position: relative;
	top: 50px;
}

section{
	
	
}

#hero video{
	width: 100%;
	aspect-ratio: 16/9;
}

.projects{
	text-align: center;
	padding-top: 40px;
}


.project{
	background-repeat: no-repeat;
	background-size: cover;
	
	margin: 20px;	

	font-size: 24px;
	
	display: inline-block;
	
	width: 40%;
	height: auto;
	aspect-ratio: 16/9;
	cursor: pointer;
	overflow: hidden;
	filter: saturate(1.3) brightness(1.3);
	
	opacity: 0;
}



.project .title{
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	opacity: 0;
	height: 100%;
	padding: 22% 5%;
	font-size: 1.2em;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
}

.project:hover .title{
	opacity: 1;
}



*:link, *:visited, *:hover, *:active, *:focus{
   -webkit-transition:
     opacity .25s linear,
     color .25s linear,
     background-color .25s linear,
     border-color .25s linear;
   transition:
     opacity .25s linear,
     color .25s linear,
     background-color .25s linear,
     border-color .25s linear;
}



#video_modal_container{
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	display: none;
}

#video_modal{
	width: 80%;
	max-width: 1400px;
	margin: 100px auto;
}


#video_modal video{
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	
}
#video_modal .title{
	
}


#video_modal .close{
	padding: 20px;
	float: right;
	cursor: pointer;
	color: #fff;
}


@media (max-width: 900px) {
	
	header nav #logo{
		width: 160px;
		height: auto;
	}
	
	header nav li a{
		font-size: 16px;
	}
	
	.project{
		width: 100%;
	}
}


.social a{
	text-decoration: none;
	color: #336;
	line-height: 32px;
	margin: 5px;
	padding: 10px;
	font-weight: bold;
	font-size: 20px;
	display: block;
}
.social a:hover{
	opacity: 0.6;
}

.social a img{
	width: 42px;
	height: 42px;
}