@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@800');
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,400;0,700;1,400;1,700');

/* Resets */

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

/* Basics */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #404248;
	margin: 0 0 1em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 2em;
	margin: 0 0 1.5em 0;
	line-height: 1em;
}

h3 {
	font-size: 1.35em;
	margin-top: 2em;
}

b, strong {
	color: #404248;
	font-weight: 700;
}

i, em {
	font-style: italic;
}

sub {
	position: relative;
	top: 0.5em;
	font-size: 0.8em;
}

sup {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}

hr {
	border: 0;
	border-top: solid 1px #ddd;
}

blockquote {
	border-left: solid 0.5em #ddd;
	padding: 1em 0 1em 2em;
	font-style: italic;
}

p, ul, ol, dl, table {
	margin-bottom: 2em;
}

/* Section/Article */

section, article {
	margin-bottom: 5em;
}

section > :last-child,
article > :last-child,
section:last-child,
article:last-child {
	margin-bottom: 0;
}

header {
	margin: 0 0 2em 0;
}

header h2, header h3 {
	margin: 0 0 0.25em 0;
}

header p {
	display: block;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.065em;
	font-size: 0.9em;
	color: #696969;
	margin: 0;
}

header p strong {
	color: #404248;
	font-weight: 800;
}

footer {
	margin: 2.5em 0 0 0;
}

/* Tables */
.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}
table {
	margin: 0 0 2rem 0;
	width: 100%;
}
table tbody tr {
	border: solid 1px;
	border-left: 0;
	border-right: 0;
}
table td {
	padding: 0.75rem 0.75rem;
}
table th {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0 0.75rem 0.75rem 0.75rem;
	text-align: left;
}
table thead {
	border-bottom: solid 2px;
}
table tfoot {
	border-top: solid 2px;
}
table.alt {
	border-collapse: separate;
}
table.alt tbody tr td {
	border: solid 1px;
	border-left-width: 0;
	border-top-width: 0;
}
table.alt tbody tr td:first-child {
	border-left-width: 1px;
}
table.alt tbody tr:first-child td {
	border-top-width: 1px;
}
table.alt thead {
	border-bottom: 0;
}
table.alt tfoot {
	border-top: 0;
}
tbody tr {
	border-color: rgba(0, 0, 0, 0.25);
}
table tbody tr:nth-child(2n + 1) {
	background-color: rgba(0, 0, 0, 0.075);
}
table th {
	color: #555555;
}
table thead {
	border-bottom-color: rgba(0, 0, 0, 0.25);
}
table tfoot {
	border-top-color: rgba(0, 0, 0, 0.25);
}
table.alt tbody tr td {
	border-color: rgba(0, 0, 0, 0.25);
}

/* Typography */

html {
	font-family: 'Libre Franklin', sans-serif;
	font-size: 15pt;
}
@media screen and (max-width: 1680px) {
	html {
		font-size: 14pt;
	}
}
@media screen and (max-width: 980px) {
	html {
		font-size: 13pt;
	}
}
@media screen and (max-width: 480px) {
	html {
		font-size: 12pt;
	}
}

body {
  background-color: #ffffff;
  color: #444444;
}

html {
	overflow-y: scroll;
}

.inner {
	margin: 0 auto 0 auto;
	width: 75rem;
	max-width: calc(100% - 6rem);
}

/* Main  */

#main {
	min-height: calc(100vh - 12.25rem);
}

/* Header */

body:before {
	content: ' ';
	background-image: url(images/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.05;
}

#header .content {
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	color: #fff;
	font-size: 11pt;
}

#header {
line-height: 1.5;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
	white-space: nowrap;
	background: url("images/bg01.png"), url("images/header.jpg");
	background-position: top left, center center;
	background-size: auto, cover;
	padding: 2rem 0 2rem 0;
}

#header .border {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	border-radius: 10px;
	border: 10px solid transparent;
	background-color: rgba(255, 255, 255, 0.1);
}

#header .content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
        align-content: space-evenly;
	height: 5rem;
	padding: 0 1.75em 0 1.75em;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)), url("images/bg02.png");
	background-color: rgba(59, 62, 69, 0.9);
	border-radius: 8px;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.45), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.15);
}

#header h1 {
	color: inherit;
	font-size: 1.5em;
	margin: 0 0 1px 0;
}

#header h1 a {
	padding: 0.5em 0.8em 0.5em 0.8em;
	padding: 0 0.5em 0 0.5em;
}
#header a {
	//border-radius: 6px;
	//transition: color .2s ease;
}
#header a:hover {
	//color: #f5ffe6;
	//background-color: rgba(255,255,255,0.2);
}

/* Nav */

#nav {
}

#nav > ul {
	margin: 0;
	white-space: nowrap;
}

#nav > ul > li {
	display: inline-block;
	margin: 0;
	padding: 0 0.8em 0 0;
}

#nav > ul > li > a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.95em;
	letter-spacing: 0.075em;
	padding: 0.5em 0.8em 0.5em 0.8em;
	padding: 0.4em 0.8em 0.4em 0.8em;
	border-radius: 6px;
}

#nav > ul > li > a[aria-current] {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: inset 1px 1px 0px 0px rgba(0, 0, 0, 0.025), 1px 1px 0px 0px rgba(255, 255, 255, 0.025);
}

#nav > ul > li:last-child {
	padding-right: 0;
}

/* Footer */

#footer {
        padding: 0;
        margin: 0;
}
#footer a {
        text-decoration: none;
        color: inherit;
}

#footer .icons {
        margin: 0;
        padding: 3rem 0 3rem 0;
        background-color: rgba(0, 0, 0, 0.1);
        color: rgba(128, 128, 128, 1);
        line-height: 1;
        font-size: 2rem;
}
#footer .icons ul {
        list-style: none;
        text-align: center;
        margin: 0;
        padding: 0;
}
#footer .icons ul li {
        display: inline-block;
        padding-left: 1.5rem;
}
#footer .icons ul li:first-child {
        padding-left: 0;
}

#footer .icons a:hover {
        color: rgba(255, 255, 255, 0.8);;
}
#footer .icons svg {
        fill: currentColor;
        width: 1em;
        height: 1em;
}

#footer .copyright {
        background-color: rgba(0, 0, 0, 0.7);
        color: rgba(128, 128, 128, 1);
        text-align: center;
        padding: 3rem 0 3rem 0;
}

#footer .copyright a {
        border-bottom: dotted 1px;
        border-bottom-color: currentColor;
}
#footer .copyright a:hover {
        color: rgba(255, 255, 255, 0.8);;
        border-bottom-color: transparent;
}

/* Projects */

#project-list article {
	display: flex;
	align-items: center;
	border-bottom: solid 1px #dbdbdb;
	margin: 0 0 2.75em 0;
	padding: 0 0 2.75em 0;
}
#project-list article:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
#project-list article > div > header {
	margin: 0 0 1em 0;
}
#project-list article > a {
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	margin-right: 0;
        max-width: 8rem;
	width: 8rem;
}
#project-list article > div {
	margin-left: 3rem;
	display: inline-block;
	width: calc(75% - 4rem);
}
#project-list article > a > img {
	display: block;
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 0 5px #c0c0c0;
}
#project-list article > div > p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
#project-list h4 > span {
	font-size: smaller;
	text-transform: none;
	font-weight: 400;
	color: #777;
}

/* */
a > img {
	cursor: zoom-in;
}


