/* @import url("https://use.typekit.net/efb0ehx.css");
/* Typekit finally doesn't require JavaScript!  Praise Jeebus! */
@import url(https://fonts.googleapis.com/css?family=Mr+Dafoe);
@import url('https://fonts.googleapis.com/css?family=Anton');
@import url("https://use.typekit.net/klg7npo.css");
/* CSS Reset
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)              */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}

/*****************/
* {
box-sizing:border-box;

}
html {max-width: 100%; overflow-x: hidden;}  /* don't scroll when you don't need to scroll */
.clearfix:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}


/* * * ----- Mike's Custom Stylesheet... ----- * * */

#body {
	background-color: #000;
	font-family: Myriad Pro, Helvetica, arial, serif;
	font-size:13pt;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color:rgb(255,255,255);
	margin: 0;
	padding: 0;

}

#wrapper {
	width: 100%; margin-left: auto; margin-right: auto;	
  	background: #000000;
  	overflow: hidden;
}

.fl-right {float:right;}
.fl-left {float:left;}
.centered {margin: auto;}
.invisible {opacity:0;} /* different than hidden */

/*** Top Header stuff ***/


#welcome {
	background: #000;

	position: relative;
	width: 100%;
	height: 50vh;
	text-align: center;
	overflow: hidden;
}

@keyframes fadein {
  from {opacity: 0;  }
  to {opacity: 1; }
}
#welcome .logo {
	position: absolute;
	display: block;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	width: 25%;
	max-width: 350px;
	min-width: 250px;

		
	animation: fadein 4s;
	animation-delay: 1s;
	animation-fill-mode: both;

}

#welcome .logoglow {
	position: absolute;
	display: block;
	/*top: 0; bottom: 0; left: 0; right: 0;*/
	margin: auto;
	width: 41.25%;
	max-width: 577.5px;
	min-width: 412.5px;
	opacity: .7;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes waft {
  0%,  {
    transform: translate(-50%, 36.5%);
  }
  100% {
    transform: translate(-50%, -30%);
  }
}

#welcome #smoke {
	position: absolute;
	display: block;
	top: 0; bottom: 0; left: 50%;
	margin: auto;
	width: 600px;

	animation-name: waft;
	animation-duration: 60s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	 transform: translate(-50%, 36.5%);
	 opacity: .7;
}


#welcome h1 {
	position: absolute;
	display: block;
	left: 0; right: 0;
	bottom: 10%;
	font-family: trajan-sans-pro, sans-serif;
	font-weight: 500;
	font-size: 20px;
	opacity: .75;
}
#welcome h1 em {
	font-weight: 700;
}

.socialbuttons {
	position: relative;
	top: 0;
	right:0;
	z-index: 10;
	padding-right:8px;
	text-align: center;
}
.socialbuttons a img {
	width: 41px;
	height: 41px;
	padding: 4px;
	opacity: 0.5;
	transition: opacity 0.5s;
}
.socialbuttons a img:hover {opacity: 1;}


/* Responsive Navigation Bar */
nav {
	height:40px;
 	display: block;
  	background: #333;
  	margin: 0;
  	padding-left: 1em;
  	padding-right: 1em;
  	position: relative;
  	z-index: 100; /* always on top */
  	top: 0px;
  	border:0;

  	box-shadow:0 2px 19px rgba(0,0,0,0.5);
}

nav ul.sections {
  list-style-position: inside;
  list-style: none;
  width:100%;
  text-align:left;
}

nav ul li { 
  display: inline-block;	
  list-style:none;
  margin-top:12px; 
}
nav ul li a {
	padding: 10px;
  outline: none;
  color: #ffffff;
  font-family:Arial, Helvetica, sans-serif;
  font-size:13.50pt;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
nav ul li a:hover {
  color: rgb(38,139,210);
  text-decoration: none;
}




/* Thanks to http://aleclownes.com/2017/02/01/crt-display.html ! */
.crt::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.5) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.12), rgba(0, 255, 0, 0.04), rgba(0, 0, 255, 0.12));
  z-index: 2;
  background-size: 100% 2px, 4px 100%;
  pointer-events: none;
}
.crt {
 /* text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px; */
}









/* * * * * * * Main Stuff Here * * * * * * * * * * * * * * */


.videosection {
	height: 42vw;
	min-height: 500px;
	position: relative;	
	overflow: hidden;
	animation: fadein 6s;
	animation-delay: 1s;
	animation-fill-mode: both;
}
video.background { 
  position: relative;
  top: 50%;
  left: 50%;
  height: 42vw;
  min-height: 500px;
  width: 101vw;
  min-width: 1200px;
  transform: translate(-50%, -50%);
}
video.background::-webkit-media-controls {display: none;}

