/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

html, body {
  height: 100%; }

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.6em;
  color: #26262c;
  background: #fff;
  font-size: 17px;
  font-size: 1.0625rem; }

/* Headings */
h1, h2, h3 {
  position: relative;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    h1, h2, h3 {
      margin-bottom: 20px; } }

h1, h2 {
  font-weight: 800;
  line-height: 1.1em;
  font-size: 20px;
  font-size: 1.25rem; }

h1 {
  letter-spacing: 0.2rem;
  font-size: 5.5vw;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); }
  @media (max-width: 1075px) {
    h1 {
      font-size: 4.5vw; } }
  @media (max-width: 960px) {
    h1 {
      font-size: 48px;
      font-size: 3rem; } }
  @media (max-width: 767px) {
    h1 {
      font-size: 40px;
      font-size: 2.5rem; } }

h2 {
  letter-spacing: 0.1rem;
  font-size: 3vw; }

h3, h4 {
  font-family: "Oswald", sans-serif;
  line-height: 1.5em;
  font-size: 25px;
  font-size: 1.5625rem; }

h5 {
  font-style: italic;
  font-size: 16px;
  font-size: 1rem; }

/* Anchors */
a {
  outline: 0;
  color: #db5346;
  transition: opacity 0.2s; }
  a:hover, a:active {
    opacity: 0.6; }

a img {
  border: 0px;
  text-decoration: none; }

/* Paragraphs */
p {
  margin: 0 0 30px; }
  p:last-child {
    margin: 0; }
  @media (max-width: 767px) {
    p {
      margin: 0 0 20px; } }

sup {
  font-size: 15px;
  font-size: 0.9375rem;
  vertical-align: top;
  position: relative;
  top: -5px; }

strong, .bold {
  font-weight: 600; }

em, .italic {
  font-style: italic; }

hr {
  border: 0;
  border-top: 2px solid #26262c;
  display: block;
  margin: 40px 80px; }

/* Reset Box Sizing */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

/* CTAs */
.cta {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 15px 20px;
  margin-top: 10px;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transition: color, 0.3s;
  font-size: 18px;
  font-size: 1.125rem; }
  .cta:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleY(0);
    transform-origin: 50% 0;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-out; }
  .cta:hover, .cta:focus, .cta:active {
    text-shadow: none;
    opacity: 1; }
  .cta:hover:before, .cta:focus:before, .cta:active:before {
    transform: scaleY(1); }

/* Unscroll body */
.unscroll {
  overflow: hidden; }

/* Nav overlay */
.hide {
  transition: opacity 0.5s; }

.hide-active {
  opacity: 0.1; }

/* Alternate background */
.gray {
  background-color: #fafafa; }

/* Remove extra margin */
.minus {
  margin-top: -60px; }

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 17px;
  font-size: 1.0625rem; }

