/* 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;
	overflow-y: hidden;
	position: relative;
	margin:0;

}
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;
}


* {
    /* moves padding and border to inside the "div" */
    box-sizing: border-box;
}


/* ----- YOUR CODE HERE - Desktop size & general stuff ---------- */




html {
	scroll-behavior: smooth;
  }
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400');

#myVideo {
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
  }
#logovideo{
	width:100%;
  }

  



 
.carousel-cell{
	width:100%;
}
.carousel-cell img{
	width:100%;

}
.main-carousel img{
	align-items:flex-end;
}




  
  .wrapper {
	height: 100vh;
	text-align: center;

  }
  .wrapper button {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .loader {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 0;
	height: 100vh;
	transition: width 0s 1.4s ease;
  }
  .loader .loader__icon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
	transition: opacity 0.5s ease;
  }
  .loader .loader__icon svg {
	transform-origin: 0 0;
  }
  .loader .loader__tile {
	position: absolute;
	left: 0;
	width: 0;
	height: 20%;
	background-color: black;
	transition: width 0.7s ease;
  }
  .loader .loader__tile:nth-child(0) {
	top: calc(-1 * 20%);
	transition-delay: -0.2s;
  }
  .loader .loader__tile:nth-child(1) {
	top: calc(0 * 20%);
	transition-delay: 0s;
  }
  .loader .loader__tile:nth-child(2) {
	top: calc(1 * 20%);
	transition-delay: 0.2s;
  }
  .loader .loader__tile:nth-child(3) {
	top: calc(2 * 20%);
	transition-delay: 0.4s;
  }
  .loader .loader__tile:nth-child(4) {
	top: calc(3 * 20%);
	transition-delay: 0.6s;
  }
  .loader .loader__tile:nth-child(5) {
	top: calc(4 * 20%);
	transition-delay: 0.8s;
  }
  .loader--active {
	width: 100%;
	transition-delay: 0s;
  }
  .loader--active .loader__icon {
	opacity: 1;
	transition: opacity 0.5s 1.4s ease;
  }
  .loader--active .loader__tile {
	width: 100%;
  }
  .loader--active .loader__tile:nth-child(0) {
	transition-delay: -0.2s;
  }
  .loader--active .loader__tile:nth-child(1) {
	transition-delay: 0s;
  }
  .loader--active .loader__tile:nth-child(2) {
	transition-delay: 0.2s;
  }
  .loader--active .loader__tile:nth-child(3) {
	transition-delay: 0.4s;
  }
  .loader--active .loader__tile:nth-child(4) {
	transition-delay: 0.6s;
  }
  .loader--active .loader__tile:nth-child(5) {
	transition-delay: 0.8s;
  }
  
 







nav{
	display:flex;
	/* 
	display FLEX goes on parent and makes everything inside "flex children"
	justify-content - moves things left and right
	align-items - moves things up and down
	flex-wrap - allows flexbox to be on more than 1 line
	*/
	justify-content: flex-end;
	align-items:center;
	background: black;
	box-shadow: 0 2px 10px 0 rgb(97, 97, 97);
}











nav a{
	font-size:20px;
	font-family: 'Montserrat', sans-serif;
	font-weight:200;
	color:white;
	text-transform:uppercase;
	text-decoration:none;
	padding:20px;
}


nav img{ max-width:80px}


.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 7;
}

  
#logo{
	margin-right:auto;
	border:none;
	background: none;
}







