html {
    box-sizing: border-box;
}
body {
	font-family: 'Open Sans', sans-serif;
	background-color:#ccc;
	color: #222;
	overflow-x:hidden;
	}
h1{
	float: right;
	display: block;
	font-size: 27px;
	font-weight: 700;
	padding: 12px;
	position: sticky;
	top: 0;
	color: #333;
	background-color:#ddd;
	border-bottom: solid #fff 2px;
	}
h2 {
	text-align: left;
	padding: 7px;
	margin: 1em 0em .5em;
	font-size: 1.2em;
	font-weight: 700;
	border-bottom: 1px solid #9a9a9a;
	}
h4 {
	font-size: .9rem;
	font-weight: bold;
	padding: .7rem 0rem .3rem;
	line-height: 1.25rem;
	}
h5 {
	font-size: .8rem;
	font-style: italic;
	}
h6 {
	font-size: .8rem;
	padding-top: .5rem
	}
.bent {
	font-style: italic;
	}
.container {
    margin: 7px auto 0px;
	background-color:#ddd;
	width: 90%;
	max-width: 1000px;
	box-shadow: 0px 0px 10px grey;
    }
header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    border-bottom: solid #fff 2px;
	background-image: linear-gradient(to bottom right, #333, #aaa);
}
.container-small {
    margin: 7px auto 7px;
	background-color:#ddd;
	height: 50%;
	max-width: 1000px;
	box-shadow: 0px 0px 10px grey;
    }
table {
	width: 100%;
	}
th, td {
  padding: 7px;
  text-align: left;
}
.logo {
	width: 70%;
	max-width: 500px;
	margin: .3rem;
	z-index: 1;
}
span.right {
	text-align: right;
	color: #ddd;
	font-style: italic;
	font-size: 1rem;
	padding: 7px 1.5rem;
	display: block;
	background-color: #333;
    border-bottom: solid #fff 2px;
	}
i.fas fa-search-plus {
	margin-right: 7px;
	}
.FrontPageHero {
	display: flex;
	object-fit: scale-down;
	background-image: url(../images_ready/055_large.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 80vh;
	}
.portrait {
text-align: center;
margin: 1em;
	}
.portrait img {
	width: 70%;
	min-width: 250px;
	max-width: 400px;
	margin-bottom: .5em;
	box-shadow: 3px 3px 4px grey;
	}
#callout {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4rem;
	}
.blurb {
	font-family: 'Open Sans', sans-serif;
	font-size: 3.2em;
	margin: .5em;
	text-align: center;
	}
/* NAVIGATION  */
.stickum {
	position: sticky;
	top: 0;

	}
nav {
	background-color:#ddd;
	padding: 9px 0px 8px;
	border-bottom: solid #fff 2px;
	}
.navbar {
  overflow:hidden;
}
.navbar-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	}
.navbar-nav li{
	list-style:none;
}
.navbar-nav a{
	padding: 10px;
	margin: 2px;
	color: #9a9a9a;
	background-color:#eee;
	text-decoration: none;
	border: solid black 1px;
	transition: background-color .25s ease-in-out;
	box-shadow: 2px 2px 3px grey;
	}
.navbar-nav a:hover{
  color: #eee;
  background-color: #333;
}
.navbar-nav a.active {
	color: #333;
	font-weight: bold;
	background-color:#aaa;}
#side-menu {
	font-size: 2rem;
	line-height: 2rem;
	}
.open-slide svg{
	margin: 2px 0px 0px 12px;
	}
.side-nav{
  height:100%;
  width:0;
  position:fixed;
  z-index:1;
  top:0;
  left:0;
  background-color:#111;
  opacity:0.9;
  overflow-x:hidden;
  padding-top:60px;
  transition:0.5s;
}
.side-nav a{
  padding:10px 10px 10px 30px;
  text-decoration:none;
  font-size:1.25rem;
  font-weight: bold;
  color:#ccc;
  display:block;
  transition:0.3s;
}
.side-nav a:hover{
  color:#fff;
}
.side-nav .btn-close{
  position:absolute;
  top:0;
  right:22px;
  font-size:2rem;
  margin-left:50px;
}
@media(min-width:900px){
  .open-slide{display:none;}
  h1 {display:none}
}
@media(max-width:900px){
  .navbar-nav{display:none;}
  .portrait-wrap{flex-direction: column;}
  .blurb {font-size: 2.3rem}
  #callout{margin-bottom: 1rem;}
}
/* CARDS */
.cards img {
	width: 90%;
	padding-top: 1em;
	}
.cards p.title {
	font-size: .85rem;
	font-weight: bold;
	margin-top: .5rem;
	}
.cards p.medium {
	font-size: .8rem;
	font-style: italic;
	padding-top: 4px;
	}
.cards p.size {
	font-size: .8rem;
	padding: 4px 0px 10px;
	}
.cards ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 1em;
	}
.cards ul li {
	box-shadow: 3px 3px 4px grey;
	padding: 1rem;
	margin: 1em;
	background-color:#aaa;
	border: solid #fff 2px;
	text-align: center;
	}
.bio-name {
	width: 60%;
	min-width: 200px;
	max-width: 400px;
	}
.bio-portrait {
	width: 100%;
	min-width: 100px;
	box-shadow: 3px 3px 4px grey;
	margin-bottom: 1em;
	}
#portrait-group {
	float: left;
	padding-right: 1.5em;
	}
p.bio-body{
	font-family:Arial, Helvetica, sans-serif;
	text-align: left;
	line-height:2rem;
	margin-bottom: 1rem;
	}
#text {
	margin: 50px;
	}
#text h1{
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 10px;
	padding-bottom: 7px;
	border-bottom: 1px solid #403F38;
	display: block;
	float: left;
	}
#text h5{
	font-size: .8em;
	font-style: italic;
	margin-bottom: 10px;
	}
.contact-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	height: 50vh;
	}
.contact {
	font-size: 1.2rem;
	padding: 1rem;
	}
#footer {
	color: #ddd;
	font-size: .8em;
	background-image: linear-gradient(to bottom right, #333, #aaa);
	text-align: center;
	padding: 12px;
	border-top: solid #fff 2px;
}
#footer a {
	color: #fff;
	}

/* ---------------------------------------------------------------*/
@media only screen and (min-width: 550px) {
 .cards ul li {width: 35%; margin: .5em;}
}
@media only screen and (min-width: 780px) {
.cards ul li {width: 25%; margin: .5rem;}
.portrait-wrap {
	display: flex;
	flex-direction: row;
	}
}
@media only screen and (min-width: 900px) {
.cards ul li {width: 15%;}
}