* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  background: #90323d;
}

h1, h2, h3 {
  margin-bottom: 1em;
}

.is-centered {
  text-align: center;
}

p {
  margin-bottom: 1em;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 1em 2em;
  background: #ffffff;
}

.logo {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

nav {
  margin-top: 1em;
  border-bottom: 0.25em solid #90323d;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 875px) {
  nav {
    padding-bottom: 1em;
  }
}

nav ::-moz-selection {
  background: transparent;
}

nav ::selection {
  background: transparent;
}

.nav-toggle {
  display: none;
  background: #90323d;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  line-height: 3;
  cursor: pointer;
}

@media (max-width: 875px) {
  .nav-toggle {
    display: block;
  }
}

.nav-toggle #toggle {
  display: block;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-items .nav-item {
  color: #90323d;
  text-decoration: none;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 3;
}

.nav-items .nav-item:hover {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 875px) {
  .nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    display: none;
  }
  .nav-items.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-items .nav-item {
    width: 100%;
  }
}

main {
  margin-top: 1.25em;
  display: -ms-grid;
  display: grid;
  grid: auto / 2fr 3fr;
      grid-template-areas: 'sidebar content';
  grid-gap: 2.5em;
}

@media (max-width: 769px) {
  main {
    grid: auto / 1fr;
        grid-template-areas: 'content'
 'sidebar';
  }
}

.content {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: content;
}

.sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar;
}

.sidebar-title {
  text-align: center;
  border-bottom: 0.25em solid #90323d;
  margin-bottom: 2em;
}

@media (min-width: 769px) {
  .sidebar-content {
    overflow-y: auto;
    /*max-height: 45em;*/
    padding-right: 1.5em;
    border-right: 0.25em solid #90323d;
  }
}

.section-content {
  margin-bottom: 1em;
}

.section-content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

ul, ol {
  padding-left: 1em;
}

ul li, ol li {
  margin: .5em 0;
}

ul li:first-child, ol li:first-child {
  margin-top: 1em;
}

ul li:last-child, ol li:last-child {
  margin-bottom: 1em;
}

.event {
  margin-bottom: 1.25em;
}

.event-date {
  text-align: center;
  background: #90323d;
  color: #ffffff;
  padding: .75em;
}

.event-date .date {
  font-size: 2.5em;
}

.event-description {
  border: 0.125em solid #90323d;
  padding: .75em;
}

.event-description h3 {
  text-align: center;
}

footer {
  text-align: center;
}

/* Basic jQuery Slider essential styles */
#carousel {
  margin: 0 auto 1em;
}

ul.bjqs {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: none;
}

li.bjqs-slide {
  position: absolute;
  display: none;
}

ul.bjqs-controls {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

ul.bjqs-controls.v-centered li a {
  position: absolute;
  padding: 0 .25em;
  font-size: 2em;
  text-decoration: none;
  color: #ffffff;
}

ul.bjqs-controls.v-centered li.bjqs-next a {
  right: 0;
}

ul.bjqs-controls.v-centered li.bjqs-prev a {
  left: 0;
}

ol.bjqs-markers {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 118px;
  position: absolute;
  bottom: 2px;
  left: 6px !important;
}

ol.bjqs-markers.h-centered {
  text-align: center;
}

ol.bjqs-markers li {
  display: inline;
}

ol.bjqs-markers li a {
  display: inline-block;
}

p.bjqs-caption {
  display: block;
  width: 96%;
  margin: 0;
  padding: 2%;
  position: absolute;
  bottom: 0;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */