/*@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;1,700&family=Lato&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@1,200&family=Crimson+Text&family=Lato&display=swap');

body {
	background-color: #313131;
	color: #ffffff;
	font-family: 'Crimson Text', Helvetica, sans-serif;
	font-weight: 200;
	margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400; /* 200 */
}

h1 {
	font-size: 56px;
	margin-bottom: 0px;
}

h2 {
	margin-top: 0px;
	font-size: 24px;
	font-family: Lato;
}

h3 {
	font-size: 40px;
}

a {
	color: #dddddd;
	padding: 6px 9px;
}

a:hover {
	background-color: rgba(0, 0, 0, 0.25); /* 222222 */
	color: white;
}

header {
	background-image: url("images/2 tri white.png");
	background-position: 97% 20px;
	background-repeat: no-repeat;
	background-size: 70px 85px;
}

header a {
	padding: 0px 0px;
	text-decoration: none;
}

header a:hover {
	background-color: transparent;
}


main a {
	margin: -6px -9px;
}

em {
	font-family: 'Crimson Pro';
	font-weight: 200;
}


.wrapper {
	width: 920px;
	margin: auto;
	border: 0px solid white;
	background-color: #222222;
	padding: 20px;
}

nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid white;
	font-family: Lato, Helvetica, sans-serif;
}

nav a {
	text-decoration: none;
	text-transform: uppercase;
	padding: 15px;
	background-color: transparent;
	color: white;
}

nav a:hover,
nav a.active {
	background-color: rgba(255, 255, 255, 0.25);
}

footer nav {
	border-bottom: none;
/* 	border-top: 1px solid white; */

}

footer nav a {
	width: 20%;
	padding: 0px;
	padding-top: 150px;
	background-size: cover;
	background-position: center center;
	margin: 20px;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
	transition: filter 0.5s;
}

footer nav a:hover {
	filter: brightness(1.25);
}

footer nav a span {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 15px;
	display: block;

}


#bio {
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.1);
	font-size: 24px;
}

#bio p {
	margin: 0px;
}

#bio p + p {
	margin-top: 20px;
}



.gallery {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.gallery a {
	margin: 15px;
	transition: box-shadow 0.5s;
}

.gallery a:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.gallery a img {
	border: 5px solid white;
	display: block;
}

.fr-content-element {
	border: 10px solid white;
}


footer {
	margin-top: 40px;
	text-align: center;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.5);
	margin: 40px -20px -20px -20px;
}

footer div {
	padding: 20px;
	/*background-image: url("images/2 tri white.png");
	background-position: 10px center;
	background-repeat: no-repeat;
	background-size: 35px 42px;*/
}




#experience {
}

#experience > ul {
	margin: auto;
/* 	background-color: green; */
}

#experience > ul > li {
	display: flex;
	margin-bottom: 30px;
}

#experience > ul > li + li {
	border-top: 1px solid #444;

}


#experience > ul > li > .year {
	font-size: 60px;
	width: 40%;
	text-align: right;
/* 	text-shadow: 1px 2px 0px black, 4px 7px 0px rgba(255, 255, 255, 0.05); */
/* 	color: chartreuse; */
	color: #777777;
	font-weight: 700;
	flex-shrink: 0;
}

#experience ul > li > ul {
	list-style-type: square;
	font-size: 16px;
	font-family: Lato, Helvetica, sans-serif;
}

#experience ul > li > ul > li:first-child {
/* 	vertical-align: baseline; */
padding-top: 20px;
}


#experience > ul > li > ul > li {
	margin-bottom: 30px;
}

#experience > ul > li > ul > li:last-child {
	margin-bottom: 0px;
}





/* Throbber loading animation from https://loading.io/css/ */
#loading {
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
}

.hidden {
	display: none;
}



.lds-ripple {
	display: inline-block;
	position: absolute;
	width: 80px;
	height: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
}
.lds-ripple div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}



