@charset "utf-8";
/**
 * Media Query Breakpoint
 * The breakpoint mixin uses the same attribute names as Bootstrap's responsive classes
 * to make using the feature as easy to remember as possible. Passing in a responsive class
 * will add a media query and output the passed in block.
 *
 * @param {Map} $map - A map variable that contains an min and max key value pair.
 *
 * @example
 * .foo { @include breakpoint($sm) {...}}
 *
 */
/**
 * Input Placeholder
 * Styles the placeholder for an input field based on a based in block.
 *
 * @example
 * input.foo {
 *   @include placeholder {
 *     color: #ccc;
 *   }
 * }
 */
/**
 * Grid Rows
 * Ensures that a grid row breaks after a specific number of columns.
 */
.alignnone, .alignleft, .alignright {
  margin-bottom: 1em;
}
.alignnone, .aligncenter {
  display: block;
}
.alignleft {
  float: left;
  margin-right: 1em;
}
.alignright {
  float: right;
  margin-left: 1em;
}
.alignright figcaption {
  text-align: right;
}
.aligncenter {
  height: auto;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.aligncenter + figcaption {
  margin-bottom: 1em;
  margin-top: -0.5em;
  text-align: center;
}
.full-width {
  left: 50%;
  margin: 15px -50vw;
  position: relative;
  right: 50%;
  width: 100vw;
}
.full-width img {
  width: 100%;
}
.full-width figcaption {
  text-align: center;
}
body {
  color: #666;
  font: 300 13px/2 "source-sans-pro", arial, sans-serif;
}
@media (min-width: 992px) {
  body {
    font-size: 14px;
    line-height: 1.857;
  }
}
a {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #076aa6;
  font-weight: 600;
  outline: 0;
}
a:hover h1, a:active h1, a:focus h1, a:hover h2, a:active h2, a:focus h2, a:hover h3, a:active h3, a:focus h3, a:hover h4, a:active h4, a:focus h4 {
  color: #aa42ac;
}
a.no-underline:hover, a.no-underline:active, a.no-underline:focus {
  text-decoration: none;
}
h1, h2, h3, h4 {
  color: #8f4e98;
  font: 500 1.538em "le-monde-livre-classic-byol", georgia, times, serif;
  margin: 0;
}
@media (min-width: 992px) {
  h1, h2, h3, h4 {
    font-size: 1.429em;
  }
}
a h1, a h2, a h3, a h4 {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
h1 small, h2 small, h3 small, h4 small {
  color: inherit;
  display: block;
  font-weight: 300;
  opacity: 0.65;
}
h1 small a, h2 small a, h3 small a, h4 small a {
  color: inherit;
  font-weight: 300;
}
h1 small a:hover, h2 small a:hover, h3 small a:hover, h4 small a:hover, h1 small a:active, h2 small a:active, h3 small a:active, h4 small a:active, h1 small a:focus, h2 small a:focus, h3 small a:focus, h4 small a:focus {
  color: inherit;
}
h1 {
  font-size: 2.14em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.286em;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.857em;
  }
}
h2 {
  font-size: 2.143em;
  margin: 0 0 -2px;
}
h3 {
  font-size: 1.571em;
  margin-bottom: 10px;
}
p + h3 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  p + h3 {
    margin-top: 50px;
  }
}
h4 {
  margin-bottom: 6px;
}
.fancy-header {
  background: url(/wp-content/themes/gf-sidus/assets/img/callout2.jpg) no-repeat center center/cover;
  left: 50%;
  margin: 40px -50vw 30px;
  padding: 40px 0 15px;
  position: relative;
  text-align: center;
  width: calc(100vw - 7px);
}
@media (min-width: 768px) {
  .fancy-header {
    font-size: 2.3em;
    margin: 70px -50vw 45px;
    padding: 60px 0 25px;
  }
}
hr + .container .fancy-header:first-child {
  margin-top: -86px;
}
@media (min-width: 768px) {
  hr + .container .fancy-header:first-child {
    margin-top: -76px;
  }
}
.fancy-header .header-text {
  color: #fff;
  display: inline-block;
  padding: 0 25px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .fancy-header .header-text {
    padding: 0 15px;
    width: 740px;
  }
}
@media (min-width: 992px) {
  .fancy-header .header-text {
    width: 808px;
  }
}
@media (min-width: 1200px) {
  .fancy-header .header-text {
    width: 970px;
  }
}
.fancy-header:before, .fancy-header:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.fancy-header:before {
  border: 1px solid #ececec;
  border-width: 2px 0;
  bottom: -7px;
  top: -7px;
}
.fancy-header:after {
  background: rgba(143, 78, 152, 0.83);
  bottom: 0;
  top: 0;
}
hr {
  background: #ececec;
  height: 3px;
  left: 50%;
  right: 50%;
  margin: 0 -50vw 80px;
  position: relative;
  width: calc(100vw - 7px);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  hr {
    left: auto;
    margin: 0 0 80px;
    right: auto;
    width: 100%;
  }
}
@supports (-ms-ime-align:auto) {
  hr {
    left: auto;
    margin: 0 0 80px;
    right: auto;
    width: 100%;
  }
}
figcaption {
  color: #999;
  font-size: 0.9em;
  margin-top: 0.25em;
}
main ol, main ul {
  overflow: auto;
}
.post-tags {
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9em;
  margin-top: 2em;
  padding-top: 1em;
}
.post-tags__tag {
  color: #666;
  text-decoration: underline;
}
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: center;
}
#wp-calendar thead, #wp-calendar tfoot {
  font-size: 10px;
}
#wp-calendar thead th, #wp-calendar tfoot th {
  padding-bottom: 10px;
  text-align: center;
}
#wp-calendar thead #prev, #wp-calendar tfoot #prev, #wp-calendar thead #next, #wp-calendar tfoot #next {
  padding-top: 10px;
  text-transform: uppercase;
}
#wp-calendar thead #next, #wp-calendar tfoot #next {
  text-align: right;
}
#wp-calendar tbody {
  color: #aaa;
}
#wp-calendar tbody td {
  background-color: #f5f5f5;
  border: 1px solid #fff;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody td:hover {
  background-color: #fff;
}
#wp-calendar tbody td#today {
  background-color: #666;
  color: #fff;
}
#wp-calendar tbody td#today:hover {
  background-color: #999;
}
#wp-calendar tbody td#today a {
  color: white;
}
#wp-calendar tbody .pad {
  background: none;
}
.footer {
  border-top: 3px solid #ececec;
  margin-top: 40px;
  padding: 0 0 24px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 45px;
  }
}
@media (min-width: 992px) {
  .footer {
    margin-top: 62px;
    padding-bottom: 17px;
  }
}
.footer--banner {
  border: 1px solid #fff;
  border-width: 5px 0;
  box-shadow: 0 3px 0 #ececec;
  height: 150px;
  margin-bottom: 32px;
  overflow: hidden;
  padding: 5px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .footer--banner {
    height: 180px;
  }
}
@media (min-width: 992px) {
  .footer--banner {
    height: 210px;
  }
}
.footer--banner__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  width: 100%;
}
.footer--banner__logo {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .footer--banner__logo {
    width: 275px;
  }
}
@media (max-width: 767px) {
  .footer--banner__logo {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .footer--primary {
    padding: 0 60px;
    text-align: center;
  }
}
.footer--primary li a, .footer--primary p, .footer--primary address {
  line-height: 2.15;
}
@media (min-width: 992px) {
  .footer--primary li a, .footer--primary p, .footer--primary address {
    font-size: 0.929em;
    line-height: 2.07;
  }
}
.footer--primary a {
  color: #666;
  font-weight: 300;
  text-decoration: none;
}
.footer--primary a:hover, .footer--primary a:active, .footer--primary a:focus {
  color: #068ada;
}
@media (min-width: 768px) {
  .footer--primary a:before {
    content: "»";
    opacity: 0.5;
    padding-right: 5px;
  }
}
.footer--social {
  margin: 10px auto 22px;
  position: relative;
  width: 260px;
}
@media (min-width: 768px) {
  .footer--social {
    width: 400px;
  }
}
@media (min-width: 992px) {
  .footer--social {
    margin-top: 0;
  }
}
.footer--social img {
  background: #fff;
  margin: 0 1px;
}
.footer--social a {
  text-decoration: none;
}
.footer--social:after {
  content: "";
  display: block;
  position: absolute;
  background: #ececec;
  height: 3px;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
}
.footer--phone {
  color: rgba(143, 78, 152, 0.75);
  display: block;
  font: 500 1.538em "le-monde-livre-classic-byol", georgia, times, serif;
  margin: -23px 0 20px;
}
.footer--phone:hover, .footer--phone:focus, .footer--phone:active {
  color: #8f4e98;
  text-decoration: none;
}
.footer--colophon {
  font-size: 0.846em;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .footer--colophon {
    font-size: 0.929em;
  }
}
#move-body {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: auto !important;
  position: relative;
  right: 0;
}
#move-body.collapse {
  display: block !important;
}
#move-body.collapse.in {
  right: 200px;
}
header {
  height: 145px;
  position: relative;
  z-index: 9;
}
.logo {
  background: url(/wp-content/themes/gf-sidus/assets/svg/behind-logo.svg) no-repeat center bottom/100%;
  height: 102px;
  padding-top: 9px;
  position: absolute;
  text-align: center;
  width: 104px;
}
@media (max-width: 767px) {
  .logo {
    margin: -1px 0 0 -5px;
  }
  .logo img {
    width: 82px;
  }
}
@media (min-width: 768px) {
  .logo {
    height: 146px;
    padding-top: 11px;
    width: 140px;
  }
}
@media (min-width: 1200px) {
  .logo {
    width: 170px;
  }
}
.headernav {
  background: rgba(116, 62, 143, 0.55);
  border-radius: 40px;
  padding: 0 6px;
  position: relative;
  right: 0;
  text-transform: uppercase;
  top: 37px;
}
@media (max-width: 767px) {
  .headernav {
    display: none;
  }
}
@media (min-width: 1200px) {
  .headernav {
    right: 17px;
  }
}
.headernav > li > a {
  color: #f6d7fc;
  font: 300 1.07em "source-sans-pro", arial, sans-serif;
  padding: 1px 9px 2px;
}
.headernav > li > a:hover, .headernav > li > a:active, .headernav > li > a:focus {
  background: none;
  color: #fff;
}
.headernav > li.active > a {
  background: none;
  color: #fff;
}
.headernav > li.active > a:hover, .headernav > li.active > a:active, .headernav > li.active > a:focus {
  background: none;
  color: #fff;
}
.navbar-default {
  background: none;
  border: 0;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 66px;
}
.navbar-default:hover .navbar-nav > li > a, .navbar-default:active .navbar-nav > li > a, .navbar-default:focus .navbar-nav > li > a {
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-default .navbar-nav > li:first-child {
    display: none;
  }
  .navbar-default .navbar-nav > li:nth-child(3) > a:before {
    content: "About";
  }
  .navbar-default .navbar-nav > li:nth-child(3) > a .nav-swap {
    display: none;
  }
  .navbar-default .navbar-nav > li:nth-child(4) > a:before {
    content: "Schedule";
  }
  .navbar-default .navbar-nav > li:nth-child(4) > a .nav-swap {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-default .navbar-nav > li {
    margin-left: 3px;
  }
}
.navbar-default .navbar-nav > li > a {
  border-radius: 30px;
  color: #fff;
  font: 700 1.271em "source-sans-pro", arial, sans-serif;
  padding: 4px 14px;
}
@media (min-width: 1200px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 1.428em;
    padding: 5px 18px;
  }
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:active, .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  opacity: 1;
}
.navbar-default .navbar-nav > li > a .caret {
  border-style: solid;
  border-width: 6.5px 4.5px 0 4.5px;
  border-color: rgba(255, 255, 255, 0.5) transparent transparent;
  height: 0;
  position: relative;
  top: -1px;
  width: 0;
}
.navbar-default .navbar-nav > li.open > a {
  background: none !important;
  color: #fff !important;
}
.navbar-default .navbar-nav > li.active > a {
  background: #fff !important;
  color: #8f4e98 !important;
  opacity: 0.65;
}
.navbar-default .navbar-nav > li.active > a .caret {
  border-color: rgba(143, 78, 152, 0.5) transparent transparent;
}
.navbar-default .navbar-nav > li.active > a:hover, .navbar-default .navbar-nav > li.active > a:active, .navbar-default .navbar-nav > li.active > a:focus {
  opacity: 0.85;
}
.navbar-default .navbar-collapse {
  padding: 0;
}
.navbar-default .navbar-toggle {
  background: rgba(116, 62, 143, 0.55);
  border: 0;
  margin: -51px 10px 0 0;
  padding: 37px 10px 7px;
}
.navbar-default .navbar-toggle .hamburger {
  color: rgba(246, 215, 252, 0.6);
  display: block;
  font: 700 0.846em "source-sans-pro", arial, sans-serif;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 33px;
}
.navbar-default .navbar-toggle .hamburger:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(246, 215, 252, 0.85);
  border-radius: 5px;
  box-shadow: 0 9px 0 rgba(246, 215, 252, 0.85), 0 -9px 0 rgba(246, 215, 252, 0.85);
  height: 5px;
  left: 0;
  right: 0;
  top: -15px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:active, .navbar-default .navbar-toggle:focus {
  background: rgba(116, 62, 143, 0.55);
}
@media (min-width: 768px) {
  .dropdown-menu {
    border-radius: 6px 6px 0 0 !important;
    box-shadow: 0 6px rgba(116, 62, 143, 0.5);
    left: -48px;
    padding: 7px 0 5px;
    text-align: center;
    width: 180px;
  }
  .dropdown-menu > li > a {
    color: #8f4e98;
  }
  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:active, .dropdown-menu > li > a:focus {
    background: rgba(143, 78, 152, 0.1);
    color: #8f4e98;
  }
  .dropdown-menu > .active > a {
    background: #8f4e98;
  }
  .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:active, .dropdown-menu > .active > a:focus {
    background: #8f4e98;
  }
  .dropdown-menu:before, .dropdown-menu:after {
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    bottom: -7px;
    height: 0;
    width: 0;
  }
  .dropdown-menu:before {
    border-width: 7px 0 0 90px;
    border-color: #fff transparent transparent;
    right: 0;
  }
  .dropdown-menu:after {
    border-width: 7px 90px 0 0;
    border-color: #fff transparent transparent;
    left: 0;
  }
  .dropdown-menu li:last-child:before, .dropdown-menu li:last-child:after {
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    bottom: -14px;
    height: 0;
    width: 0;
  }
  .dropdown-menu li:last-child:before {
    border-width: 7px 0 0 80px;
    border-color: rgba(116, 62, 143, 0.5) transparent transparent;
    right: 10px;
  }
  .dropdown-menu li:last-child:after {
    border-width: 7px 80px 0 0;
    border-color: rgba(116, 62, 143, 0.5) transparent transparent;
    left: 10px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .dropdown-menu {
    left: -8px;
  }
}
@media (max-width: 767px) {
  .nav-header > li {
    float: none;
  }
  .nav-primary .nav-primary {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    bottom: 0;
    left: 100%;
    overflow: hidden;
    padding: 5px 22px;
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    z-index: -1 !important;
  }
  .nav-primary .nav-primary .navbar-nav > li > a {
    color: #8f4e98 !important;
    border-bottom: 2px solid rgba(143, 78, 152, 0.2);
    border-radius: 0;
    padding: 7px 13px 6px;
  }
  .nav-primary .nav-primary .navbar-nav > li > a .caret {
    border-color: rgba(143, 78, 152, 0.5) transparent transparent;
  }
  .nav-primary .nav-primary .navbar-nav > li.active > a, .nav-primary .nav-primary .navbar-nav > li.open > a {
    background: none !important;
    color: #8f4e98 !important;
    opacity: 1;
  }
  .nav-primary .nav-primary .navbar-nav .open .dropdown-menu {
    background: #fff;
    border-bottom: 2px solid rgba(143, 78, 152, 0.2);
    border-radius: 0;
    margin: -10px 0 5px;
    padding-bottom: 7px;
    position: relative;
    z-index: 2;
  }
  .nav-primary .nav-primary .navbar-nav .open .dropdown-menu > li > a {
    color: rgba(143, 78, 152, 0.75);
    padding: 4px 13px;
  }
  .collapse.in .nav-primary {
    left: calc(100% - 200px);
    width: 200px;
    z-index: 99 !important;
  }
  .collapse.in .nav-primary:before {
    content: "";
    display: block;
    position: absolute;
    background: #8f4e98;
    bottom: 0;
    left: 5px;
    opacity: 0.2;
    top: 0;
    width: 2px;
  }
}
.navbar-nav.navbar-right:last-child {
  margin-right: 0;
}
.single-post .menu-item-10 > a, .archive .menu-item-10 > a, .search .menu-item-10 > a, .single-board .menu-item-25 > a, .single-events .menu-item-36 > a {
  background: #fff !important;
  border-radius: 30px;
  color: #8f4e98 !important;
  opacity: 0.65;
}
.single-post .menu-item-10 > a .caret, .archive .menu-item-10 > a .caret, .search .menu-item-10 > a .caret, .single-board .menu-item-25 > a .caret, .single-events .menu-item-36 > a .caret {
  border-color: rgba(143, 78, 152, 0.5) transparent transparent !important;
}
.single-post .menu-item-10 > a:hover, .archive .menu-item-10 > a:hover, .search .menu-item-10 > a:hover, .single-board .menu-item-25 > a:hover, .single-events .menu-item-36 > a:hover, .single-post .menu-item-10 > a:active, .archive .menu-item-10 > a:active, .search .menu-item-10 > a:active, .single-board .menu-item-25 > a:active, .single-events .menu-item-36 > a:active, .single-post .menu-item-10 > a:focus, .archive .menu-item-10 > a:focus, .search .menu-item-10 > a:focus, .single-board .menu-item-25 > a:focus, .single-events .menu-item-36 > a:focus {
  opacity: 0.85;
}
.single-board .navbar-default .navbar-nav > .menu-item-25.open > a {
  background: #fff !important;
  color: #8f4e98 !important;
  opacity: 0.85;
}
.single-board .navbar-default .navbar-nav > .menu-item-25.open .dropdown-menu li:last-child a {
  background: #8f4e98;
  color: #fff;
}
.single-board .navbar-default .navbar-nav > .menu-item-25.open .dropdown-menu li:last-child a:hover, .single-board .navbar-default .navbar-nav > .menu-item-25.open .dropdown-menu li:last-child a:active, .single-board .navbar-default .navbar-nav > .menu-item-25.open .dropdown-menu li:last-child a:focus {
  background: #8f4e98;
  color: #fff;
}
@media (max-width: 767px) {
  .blog--preview {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .blog--preview {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .blog--preview {
    display: none;
  }
  .blog--preview:first-of-type {
    display: block;
  }
}
.blog--preview a h3 {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog--preview a:hover, .blog--preview a:active, .blog--preview a:focus {
  text-decoration: none;
}
.blog--preview a:hover h3, .blog--preview a:active h3, .blog--preview a:focus h3 {
  color: #aa42ac;
}
.blog--preview .fa {
  font-size: 0.8em;
  margin: 0 8px 0 0;
  position: relative;
  top: -2px;
}
.blog--files .blog--preview {
  display: block;
  padding-right: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .blog--files .blog--preview {
    padding-right: 20px;
  }
}
.blog--files .blog--preview:nth-child(3n-1) {
  border: 2px solid #ececec;
  border-width: 2px 0;
  padding: 20px;
}
@media (max-width: 767px) {
  .blog--files .blog--preview:nth-child(3n-1) {
    margin: 20px 0;
  }
  .blog--files .blog--preview:nth-child(3n-1):last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .blog--files .blog--preview:nth-child(3n-1) {
    border-width: 0 2px;
    padding: 0 20px;
  }
}
.board-member {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .board-member:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .board-member:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 992px) {
  .board-member:nth-child(6n+1) {
    clear: left;
  }
}
.board-member__name {
  font-weight: bold;
  margin-top: 10px;
}
.body-copy p, .body-copy ul {
  margin-top: 20px;
}
.body-copy h3 + p {
  margin-top: 0;
}
.body-copy > *:first-child {
  margin-top: 0;
}
.body-copy > *:last-child {
  margin-bottom: 0;
}
.body-copy .body--text > *:first-child {
  margin-top: 0;
}
.body-copy .body--text > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .body-copy .body--text {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .body-copy .body--text {
    order: 2;
  }
}
@media (min-width: 992px) {
  .body-copy .body--text {
    width: 65%;
  }
}
.body-copy .body--images {
  background: #fff;
  border: 3px solid #ececec;
  border-radius: 11px;
  padding: 5px;
  position: relative;
  text-align: center;
}
.body-copy .body--images img {
  height: auto;
  width: 100%;
}
.body-copy .body--images .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -20px;
}
.body-copy .body--images p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 13px 15px 8px;
}
.body-copy .body--images .fullscreen-map {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .body-copy .body--images {
    display: -ms-flexbox;
    display: flex;
    order: 1;
    margin: -15px -8px 25px;
    width: calc(100% + 16px);
  }
  .body-copy .body--images img {
    border-radius: 5px;
    flex-grow: 1;
  }
  .body-copy .body--images img + img {
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  .body-copy .body--images {
    float: right;
    margin: 0 -17px 0 25px;
    width: 35%;
  }
  .body-copy .body--images img + img {
    margin-top: 5px;
  }
  .body-copy .body--images img:first-child {
    border-radius: 3px 3px 0 0;
  }
  .body-copy .body--images img:last-child {
    border-radius: 0 0 3px 3px;
  }
  .body-copy .body--images img:only-of-type {
    border-radius: 3px;
  }
}
.body__flex {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .body__flex {
    flex-wrap: wrap;
  }
  .body__flex .text-right {
    margin: -20px 0 30px;
    text-align: left !important;
  }
  .body__flex .text-right + .body-copy {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .body__flex {
    align-items: center !important;
    flex-align: center !important;
  }
}
@media (max-width: 767px) {
  .body__flex--board .body--images {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .body__flex--board {
    padding: 10px 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body__flex--board {
    align-items: center;
    flex-align: center;
    padding-top: 20px;
  }
  .body__flex--board .body--text {
    order: 1;
    width: calc(66% - 25px);
  }
  .body__flex--board .body--images {
    margin: -3px 0 0 25px;
    order: 2;
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body__flex--reverse {
    margin-top: -20px;
  }
}
@media (max-width: 991px) {
  .body__flex--reverse .body--text {
    order: 1;
  }
  .body__flex--reverse .body--images {
    margin-top: 50px;
    order: 2;
  }
}
.btn, input[id^="gform_submit_button"] {
  background: #fff;
  border: 0;
  border-radius: 30px;
  color: #068ada;
  font: 300 1.31em "source-sans-pro", arial, sans-serif;
  padding: 11px 30px;
  text-transform: uppercase;
  word-spacing: 4px;
}
@media (min-width: 768px) {
  .btn, input[id^="gform_submit_button"] {
    font-size: 1.38em;
  }
}
@media (min-width: 992px) {
  .btn, input[id^="gform_submit_button"] {
    font-size: 1.2em;
  }
}
@media (min-width: 1200px) {
  .btn, input[id^="gform_submit_button"] {
    font-size: 1.5em;
  }
}
.btn + .btn, input[id^="gform_submit_button"] + .btn {
  margin-left: 20px;
}
.btn:hover, input[id^="gform_submit_button"]:hover, .btn:active, input[id^="gform_submit_button"]:active, .btn:focus, input[id^="gform_submit_button"]:focus {
  background: #fff !important;
  color: #8f4e98 !important;
}
.btn-sm, input[id^="gform_submit_button"] {
  border: 2px solid #ececec;
  font-size: 1.2em;
  font-weight: 600;
  padding: 8px 25px;
  word-spacing: 2px;
}
@media screen and (min-width:0\0) {
  input[id^="gform_submit_button"] {
    height: 45px;
    width: 225px !important;
  }
}
#wp-calendar {
  margin: 10px 0 40px;
  position: relative;
}
#wp-calendar caption {
  border-bottom: 2px solid #ececec;
  color: rgba(102, 102, 102, 0.8);
  font: 300 1.2em/1 "source-sans-pro", arial, sans-serif;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  word-spacing: 4px;
}
#wp-calendar tfoot {
  left: 0;
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 1;
}
#wp-calendar tfoot #prev:before, #wp-calendar tfoot #next:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(102, 102, 102, 0.5);
  border-radius: 15px;
  color: #fff;
  font-size: 2em;
  font-weight: 500;
  line-height: 0.5;
  padding: 4px 7px 7px;
  top: 7px;
}
#wp-calendar tfoot #prev a, #wp-calendar tfoot #next a {
  background: #fff;
  display: block;
  height: 25px;
  margin-top: -3px;
  position: relative;
  text-align: left;
  text-indent: -9000em;
  width: 25px;
}
#wp-calendar tfoot #prev a:before, #wp-calendar tfoot #next a:before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(143, 78, 152, 0.8);
  border-radius: 15px;
  color: #fff;
  font-size: 2em;
  font-weight: 500;
  line-height: 0.5;
  padding: 4px 7px 7px;
  text-indent: 0;
  top: 0;
}
#wp-calendar tfoot #prev a:hover:before, #wp-calendar tfoot #next a:hover:before, #wp-calendar tfoot #prev a:focus:before, #wp-calendar tfoot #next a:focus:before, #wp-calendar tfoot #prev a:active:before, #wp-calendar tfoot #next a:active:before {
  background: #aa42ac;
}
#wp-calendar tfoot #prev:before, #wp-calendar tfoot #prev a:before {
  content: "«";
  left: 0;
}
#wp-calendar tfoot #next {
  position: absolute;
  right: 0;
}
#wp-calendar tfoot #next:before, #wp-calendar tfoot #next a:before {
  content: "»";
  right: 0;
}
#wp-calendar thead th {
  opacity: 0.4;
  padding: 0;
}
#wp-calendar tbody td {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #ececec;
  border-width: 2px;
  border-radius: 5px;
  color: rgba(102, 102, 102, 0.7);
  line-height: 1.2;
  padding: 9px 8px 8px;
}
#wp-calendar tbody td#today {
  background: rgba(102, 102, 102, 0.7);
}
#wp-calendar tbody td a {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #8f4e98;
  border-radius: 3px;
  color: #fff;
  display: block;
  margin: -9px -8px -8px;
  padding: 9px 8px 8px;
}
#wp-calendar tbody td a:hover, #wp-calendar tbody td a:focus, #wp-calendar tbody td a:active {
  background: #aa42ac;
  text-decoration: none;
}
.callout {
  margin: -25px 10px 40px;
  position: relative;
}
@media (min-width: 768px) {
  .callout {
    margin: -15px 0 65px;
  }
}
.callout:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ececec;
  height: 3px;
  left: 0;
  right: 0;
}
.callout strong {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .callout strong {
    white-space: nowrap;
  }
}
.callout .container div[class^="col"] {
  box-shadow: 0 0 0 3px #ececec;
  border: 5px solid #fff;
  border-radius: 9px;
  font-size: 1.2em;
  overflow: hidden;
  padding: 25px;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (min-width: 768px) {
  .callout .container div[class^="col"] {
    font-size: 1.4em;
    padding: 25px 85px;
  }
}
.callout .container div[class^="col"] p {
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 3;
}
.single-events .callout .container div[class^="col"] p {
  white-space: nowrap;
}
.callout .container div[class^="col"]:before, .callout .container div[class^="col"]:after {
  content: "";
  display: block;
  position: absolute;
}
.callout .container div[class^="col"]:before {
  background: rgba(143, 78, 152, 0.83);
  border-radius: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.callout .container div[class^="col"]:after {
  border: 5px solid #fff;
  border-radius: 10px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  top: -5px;
}
.container:not(.intro-copy) + .callout {
  margin-top: 42px;
}
@media (min-width: 992px) {
  .container:not(.intro-copy) + .callout {
    margin-top: 68px;
  }
}
.callout a {
  background: #fff;
  border-radius: 40px;
  color: #068ada;
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  padding: 8px 25px;
  word-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}
.callout a:hover, .callout a:active, .callout a:focus {
  color: #8f4e98;
}
.callout__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .callout__image {
    min-width: 100%;
  }
}
@media (min-width: 768px) {
  .callout__image {
    height: auto;
    width: 100%;
  }
}
.event {
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  flex-align: start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .event {
    margin: -20px -5px 55px;
  }
}
.event__date {
  border-radius: 7px;
  box-shadow: 0 0 0 3px #ececec;
  margin-right: 15px;
  padding: 13px 0 10px;
}
.event__content {
  padding-right: 25px;
}
.event__month, .event__day {
  line-height: 1;
}
.event__month {
  font-size: 1.6em;
  font-weight: 300;
  margin-bottom: -5px;
  text-transform: uppercase;
}
.event__day {
  font-size: 3.5em;
  font-weight: 700;
}
.event__fulldate {
  color: #999;
  font-size: 0.85em;
}
.event-break {
  margin-top: -20px;
}
@media (max-width: 767px) {
  .event-break {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .event-break {
    margin-top: 25px;
  }
}
.event-list {
  margin-top: 15px;
  text-align: left;
}
@media (min-width: 600px) {
  .event-list {
    column-count: 2;
    column-gap: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .event-list {
    font-size: 0.92em;
  }
}
@media (min-width: 992px) {
  .event-headline {
    min-width: 400px !important;
  }
}
@media (min-width: 1200px) {
  .event-headline {
    min-width: 530px !important;
  }
}
.event-donation {
  margin-top: -50px;
}
@media (max-width: 768px) {
  .event-donation {
    margin-bottom: -40px;
  }
}
@media (min-width: 1200px) {
  .event-donation .header-text {
    width: 1200px;
  }
}
.event-donation .row.event {
  align-items: stretch;
}
@media (max-width: 768px) {
  .event-donation .row.event {
    margin: -5px 9px 30px;
  }
}
.event-donation .event__date {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-item {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .faq-item {
    padding: 0 25px 30px;
  }
}
.faq-item:last-child {
  padding-bottom: 0;
}
label.error {
  margin-top: 5px;
  color: #b94a48;
  font-size: 90%;
}
label.error.valid {
  display: none !important;
}
.controls label {
  font-weight: normal;
}
input[type=file] {
  line-height: 1em;
  font-size: 80%;
  margin-top: 6px;
}
/* Comment Forms */
.comment-respond {
  margin-bottom: 20px;
}
.comment-author {
  margin-bottom: 5px;
}
.blog-comment {
  margin-bottom: 15px;
}
[id=commentform] textarea {
  width: 100%;
}
[id=commentform] [type=submit], .gform_button {
  color: #333;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid #ccc;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[id=commentform] [type=submit]:hover, [id=commentform] [type=submit]:active, .gform_button:hover, .gform_button:active {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}
[id=commentform] [type=submit]:active, .gform_button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.form-control, .gform_wrapper input[type="text"], .gform_wrapper textarea {
  border: 2px solid rgba(102, 102, 102, 0.2);
  box-shadow: none;
  height: 38px;
  padding: 6px 14px !important;
}
.form-control:hover, .gform_wrapper input[type="text"]:hover, .gform_wrapper textarea:hover, .form-control:focus, .gform_wrapper input[type="text"]:focus, .gform_wrapper textarea:focus, .form-control:active, .gform_wrapper input[type="text"]:active, .gform_wrapper textarea:active {
  border-color: rgba(102, 102, 102, 0.4);
  box-shadow: none;
}
.form-control:hover + .input-group-btn, .gform_wrapper input[type="text"]:hover + .input-group-btn, .gform_wrapper textarea:hover + .input-group-btn, .form-control:focus + .input-group-btn, .gform_wrapper input[type="text"]:focus + .input-group-btn, .gform_wrapper textarea:focus + .input-group-btn, .form-control:active + .input-group-btn, .gform_wrapper input[type="text"]:active + .input-group-btn, .gform_wrapper textarea:active + .input-group-btn {
  border-color: rgba(102, 102, 102, 0.4);
}
.gform_wrapper textarea, .gform_wrapper input[type="text"] {
  border-radius: 4px;
}
.input-group-btn {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  border: 2px solid rgba(102, 102, 102, 0.2);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  left: -2px;
  padding: 2px;
  z-index: 9;
}
.input-group-btn .btn {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #8f4e98;
  border-radius: 3px !important;
  color: #fff;
  font-size: 13px;
  margin: 0 !important;
  padding: 5px 10px;
  text-transform: lowercase;
}
.input-group-btn .btn:hover, .input-group-btn .btn:focus, .input-group-btn .btn:active {
  background: #aa42ac !important;
  color: #fff !important;
}
.form-contents p:first-child {
  margin-top: 0;
}
.gfield_required {
  color: #aa42ac !important;
}
.gform_body .gfield span[id^="input_"] {
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .gform_body .gfield span[id^="input_"] {
    width: 50%;
  }
}
.gform_body .gfield span[id^="input_"] label[for^="input_"] {
  background: #fff;
  font-size: 0.88em;
  font-weight: 500;
  left: 10px;
  line-height: 0.7;
  padding: 0 5px;
  position: absolute;
  top: -7px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .gform_body .gfield span[id^="input_"] label[for^="input_"] {
    top: -4px;
  }
}
.gform_wrapper {
  margin: 0 !important;
}
.gform_wrapper .top_label .gfield_label {
  font-weight: 600;
  line-height: 1;
  padding: 0 15px;
}
.gform_wrapper ul.gform_fields li.gfield.gfield_error + li.gfield.gfield_error {
  margin-top: 16px !important;
}
@media (min-width: 768px) {
  .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
    width: 50% !important;
  }
}
.gform_wrapper li.gfield.gfield_error {
  background: transparent !important;
  border: 0 !important;
  margin-right: 0 !important;
  padding: 0 16px 0 0 !important;
  position: relative;
}
@media (max-width: 767px) {
  .gform_wrapper li.gfield.gfield_error {
    padding-right: 0 !important;
  }
}
.gform_wrapper li.gfield.gfield_error .gfield_label, .gform_wrapper li.gfield.gfield_error div.ginput_complex.ginput_container label {
  color: #8f4e98;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 8px !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0 !important;
}
.gform_wrapper li.gfield.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper li.gfield.gfield_error textarea {
  border: 2px solid rgba(102, 102, 102, 0.2);
}
.gform_wrapper li.gfield.gfield_error.field_sublabel_below:first-child {
  padding-right: 0 !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  background: #fff;
  color: rgba(143, 78, 152, 0.7);
  line-height: 1;
  padding: 5px !important;
  position: absolute;
  right: 23px;
  top: 43px;
  width: auto;
}
@media (max-width: 767px) {
  .gform_wrapper span[id^="input_"] + span[id^="input_"] {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .gform_wrapper.gf_left_half, .gform_wrapper.gf_right_half {
    width: 50% !important;
  }
}
.validation_error {
  background: rgba(246, 215, 252, 0.5);
  border: 2px solid rgba(143, 78, 152, 0.2) !important;
  border-radius: 5px;
  color: #7b5a7f !important;
  font-weight: 600 !important;
  margin: 20px 0 0;
}
.intro-copy {
  margin: 63px auto 56px;
}
@media (max-width: 991px) {
  .intro-copy {
    padding: 0 20px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .intro-copy {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    flex-align: center;
    margin: 83px auto 71px;
  }
}
@media (min-width: 1200px) {
  .intro-copy {
    margin: 88px auto 86px;
  }
}
.intro-copy h1 {
  line-height: 1.25;
  margin-top: -6px;
}
@media (min-width: 768px) {
  .intro-copy h1 {
    line-height: 1.4;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .intro-copy h1 {
    margin-bottom: 10px;
  }
  .intro-copy h1 br {
    display: none;
  }
}
@media (min-width: 992px) {
  .intro-copy h1 {
    min-width: 300px;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .intro-copy h1 {
    min-width: 450px;
  }
}
.intro-copy > p, .intro-copy > div {
  line-height: 2.17;
  margin: 5px 0 0;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .intro-copy > p, .intro-copy > div {
    font-size: 1.143em;
    line-height: 2;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .intro-copy > p, .intro-copy > div {
    border-left: 3px solid #ececec;
    margin-left: 35px;
    padding-left: 35px;
    width: calc(100% - 300px);
  }
}
@media (min-width: 1200px) {
  .intro-copy > p, .intro-copy > div {
    width: calc(100% - 450px);
  }
}
.single-events .intro-copy > p, .single-events .intro-copy > div {
  width: auto !important;
}
.intro-copy.static h1 {
  font-size: 2em;
}
@media (min-width: 992px) {
  .intro-copy.static h1 {
    min-width: 305px;
  }
}
@media (min-width: 1200px) {
  .intro-copy.static h1 {
    font-size: 2.7em;
    min-width: 410px;
  }
}
.intro-copy.intro--text {
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  flex-align: stretch;
}
.intro-copy.intro--text h2 {
  padding: 5px 0 15px;
}
@media (max-width: 767px) {
  .intro-copy.intro--text h2 {
    font-size: 1.9em;
  }
}
.intro-copy.intro--text p {
  border: 0;
  margin-left: 0;
  padding-left: 0;
}
.intro-copy.intro--text .list-social {
  border-right: 3px solid #ececec;
  overflow: hidden;
  padding: 5px 10px 0 0;
  width: 59px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .intro-copy.intro--text .list-social {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .intro-copy.intro--text .list-social {
    margin-left: -10px;
  }
}
@media (min-width: 768px) {
  .intro-copy.intro--text .list-social {
    padding-right: 20px;
    width: 89px;
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
  .intro-copy.intro--text .list-social {
    width: 360px;
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) and (min-width: 992px) {
  .intro-copy.intro--text .list-social {
    width: 300px;
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) and (min-width: 1200px) {
  .intro-copy.intro--text .list-social {
    width: 249px;
  }
}
.intro-copy.intro--text .list-social img {
  margin-bottom: 10px;
  width: 30px;
}
@media (min-width: 768px) {
  .intro-copy.intro--text .list-social img {
    width: 45px;
  }
}
.intro-copy.intro--text .intro-content {
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  flex-align: center;
  padding: 0 0 15px 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .intro-copy.intro--text .intro-content {
    padding: 5px 0 15px 35px;
  }
}
@media screen and (min-width:0\0) {
  .single-events .intro-copy .intro-content {
    width: calc(100% - 85px) !important;
  }
  .single-events .intro-copy .intro-content p {
    width: 70vw !important;
  }
}
.jumbotron {
  margin-top: -145px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.jumbotron__image {
  height: auto;
  margin-top: -24px;
  width: 100%;
}
.jumbotron__buttons {
  background: #ececec;
  bottom: -8px;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}
.jumbotron__buttons .btn {
  margin-top: -30px;
  position: relative;
}
.jumbotron__buttons .btn:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #ececec;
  border-radius: 0 0 33px 33px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  top: 50%;
  z-index: -1;
}
.jumbotron__buttons .btn:hover:after, .jumbotron__buttons .btn:active:after, .jumbotron__buttons .btn:focus:after {
  background: rgba(143, 78, 152, 0.2);
}
h1.jumbotron__header {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 35px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 991px) {
  h1.jumbotron__header {
    font-size: 4em;
  }
}
@media (max-width: 767px) {
  h1.jumbotron__header {
    bottom: 23px;
    font-size: 1.9em;
    width: 90%;
  }
}
h1.jumbotron__header.jumbotron__header--lower {
  bottom: 10px;
}
@media (min-width: 768px) {
  h1.jumbotron__header.jumbotron__header--lower {
    bottom: 25px;
  }
}
.list-social a {
  color: #ccc;
}
.list-social a:hover {
  color: #808080;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-social img {
    height: 30px;
    width: 30px;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .list-social img {
    height: 45px;
    width: 45px;
  }
}
.fullscreen-map {
  height: 350px;
  margin-bottom: 30px;
  width: 100%;
}
.pagination {
  margin: 40px 0 20px;
}
.pagination > li > a {
  border: 2px solid #ececec;
  border-width: 2px 1px;
  color: #8f4e98;
}
.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > a:active {
  background: #fff;
  color: #aa42ac;
}
.pagination > li.active > a {
  background: rgba(102, 102, 102, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}
.pagination > li.active > a:hover, .pagination > li.active > a:focus, .pagination > li.active > a:active {
  background: rgba(102, 102, 102, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}
.pagination > li:first-child > a {
  border-left-width: 2px;
}
.pagination > li:last-child > a {
  border-right-width: 2px;
}
.pagination > li:first-child > a, .pagination > li:last-child > a {
  font-size: 20px;
  line-height: 1;
}
.posts {
  margin: 45px auto -12px;
}
@media (max-width: 767px) {
  .posts {
    margin-top: -15px;
  }
}
@media (min-width: 992px) {
  .posts {
    margin: 70px auto 13px;
  }
}
.posts .row {
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  flex-align: stretch;
}
@media (max-width: 767px) {
  .posts .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.post {
  border-bottom: 3px solid #ececec;
  margin-left: -15px;
  padding: 30px 0 30px 25px;
}
@media (min-width: 992px) {
  .post {
    padding: 35px 0 35px 35px;
  }
}
.post:first-child {
  padding-top: 20px;
}
.post:last-child {
  border: 0;
  padding-bottom: 20px;
}
.post a.read-more {
  display: none;
}
.single-post .post a.read-more {
  display: inline;
}
.post-contents {
  float: none;
}
.post-contents p, .post-contents ul {
  margin-top: 20px;
}
.post-contents img {
  height: auto;
  max-width: 100%;
}
.post-contents iframe {
  border: 3px solid #ececec;
  border-radius: 5px;
  height: 470px;
  margin: 0 -10px;
  padding: 5px;
  width: 100%;
}
.post-contents .wp-caption {
  border: 3px solid #ececec;
  border-radius: 5px;
  font-size: 0.9em;
  line-height: 1.5;
  margin: 20px -10px 5px;
  padding: 15px 25px 5px;
  text-align: center;
  width: calc(100% + 20px) !important;
}
.post-contents .wp-caption img {
  border-radius: 4px 4px 0 0 !important;
  margin: -10px -20px -5px;
  max-width: calc(100% + 40px);
}
.post-sidebar {
  align-items: flex-start;
  border: 3px solid #ececec;
  border-width: 0 3px 0 0;
  display: flex;
  display: -ms-flexbox;
  flex-align: start;
  float: none;
  padding: 20px 0 20px 10px;
}
@media (max-width: 767px) {
  .post-sidebar {
    border-width: 3px 0 0;
    flex-order: 2;
    order: 2;
    padding-top: 40px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .post-sidebar {
    padding-left: 0;
  }
}
.post-sidebar > div {
  width: 90%;
}
@media (max-width: 767px) {
  .post-sidebar > div {
    padding: 0 25px 0 15px;
    width: 100%;
  }
}
.post-sidebar .widget ul {
  margin-top: -10px;
}
.post-sidebar .widget li {
  border-bottom: 2px solid #ececec;
  list-style-type: none;
  margin: 0 0 0 -40px;
  padding: 5px 0;
}
.post-sidebar .widget li:last-child {
  border: 0;
}
.stretch-boxes {
  position: relative;
  margin: 8px 0 55px;
}
@media (min-width: 768px) {
  .stretch-boxes {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .stretch-boxes {
    margin-bottom: 75px;
  }
}
.stretch-boxes:before, .stretch-boxes:after {
  content: "";
  display: block;
  position: absolute;
  background: #ececec;
  height: 3px;
  left: 0;
  right: 0;
}
.stretch-boxes:before {
  top: -8px;
}
.stretch-boxes:after {
  bottom: -8px;
}
.stretch-boxes > * {
  align-items: flex-end;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff !important;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  flex-align: end;
  flex-pack: center;
  height: 175px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}
@media (min-width: 768px) {
  .stretch-boxes > * {
    height: 250px;
  }
}
@media (min-width: 992px) {
  .stretch-boxes > * {
    height: 27vw;
    min-height: 325px;
  }
}
.stretch-boxes > *:before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(170, 66, 172, 0.6);
  bottom: 0;
  height: 7px;
  left: 0;
  right: 0;
}
.stretch-boxes > *:hover, .stretch-boxes > *:active, .stretch-boxes > *:focus {
  color: #fff !important;
  text-decoration: none;
}
@media (min-width: 768px) {
  .stretch-boxes > *:hover .card .card--copy, .stretch-boxes > *:active .card .card--copy, .stretch-boxes > *:focus .card .card--copy {
    max-height: 100vh;
    max-width: calc(33.33vw - 70px);
    -webkit-transition: max-width 0.15s ease 0s, max-height 3s ease 0.15s;
    -ms-transition: max-width 0.15s ease 0s, max-height 3s ease 0.15s;
    transition: max-width 0.15s ease 0s, max-height 3s ease 0.15s;
  }
  .stretch-boxes > *:hover .card .card--link, .stretch-boxes > *:active .card .card--link, .stretch-boxes > *:focus .card .card--link {
    color: #fff;
    margin-top: 6px;
    padding-top: 8px;
  }
}
@media (min-width: 560px) {
  .stretch-boxes.partners, .stretch-boxes.board {
    display: -ms-flexbox;
    display: flex;
    flex-pack: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
  }
}
.stretch-boxes.partners > *, .stretch-boxes.board > * {
  font-size: 0.85em;
  min-height: 300px;
}
@media (min-width: 560px) {
  .stretch-boxes.partners > *, .stretch-boxes.board > * {
    flex: 1 1 50%;
    height: 25vw;
    max-width: 50%;
    min-width: 50%;
  }
}
@media (min-width: 992px) {
  .stretch-boxes.partners > *, .stretch-boxes.board > * {
    flex: 1 1 33.3333%;
    max-width: 33.3333%;
    min-width: 33.3333%;
  }
}
@media (min-width: 1225px) {
  .stretch-boxes.partners > *, .stretch-boxes.board > * {
    flex: 1 1 25%;
    font-size: 0.9em;
    max-width: 25%;
    min-width: 25%;
  }
}
.stretch-boxes.partners > * .card .card--link, .stretch-boxes.board > * .card .card--link {
  padding-top: 3px;
}
.stretch-boxes.partners > *:hover .card .card--link, .stretch-boxes.board > *:hover .card .card--link, .stretch-boxes.partners > *:active .card .card--link, .stretch-boxes.board > *:active .card .card--link, .stretch-boxes.partners > *:focus .card .card--link, .stretch-boxes.board > *:focus .card .card--link {
  padding-top: 8px;
}
.stretch-boxes.board {
  background: #432844;
}
.stretch-boxes.partners > * {
  background-size: 75%;
}
.stretch-boxes.partners + .partners {
  padding: 0 15px;
}
@media (min-width: 7682px) {
  .stretch-boxes.partners + .partners {
    padding: 0 25px;
  }
}
@media (min-width: 992px) {
  .stretch-boxes.partners + .partners {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .stretch-boxes.partners + .partners {
    padding: 0 50px;
  }
}
.stretch-boxes.partners + .partners:before {
  top: -5px;
}
.stretch-boxes.partners + .partners:after {
  bottom: -1px;
}
.stretch-boxes.partners + .partners:last-child {
  flex-pack: start;
  justify-content: flex-start;
}
.stretch-boxes:hover > *:before, .stretch-boxes > *:hover .card {
  background: rgba(143, 78, 152, 0.83);
}
.card {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(170, 66, 172, 0.6);
  border-radius: 10px 10px 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  margin: 0 20px 7px;
  padding: 7px 20px 8px;
}
.card .card--headline {
  color: #fff;
  line-height: 1.1;
  padding: 2px 0;
}
.card .card--copy {
  display: block;
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s ease 0s, max-width 0.3s ease 0.3s;
  -ms-transition: max-height 1s ease 0s, max-width 0.3s ease 0.3s;
  transition: max-height 1s ease 0s, max-width 0.3s ease 0.3s;
}
.card .card--text {
  display: inline-block;
  font-size: 0.929em;
  line-height: 1.54;
  margin: 0;
}
.card .card--link {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 1.071em;
  line-height: 1.3;
  text-transform: uppercase;
}
@media screen and (min-width:0\0) {
  .card {
    bottom: 0;
    left: 50%;
    position: absolute;
    -ms-transform: translateX(-50%);
    -ms-transition: none !important;
  }
  .card .card--headline {
    white-space: nowrap;
  }
  .page-id-18 .card .card--headline {
    white-space: normal;
    width: 250px;
  }
  .card .card--copy {
    -ms-transition: none !important;
  }
  .stretch-boxes > *:hover .card, .stretch-boxes > *:active .card, .stretch-boxes > *:focus .card {
    left: 0;
    -ms-transform: none;
  }
  .stretch-boxes.partners:hover .card, .stretch-boxes.board > *:hover .card, .stretch-boxes.partners:active .card, .stretch-boxes.board > *:active .card, .stretch-boxes.partners:focus .card, .stretch-boxes.board > *:focus .card {
    left: 50%;
    -ms-transform: translateX(-50%);
  }
}
@supports (-ms-ime-align:auto) {
  .card {
    -ms-transition: none !important;
    transition: none !important;
  }
  .card .card--copy {
    -ms-transition: none !important;
    transition: none !important;
  }
}
.stretch-list {
  align-items: center;
  border-bottom: 2px solid #ececec;
  display: -ms-flexbox;
  display: flex;
  flex-align: center;
  flex-pack: start;
  height: auto !important;
  font-size: 1.2em;
  justify-content: flex-start;
  min-height: 1px !important;
  padding: 12px 15px;
  text-align: left;
}
.stretch-list:before, .stretch-list:after {
  display: none;
}
.stretch-list .card--headline {
  font-size: 1.2em;
  margin: 0;
  text-align: left;
}
.volunteer {
  margin: 40px 10px -10px;
}
@media (min-width: 768px) {
  .volunteer {
    margin: 50px auto 25px;
  }
}
@media (min-width: 992px) {
  .volunteer {
    margin-top: 65px;
  }
}
@media (min-width: 768px) {
  .page-id-13 .volunteer p {
    float: left;
    margin-right: 25px;
    padding: 13px 0;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .page-id-13 .volunteer p {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .page-id-13 .volunteer p {
    width: 66.6666%;
  }
}
.page-id-13 .volunteer p + p {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-id-13 .volunteer p + p {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .page-id-13 .volunteer ul:not(.gform_fields) {
    margin: 35px 0 0 -30px;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .page-id-13 .volunteer ul:not(.gform_fields) {
    border-left: 3px solid #ececec;
    padding: 15px 0 19px 25px;
  }
}
.page-id-13 .volunteer li {
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
  padding: 0 0 15px 15px;
  position: relative;
}
.page-id-13 .volunteer li:before {
  content: "•";
  font-size: 1.5em;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: -7px;
}
.page-id-13 .volunteer li:last-child {
  padding-bottom: 0;
}
.volunteer .gform_wrapper {
  margin-top: 45px !important;
}
.volunteer .gform_wrapper .gform_body {
  margin: 0 -13px;
  width: calc(100% + 16px);
}
@media (min-width: 768px) {
  .volunteer .gform_wrapper .gform_body {
    margin: 0;
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .volunteer .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .volunteer .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
    width: calc(50% - 8px) !important;
  }
}
.volunteer .gform_wrapper .gform_button {
  margin-left: 16px !important;
}
@media (min-width: 768px) {
  .volunteer #input_2_1_3_container, .volunteer #input_2_1_6_container {
    padding-right: 23px;
  }
}
@media (min-width: 768px) {
  .volunteer #input_2_1_3_container {
    margin-right: 5px;
  }
}
@media (min-width: 1200px) {
  .volunteer #input_2_1_3_container {
    margin-right: 6px;
  }
}
@media (min-width: 768px) {
  .volunteer #input_2_1_6_container {
    margin-right: -13px;
  }
}
.volunteer #field_2_1.gfield_error, .volunteer #field_2_2.gfield_error {
  margin-left: 15px !important;
}
.volunteer #field_2_1.gfield_error {
  width: calc(100% - 15px);
}
@media (min-width: 768px) {
  .volunteer #field_2_1.gfield_error #input_2_1_3_container {
    margin-right: -3px;
  }
}
@media (min-width: 768px) {
  .volunteer #field_2_1.gfield_error #input_2_1_3_container, .volunteer #field_2_1.gfield_error #input_2_1_6_container {
    padding-right: 16px;
  }
}
@media (min-width: 1200px) {
  .volunteer #field_2_1.gfield_error #input_2_1_3_container, .volunteer #field_2_1.gfield_error #input_2_1_6_container {
    padding-right: 17px;
  }
}
@media (max-width: 767px) {
  .volunteer #field_2_2.gfield_error, .volunteer #field_2_3.gfield_error {
    width: calc(100% - 15px) !important;
  }
}
@media (max-width: 767px) {
  .volunteer #field_2_3.gfield_error {
    margin-left: 15px !important;
  }
}
@media (min-width: 768px) {
  .volunteer .address_line_1 {
    padding: 0 9px 25px 0;
  }
  .volunteer .address_line_2 {
    margin-left: 6px;
    padding: 0 0 25px 0;
    width: calc(50% - 9px) !important;
  }
}
.volunteer .address_city, .volunteer .address_state {
  padding-bottom: 25px;
}
.volunteer .address_state select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid rgba(102, 102, 102, 0.2);
  border-radius: 4px;
  box-shadow: none;
  height: 38px;
  padding: 6px 14px !important;
}
