@font-face {
	font-family: 'Suisse';
	font-style: normal;
	font-weight: 100;
	src: local(''),
	     url('/fonts/SuisseIntl-Ultralight-WebS.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	     url('/fonts/SuisseIntl-Ultralight-WebS.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Suisse';
	font-style: normal;
	font-weight: 200;
	src: local(''),
	     url('/fonts/SuisseIntl-Light-WebS.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	     url('/fonts/SuisseIntl-Light-WebS.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Suisse';
	font-style: normal;
	font-weight: 400;
	src: local(''),
	     url('/fonts/SuisseIntl-Regular-WebS.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	     url('/fonts/SuisseIntl-Regular-WebS.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Suisse';
	font-style: italic;
	font-weight: 400;
	src: local(''),
	     url('/fonts/SuisseIntl-RegularItalic-WebS.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	     url('/fonts/SuisseIntl-RegularItalic-WebS.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Suisse';
	font-style: normal;
	font-weight: 600;
	src: local(''),
	     url('/fonts/SuisseScreen-Medium-WebS.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	     url('/fonts/SuisseScreen-Medium-WebS.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
	--gap-size: 5px;
}

@keyframes move-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}


* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Suisse', Helvetica Neue, Helvetica, Lato, sans-serif;
	font-weight: 400;
}



article a {
	color: #FD6325;
	transition: 0.2s;
	text-decoration: none;
}
article a:active,
article a:focus,
article a:hover {
	background: #FD6325;
	color: #fff;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
}		
.container.space-above {
	padding-top: 50px;
}
.container.huge-space-above {
	padding-top: 150px;
}
.container.slim {
	max-width: 750px;
}
.container.flex {
	display: flex;
}		
.container.flex.center {
	justify-content: center;

}		
.container.grid {
	display: grid;
	grid-gap: 0;
	/*grid-gap: calc(var(--gap-size) * 2);*/
	grid-template-columns: 16.666665% 16.666665% 16.666665% 16.666665% 16.666665% 16.666665%;
	/*grid-auto-flow: row;*/
	/*grid-auto-flow: dense;*/
}		
.container .photo {
	box-sizing: border-box;
	/*background: gray;*/
	color: #fff;
	text-align: center;
	border: solid var(--gap-size) transparent;
	position: relative;
}
.animate .photo {
	animation: move-in 1s;
	animation-fill-mode: both;
	opacity: 0;
}

.animate .photo:nth-child(5n+0) {animation-delay: 1.1s;}
.animate .photo:nth-child(5n+1) {animation-delay: 1.2s;}
.animate .photo:nth-child(5n+2) {animation-delay: 1.3s;}
.animate .photo:nth-child(5n+3) {animation-delay: 1.4s;}
.animate .photo:nth-child(5n+4) {animation-delay: 1.5s;}
.animate .photo:nth-child(1) {animation-delay: .1s;}
.animate .photo:nth-child(2) {animation-delay: .2s;}
.animate .photo:nth-child(3) {animation-delay: .3s;}
.animate .photo:nth-child(4) {animation-delay: .4s;}
.animate .photo:nth-child(5) {animation-delay: .5s;}
.animate .photo:nth-child(6) {animation-delay: .6s;}
.animate .photo:nth-child(7) {animation-delay: .7s;}
.animate .photo:nth-child(8) {animation-delay: .8s;}
.animate .photo:nth-child(9) {animation-delay: .9s;}
.animate .photo:nth-child(10) {animation-delay: 1s;}

.grid .photo {
	aspect-ratio: 1/1;
	grid-column: span 2;
	grid-row: span 2;
}
.grid .photo.huge.square {
	grid-column: span 4;
	grid-row: span 4;
}
.grid .photo.tiny.square {
	grid-column: span 1;
	grid-row: span 1;
}
.grid .photo.portrait {
	aspect-ratio: 1/2;
	grid-column: span 2;
	grid-row: span 4;
}
.grid .photo.landscape {
	aspect-ratio: 2/1;
	grid-column: span 4;
	grid-row: span 2;
}
	/*push-down*/
.grid .photo.push-down {
	grid-row: span 3;
	margin-top: 50%;
}
.grid .photo.huge.square.push-down {
	grid-row: span 5;
	margin-top: 25%;
}
.grid .photo.tiny.square.push-down {
	grid-row: span 2;
	margin-top: 100%;
}
.grid .photo.portrait.push-down {
	grid-row: span 5;
}
.grid .photo.landscape.push-down {
	grid-row: span 3;
	margin-top: 25%;
}
	/*push-left*/
.grid .photo.push-left {
	grid-column: span 3;
	margin-left: 33.333333%;
}
.grid .photo.huge.square.push-left {
	grid-column: span 5;
	margin-left: 20%;
}
.grid .photo.tiny.square.push-left {
	grid-column: span 2;
	margin-left: 50%;
}
.grid .photo.portrait.push-left {
	grid-column: span 3;
	margin-left: 33.333333%;
}
.grid .photo.landscape.push-left {
	grid-column: span 5;
	margin-left: 20%;
}

.photo .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/*background: rgba(255, 255, 255, .7);*/
	background: rgba(252, 99, 37, 0.7);
	/*mix-blend-mode: multiply;*/
	opacity: 0;
	transition: opacity 0.3s;
	color: #fff;
}
.photo .overlay:hover,
.photo .overlay:focus {
	opacity: 1;
}
.photo .overlay .post-meta {
	color: #a8350b;
}
/*.photo .overlay .post-meta,
.photo .overlay .titleWrap,
.photo .overlay .gridText {
	flex-basis: 100%;
}*/
.photo .overlay .titleWrap {
	/*display: inline-block;*/
}
.photo img {
	display: block;
	width: 100%;
}

h1 {
	padding: 0;
	margin: 0;
	padding-bottom: 0.3em;
}
h2 {
	padding: 0;
	margin: 0;
	padding-bottom: 0.8em;
}
p {
	margin: 0;
	padding: 0;
	padding-bottom: 0.5em;
}


img.face {
	display: block;
	width: 80%;
	max-width: 150px;
	border-radius: 50%;
	margin: 0 auto;
	box-shadow: 0 2px 40px rgba(0, 0, 0, .2) ;
}

.content-image img {
	max-width: 100%;
	margin: 15px 0 15px 0;
	/*border: solid 6px white;*/
	/*border-radius: 3px;*/
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

header {
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

header .homelink {
	color: #aaa;
	text-decoration: none;
}
header .homelink:hover,
header .homelink:focus,
header .homelink:active {
	color: #aaa;
	background: none;
}
header .homelink::before {
	content: '< ';
}

main {
	padding: 5px;
	padding-top: 10px;
	padding-bottom: 50px;
}

main.dark {
	background: #000;
	color: #fff;
}

.post-meta {
	margin-bottom: 20px;
	color: #aaa;
}

.post-meta time {
	/*display: inline-block;*/
}

.post-meta .post-tags {
	display: inline-block;
}
.post-meta .post-tags ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-left: 15px;
}
.post-meta .post-tags li {
	display: inline;
	padding-right: 5px;
}
.post-meta .post-tags li::before {
	content: '#';
}
.post-meta .post-tags li a {
	text-decoration: none;
	background: none;
	color: #666;
}

article p,
article .project-table {padding-left: 60px;}

article.summary {
	position: relative;
	padding-bottom: 41px;
	margin-bottom: 20px;
}
article.summary::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	height: 1px;
	width: 60px;
	left: calc(50% - 30px);
	background: #aaa;
}

.readMore {
    display: inline-block;
    margin-top: 10px;
}

.project-table {
	margin-top: 40px;
	margin-bottom: 55px;
}
.project-table table {
	font-weight: 200;
}
.project-table table thead {display: none;}
.project-table table td:first-child {
	font-weight: 100;
	padding-right: 30px;
}


blockquote {}
blockquote .author {
	color: #aaa;
	font-style: italic;
	text-align: right;
}

.paginator {
	padding-top: 50px;
	text-align: center;
	color: #666;
}

footer {
	color: #aaa;
	text-align: center;
	margin-top: 100px;
}
footer a {}
footer a {
	color: #aaa;
	text-decoration: none;
}
footer a::before {
	content: '–';
	display: inline-block;
	padding: 0 5px;
}

small.disclaimer {
	display: block;
	padding-top: 5px;
	text-align: right;
	color: #999;
}