.boxbutton {
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(.2rem) saturate(150%);
  	backdrop-filter: blur(.2rem) saturate(150%);
	position: absolute;
	color: white;
	width: 10em;
	height: 3em;
	line-height: 3em;
	font-size: 23px;
	box-sizing: content-box;
	display: block;
	text-align: center;
	border: solid 2px white;
	top: 0; bottom: 0; left:0; right: 0;
	margin: auto;
	text-decoration: none;
	 	display: inline-block;
  font-family: Anton, sans-serif;
	font-style: regular;
	font-weight: 400;
	z-index: 20;
	animation: fadein 6s;
	animation-delay: 1s;
	animation-fill-mode: both;
}
.boxbutton:hover {
	color: #000; 
	background: rgba(255, 255, 255, 0.75);
	-webkit-backdrop-filter: blur(.7rem) saturate(150%);
  	backdrop-filter: blur(.7rem) saturate(150%);
	border: none;
	box-shadow:0 5px 10px rgba(0,0,0,0.5);
}

section h1 {
	position: relative;
	display: block;
  margin-bottom: 1em;
  text-align: center;
}
#social h1 {
	  background: rgba(0,0,0,.5);
  box-shadow: 0px 2.3em 2em rgba(0,0,0,.5)
}
section h1 .chrome {
 	color:  #3557c6; /* fallback for poor IE... */
 	display: inline-block;
  font-family: base-12-sans, sans-serif;

	font-weight: 700;
	font-variant: small-caps;
	text-transform: uppercase;
	font-size: 68px;
  line-height: 1;
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center;
  /* font-weight: normal; */
  background-image: -webkit-linear-gradient(#000000 0%, #3557c6 40%, #BBBBBB 49%, #000000 51%, #7f158f 70%, #FFFFFF 100%); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #CCC;
}
section h1 .slash {
	display: inline-block;
  position: absolute;
  font-family: 'Mr Dafoe', cursive;
  font-size: 53px;
  text-align: left;
  transform:rotate(-10deg);
  -ms-transform:rotate(-10deg); /* IE 9 */
  -webkit-transform:rotate(-10deg); /* Safari and Chrome */
  color: #ed2121;
  margin-left: -1.5em;
  top: 3.2em;
  text-shadow: -1px -2px 4px rgba(0,0,0,.5), 1px 2px 0px #D9B2B2;
}

section h2 {
display: block;
 margin-top: 1em;
 margin-bottom: .5em;
  font-family: 'Mr Dafoe', cursive;
  font-size: 45px;
  text-align: center;
  transform:rotate(-5deg);
  -ms-transform:rotate(-5deg); /* IE 9 */
  -webkit-transform:rotate(-5deg); /* Safari and Chrome */
  color: #EF65FF;

  text-shadow: 0px 0px 5px #Af15Bf, 0px 0px 5px #Af15Bf;
}

#social {
	background: url(images/socialbg.jpg) bottom;
	background-size: cover;
	overflow: visible;
	text-align: center;
}

.socialcard {
	display: inline-block;
	padding: 7%;
	box-sizing: border-box;
	opacity: .8;
	text-align: center;
	color: white !important;
	text-decoration: none !important;
	max-width: 350px !important;
	
}

.socialcard:hover {
	opacity: 1;
}


#about {	
	width: 90vw;
	max-width: 1200px;
	margin: auto;
}

#about .peoplecollection {
	width: 100%;
padding: 0;
  margin: 0;
  padding-top: 2em;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: center;
}

.peoplegroup {
flex-basis: 500px;
	flex-grow: 1;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-evenly;
}
.personcard {
	display: inline-block;
	width: 270px;
	text-align: left;
	padding: 1em;
	padding-bottom: 12vw;
	max-height: 450px;
	box-sizing: border-box;
	z-index: 5;
}
.personcard img.circle {
	width: 150px;
	height: 150px;
	transition: filter 0.25s;
	top:0;bottom:0;left:0; right: 0;
	z-index: -1;
	position: relative;
	border-radius: 50%;
}
.personcard .circleholder {
	display: block;
	box-sizing: content-box;
	margin: auto;
	border: solid 2px gray;
	background: none;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 2em;
	z-index: 5;
	overflow: hidden;
}
.personcard .circleholder:not(.hashisownvignette) {
box-shadow: inset 0px 0px 4px 4px rgba(0,0,0,0.9);
}

.personcard:hover img.circle {
	filter: brightness(120%);
}

.personcard h3 {
	font-family: Anton, sans-serif;
	font-style: regular;
	font-weight: 400;
	font-size: 20px;
	line-height: 2em;
}

.personcard p:first-of-type {
	display: block;
	height: 4em;
}

.personcard p:last-of-type {
	text-align: right;
}
.personcard p:last-of-type a {
color: skyblue !important;
}





#about p {
	line-height: 1.5em;
	padding-bottom: 1em;
	max-width: 800px;
	margin: auto;
}

