/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class], ol[class] {
  padding: 0;
}

/* Remove default margin */
body, h1, h2, h3, h4, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class], ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
$unit: percentage(69 / 960);
$gutter: percentage(12 / 960);

$unit: percentage(58 / 960);
$gutter: percentage(24 / 960);

$unit: percentage(68 / 970);
$gutter: percentage(14 / 970);
$unit: percentage(57 / 970);
$gutter: percentage(26 / 970);

$unit: percentage(77 / 1056);
$gutter: percentage(12 / 1056);
*/
/*
$unit: percentage(66 / $fullwidth);
$gutter: percentage(24 / $fullwidth);
*/
/*! layout elements
--------------------------------*/
/* HTML definitions */
body {
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Montserrat", "helvetica neue", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.4;
  color: #4b4b4b;
}

::-moz-selection {
  background: rgb(43.1615384615, 69.6153846154, 137.8384615385);
  color: white;
  text-shadow: none;
}

::selection {
  background: rgb(43.1615384615, 69.6153846154, 137.8384615385);
  color: white;
  text-shadow: none;
}

a {
  transition: all 0.2s ease;
  color: #1f3263;
  font-weight: 700;
}
a:visited {
  color: rgb(18.8384615385, 30.3846153846, 60.1615384615);
}
a:hover {
  color: rgb(43.1615384615, 69.6153846154, 137.8384615385);
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a.button {
  display: inline-flex;
  background: #1f3263;
  font-weight: 700;
  padding: 1rem 1.3rem;
  border-radius: 5px;
  color: white !important;
  text-decoration: none;
}
a.button:hover {
  background: #cb2026;
}
@media (max-width: 640px) {
  a.button {
    padding: 0.6rem 0.8rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "helvetica neue", helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #4e4e4f;
  color: #1f3263;
  margin: 0 0 0.4em 0;
  line-height: 1.1;
}

h4, h5, h6 {
  font-weight: 300;
}

h1, h2 {
  font-size: 270%;
}

h3 {
  font-size: 175%;
  text-transform: uppercase;
}

h4 {
  font-size: 150%;
}

h1 a, h2 a, h3 a, h4 a,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited {
  text-decoration: none;
  font-weight: 400;
}

p, ul, ol, hr {
  margin: 0 0 1.5em 0;
}

hr {
  clear: both;
}

hr.clr {
  visibility: hidden;
  height: 0;
  width: 0;
  margin: 0;
  border: 0;
}

iframe {
  width: 100%;
}

/*-- form elements
--------------------------------*/
form {
  display: block;
}
form hr {
  width: 100%;
}
form p {
  width: 100%;
  float: left;
  margin-bottom: 0.1em;
}

fieldset legend {
  display: none;
}

label {
  display: block;
  margin-bottom: 0.2em;
}

input {
  font-family: "Montserrat", "helvetica neue", helvetica, arial, sans-serif;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
textarea, select {
  display: block;
  width: 47.5%;
  border: 1px solid #ccc;
  padding: 0.4em 1%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

input:focus, textarea:focus, select:focus {
  background: #ffe;
}

input[type=submit],
input[type=button] {
  width: auto;
  text-align: left;
  margin-bottom: 0;
  padding: 0.6em 1em;
  font-weight: bold;
  background: #cb2026;
  color: white;
  border: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

textarea {
  float: none;
  width: 80%;
  font-size: 100%;
}

select {
  width: auto;
}

/*!-- STRUCTURE
--------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
  height: 0;
}
.clearfix:after {
  clear: both;
}

.aligncenter, .contain {
  margin: 0 auto;
  position: relative;
  width: 80%;
  max-width: 1056px;
  clear: both;
}

.aligncenter {
  margin: 0 auto;
  position: relative;
  width: 96%;
  max-width: 1056px;
  clear: both;
}

#page {
  background: white;
}

#branding {
  background: white;
  padding: 6vw 0;
}

#logo {
  max-width: 700px;
  margin: 0 auto;
}

#navmain {
  margin-bottom: 2rem;
}
#navmain ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
}
#navmain ul li {
  padding: 0;
}
#navmain ul li a {
  display: inline-flex;
  background: #1f3263;
  font-weight: 700;
  padding: 1rem 1.3rem;
  border-radius: 5px;
  color: white !important;
  text-decoration: none;
}
#navmain ul li a:hover {
  background: #cb2026;
}
@media (max-width: 640px) {
  #navmain ul li a {
    padding: 0.6rem 0.8rem;
  }
}

#primary.full-width {
  width: 100%;
}

#content {
  width: 100%;
  margin: 0 0 1.5em 0;
}

#bottom {
  background: #4b4b4b;
  color: rgb(229.5, 229.5, 229.5);
}
#bottom a {
  color: rgb(229.5, 229.5, 229.5);
}
#bottom a:hover {
  color: white;
}

#colophon {
  display: grid;
  gap: 30px;
  align-items: center;
}

.footer-logo img {
  max-width: 100px;
}

.band {
  padding: 4rem 0;
}

#intro, #about {
  color: white;
}
#intro h1, #intro h2, #intro h3, #intro h4, #intro h5, #intro h6, #intro a, #about h1, #about h2, #about h3, #about h4, #about h5, #about h6, #about a {
  color: white;
}

#intro {
  background: #cb2026;
}

#agenda {
  background: #efefef;
}

#about {
  background: #1f3263;
}

.headshots {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 2rem;
}

.headshot {
  font-size: 85%;
}
.headshot figure {
  margin-bottom: 0.5rem;
}
.headshot img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: contain;
  width: 100%;
}

/*-- Secondary elements
--------------------------------*/
ul.socials {
  list-style: none;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
ul.socials li {
  display: inline-block;
  width: 24px;
  margin-left: 4px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}
ul.socials li a {
  display: block;
  width: 100%;
  padding-top: 24px;
  height: 0;
  background-color: rgb(43.1615384615, 69.6153846154, 137.8384615385);
  background-image: url(../images/social_icons.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 50px;
  text-indent: 101%;
  white-space: nowrap;
  overflow: hidden;
}
ul.socials li a:hover {
  background-position-y: -25px !important;
}
ul.socials li#fb a {
  background-position: 0 0;
}
ul.socials li#tw a {
  background-position: -25px 0;
}
ul.socials li#yt a {
  background-position: -50px 0;
}
ul.socials li#gp a {
  background-position: -75px 0;
}
ul.socials li#li a {
  background-position: -100px 0;
}
ul.socials li#rss a {
  background-position: -125px 0;
}
ul.socials li#eml a {
  background-position: -150px 0;
}
#bottom ul.socials li {
  margin: 0 4px 0 0;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.logos img {
  display: block;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
}

.day-info {
  border: 1px solid #333;
  border-radius: 0.4rem;
  padding: 1.5rem;
  display: inline-block;
  background: white;
}

/*-- Content
--------------------------------*/
/* Add " (PDF)" text after links that go to PDFs */
a[href$=".pdf"]:after {
  content: " (PDF)";
}

/* If file size specified as data attribute, use that too */
a[href$=".pdf"][data-size]:after {
  content: " (PDF, " attr(data-size) ")";
}

@media screen and (min-width: 0px) and (max-width: 640px) {
  #branding,
  .band {
    padding: 2rem 0;
  }
  h1, h2 {
    font-size: 230%;
  }
  h3 {
    font-size: 170%;
  }
  h4 {
    font-size: 140%;
  }
  .headshots {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 641px) {
  .headshots {
    grid-template-columns: repeat(3, 1fr);
  }
  #colophon {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 801px) {
  .headshots {
    grid-template-columns: repeat(5, 1fr);
  }
  #colophon {
    grid-template-columns: 1fr 7fr;
  }
}
