
/* site */
/* Source Sans Pro
-------------------------------------------------- */
/*@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/lato/Lato-Light.woff) format('woff');
}*/
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/lato/Lato-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/lato/Lato-Medium.woff) format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/lato/Lato-Bold.woff) format('woff');
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Inconsolata/Inconsolata-Regular.ttf) format('truetype');
}

@font-face {
	font-family: 'Inconsolata';
	font-style: normal;
	font-weight: 200;
	src: url(../fonts/Inconsolata/Inconsolata-Light.ttf) format('truetype');
}

/* Reset
-------------------------------------------------- */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}

html {
  height: 100%;
  font-family: "Lato", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0 auto;
  font-size: 1.25em;
  line-height: 1.5em;
  /*padding: 1.5em;*/
  /*max-width: 50em;*/
  width: 100%;
  background: #fafafa;
  color: #222;
}

li{
	list-style: none;
	margin: 0.5em 0;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover{
	color: #4e9;
}

.main{
	margin: 0 auto;
	width: 100%;
	margin-top: 40px;
}

/* header */

.header{
	border-bottom: solid;
	border-width: 1px;
	border-color: #4e9;
	margin-bottom: 20px;
	height: 40px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background-color: #fff;
	font-size: 0.9em;
}
.menu{
}

.menu a {
  display: block;
  color: #222;
}
.menu a:hover {
 	 
	text-decoration: none;
}

.menu li {
	letter-spacing: 0.1em;
	margin: 0 10px 0 10px;
  	list-style: none;
	float: left;
}
.menu > li {
  position: relative;
}
.menu > li > a {
  padding: .35em 0;
  /*font-weight: 600;*/
}
.clear{
	clear: both;
}

/*Projects*/
h3{
	font-size: 1.125em;
	letter-spacing: 0.1875em;
	font-weight: 900;
	/*overflow-wrap: break-word;*/
	/*width: 100%;*/
	display:block;
}

.grid{
	/*max-width: 800px;*/
	height: auto;
	width: 100%;
}
.grid-item{
	/*width: 280px;*/

	/*height: 280px;*/
	display: flex;
  	justify-content: center;
  	align-items: center;
	/*border: solid 1px #ccc;*/
}
.grid-sizer{
	width: 33.3%;
}
.w1{ 
	width: 33.3%;
	/*max-width: 400px;*/
 }
.w2{ 
	width: 66.6%; 
	/*max-width: 800px;*/
}
.w3{ 
	width: 100%; 
	/*max-width: 1200px;*/
}


.bgImage{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.captionContainer{
	position: relative;
	width: 90%;
	margin: auto;
	height: auto;
	opacity: 0.9;
	color: #000;
	text-align: center;
	vertical-align: middle;
	display: block;
	
}

.grid-item:hover > .bgImage{
	 -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
     -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
     -webkit-filter: grayscale(60%);
     filter: gray;
     filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}

.grid-item:hover > .captionContainer{
	display: block!important;
	
}

.colorOverlay{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	opacity: 0.0;	
	transition: all .2s linear;
}

.grid-item:hover > .colorOverlay{
	opacity: 0.6;
}
/*About*/
.aboutContainer h3{
	font-size: 1.75em;
	margin-bottom: 0.75em;
}
.artisttext{
	margin-right: 4em;
	max-width: 50em;
}

.artisttext a{
	font-weight: 800!important;
}

.aboutContainer{
	padding-top: 2em;
	font-size: 0.65em;
	margin: 0.75em;
	line-height: 1.35em;
	display: inline-flex;
	width: calc(100% - 5.5em);
	overflow-y: hidden; 
}
.aboutListContainer ul {
	margin-left: 0.5em;
}
.aboutListContainer li {
	list-style-type: none;
	padding: 0;
}
.aboutListContainer{
	margin-bottom: 4em;
	display:inline-block;
	width: 100%;
}
.aboutListContainer a{
	font-weight: 400;
}

.textContainer{
    height: auto;
    width: 100%;
    clear: both;
    line-height: 1.75em;
    white-space: nowrap;
}
.skills h1{
	font-size: 1em;
	margin-top:0.5em;
	
}
.skills p{
	white-space: normal;
}

.year{
	height: 100%!important;
	width: auto;
	margin-right : 1em;
	white-space: nowrap;
	float: left;
}
.what{
	display: flex;
	white-space: normal;
}
.secondText{
	white-space: nowrap;
}
.imageContainer{
	margin: 0 6em 0 2em;
	width: 250px;
	max-width: 250px;
}
.profileImage{
	margin-top:2em;
	width: 100%;
}
.imageContainer img{
	width: 100%;
	height: auto;
}

.listContainer{
	-moz-column-count: 2;
    -moz-column-gap: 5em;
    -webkit-column-count: 2;
    -webkit-column-gap: 5em;
    column-gap: 5em;
    column-count: 2;
    width: 80%;
}
.specialImages{
	width: 100%;
	margin: 1em 0 0 0;
	display: inline-block;
	vertical-align: middle;
	justify-content: center;
}

.specialImages img{
	margin-right: 1em;
	height:auto;
	width: 33%
}

.clear{
	clear: both;
}
.copyright{
	font-size: 0.75em;
	margin: 2em auto;
	text-align: center;
}

@media all and (max-width: 1200px) {
	.listContainer{
		-moz-column-count: 1;
	    -moz-column-gap: 1em;
	    -webkit-column-count: 1;
	    -webkit-column-gap: 1em;
	}
}

/* Wide Displays*/
@media all and (min-width: 1200px) {
	.grid-sizer{
		width: 20%;
	}
	.w1{ 
		width: 20%;
		/*max-width: 400px;*/
 	}
	.w2{ 
		width: 40%; 
		/*max-width: 800px;*/
	}
	.w3{ 
		width: 60%; 
		/*max-width: 1200px;*/
	}
}
/*mobile*/
@media all and (max-width: 650px) {
	
	.w1{ 
		width: 100%;
		height: 200px!important;
 	}
	.w2{ 
		width: 100%;
		height: 200px!important;
	}
	.w3{ 
		width: 100%;
		height: 200px!important;
	}
	.captionContainer{
		display: block!important;
		padding: 10px;
	}
	
	.captionContainer h3{
		font-size: 1.125em;
	}
	.colorOverlay{
		opacity: 0.6;
		margin: 10% 12%;
	}
	.aboutContainer h3{
		font-size: 1.25em;
	}
	.pImage{
		width: 100%;
		display: inline-block;
	}
	.specialImages{
		width: 100%;
		vertical-align: inherit;
		margin: 0;
	}

	.specialImages img{
		max-height: 100px;
		width: auto;
	}
	.aboutContainer{
		flex-direction: column;
		margin-top: 2em;
		margin-bottom: 0em;
		width: calc(100% - 2.5em);
	}
	.aboutContainer a{
		font-weight: 600;
	}
	.listContainer{
		width: 100%;
		margin-top: 1em;
	}
	.imageContainer{
		width: 100%;
		margin: 0 auto;
	}
	.artisttext{
		width: 100%;
	}
	body,html, .aboutContainer{
		overflow-x: hidden;
	}
}