.collection {
	clear: both;
	text-align: center;
	padding-left: 2em;
  	padding-right: 2em;
  	font-size: 0; /* because inline-block is funny */
	}
.logocloud {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.logocloud img {
	display: inline-block;
	padding: 2vw;
	width: 100px;
	vertical-align: middle;
	box-sizing: content-box;
	opacity: 0.8;
}
.logocloud img:hover {
	opacity: 1.0;
}


.half {
	width: 50%;
	max-width: 540px;
}
.third {
	width: 33.33%;
	max-width: 540px;
}
.quarter {
	width: 25%;
	max-width: 540px;
	min-width: 240px
}
.alone {
	/* Let's not get TOO crazy */
	width: 60%;
	max-width: 640px;
}




footer {
	font-size:9.00pt;
	line-height:15.00pt;
	color: #999;
	background: #333;
	padding-top: 0.5em;
	margin-top: 2em;
	padding-bottom: 1em;
	padding-left: 1em;
	margin-left: env(safe-area-inset-left);
	margin-right: env(safe-area-inset-right);
}


/** ------------<<<------------ Responsive Breakpoints ----------------->>>--------- **/
@media screen and (max-width: 950px) {
	/* layout hax */
	.productionshrink {margin-right: 50vw;}
	/* Whatchoo doing, iPhone? Stahp. */
	body {-webkit-text-size-adjust:none;}
}


@media screen and (max-width: 750px) {

	
	/* normal stuff */
	
	nav {
		position: relative;
		margin-top: 0px; margin-bottom:40px;
		height: 70px;
		background: none;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		box-shadow:none;
		text-align: right;
		margin-bottom: -70px;
	}
	.mainlogo {
		width: 102px;
		margin-top: 6px;
		margin-left: 16px;
	}
	
	
	section h1 .chrome {
		font-size: 9vw;
	  margin-top: 2em;
	  margin-bottom: 1em;
	}
	section h1 .slash {
	  font-size: 7vw;
	  margin-left: -1.5em;
	  top: 3.2em;
	}







	.videothumbnail {display:block; width: 100%; clear: both; margin: auto; text-align: center;}
	.videothumbnail.third img {width: 50vw; padding-bottom: 40px;}
	.withcaption img {
		float: left;
		padding-right: 10px;
	}
	.videothumbnail p {
		text-align: left;
	}
		
	/* all the ugly mobile nav stuff... */
  .nav-container {
    position: absolute;
    top: 0;
    right: -1000px;
    font-size: 30px;
    width: 10em;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: opacity 2s ease;
  }
  .nav-container ul {
    top: 75px;
    padding-top: 75px;
    margin-top: 0px;
    position: absolute;
    background: rgba(0,0,0,.9);
    -webkit-backdrop-filter: blur(.4rem) saturate(150%);
  	backdrop-filter: blur(.4rem) saturate(150%);
  	box-shadow:-10px 10px 30px rgba(0,0,0,0.5);
  }
  .nav-container ul li {
    display: block;
    float: none;
    text-align: left;
    margin-bottom: 1em;
  }
  .nav-container ul li a {
    padding: 10px 25px;
    opacity: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
  }
  .nav-open {
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    width: 96px;
    height: 86px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .nav-open i {
    display: block;
    width: 40px;
    height: 4px;
    background: #ffffff;
    margin-left: 28px;
  }
  .nav-open i:nth-child(1) {margin-top: 32px;}
  .nav-open i:nth-child(2) {margin-top: 8px;opacity: 1;}
  .nav-open i:nth-child(3) {margin-top: 8px;}
}





/* really small screens */
@media screen and (max-width: 600px) {

	
	
	
}

/* Special shit for the iPhone X because I'm a fanboy */
@supports(padding: max(1em)) {
    nav {
        padding-left: max(1em, env(safe-area-inset-left));
        padding-right: max(1em, env(safe-area-inset-right));
    }
	.featurebuttons{
		box-sizing: border-box;
	  	padding-left: calc(env(safe-area-inset-left) - .5em);
  		padding-right: calc(env(safe-area-inset-right) - .5em);
  		width: 100%;
  	}
  	.leftbox {
  		padding-left: max(5%, env(safe-area-inset-left));
	}
	.collection {
		padding-left: max(2em, env(safe-area-inset-left));
        padding-right: max(2em, env(safe-area-inset-right));
    }
}




/* Nav open animations?? */
#nav:checked + .nav-open {
  /*transform: rotate(45deg);*/
}
#nav:checked + .nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
  transform: translateY(12px) rotate(225deg);
}
#nav:checked + .nav-open i:nth-child(2) {
  opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
  transform: translateY(-12px) rotate(135deg);
}
#nav:checked ~ .nav-container {
display: block;
  z-index: 999;
  opacity: 1;
  right: 0px;
}
#nav:checked ~ .nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}
#nav:checked ~ .wrapper {overflow: none;}
.hidden {
  display: none;
}