/* 404 */
.error404 {
  position: relative;
  z-index: 400;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/bg-404.jpg"); }
  .error404 .errorContent {
    position: absolute;
    z-index: 200;
    top: 50%;
    padding: 40px;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 60%;
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      .error404 .errorContent {
        padding: 30px;
        max-width: 100%;
        top: auto;
        bottom: 0;
        transform: none; } }
    .error404 .errorContent p {
      margin-left: 5px;
      line-height: 1.4em;
      font-size: 24px;
      font-size: 1.5rem; }
      @media (max-width: 767px) {
        .error404 .errorContent p {
          font-size: 18px;
          font-size: 1.125rem; } }

/* Shortcuts */
.shortcuts {
  position: absolute;
  z-index: 510;
  right: 0;
  top: 270px;
  display: block; }
  @media (max-width: 1075px) {
    .shortcuts {
      top: 170px; } }
  @media (max-width: 767px) {
    .shortcuts {
      display: none !important; } }
  .shortcuts li a {
    display: block;
    width: 130px;
    height: 76px;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s, background-color 0.3s;
    background-color: #26262c;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%; }
    @media (max-width: 768px) {
      .shortcuts li a {
        width: 100px;
        background-size: 50%; } }
    .shortcuts li a:hover {
      opacity: 1;
      background-color: #334e93; }
    .shortcuts li a span {
      position: absolute;
      display: block;
      height: 76px;
      right: 130px;
      padding: 23px;
      background-color: #fff;
      font-family: "Oswald", sans-serif;
      color: #334e93;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.3s;
      white-space: nowrap;
      font-size: 22px;
      font-size: 1.375rem; }
      @media (max-width: 768px) {
        .shortcuts li a span {
          right: 100px; } }
    .shortcuts li a:hover span {
      visibility: visible;
      opacity: 1; }
  .shortcuts li .iconCalendar {
    background-image: url("../images/icon-calendar.svg"); }
  .shortcuts li .iconDirections {
    background-image: url("../images/icon-directions.svg"); }
  .shortcuts li .iconMembership {
    background-image: url("../images/icon-membership.svg"); }
  .shortcuts li .iconSupport {
    background-image: url("../images/icon-support.svg"); }
  .shortcuts li .iconHours {
    background-image: url("../images/icon-hours.svg"); }

header {
  background-color: #fff; }
  header:before, header:after {
    content: "";
    display: table; }
  header:after {
    clear: both; }
  header nav:before, header nav:after {
    content: "";
    display: table; }
  header nav:after {
    clear: both; }
  header nav .logo {
    position: relative;
    float: left;
    padding: 25px;
    display: block;
    width: 180px;
    height: 120px;
    background-color: #fff; }
    @media (max-width: 768px) {
      header nav .logo {
        opacity: .9; } }
    @media (max-width: 767px) {
      header nav .logo {
        height: 80px;
        width: 120px;
        padding: 15px; } }
    header nav .logo img {
      width: 100%;
      height: 100%; }
  header nav .navTrigger {
    position: fixed;
    z-index: 1200;
    width: 130px;
    height: 120px;
    right: 0;
    background-color: #fff;
    border-radius: 0; }
    @media (max-width: 768px) {
      header nav .navTrigger {
        width: 100px; } }
    @media (max-width: 767px) {
      header nav .navTrigger {
        height: 80px;
        width: 80px; } }
  header nav .navReveal {
    position: fixed;
    padding: 40px 60px;
    z-index: 1000;
    width: 50%;
    top: 0;
    right: 0;
    display: none;
    background-color: #334e93;
    height: 100%;
    overflow-y: scroll; }
    @media (max-width: 1075px) {
      header nav .navReveal {
        width: 75%; } }
    @media (max-width: 767px) {
      header nav .navReveal {
        width: 100%;
        padding: 30px; } }
    header nav .navReveal ul {
      list-style: none;
      line-height: 1.3em;
      font-size: 45px;
      font-size: 2.8125rem; }
      @media (max-width: 767px) {
        header nav .navReveal ul {
          font-size: 35px;
          font-size: 2.1875rem; } }
      header nav .navReveal ul li {
        margin-top: 10px;
        font-weight: 600; }
        header nav .navReveal ul li:first-child {
          margin-top: 0; }
        header nav .navReveal ul li a {
          color: #fff;
          text-decoration: none; }
        header nav .navReveal ul li ul {
          line-height: 1.6em;
          font-size: 20px;
          font-size: 1.25rem; }
          header nav .navReveal ul li ul:before, header nav .navReveal ul li ul:after {
            content: "";
            display: table; }
          header nav .navReveal ul li ul:after {
            clear: both; }
          header nav .navReveal ul li ul li {
            margin: 0 30px 0 0;
            font-weight: 400;
            float: left; }

.headerAbsolute {
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 800;
  background-color: transparent; }
  @media (max-width: 767px) {
    .headerAbsolute {
      top: 0; } }

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none;
  position: relative; }

.hamburger:hover {
  opacity: 0.8; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #334e93;
  border-radius: 5px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -12px; }

.hamburger-inner::after {
  bottom: -12px; }

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease; }

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease; }

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

.banner {
  height: 650px;
  background-color: #e1e1e1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 130px;
  position: relative; }
  @media (max-width: 1075px) {
    .banner {
      height: 550px; } }
  @media (max-width: 768px) {
    .banner {
      margin-right: 100px; } }
  @media (max-width: 767px) {
    .banner {
      height: auto;
      margin-right: 0; } }
  .banner h1 {
    color: #fff;
    position: absolute;
    bottom: 130px;
    left: 55px;
    max-width: 70%; }
    @media (max-width: 1075px) {
      .banner h1 {
        left: 40px;
        max-width: 80%; } }
    @media (max-width: 767px) {
      .banner h1 {
        position: relative;
        padding: 120px 30px 30px;
        left: auto;
        bottom: auto;
        text-align: center;
        max-width: 100%;
        margin-bottom: 0; } }

.supportImageExhibitions {
  background-image: url("../images/support/support-thanks-exhibitions.jpg"); }

.supportImageCalendar {
  background-image: url("../images/support/support-thanks-calendar.jpg"); }

.home {
  position: relative;
  border-top: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }
  .home #carousel {
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto; }
    .home #carousel .rsImg {
      height: 300px; }
    .home #carousel .featureCopy {
      position: absolute;
      z-index: 200;
      top: 50%;
      padding: 40px;
      color: #fff;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
      max-width: 60%;
      transform: translateY(-45%); }
      @media (max-width: 768px) {
        .home #carousel .featureCopy {
          max-width: 500px;
          transform: translateY(-25%); } }
      @media (max-width: 767px) {
        .home #carousel .featureCopy {
          max-width: none;
          padding: 30px;
          transform: translateY(-40%);
          text-align: center; } }
      .home #carousel .featureCopy h2 {
        line-height: 1.1em;
        letter-spacing: 0.2rem;
        font-size: 6.5vw; }
        @media (max-width: 767px) {
          .home #carousel .featureCopy h2 {
            font-size: 10vw; } }
        .home #carousel .featureCopy h2 a {
          color: #fff;
          text-decoration: none; }
      .home #carousel .featureCopy p {
        display: table;
        font-family: "Oswald", sans-serif;
        color: #fff;
        margin-bottom: 20px;
        font-size: 30px;
        font-size: 1.875rem; }
        @media (max-width: 767px) {
          .home #carousel .featureCopy p {
            display: inherit;
            font-size: 18px;
            font-size: 1.125rem; } }
      .home #carousel .featureCopy .cta {
        border: 2px solid #db5346;
        color: #fff; }
        @media (max-width: 767px) {
          .home #carousel .featureCopy .cta {
            background-color: #db5346; } }
        .home #carousel .featureCopy .cta:before {
          background: #db5346; }

.homepage-footer {
  position: fixed;
  width: 100%;
  z-index: 500;
  bottom: 0;
  display: block;
  text-align: center;
  background-color: transparent;
  padding: 0 40px 20px;
  color: #fff; }
  @media (max-width: 767px) {
    .homepage-footer {
      display: none; } }
  .homepage-footer p {
    margin-bottom: 10px; }
    .homepage-footer p a {
      color: #fff; }
  .homepage-footer .socialMediaMini {
    display: inline-block;
    margin: 0 auto; }
    .homepage-footer .socialMediaMini:before, .homepage-footer .socialMediaMini:after {
      content: "";
      display: table; }
    .homepage-footer .socialMediaMini:after {
      clear: both; }
    .homepage-footer .socialMediaMini a {
      display: block;
      float: left;
      margin: 0 10px;
      width: 30px;
      height: 30px;
      background-repeat: no-repeat;
      background-position: center center; }
      @media (max-width: 767px) {
        .homepage-footer .socialMediaMini a {
          margin: 0 5px; } }
      .homepage-footer .socialMediaMini a.facebook {
        background-image: url("../images/icon-facebook.svg"); }
      .homepage-footer .socialMediaMini a.twitter {
        background-image: url("../images/icon-twitter.svg"); }
      .homepage-footer .socialMediaMini a.instagram {
        background-image: url("../images/icon-instagram.svg"); }
      .homepage-footer .socialMediaMini a.youtube {
        background-image: url("../images/icon-youtube.svg"); }
      .homepage-footer .socialMediaMini a.linkedin {
        background-image: url("../images/icon-linkedin.svg"); }

.intro {
  position: relative;
  z-index: 100;
  background-color: #fff;
  margin: -130px 380px 0 60px;
  padding: 50px 60px;
  line-height: 1.6em;
  font-size: 21px;
  font-size: 1.3125rem; }
  @media (max-width: 1075px) {
    .intro {
      margin: -130px 250px 0 40px;
      padding: 40px 40px; } }
  @media (max-width: 768px) {
    .intro {
      margin: -130px 180px 0 40px; } }
  @media (max-width: 767px) {
    .intro {
      margin: 0;
      padding: 20px;
      font-size: 17px;
      font-size: 1.0625rem; } }
  .intro .cta {
    border: 2px solid #26262c;
    color: #26262c;
    min-width: 250px;
    text-align: center;
    margin-top: 40px;
    left: 50%;
    transform: translateX(-50%); }
    .intro .cta:before {
      background: #26262c; }
    .intro .cta:hover, .intro .cta:focus, .intro .cta:active {
      color: #fff; }
    @media (max-width: 767px) {
      .intro .cta {
        margin-top: 20px;
        background-color: #26262c;
        color: #fff; } }

.content {
  position: relative; }
  .content:before, .content:after {
    content: "";
    display: table; }
  .content:after {
    clear: both; }
  .content h2 {
    display: block;
    font-weight: 600;
    display: block;
    margin-bottom: 40px;
    line-height: 1.2em;
    border-bottom: 2px solid #26262c;
    font-size: 3.8vw; }
    @media (max-width: 1075px) {
      .content h2 {
        margin-bottom: 30px; } }
    @media (max-width: 768px) {
      .content h2 {
        font-size: 5vw; } }
    @media (max-width: 767px) {
      .content h2 {
        font-size: 24px;
        font-size: 1.5rem;
        margin-bottom: 20px; } }
  .content .imageContainer {
    position: absolute;
    z-index: 50;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #e1e1e1; }
    .content .imageContainer h5 {
      position: absolute;
      z-index: 100;
      color: #fff;
      padding: 30px;
      bottom: 0;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); }
    @media (max-width: 768px) {
      .content .imageContainer {
        width: 40%; } }
    @media (max-width: 767px) {
      .content .imageContainer {
        display: none; } }
  .content .contentCopy {
    width: 50%;
    margin: 60px 0;
    box-sizing: border-box; }
    @media (max-width: 1075px) {
      .content .contentCopy {
        margin-top: 40px; } }
    @media (max-width: 768px) {
      .content .contentCopy {
        width: 60%;
        margin: 40px 0; } }
    @media (max-width: 767px) {
      .content .contentCopy {
        width: 100%;
        margin: 0;
        text-align: left; } }
    .content .contentCopy .copy {
      margin: 0 45px; }
      @media (max-width: 1075px) {
        .content .contentCopy .copy {
          margin: 0 35px; } }
      @media (max-width: 767px) {
        .content .contentCopy .copy {
          margin: 0;
          padding: 0 0 20px;
          text-align: left; } }
      .content .contentCopy .copy ul li {
        padding: 3px 0; }
    .content .contentCopy .cta {
      color: #db5346;
      border: 2px solid #db5346; }
      @media (max-width: 767px) {
        .content .contentCopy .cta {
          background-color: #db5346;
          color: #fff; } }
      .content .contentCopy .cta:before {
        background: #db5346; }
      .content .contentCopy .cta:hover, .content .contentCopy .cta:focus, .content .contentCopy .cta:active {
        color: #fff; }
  .content .oops {
    font-style: italic; }

.contentLeft {
  margin-top: 60px; }
  @media (max-width: 1075px) {
    .contentLeft {
      margin-top: 40px; } }
  @media (max-width: 767px) {
    .contentLeft {
      background-color: #fafafa; } }
  .contentLeft .contentCopyLeft {
    padding-left: 120px; }
    @media (max-width: 1075px) {
      .contentLeft .contentCopyLeft {
        padding-left: 80px; } }
    @media (max-width: 768px) {
      .contentLeft .contentCopyLeft {
        padding-left: 40px; } }
    @media (max-width: 767px) {
      .contentLeft .contentCopyLeft {
        padding: 20px;
        text-align: center; } }
    .contentLeft .contentCopyLeft .cta {
      margin: 30px 0 0 45px; }
      @media (max-width: 1075px) {
        .contentLeft .contentCopyLeft .cta {
          margin: 30px 0 0 35px; } }
      @media (max-width: 767px) {
        .contentLeft .contentCopyLeft .cta {
          margin: 0; } }
  .contentLeft .imageContainer {
    right: 0; }
  .contentLeft h2 {
    border-left: 2px solid #26262c;
    border-bottom: 2px solid #26262c;
    padding: 30px 0 30px 40px; }
    @media (max-width: 1075px) {
      .contentLeft h2 {
        padding: 30px 0 30px 30px; } }
    @media (max-width: 767px) {
      .contentLeft h2 {
        padding: 0;
        border: none; } }
  @media (max-width: 767px) {
    .contentLeft .hours .copy {
      text-align: center; } }
  .contentLeft .hours .copy ul {
    margin-bottom: 20px;
    list-style: none; }
    .contentLeft .hours .copy ul li {
      padding: 0; }
  .contentLeft .hours .copy .today {
    font-weight: 600;
    color: #334e93;
    padding: 5px 0;
    font-size: 20px;
    font-size: 1.25rem; }

.contentLeftAlt {
  margin-top: 0; }

.contentRight {
  text-align: right; }
  .contentRight .contentCopyRight {
    padding-right: 130px;
    position: relative;
    left: 50%; }
    @media (max-width: 1075px) {
      .contentRight .contentCopyRight {
        padding-right: 80px; } }
    @media (max-width: 768px) {
      .contentRight .contentCopyRight {
        padding-right: 40px; } }
    @media (max-width: 768px) {
      .contentRight .contentCopyRight {
        left: 40%; } }
    @media (max-width: 767px) {
      .contentRight .contentCopyRight {
        left: auto;
        padding: 20px;
        text-align: center; } }
    .contentRight .contentCopyRight .cta {
      margin: 30px 45px 0 0; }
      @media (max-width: 1075px) {
        .contentRight .contentCopyRight .cta {
          margin: 30px 35px 0 0; } }
      @media (max-width: 767px) {
        .contentRight .contentCopyRight .cta {
          margin: 0; } }
  .contentRight .imageContainer {
    left: 0; }
  .contentRight h2 {
    border-right: 2px solid #26262c;
    padding: 30px 40px 30px 0; }
    @media (max-width: 1075px) {
      .contentRight h2 {
        padding: 30px 30px 30px 0; } }
    @media (max-width: 767px) {
      .contentRight h2 {
        padding: 0;
        border: none; } }

.contentFirst {
  margin-top: 0; }

.contentSplit ul,
.contentCenter ul {
  list-style: disc;
  text-align: left;
  margin: 0 0 40px 20px; }
  .contentSplit ul li,
  .contentCenter ul li {
    padding: 3px 0; }
.contentSplit h2,
.contentCenter h2 {
  border-bottom: none; }
.contentSplit .cta,
.contentCenter .cta {
  border: 2px solid #26262c;
  color: #26262c;
  min-width: 250px; }
  @media (max-width: 767px) {
    .contentSplit .cta,
    .contentCenter .cta {
      background-color: #26262c;
      color: #fff; } }
  .contentSplit .cta:before,
  .contentCenter .cta:before {
    background: #26262c; }
  .contentSplit .cta:hover, .contentSplit .cta:focus, .contentSplit .cta:active,
  .contentCenter .cta:hover,
  .contentCenter .cta:focus,
  .contentCenter .cta:active {
    color: #fff; }

.contentCenter {
  padding: 60px; }
  @media (max-width: 768px) {
    .contentCenter {
      padding: 40px 60px; } }
  @media (max-width: 767px) {
    .contentCenter {
      padding: 20px; } }
  .contentCenter .contentCopyCenter {
    max-width: 600px;
    margin: 0 auto;
    text-align: center; }
    .contentCenter .contentCopyCenter .copy {
      margin-bottom: 40px; }
  .contentCenter .cta {
    display: block;
    border: 2px solid #26262c;
    color: #26262c;
    max-width: 380px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .contentCenter .cta:before {
      background: #26262c; }
    .contentCenter .cta:hover, .contentCenter .cta:focus, .contentCenter .cta:active {
      color: #fff; }
    @media (max-width: 767px) {
      .contentCenter .cta {
        background-color: #26262c;
        color: #fff; } }
  .contentCenter .cta-red {
    color: #fff;
    border: 2px solid #db5346;
    background-color: #db5346; }
    .contentCenter .cta-red:before {
      background: #fff; }
    .contentCenter .cta-red:hover, .contentCenter .cta-red:focus, .contentCenter .cta-red:active {
      color: #db5346; }

.contentSplit {
  display: table; }
  .contentSplit:before, .contentSplit:after {
    content: "";
    display: table; }
  .contentSplit:after {
    clear: both; }
  .contentSplit .contentCopySplit {
    display: table-cell;
    width: 50%;
    padding: 60px 130px;
    text-align: center; }
    .contentSplit .contentCopySplit:first-child {
      border-right: 1px solid #e1e1e1; }
      @media (max-width: 767px) {
        .contentSplit .contentCopySplit:first-child {
          border-right: none; } }
    @media (max-width: 1024px) {
      .contentSplit .contentCopySplit {
        padding: 60px; } }
    @media (max-width: 768px) {
      .contentSplit .contentCopySplit {
        display: block;
        width: 100%;
        padding: 40px 130px; }
        .contentSplit .contentCopySplit:first-child {
          border-bottom: 1px solid #e1e1e1; } }
    @media (max-width: 767px) {
      .contentSplit .contentCopySplit {
        padding: 20px; } }
    .contentSplit .contentCopySplit h2 {
      font-size: 2.5vw;
      font-weight: normal; }
      @media (max-width: 768px) {
        .contentSplit .contentCopySplit h2 {
          font-size: 4vw; } }
      @media (max-width: 767px) {
        .contentSplit .contentCopySplit h2 {
          font-size: 24px;
          font-size: 1.5rem;
          margin-bottom: 20px;
          font-weight: 600; } }
    .contentSplit .contentCopySplit ul {
      margin-bottom: 0; }
      .contentSplit .contentCopySplit ul.plus {
        margin-top: 30px; }
        @media (max-width: 767px) {
          .contentSplit .contentCopySplit ul.plus {
            margin-top: 20px; } }
    .contentSplit .contentCopySplit .cta {
      margin-top: 40px; }
      @media (max-width: 767px) {
        .contentSplit .contentCopySplit .cta {
          margin-top: 20px; } }
    .contentSplit .contentCopySplit .address {
      margin-bottom: 60px; }
      @media (max-width: 767px) {
        .contentSplit .contentCopySplit .address {
          margin-bottom: 30px; } }
      .contentSplit .contentCopySplit .address span {
        display: block;
        margin-top: 10px;
        line-height: 1.4em;
        font-weight: 600;
        font-size: 25px;
        font-size: 1.5625rem; }
        @media (max-width: 767px) {
          .contentSplit .contentCopySplit .address span {
            font-size: 18px;
            font-size: 1.125rem; } }

.contentColumns {
  columns: 2 150px;
  column-gap: 4em;
  margin: 0 130px 60px 120px; }
  @media (max-width: 1075px) {
    .contentColumns {
      margin: 0 130px 60px 80px; } }
  @media (max-width: 768px) {
    .contentColumns {
      columns: 1;
      margin: 0 100px 40px 80px; } }
  @media (max-width: 767px) {
    .contentColumns {
      margin: 0 20px 20px; } }
  .contentColumns ul {
    list-style: disc;
    margin: 0 0 20px 20px; }

/* Donate main CTA */
.supportCta {
  background-color: #db5346;
  padding: 30px; }
  .supportCta .cta {
    color: #fff;
    border: 2px solid #fff;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    font-size: 1.625rem; }
    @media (max-width: 767px) {
      .supportCta .cta {
        background-color: #fff;
        color: #db5346; } }
    .supportCta .cta:before {
      background: #fff; }
    .supportCta .cta:hover, .supportCta .cta:focus, .supportCta .cta:active {
      color: #db5346; }

/* News time stamp */
.posted {
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 1.375rem; }
  @media (max-width: 767px) {
    .posted {
      font-family: "Work Sans", sans-serif;
      font-style: italic;
      font-size: 17px;
      font-size: 1.0625rem; } }

.grid a {
  text-decoration: none; }
.grid li {
  display: block; }
  .grid li .eventDate {
    font-family: "Oswald", sans-serif;
    line-height: 1em; }
  .grid li .eventDay {
    font-weight: 600; }
  .grid li .eventMonth {
    text-transform: uppercase;
    margin-bottom: 10px; }
  .grid li .ctaMore {
    color: #db5346;
    border: 2px solid #db5346; }
    @media (max-width: 767px) {
      .grid li .ctaMore {
        background: #db5346;
        color: #fff; } }
    .grid li .ctaMore:before {
      background: #db5346; }
    .grid li .ctaMore:hover, .grid li .ctaMore:focus, .grid li .ctaMore:active {
      color: #fff; }
  .grid li .ctaTicket {
    color: #fff;
    border: 2px solid #b1383d;
    background: #b1383d; }
    .grid li .ctaTicket:before {
      background: #8a2c30; }
    .grid li .ctaTicket:hover, .grid li .ctaTicket:focus, .grid li .ctaTicket:active {
      border: 2px solid #8a2c30; }
  .grid li .gridSupport {
    display: block;
    background-color: #e1e1e1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  .grid li h2 {
    border-left: 2px solid #26262c; }
    .grid li h2 a {
      color: #26262c; }

.contentSeven .gridTwo {
  display: none; }
  @media (max-width: 767px) {
    .contentSeven .gridTwo {
      display: block; } }
.contentSeven .gridSingle {
  display: block; }
  @media (max-width: 767px) {
    .contentSeven .gridSingle {
      display: none; } }

.gridSingle li {
  padding: 60px 0 60px 120px; }
  .gridSingle li:before, .gridSingle li:after {
    content: "";
    display: table; }
  .gridSingle li:after {
    clear: both; }
  .gridSingle li:last-child {
    padding: 60px 0 0 120px; }
  @media (max-width: 1075px) {
    .gridSingle li {
      padding: 40px 0 40px 80px; } }
  .gridSingle li.gray {
    background-color: #fafafa; }
  .gridSingle li .eventLeft {
    float: left;
    width: 200px;
    margin-top: 60px; }
    @media (max-width: 1075px) {
      .gridSingle li .eventLeft {
        margin-top: 40px; } }
    .gridSingle li .eventLeft .eventDate span {
      font-weight: 300;
      line-height: 1.8em; }
    .gridSingle li .eventLeft .eventDay {
      margin: 0 0 20px -5px;
      font-size: 150px;
      font-size: 9.375rem; }
    .gridSingle li .eventLeft .eventMonth {
      font-size: 23px;
      font-size: 1.4375rem; }
    .gridSingle li .eventLeft .eventTime, .gridSingle li .eventLeft .eventLocation {
      margin-bottom: 20px;
      font-size: 20px;
      font-size: 1.25rem; }
    .gridSingle li .eventLeft .eventLocation {
      margin-bottom: 40px; }
    .gridSingle li .eventLeft hr {
      width: 80px;
      border: none;
      background-color: #26262c;
      height: 1px;
      margin: 0 0 12px; }
  .gridSingle li .eventRight {
    float: left;
    width: calc(100% - 330px);
    padding-left: 40px; }
    @media (max-width: 1075px) {
      .gridSingle li .eventRight {
        padding-left: 30px; } }
    @media (max-width: 768px) {
      .gridSingle li .eventRight {
        width: calc(100% - 300px); } }
    .gridSingle li .eventRight .gridSupport {
      height: 350px; }
      @media (max-width: 960px) {
        .gridSingle li .eventRight .gridSupport {
          height: 300px; } }
    .gridSingle li .eventRight h2 {
      padding: 30px 40px;
      margin-left: 40px;
      font-weight: 800; }
      @media (max-width: 1075px) {
        .gridSingle li .eventRight h2 {
          padding: 30px; } }
    .gridSingle li .eventRight .eventDescription {
      margin-left: 80px; }
      @media (max-width: 1075px) {
        .gridSingle li .eventRight .eventDescription {
          margin-left: 70px; } }

.gridShell {
  padding: 30px 100px 30px 90px; }
  @media (max-width: 1075px) {
    .gridShell {
      padding: 20px 100px 20px 50px; } }
  @media (max-width: 768px) {
    .gridShell {
      padding: 20px 70px 20px 50px; } }
  @media (max-width: 767px) {
    .gridShell {
      padding: 20px; } }
  .gridShell li {
    padding: 30px; }
    .gridShell li .eventClear:before, .gridShell li .eventClear:after {
      content: "";
      display: table; }
    .gridShell li .eventClear:after {
      clear: both; }
    .gridShell li .eventClear .eventLeft,
    .gridShell li .eventClear .eventRight {
      float: left; }
  .gridShell .gridTwo li {
    width: 50%; }
    @media (max-width: 767px) {
      .gridShell .gridTwo li {
        width: 100%; } }
    @media (max-width: 1075px) {
      .gridShell .gridTwo li {
        padding: 20px 30px; } }
    @media (max-width: 767px) {
      .gridShell .gridTwo li {
        width: 100%;
        padding: 10px 0;
        margin: 10px 0; } }
    .gridShell .gridTwo li .gridSupport {
      height: 250px; }
      @media (max-width: 960px) {
        .gridShell .gridTwo li .gridSupport {
          height: 200px; } }
    .gridShell .gridTwo li .eventLeft {
      width: 30%;
      padding: 38px 30px 0 0;
      text-align: right; }
      .gridShell .gridTwo li .eventLeft:before, .gridShell .gridTwo li .eventLeft:after {
        content: "";
        display: table; }
      .gridShell .gridTwo li .eventLeft:after {
        clear: both; }
      @media (max-width: 1024px) {
        .gridShell .gridTwo li .eventLeft {
          width: calc(100% - 30px);
          border-left: 2px solid #26262c;
          padding: 30px 0 0;
          margin-left: 30px; } }
      @media (max-width: 767px) {
        .gridShell .gridTwo li .eventLeft {
          border: none;
          margin: 0;
          width: 100%;
          padding: 20px 0 0;
          text-align: center;
          font-size: 36px;
          font-size: 2.25rem; } }
      .gridShell .gridTwo li .eventLeft .eventMonthDay {
        display: none; }
        @media (max-width: 767px) {
          .gridShell .gridTwo li .eventLeft .eventMonthDay {
            display: block; } }
      .gridShell .gridTwo li .eventLeft .eventMonth {
        font-size: 23px;
        font-size: 1.4375rem; }
        @media (max-width: 1024px) {
          .gridShell .gridTwo li .eventLeft .eventMonth {
            float: left;
            padding-left: 20px;
            margin-bottom: 0;
            font-size: 25px;
            font-size: 1.5625rem; } }
        @media (max-width: 767px) {
          .gridShell .gridTwo li .eventLeft .eventMonth {
            display: none; } }
      .gridShell .gridTwo li .eventLeft .eventDay {
        font-size: 8vw; }
        @media (max-width: 1024px) {
          .gridShell .gridTwo li .eventLeft .eventDay {
            float: left;
            margin-left: 10px;
            font-weight: 400;
            font-size: 25px;
            font-size: 1.5625rem; } }
        @media (max-width: 767px) {
          .gridShell .gridTwo li .eventLeft .eventDay {
            display: none; } }
    .gridShell .gridTwo li .eventRight,
    .gridShell .gridTwo li .gridInfo {
      width: 70%; }
      @media (max-width: 1024px) {
        .gridShell .gridTwo li .eventRight,
        .gridShell .gridTwo li .gridInfo {
          width: calc(100% - 30px);
          margin-left: 30px; } }
      @media (max-width: 767px) {
        .gridShell .gridTwo li .eventRight,
        .gridShell .gridTwo li .gridInfo {
          margin-left: 0;
          width: 100%; } }
      .gridShell .gridTwo li .eventRight h2,
      .gridShell .gridTwo li .gridInfo h2 {
        padding: 30px 0 30px 30px;
        margin-bottom: 30px;
        font-size: 2.5vw;
        font-weight: 400; }
        @media (max-width: 1024px) {
          .gridShell .gridTwo li .eventRight h2,
          .gridShell .gridTwo li .gridInfo h2 {
            padding: 20px 0 20px 20px;
            margin-bottom: 20px;
            font-weight: 400;
            font-size: 18px;
            font-size: 1.125rem; } }
        @media (max-width: 767px) {
          .gridShell .gridTwo li .eventRight h2,
          .gridShell .gridTwo li .gridInfo h2 {
            margin-bottom: 0;
            border: none;
            padding: 20px 0;
            text-align: center;
            font-weight: 600;
            font-size: 24px;
            font-size: 1.5rem; } }
      .gridShell .gridTwo li .eventRight .cta,
      .gridShell .gridTwo li .gridInfo .cta {
        padding: 10px 15px;
        margin-top: 0;
        font-size: 16px;
        font-size: 1rem; }
        @media (max-width: 1155px) {
          .gridShell .gridTwo li .eventRight .cta,
          .gridShell .gridTwo li .gridInfo .cta {
            display: block;
            text-align: center; } }
      .gridShell .gridTwo li .eventRight .ctaTicket,
      .gridShell .gridTwo li .gridInfo .ctaTicket {
        margin-left: 10px; }
        @media (max-width: 1155px) {
          .gridShell .gridTwo li .eventRight .ctaTicket,
          .gridShell .gridTwo li .gridInfo .ctaTicket {
            margin-left: 0;
            margin-top: 10px; } }
    .gridShell .gridTwo li .gridInfo {
      padding-left: 60px;
      width: 100%; }
      @media (max-width: 1024px) {
        .gridShell .gridTwo li .gridInfo {
          padding-left: 30px;
          margin-left: 0; } }
      @media (max-width: 767px) {
        .gridShell .gridTwo li .gridInfo {
          padding-left: 0;
          margin-left: 0; } }
      .gridShell .gridTwo li .gridInfo p,
      .gridShell .gridTwo li .gridInfo .cta {
        margin-left: 30px; }
        @media (max-width: 1024px) {
          .gridShell .gridTwo li .gridInfo p,
          .gridShell .gridTwo li .gridInfo .cta {
            margin-left: 20px; } }
        @media (max-width: 767px) {
          .gridShell .gridTwo li .gridInfo p,
          .gridShell .gridTwo li .gridInfo .cta {
            margin-right: 0;
            margin-left: 0; } }
  .gridShell .gridThree li {
    width: 33.33%; }
    @media (max-width: 1075px) {
      .gridShell .gridThree li {
        padding: 20px 30px; } }
    @media (max-width: 960px) {
      .gridShell .gridThree li {
        width: 50%; } }
    @media (max-width: 767px) {
      .gridShell .gridThree li {
        width: 100%;
        padding: 10px 0;
        margin: 10px 0; } }
    .gridShell .gridThree li .gridSupport {
      height: 200px; }
    .gridShell .gridThree li .eventLeft {
      width: 40%;
      padding: 28px 20px 0 0;
      text-align: right; }
      .gridShell .gridThree li .eventLeft:before, .gridShell .gridThree li .eventLeft:after {
        content: "";
        display: table; }
      .gridShell .gridThree li .eventLeft:after {
        clear: both; }
      @media (max-width: 960px) {
        .gridShell .gridThree li .eventLeft {
          width: calc(100% - 30px);
          border-left: 2px solid #26262c;
          padding: 30px 0 0 0;
          margin-left: 30px; } }
      @media (max-width: 767px) {
        .gridShell .gridThree li .eventLeft {
          border: none;
          margin: 0;
          width: 100%;
          padding: 20px 0 0;
          text-align: center;
          font-size: 36px;
          font-size: 2.25rem; } }
      .gridShell .gridThree li .eventLeft .eventMonthDay {
        display: none; }
        @media (max-width: 767px) {
          .gridShell .gridThree li .eventLeft .eventMonthDay {
            display: block; } }
      .gridShell .gridThree li .eventLeft .eventMonth {
        font-size: 23px;
        font-size: 1.4375rem; }
        @media (max-width: 1024px) {
          .gridShell .gridThree li .eventLeft .eventMonth {
            float: left;
            padding-left: 20px;
            margin-bottom: 0;
            font-size: 25px;
            font-size: 1.5625rem; } }
        @media (max-width: 767px) {
          .gridShell .gridThree li .eventLeft .eventMonth {
            display: none; } }
      .gridShell .gridThree li .eventLeft .eventDay {
        font-size: 7vw; }
        @media (max-width: 960px) {
          .gridShell .gridThree li .eventLeft .eventDay {
            float: left;
            margin-left: 10px;
            font-weight: 400;
            font-size: 25px;
            font-size: 1.5625rem; } }
        @media (max-width: 767px) {
          .gridShell .gridThree li .eventLeft .eventDay {
            display: none; } }
    .gridShell .gridThree li .eventRight,
    .gridShell .gridThree li .gridInfo {
      width: 60%; }
      @media (max-width: 960px) {
        .gridShell .gridThree li .eventRight,
        .gridShell .gridThree li .gridInfo {
          width: calc(100% - 30px);
          margin-left: 30px; } }
      @media (max-width: 767px) {
        .gridShell .gridThree li .eventRight,
        .gridShell .gridThree li .gridInfo {
          margin-left: 0;
          width: 100%; } }
      .gridShell .gridThree li .eventRight h2,
      .gridShell .gridThree li .gridInfo h2 {
        padding: 20px 0 20px 20px;
        margin-bottom: 20px;
        font-size: 1.8vw;
        font-weight: 400; }
        @media (max-width: 960px) {
          .gridShell .gridThree li .eventRight h2,
          .gridShell .gridThree li .gridInfo h2 {
            font-size: 18px;
            font-size: 1.125rem; } }
        @media (max-width: 767px) {
          .gridShell .gridThree li .eventRight h2,
          .gridShell .gridThree li .gridInfo h2 {
            margin-bottom: 0;
            border: none;
            padding: 20px 0;
            text-align: center;
            font-weight: 600;
            font-size: 24px;
            font-size: 1.5rem; } }
      .gridShell .gridThree li .eventRight .cta,
      .gridShell .gridThree li .gridInfo .cta {
        padding: 10px 15px;
        margin-top: 0;
        display: block;
        text-align: center;
        font-size: 16px;
        font-size: 1rem; }
        @media (max-width: 767px) {
          .gridShell .gridThree li .eventRight .cta,
          .gridShell .gridThree li .gridInfo .cta {
            margin: 0 20px; } }
      .gridShell .gridThree li .eventRight .ctaTicket,
      .gridShell .gridThree li .gridInfo .ctaTicket {
        margin-top: 10px; }
    .gridShell .gridThree li .gridInfo {
      padding-left: 30px;
      width: 100%; }
      @media (max-width: 1024px) {
        .gridShell .gridThree li .gridInfo {
          padding-left: 30px;
          margin-left: 0; } }
      @media (max-width: 767px) {
        .gridShell .gridThree li .gridInfo {
          padding-left: 0;
          margin-left: 0; } }
      .gridShell .gridThree li .gridInfo p,
      .gridShell .gridThree li .gridInfo .cta,
      .gridShell .gridThree li .gridInfo .posted {
        margin-left: 20px; }
        @media (max-width: 767px) {
          .gridShell .gridThree li .gridInfo p,
          .gridShell .gridThree li .gridInfo .cta,
          .gridShell .gridThree li .gridInfo .posted {
            margin-right: 0;
            margin-left: 0; } }

.eventFilters {
  margin: 0 130px 0 120px; }
  @media (max-width: 1075px) {
    .eventFilters {
      margin: 0 130px 0 80px; } }
  @media (max-width: 768px) {
    .eventFilters {
      margin: 0 100px 0 80px; } }
  @media (max-width: 767px) {
    .eventFilters {
      margin: 0 20px; } }
  .eventFilters .pageFilters:before, .eventFilters .pageFilters:after {
    content: "";
    display: table; }
  .eventFilters .pageFilters:after {
    clear: both; }
  .eventFilters .pageFilters .pageToggle {
    float: left;
    width: 70%;
    margin-left: -10px; }
    .eventFilters .pageFilters .pageToggle:before, .eventFilters .pageFilters .pageToggle:after {
      content: "";
      display: table; }
    .eventFilters .pageFilters .pageToggle:after {
      clear: both; }
    @media (max-width: 767px) {
      .eventFilters .pageFilters .pageToggle {
        float: none;
        width: 100%;
        margin-left: 0; } }
    .eventFilters .pageFilters .pageToggle div {
      float: left;
      width: 33.33%;
      padding: 0 10px; }
      @media (max-width: 767px) {
        .eventFilters .pageFilters .pageToggle div {
          float: none;
          width: 100%;
          padding: 0;
          margin-bottom: 10px; } }
      .eventFilters .pageFilters .pageToggle div a {
        display: block;
        text-align: center;
        width: 100%;
        padding: 15px;
        text-decoration: none; }
        .eventFilters .pageFilters .pageToggle div a.ctaGridToggle {
          color: #334e93;
          border: 2px solid #334e93; }
          .eventFilters .pageFilters .pageToggle div a.ctaGridToggle:hover, .eventFilters .pageFilters .pageToggle div a.ctaGridToggle:focus {
            opacity: 0.5; }
        .eventFilters .pageFilters .pageToggle div a.ctaGridActive {
          background: #334e93;
          color: #fff; }
          .eventFilters .pageFilters .pageToggle div a.ctaGridActive:hover, .eventFilters .pageFilters .pageToggle div a.ctaGridActive:focus {
            opacity: 1;
            cursor: default; }
        .eventFilters .pageFilters .pageToggle div a.ctaCalSingle:before {
          content: "7 Days"; }
          @media (max-width: 1024px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalSingle:before {
              content: "7"; } }
          @media (max-width: 767px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalSingle:before {
              content: "7 Days"; } }
        .eventFilters .pageFilters .pageToggle div a.ctaCalTwo:before {
          content: "30 Days"; }
          @media (max-width: 1024px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalTwo:before {
              content: "30"; } }
          @media (max-width: 767px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalTwo:before {
              content: "30 Days"; } }
        .eventFilters .pageFilters .pageToggle div a.ctaCalThree:before {
          content: "All Events"; }
          @media (max-width: 1024px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalThree:before {
              content: "All"; } }
          @media (max-width: 767px) {
            .eventFilters .pageFilters .pageToggle div a.ctaCalThree:before {
              content: "All Events"; } }
        .eventFilters .pageFilters .pageToggle div a.ctaExhibCurrent:before {
          content: "Current"; }
        .eventFilters .pageFilters .pageToggle div a.ctaExhibUpcoming:before {
          content: "Upcoming"; }
        .eventFilters .pageFilters .pageToggle div a.ctaExhibPast:before {
          content: "Past"; }
  .eventFilters .pageFilters .pageToggleLarge {
    width: calc(100% + 20px); }
    @media (max-width: 767px) {
      .eventFilters .pageFilters .pageToggleLarge {
        width: 100%; } }
  .eventFilters .pageFilters .categoriesToggle {
    float: left;
    width: 20%; }
    @media (max-width: 960px) {
      .eventFilters .pageFilters .categoriesToggle {
        width: 30%; } }
    @media (max-width: 767px) {
      .eventFilters .pageFilters .categoriesToggle {
        float: none;
        width: 100%; } }
    .eventFilters .pageFilters .categoriesToggle .categoriesTrigger {
      display: block;
      text-align: center;
      width: 100%;
      padding: 16px;
      color: #26262c;
      border: 1px solid #26262c;
      text-decoration: none; }
      .eventFilters .pageFilters .categoriesToggle .categoriesTrigger.categoriesTriggerActive {
        padding: 15px;
        border: 2px solid #26262c; }
  .eventFilters .categoriesFilters {
    display: none;
    margin-top: 20px; }
    .eventFilters .categoriesFilters:before, .eventFilters .categoriesFilters:after {
      content: "";
      display: table; }
    .eventFilters .categoriesFilters:after {
      clear: both; }
    @media (max-width: 767px) {
      .eventFilters .categoriesFilters {
        margin-top: 10px; } }
    .eventFilters .categoriesFilters div {
      float: left;
      width: 33.33%; }
      @media (max-width: 768px) {
        .eventFilters .categoriesFilters div {
          width: 50%; } }
      @media (max-width: 767px) {
        .eventFilters .categoriesFilters div {
          float: none;
          width: 100%; } }
      .eventFilters .categoriesFilters div input:empty {
        display: none; }
        .eventFilters .categoriesFilters div input:empty:checked ~ label:before {
          content: "";
          background-color: #26262c;
          cursor: default; }
        .eventFilters .categoriesFilters div input:empty:checked ~ label {
          cursor: default; }
      .eventFilters .categoriesFilters div label {
        transition: opacity .3s;
        position: relative;
        cursor: pointer;
        user-select: none;
        display: block;
        padding-left: 45px;
        margin: 20px 30px 0 0; }
        .eventFilters .categoriesFilters div label:before {
          position: absolute;
          display: block;
          top: -3px;
          left: 0;
          content: "";
          height: 32px;
          width: 32px;
          border: 2px solid #26262c;
          transition: background-color .3s; }
        .eventFilters .categoriesFilters div label:hover {
          opacity: 0.5; }
  .eventFilters .categoriesFiltersOn {
    display: block;
    margin-top: -10px; }

.people {
  margin-top: -60px; }
  @media (max-width: 767px) {
    .people {
      margin-top: -20px;
      text-align: center; } }
  .people li h2 {
    padding: 30px;
    border-left: 2px solid #26262c;
    font-size: 3vw;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .people li h2 {
        border: none;
        padding: 0;
        margin-bottom: 5px;
        font-size: 30px;
        font-size: 1.875rem; } }
  .people li h4 {
    margin: 0 0 10px 30px; }
    @media (max-width: 767px) {
      .people li h4 {
        margin: 0 0 10px;
        font-size: 22px;
        font-size: 1.375rem; } }
  .people li .cta {
    margin-left: 30px;
    color: #db5346;
    border: 2px solid #db5346; }
    .people li .cta:before {
      background: #db5346; }
    .people li .cta:hover, .people li .cta:focus, .people li .cta:active {
      color: #fff; }
    @media (max-width: 767px) {
      .people li .cta {
        margin-left: 0;
        width: 100%;
        background-color: #db5346;
        color: #fff; } }

@media (max-width: 767px) {
  article h3 {
    text-align: center; } }
article h4 {
  display: table;
  margin-bottom: 30px;
  font-size: 30px;
  font-size: 1.875rem; }
  @media (max-width: 767px) {
    article h4 {
      margin: -20px 0 20px;
      text-align: center; } }
article .article {
  padding: 0 130px 60px 120px; }
  @media (max-width: 1075px) {
    article .article {
      padding: 0 130px 40px 80px; } }
  @media (max-width: 767px) {
    article .article {
      padding: 20px; } }
  article .article .articleCopy {
    columns: 2 150px;
    column-gap: 4em; }
    @media (max-width: 768px) {
      article .article .articleCopy {
        columns: 1; } }
    article .article .articleCopy ol, article .article .articleCopy ul {
      margin: 0 60px 30px; }
    article .article .articleCopy ol {
      list-style: decimal; }
    article .article .articleCopy ul {
      list-style: disc; }
    article .article .articleCopy li {
      padding: 3px 0; }
  article .article .articleExtra {
    background-color: #fafafa;
    margin: 0 -130px 0 -120px;
    padding: 60px 260px;
    text-align: center;
    margin-top: 60px; }
    @media (max-width: 1024px) {
      article .article .articleExtra {
        padding: 40px 120px;
        margin-top: 40px; } }
    @media (max-width: 767px) {
      article .article .articleExtra {
        padding: 20px;
        margin: 20px -20px 0; } }
    article .article .articleExtra h2 {
      font-size: 3vw; }
      @media (max-width: 960px) {
        article .article .articleExtra h2 {
          font-size: 36px;
          font-size: 2.25rem; } }
    article .article .articleExtra ul {
      list-style: none; }
article .videoShell {
  background-color: #26262c;
  padding: 60px 180px; }
  @media (max-width: 768px) {
    article .videoShell {
      padding: 40px 100px; } }
  @media (max-width: 767px) {
    article .videoShell {
      padding: 0; } }
  article .videoShell .videoContainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; }
    article .videoShell .videoContainer .video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
article .bottomLinks {
  padding: 40px 60px;
  text-align: center;
  width: 100%;
  background-color: #fafafa; }
  @media (max-width: 767px) {
    article .bottomLinks {
      padding: 20px; } }
  article .bottomLinks a {
    margin: 20px auto;
    display: block;
    max-width: 400px; }
    @media (max-width: 767px) {
      article .bottomLinks a {
        margin: 10px 0; } }
  article .bottomLinks .ctaDefault {
    color: #db5346;
    border: 2px solid #db5346; }
    @media (max-width: 767px) {
      article .bottomLinks .ctaDefault {
        background-color: #db5346;
        color: #fff; } }
    article .bottomLinks .ctaDefault:before {
      background: #db5346; }
    article .bottomLinks .ctaDefault:hover, article .bottomLinks .ctaDefault:focus, article .bottomLinks .ctaDefault:active {
      color: #fff; }
  article .bottomLinks .ctaTicket,
  article .bottomLinks .ctaDownload {
    color: #fff;
    padding: 15px 60px;
    border: 2px solid #b1383d;
    background: #b1383d; }
    article .bottomLinks .ctaTicket:before,
    article .bottomLinks .ctaDownload:before {
      background: #8a2c30; }
    article .bottomLinks .ctaTicket:hover, article .bottomLinks .ctaTicket:focus, article .bottomLinks .ctaTicket:active,
    article .bottomLinks .ctaDownload:hover,
    article .bottomLinks .ctaDownload:focus,
    article .bottomLinks .ctaDownload:active {
      border: 2px solid #8a2c30; }
  article .bottomLinks .top {
    color: #26262c;
    padding: 15px 60px;
    border: 2px solid #26262c; }
    @media (max-width: 767px) {
      article .bottomLinks .top {
        background-color: #26262c;
        color: #fff; } }
    article .bottomLinks .top:before {
      background: #26262c; }
    article .bottomLinks .top:hover, article .bottomLinks .top:focus, article .bottomLinks .top:active {
      color: #fff; }
article .bottomLinksAlt {
  background-color: #fff; }

.photoset-grid-lightbox {
  padding: 60px 180px; }
  @media (max-width: 1075px) {
    .photoset-grid-lightbox {
      padding: 60px; } }
  @media (max-width: 768px) {
    .photoset-grid-lightbox {
      padding: 40px 60px; } }
  @media (max-width: 767px) {
    .photoset-grid-lightbox {
      padding: 0; } }

form {
  padding-top: 20px; }
  form div {
    margin: 20px 0; }
    form div label,
    form div input {
      display: block; }
    form div label {
      text-align: left;
      margin-bottom: 10px;
      font-family: "Oswald", sans-serif;
      font-size: 20px;
      font-size: 1.25rem; }
    form div input,
    form div textarea {
      width: 100%;
      padding: 15px 18px;
      border-top: none;
      border-right: none;
      border-left: 2px solid #26262c;
      border-bottom: 2px solid #26262c;
      box-sizing: border-box;
      font-size: 17px;
      font-size: 1.0625rem; }
      form div input:focus,
      form div textarea:focus {
        outline: none;
        background-color: #ebf7e9; }
    form div textarea {
      height: 100px;
      max-height: 100px;
      resize: none; }
  form .submit {
    background: #fafafa;
    letter-spacing: .08em;
    cursor: pointer;
    margin-top: 20px !important; }
    form .submit:hover, form .submit:focus, form .submit:active {
      color: #fff;
      background: #26262c; }
  form .zebra {
    display: none; }

/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

#cboxOverlay {
  background: #000000; }

#colorbox {
  outline: 0; }

#cboxContent {
  overflow: visible;
  position: relative;
  z-index: 500; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  background: #000000;
  padding: 1px; }

#cboxLoadingGraphic {
  background: url("../images/icon-loader.gif") no-repeat center center; }

#cboxLoadingOverlay {
  background: #000000; }

#cboxTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  padding: 20px; }

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px; }

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  outline: 0; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0; }

#cboxSlideshow, #cboxPrevious, #cboxNext, #cboxClose {
  text-indent: -9999px;
  width: 100px;
  height: 100px;
  position: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  z-index: 1000; }
  @media (max-width: 768px) {
    #cboxSlideshow, #cboxPrevious, #cboxNext, #cboxClose {
      position: absolute;
      width: 80px;
      height: 80px; } }
  @media (max-width: 767px) {
    #cboxSlideshow, #cboxPrevious, #cboxNext, #cboxClose {
      width: 60px;
      height: 60px; } }

#cboxPrevious {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icon-left.svg"); }

#cboxNext {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icon-right.svg"); }

#cboxClose {
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: url("../images/icon-close.svg"); }
  @media (max-width: 768px) {
    #cboxClose {
      width: 40px;
      height: 40px; } }

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px; }

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px; }

.cboxSlideshow_on #cboxSlideshow.hover {
  background-position: -100px -25px; }

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px; }

.cboxSlideshow_off #cboxSlideshow.hover {
  background-position: -75px -25px; }

footer:before, footer:after {
  content: "";
  display: table; }
footer:after {
  clear: both; }
footer .footerTop {
  background-image: url("../images/bg-footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 800px;
  position: relative; }
  footer .footerTop:before, footer .footerTop:after {
    content: "";
    display: table; }
  footer .footerTop:after {
    clear: both; }
  @media (max-width: 767px) {
    footer .footerTop {
      background-image: none;
      height: inherit; } }
  footer .footerTop .footerContent {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      footer .footerTop .footerContent {
        top: auto;
        transform: inherit; } }
  footer .footerTop .footerSquare {
    position: absolute;
    display: block;
    float: left;
    height: 400px;
    width: 33.33%;
    padding: 60px;
    color: #fff;
    text-align: center; }
    @media (max-width: 1075px) {
      footer .footerTop .footerSquare {
        padding: 40px; } }
    @media (max-width: 960px) {
      footer .footerTop .footerSquare {
        width: 50%; } }
    @media (max-width: 767px) {
      footer .footerTop .footerSquare {
        position: relative;
        width: 100%;
        padding: 30px 20px;
        height: auto !important;
        float: none; } }
    footer .footerTop .footerSquare.footerInfo {
      background-color: #9a99a6;
      left: 50%;
      transform: translateX(-50%);
      font-size: 18px;
      font-size: 1.125rem; }
      @media (max-width: 767px) {
        footer .footerTop .footerSquare.footerInfo {
          left: auto;
          transform: inherit; } }
      footer .footerTop .footerSquare.footerInfo .footerAddress {
        margin-top: -10px; }
      footer .footerTop .footerSquare.footerInfo .footerPhone {
        font-weight: 600;
        font-size: 2.5vw; }
        @media (max-width: 960px) {
          footer .footerTop .footerSquare.footerInfo .footerPhone {
            font-size: 30px;
            font-size: 1.875rem; } }
      footer .footerTop .footerSquare.footerInfo .footerEmail {
        color: #fff;
        font-size: 2.3vw; }
        @media (max-width: 960px) {
          footer .footerTop .footerSquare.footerInfo .footerEmail {
            font-size: 25px;
            font-size: 1.5625rem; } }
      footer .footerTop .footerSquare.footerInfo .socialMedia {
        position: relative;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 40px; }
        footer .footerTop .footerSquare.footerInfo .socialMedia:before, footer .footerTop .footerSquare.footerInfo .socialMedia:after {
          content: "";
          display: table; }
        footer .footerTop .footerSquare.footerInfo .socialMedia:after {
          clear: both; }
        footer .footerTop .footerSquare.footerInfo .socialMedia a {
          display: block;
          float: left;
          padding: 0 10px;
          width: 20%;
          height: 40px;
          background-repeat: no-repeat;
          background-position: center center; }
          footer .footerTop .footerSquare.footerInfo .socialMedia a.facebook {
            background-image: url("../images/icon-facebook.svg"); }
          footer .footerTop .footerSquare.footerInfo .socialMedia a.twitter {
            background-image: url("../images/icon-twitter.svg"); }
          footer .footerTop .footerSquare.footerInfo .socialMedia a.instagram {
            background-image: url("../images/icon-instagram.svg"); }
          footer .footerTop .footerSquare.footerInfo .socialMedia a.youtube {
            background-image: url("../images/icon-youtube.svg"); }
          footer .footerTop .footerSquare.footerInfo .socialMedia a.linkedin {
            background-image: url("../images/icon-linkedin.svg"); }
    footer .footerTop .footerSquare.footerHours {
      background-color: #334e93;
      bottom: 0; }
      footer .footerTop .footerSquare.footerHours ul {
        margin-bottom: 20px; }
    footer .footerTop .footerSquare.footerLinks {
      background-color: #db5346;
      right: 0;
      bottom: 0; }
      footer .footerTop .footerSquare.footerLinks a {
        display: block;
        border: 2px solid #fff;
        color: #fff;
        margin: 0 0 30px; }
        footer .footerTop .footerSquare.footerLinks a:last-child {
          margin-bottom: 0; }
        footer .footerTop .footerSquare.footerLinks a:before {
          background: #fff; }
        footer .footerTop .footerSquare.footerLinks a:hover, footer .footerTop .footerSquare.footerLinks a:focus, footer .footerTop .footerSquare.footerLinks a:active {
          color: #db5346; }
footer .footerBottom {
  text-align: center;
  padding: 40px 60px; }
  @media (max-width: 1075px) {
    footer .footerBottom {
      padding: 40px; } }
  @media (max-width: 767px) {
    footer .footerBottom {
      padding: 20px; } }
  footer .footerBottom ul {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1.5em;
    border-bottom: 2px solid #26262c;
    font-size: 22px;
    font-size: 1.375rem; }
    @media (max-width: 1024px) {
      footer .footerBottom ul {
        font-size: 18px;
        font-size: 1.125rem; } }
    footer .footerBottom ul li {
      display: inline; }
      footer .footerBottom ul li a {
        margin: 0 10px; }
        @media (max-width: 1024px) {
          footer .footerBottom ul li a {
            margin: 0 5px; } }
  footer .footerBottom p {
    margin: 0; }
    footer .footerBottom p.frogman {
      margin-top: 5px;
      font-size: 16px;
      font-size: 1rem; }
      footer .footerBottom p.frogman a {
        text-decoration: none;
        border: none;
        color: #9a99a6; }
  footer .footerBottom a {
    color: #26262c;
    text-decoration: none; }
