body{
	margin: 0;
	padding: 0;
}
h1{
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 18px;
}
h2{
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 12px;
}
h3{
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 68%;
}
a{
	text-decoration: none;
}
#header{
	position: fixed;
	height: 40px;
    width: calc(100% - 32px);
	padding: 16px;
	background-color: #fefefe;
	z-index: 999;
}
#header_content{
	width: 80%;
	display: flex;
	margin: auto;
}
.title {
	margin: 0;
	color: #1f1f1f;
}
#header_title{
	width: 50%;
	margin: auto auto auto 0;
}
#header_title_main{
	height: 26px;
}
#header_title_secondary{
	height: 14px;
	opacity: 50%;
}
@media only screen and (max-width: 410px) {
	#header_title{
		width:100%;
	}
	#header_social{
		display:none;
	}
}
#header_social{
	width: 50%;
	text-align: right;
}
#header_social_list{
	display:inline-flex;
	list-style: none;
	margin: 0;
	height: 100%;
}
.header_social_list_item{
	margin: auto 2px auto 2px;
}
.icon{
	fill: #1f1f1f;
	transition-duration: 0.05s;
	padding: 4px;
	border-radius: 2px;
	width:14px;
	height:14px;
}
#icon_linkedin_svg:hover{
	fill: #fefefe;
	background-color: #0073b1;
}
#icon_youtube_svg:hover{
	fill: #fefefe;
	background-color: #c00;
}
#icon_vimeo_svg:hover{
	fill: #fefefe;
	background-color: #00adef;
}
#icon_artstation_svg:hover{
	fill: #13aff0;
	background-color: #111111;
}
#icon_instagram_svg:hover{
	fill: #fefefe;
	background-color: #f143a5;
}
#icon_github_svg:hover{
	fill: #fefefe;
	background-color: #316dca;
}
.header_social_list_item_svg{
	height:100%;
	width:100%;
}



#content {
	width: 100%;
	height: calc(100% - 72px);
	margin-top: 72px;
	position: absolute;
	background-color: #1a1a1a;
}
#content_video{
	position: relative;
	margin: 12px auto 12px auto;
	width:100%;
	max-width: 800px;
	overflow: hidden;
	aspect-ratio: 16/9;
	border-radius: 8px;
}
.content_video_fit{
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#content_video_button{
	background: none;
	border: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
}
#content_video_button:hover{
	background: #fefefe0c;
}
#content_video_button:hover #content_video_button_play{
	border:solid 1px #fefefe;
}
#content_video_button_play{
	fill: #fefefe;
	border-radius: 50px;
	padding: 4px;
	transition-duration: 0.05s;
	filter: drop-shadow(0px 0px 6px #000);
	height: 50px;
	width: 50px;
	margin: auto;
}
#content_video_vimeo{
	display: none;
	background-color: #fefefe0c;
	width: 100%;
	height: 100%;
}



#content_videos_list{
	max-width: 720px;
	margin: auto;
	list-style: none;
	padding: 6px;
	display: flex;
}
.content_videos_list_item{
	display: contents;
}
.content_videos_list_item_thumbnail{
	width: 100%;
	aspect-ratio: 16/9;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
	transition-duration: 0.05s;
	margin: 0px 2px 0px 2px;
	position:relative;
}
.content_videos_list_item_thumbnail_img{
	width: 100%;
	position: absolute;
}
.content_videos_list_button_play{
	fill: #fefefe;
	border-radius: 50px;
	padding: 4px;
	transition-duration: 0.05s;
	filter: drop-shadow(0px 0px 6px #000);
	height: 40px;
	width: 40px;
	margin: auto;
	opacity:0;
}
.content_videos_list_button{
	background: none;
	border: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
}
.content_videos_list_button:hover{
	background: #fefefe0c;
}
.content_videos_list_button:hover .content_videos_list_button_play{
	border:solid 1px #fefefe;
	opacity:1;
}

#content_social{
	max-width:800px;
/*	position: relative;*/
	margin: auto;
}
#content_social_list{
	margin: auto;
	list-style: none;
	padding: 0;
	display: flex;
}
.content_social_list_item{
	margin: auto;
	padding: 8px;
	width: 33%;
}
@media only screen and (max-width: 700px) {
	#content_social_list{
		display: block;
	}
   .content_social_list_item{
		width: 80%;
	}
}
.content_icon{
	fill: #fefefe;
	transition-duration: 0.05s;
	padding: 8px;
	border-radius: 12px;
	height: 25px;
	margin: auto;
}
.content_social_list_item_svg{
	height:100%;
	width:100%;
}
#content_icon_linkedin_svg{
	background-color: #0073b1;
}
#content_icon_youtube_svg{
	background-color: #c00;
}
#content_icon_artstation_svg{
	fill: #13aff0;
	background-color: #111111;
}
#content_icon_linkedin_svg:hover{
	outline: solid 2px white;
}
#content_icon_youtube_svg:hover{
	outline: solid 2px white;
}
#content_icon_artstation_svg:hover{
	outline: solid 2px white;
}



#footer{
	position: fixed;
    width: 100%;
	background-color: #fefefe;
	z-index: 999;
	bottom:0;
	font-size: 10px;
}
#footer_content{
	display: flex;
	width: fit-content;
	margin:auto;
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	color: #1a1a1a;
}
#footer_location{
	padding: 0px 16px;
	display: flex;
}
#footer_mail{
	padding: 0px 16px;
	display: flex;
}
#footer_location_icon{
	width: 10px;
	height: 10px;
	padding:10px;
}
#footer_mail_icon{
	width:12px;
	height:12px;
	padding:10px;
}