/* Screens no smaller than a tablet */

/****************************************
* Typography
****************************************/

h1 {
  font-size: 62px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 21px;
}

/****************************************
* Header
****************************************/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header {
  box-shadow: 1px 1px 8px rgba(0, 0, 0, .5);
  padding: 1rem 0;
}

header .flex {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/****************************************
* Navigation
****************************************/

nav {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: auto;
  height: 100%;
  max-height: 100%;
  padding: 0 0 0 3rem;
  overflow-y: visible;
  z-index: 300;
}

nav .row {
  width: 100%;
}

nav ul {
  display: flex;
	margin: 0;
}

nav li {
  margin:0;
  border-bottom: none;
  width: auto;
  padding: 0;
}

nav li:first-of-type {
	margin-top: 0;
}

nav li:last-of-type {
  margin-bottom: 0;
}

nav li a {
  margin: auto 7px;
  background-color: transparent;
  padding: 0;
	font-size: 14px;
}

nav ul li:not(.logo) {
  display: flex;
}

/****************************************
* Main
****************************************/

main {
  padding-top: 94px;
}

/****************************************
* Billboard
****************************************/

.billboard {
  height: 400px;
}

/****************************************
* Divided (Vertical Separators)
****************************************/

.divided {
  max-width: 1400px;
}

.divided > div + div::before {
  top: 0;
  left: -2rem;
  width: 1px;
  height: 100%;
}

/****************************************
* Timeline
****************************************/

.timeline {
  grid-gap: 3rem 2rem;
}

/****************************************
* Staff directory
****************************************/

.directory .staff {
  flex: 0 0 calc((100% / 3) - 1rem);
}