* {
	box-sizing: border-box;
  }
  
  

  
  .testing {
	position: relative;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 10px;
	padding: 8px 30px;
	font-size: 0.80em;
	letter-spacing: 0.35em;
	text-align: center;
	transition: all 0.2s ease;
	margin: 0 auto;
  }
  .testing:before, .testing:after {
	content: "Jacob Walker";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-clip: rect(0px, 0px, 0px, 0px);
	clip: rect(0px, 0px, 0px, 0px);
	background: #fff;
	color: #000;
  }
  .testing:before {
	left: -3px;
	top: -2px;
	text-shadow: 2px 0 #fff;
	box-shadow: 2px 0 #fff;
  }
  .testing:after {
	left: 2px;
	bottom: -2px;
	text-shadow: -1px 0 #fff;
	box-shadow: -1px 0 #fff;
  }
  .testing:hover {
	background: white;
	color: black;
  }
  .testing:hover:before {
	animation: glitch-test 1.5s infinite linear alternate-reverse;
  }
  .testing:hover:after {
	-webkit-animation: glitch-test 2s infinite linear alternate;
			animation: glitch-test 2s infinite linear alternate;
  }
  
  @-webkit-keyframes glitch-test {
	0% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	5.88235% {
	  clip: rect(0px, 600px, 0px, 0px);
	}
	11.76471% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	17.64706% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	23.52941% {
	  clip: rect(100px, 600px, 100px, 0px);
	}
	29.41176% {
	  clip: rect(0px, 600px, 600px, 0px);
	}
	35.29412% {
	  clip: rect(100px, 600px, 0px, 0px);
	}
	41.17647% {
	  clip: rect(0px, 600px, 600px, 0px);
	}
	47.05882% {
	  clip: rect(100px, 600px, 0px, 0px);
	}
	52.94118% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	58.82353% {
	  clip: rect(100px, 450px, 100px, 0px);
	}
	64.70588% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	70.58824% {
	  clip: rect(100px, 450px, 100px, 0px);
	}
	76.47059% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	82.35294% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	88.23529% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	94.11765% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	100% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
  }
  
  @keyframes glitch-test {
	0% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	5.88235% {
	  clip: rect(0px, 600px, 0px, 0px);
	}
	11.76471% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	17.64706% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	23.52941% {
	  clip: rect(100px, 600px, 100px, 0px);
	}
	29.41176% {
	  clip: rect(0px, 600px, 600px, 0px);
	}
	35.29412% {
	  clip: rect(100px, 600px, 0px, 0px);
	}
	41.17647% {
	  clip: rect(0px, 600px, 600px, 0px);
	}
	47.05882% {
	  clip: rect(100px, 600px, 0px, 0px);
	}
	52.94118% {
	  clip: rect(-3px, 600px, 0px, 0px);
	}
	58.82353% {
	  clip: rect(100px, 450px, 100px, 0px);
	}
	64.70588% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	70.58824% {
	  clip: rect(100px, 450px, 100px, 0px);
	}
	76.47059% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	82.35294% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	88.23529% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	94.11765% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
	100% {
	  clip: rect(0px, 450px, 0px, 0px);
	}
  }









h1{
	font-family: 'Montserrat', sans-serif;
	font-size:24px;
	text-transform:uppercase;
	margin-top:40px;
	padding:20px;
}



h2{
	font-family: 'Montserrat', sans-serif;
	font-size:1.3125em;
	text-transform:uppercase;
	margin-top:40px;
	padding:20px;
}
h3{
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	text-transform:uppercase;
	padding-left:30px;
}

.gallery {
	display: flex;
	padding: 2px;
	transition: 0.3s;
	flex-wrap: wrap;
  }
  .gallery:hover .gallery__image {
	filter: grayscale(1);
  }
  .gallery__column {
	display: flex;
	flex-direction: column;
	width: 25%;
  }
  .gallery__link {
	margin: 2px;
	overflow: hidden;
  }
  .gallery__link:hover .gallery__image {
	filter: grayscale(0);
  }
  .gallery__link:hover .gallery__caption {
	opacity: 1;
  }
  .gallery__thumb {
	position: relative;
  }
  .gallery__image {
	display: block;
	width: 100%;
	transition: 0.3s;
  }
  .gallery__image:hover {
	transform: scale(1.1);
  }
  .gallery__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px 15px 15px;
	width: 100%;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	color: white;
	opacity: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
	transition: 0.3s;
  }





.project-carousel{
	width:80%;
}
.project-carousel-cell img{
	width:100%;
}

.project-gif{
	padding:5%;
}
.project-gif img{
	max-width:40%;
	padding:5px;
	border: 1px solid black;
}


#mpcvideo{
	padding:5%;
	display:flex;
	align-content:center;
	justify-content:center;
}

#mpcvideo video{
	width:100%;
}
.mpcimage{
	padding:2.5%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mpcimage img{
	width:100%;
}



.description{
	padding:2.5%;
}




#project{
	padding:2.5%;
	padding-bottom:10%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;

}

#project div{
	width:100%;
}
.projectimage {
	display:flex;
	justify-content: center;
}
.projectimage img{
	max-width:75%;
}

.projectimage- {
	display:flex;
	justify-content: center;
}
.projectimage- img{
	max-width:60%;
}



.development{
	display:flex;
	align-items: center;
	justify-content: center;
}
.development img{
	width:90%;
	padding:2.5%;
}

.stamps{
	padding:2.5%;
	display: flex;
	justify-content: center;
	align-items: center;	
}

.stamps img{
	max-width:40%;
}

.stamps2{
	padding:2.5%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	
}
.stamps2 img{
width:90%;
padding:2.5%;
}




.ultrabrite{
	padding:2.5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.ultrabrite img{
	max-width:40%;
	padding:2.5%;
}

.letterhead {
display: flex;
align-items: center;
justify-content: center;
	}
.letterhead img{
padding:2.5%;
max-width:80%;
}


.nationalparks img{
	max-width: 100%;
	padding:2.5%;
}

.albumcovers{
	display: flex;
	align-items:space-between;
	justify-content: center;
}
.albumcovers img{
	width: 50%;
	padding:2.5%;
}





.spotifymockup{
	padding:2.5%;
}
.spotifymockup video{
	max-width:100%;
}


.jpw{
	padding:2.5%;
}
.jpw img{
	max-width:100%;
}

.jpw-logo{
	background:rgb(71, 71, 71);
	display: flex;
	justify-content: center;
}
.jpw-logo img{
	padding:2.5%;
	max-width:80%;
}

.illustration {
	padding:2.5%;
}
.illustration img{
	max-width:100%;
}

.radarimages{
	display:flex;
	flex-wrap:wrap;
	padding:2.5%;
}

.radarimages img{
	width:100%;
	padding:2.5%;
}




#bio{
	display:flex;
	flex-wrap: wrap;
}
#bio:after{
	padding:2.5%;
}

#bio a{
	font-family: 'Montserrat', sans-serif;
	font-weight:200;
	background:black;
	color:white;
	text-transform:uppercase;
	text-decoration:none;
	padding:20px;
}




#bio div{
	padding:2.5%;

}

p{
	margin-top:10px;
	font-family: 'Montserrat', sans-serif;
}


#resume{
	display:flex;
	justify-content: center;
	overflow:scroll;
}
#resume img{
	width:100%;
	padding:2.5%;
}



/*
 .paperOverlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: repeat;
	background-image: url(1x/screenoverlay.gif);
	mix-blend-mode:saturation;
	pointer-events: none;
	background-size:50vh;
	opacity: 10%;
  }

*/


  

  
  
  .footer {

	padding: 30px 30px 20px 30px;
	color: white;
	background-color: black;
	border-top: 1px solid #e5e5e5;
	overflow:hidden;
  }
  
  .footer > * {
	flex:  1 100%;
  }
  
  .footer__addr {
	margin-right: 1.25em;
	margin-bottom: 2em;
  }
  
  footer img {
	max-width:20%;
  }
  
  .footer__addr h2 {
	margin-top: 1em;
	font-size: 15px;
	font-weight: 400;
  }
  
  .nav__title {
	font-weight: 400;
	font-size: 15px;
  }
 



  
  .footer ul {
	list-style: none;
	padding-left: 0;
  }
  
  .footer li {
	line-height: 1.5em;
	font-family: 'Montserrat', sans-serif;  
}

  .footer p{
	font-family: 'Montserrat', sans-serif;
	color: #999;
  }


  .footer a {
	text-decoration: none;
  }
  
  .footer__nav {
	display: flex;
	  flex-wrap:wrap
  }
  
  .footer__nav > * {
	flex: 1 50%;
	margin-right: 1.25em;
	padding-bottom:2.5%;
  }
  
  .nav__ul a {
	color: #999;
  }
  
  .nav__ul--extra {
	column-count: 2;
	column-gap: 1.25em;
  }
  
  .legal {
	display: flex;
	flex-wrap: wrap;
	color: #999;
  }
	
  .legal__links {
	display: flex;
	align-items: center;
  }
  
  .heart{
	color:white;
  }



.aero_recordings video{
	max-width: 33%;
	padding-bottom: 10px;
}
.aero_recordings{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}

.overdue_mockup img{
max-width:100%;
}



/* filtered list*/






.mobile__footer{
	display:none;
}



  
  @media screen and (min-width: 24.375em) {
	.legal .legal__links {
	  margin-left: auto;
	}
  }
  
  @media screen and (min-width: 40.375em) {
	.footer__nav > * {
	  flex: 1;
	}
	
	.nav__item--extra {
	  flex-grow: 2;
	}
	
	.footer__addr {
	  flex: 1 0px;
	}
	
	.footer__nav {
	  flex: 2 0px;
	}

  }








/* tablet size AND SMALLER stuff here */
@media screen and (max-width: 1000px) {


	.gallery__column {
		width: 50%;
	  }
	#bio{
		flex-wrap:wrap;
	}
	#bio img{
		width:100%;
	}
	#bio div{
		width:100%;
	}
.albumcovers{
	flex-wrap:wrap;
}
.albumcovers img{
	width:100%;
}

#hide{
	display:none;
}






}

/* for phones */
@media screen and (max-width: 600px) {

	.gallery__column {
		width: 100%;
	  }

	  .aero_recordings video{
		max-width: 90%;
	}





}







