@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;0,900;1,400;1,600&display=swap");
/* 
Column mixins by Tiffany Brown (@webinista / webinista.com) 
Public domain licensed, because, really who couldn't come up with this on their own?
It's not required, but I'd appreciate you letting me know if you found these useful :-).
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

main {
  display: block;
}

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

ul li {
  list-style: disc outside none;
  margin: 0 0 5px 40px;
}
ul li ul {
  margin: 5px 0;
}

ol li {
  list-style: decimal outside none;
  margin: 0 0 5px 40px;
}

img {
  box-sizing: border-box;
  max-width: 100%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

select, input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  box-sizing: border-box;
  width: 100%;
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  font: normal 12px/14px sans-serif;
  padding: 10px;
}

.visually-hidden {
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.group:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.centered, .aligncenter, .centred, .aligncentre {
  text-align: center;
}

.entry-nav {
  margin: 10px 0;
  padding: 10px 0;
}

.entry-nav p {
  margin: 0;
  width: 45%;
}

.prev-entry {
  float: left;
  text-align: left;
}

.next-entry {
  float: right;
  text-align: right;
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*
	Colors
*/
/*
	Fonts
*/
/*
	Global
*/
body {
  background: #FFF;
  color: #000;
  font: 400 18px/26px "Source Sans Pro", sans-serif;
  text-align: center;
}

strong {
  font-weight: 600;
}

h1 {
  color: #F15754;
  font: 600 48px/54px "Source Sans Pro", sans-serif;
  margin-bottom: 40px;
}
h1 a {
  text-decoration: none;
}

.h1-group {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.h1-group h1 {
  margin-bottom: 0;
}
.h1-group .btn {
  margin-left: auto;
}

h2 {
  color: #1A3263;
  font: 400 32px/38px "Source Sans Pro", sans-serif;
  margin-bottom: 20px;
}
h2 a {
  text-decoration: none;
}

p + h2, ul + h2, ol + h2, .text + h2 {
  margin-top: 60px;
}

h3 {
  color: #1A3263;
  font: 400 24px/30px "Source Sans Pro", sans-serif;
  margin-bottom: 20px;
}
h3 a {
  text-decoration: none;
}

p + h3, ul + h3, ol + h3, .text + h3 {
  margin-top: 40px;
}

h2.centre, h3.centre {
  text-align: center;
}

h2.right, h3.right {
  text-align: right;
}

h4 {
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
}

blockquote {
  color: #1A3263;
  margin: 2em 3em;
}
blockquote p:last-child {
  margin-bottom: 0;
}

a {
  color: #1A3263;
  -moz-transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
a:hover {
  color: #000;
  text-decoration: none;
}

.wrapper {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 20px;
  position: relative;
  text-align: left;
}

.narrow-wrapper {
  margin: 0 auto;
  max-width: 850px;
}

.narrow-wrapper-left {
  max-width: 850px;
}

.circle {
  border-radius: 9px;
  display: inline-block;
  height: 18px;
  margin: 0 auto;
  width: 18px;
}
.circle.green {
  background-color: #2fa31a;
}
.circle.yellow {
  background-color: #e6ce0a;
}
.circle.red {
  background-color: #e90f0f;
}

.table table {
  border: 1px solid #5E6062;
  border-width: 0 0 1px 1px;
  margin-bottom: 2em;
  width: 100%;
}
.table table th, .table table td {
  border: 1px solid #5E6062;
  border-width: 1px 1px 0 0;
  padding: 15px;
}
.table table th {
  color: #F15754;
  font-weight: 600;
  text-align: left;
}
.table .cart-price, .table .cart-qty {
  width: 80px;
}
.table .table-right {
  text-align: right;
}

input[type=number] {
  font: normal 12px/14px sans-serif;
  padding: 5px;
  width: 30px;
}

.cart-actions {
  text-align: center;
}
.cart-actions .btn {
  margin: 0 10px;
}

.alert {
  background: #FEB95B;
  border: 1px solid #1A3263;
  color: #000;
  font-weight: 600;
  margin: 30px 0;
  padding: 15px;
  text-align: center;
}

figure img {
  display: block;
  margin: 0 auto;
}
figure.left {
  float: left;
  margin: 0 30px 20px 0;
  width: 50%;
}
figure.right {
  float: right;
  margin: 0 0 20px 30px;
  width: 50%;
}
figure.centred {
  margin-bottom: 30px;
}
figure figcaption {
  color: #5E6062;
  text-transform: uppercase;
  padding: 10px 5px 0;
}
figure figcaption p {
  margin: 0;
}

.mfp-figure figcaption {
  padding: 0;
}

.btn {
  background: #1A3263;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font: 600 14px/17px "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -moz-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.btn:hover {
  background: #000;
  color: #FFF;
}
.btn svg {
  color: #FFF;
  position: relative;
  top: -2px;
  vertical-align: middle;
}
.btn.icon-left svg {
  margin-right: 8px;
}
.btn.icon-right svg {
  margin-left: 8px;
}
.btn.btn-small {
  padding: 6px;
  text-transform: none;
}
.btn.btn-alt {
  background: #FFF;
  border: 1px solid #1A3263;
  color: #1A3263;
}
.btn.btn-alt:hover {
  background: #1A3263;
  color: #FFF;
}
.btn.btn-yellow {
  background: #FEB95B;
  color: #1A3263;
}
.btn.btn-yellow:hover {
  background: #1A3263;
  color: #FFF;
}

.icon-btn {
  -moz-transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 21px;
  line-height: 21px;
  margin-left: 2px;
  padding: 0;
}

.flex {
  display: flex;
}
.flex.flex-centre {
  align-items: center;
}
.flex.flex-centred {
  justify-content: center;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}

/*
 * Header	
*/
.global-header {
  height: 120px;
  margin-bottom: 60px;
}

.logo {
  padding: 18px 0;
  width: 180px;
}

.global-nav {
  font-size: 18px;
  line-height: 21px;
  left: 210px;
  position: absolute;
  top: 60px;
}
.global-nav .active-indicator {
  color: #F15754;
  font-size: 24px;
  left: 20px;
  line-height: 24px;
  position: absolute;
  top: -14px;
}
.global-nav ul {
  margin: 0;
}
.global-nav li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.global-nav li ul {
  background: #F15754;
  border-radius: 2px;
  box-sizing: border-box;
  display: none;
  font-size: 16px;
  line-height: 18px;
  left: -10px;
  margin-top: 10px;
  padding: 10px 0;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.global-nav li li {
  display: block;
}
.global-nav li li a {
  background: #F15754;
  border: 0;
  color: #FFF;
  padding: 5px 10px;
}
.global-nav li li a:hover {
  color: #FFF;
}
.global-nav a {
  border-bottom: 1px solid #5E6062;
  color: #5E6062;
  display: block;
  padding-bottom: 5px;
  text-decoration: none;
}
.global-nav a:hover {
  border-color: #1A3263;
  color: #000;
}

.social-nav {
  font-size: 21px;
  margin: 0;
  position: absolute;
  right: 20px;
  text-align: right;
  top: 15px;
}
.social-nav ul {
  margin: 0;
}
.social-nav li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
.social-nav a {
  color: #F15754;
}
.social-nav a:hover {
  color: #5E6062;
}
.social-nav input[type=text] {
  position: relative;
  top: -2px;
  vertical-align: middle;
  width: 120px;
}
.social-nav .icon-btn {
  color: #5E6062;
}
.social-nav .icon-btn:hover {
  color: #F15754;
}
.social-nav li.nav-donate {
  font-size: 18px;
  margin: 0 15px;
}
.social-nav li.nav-donate a {
  text-decoration: none;
}

/*
 * Page Content	
*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  margin-top: -60px;
}
.page-header .wrapper {
  padding-top: 120px;
}
.page-header .wrapper h1, .page-header .wrapper p {
  color: #FFF;
  max-width: 600px;
}
.page-header .wrapper a {
  color: #FFF;
}

.page-hero {
  margin-bottom: 40px;
}
.page-hero .page-hero-content {
  border-bottom: 4px solid #FEB95B;
  border-top: 4px solid #FEB95B;
  padding: 40px 0;
  width: 30%;
}
.page-hero .page-hero-content .dateline {
  margin-bottom: 40px;
}
.page-hero .page-hero-content p {
  color: #1A3263;
}
.page-hero .page-hero-content p:last-child {
  margin: 0;
}
.page-hero .page-hero-content .btn:first-of-type {
  margin-right: 10px;
}
.page-hero figure {
  margin-left: 5%;
  margin-right: auto;
  width: 65%;
}

.event-dates {
  color: #F15754;
}
.event-dates li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
}

.session-facilitator {
  font-size: 24px;
  line-height: 32px;
}
.session-facilitator span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.filters {
  margin: 0 0 20px;
}
.filters li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.filters a {
  background: #FEB95B;
  border-radius: 2px;
  font: 600 14px/16px "Source Sans Pro", sans-serif;
  margin-right: 10px;
  padding: 4px 8px;
  text-decoration: none;
  text-transform: uppercase;
}
.filters a.active {
  background: #1A3263;
  color: #FFF;
}

.accent-band {
  background: #E7EAEF;
  margin-bottom: 40px;
  padding: 40px 0;
}

.columns .text-column {
  width: 48%;
}
.columns .text-column:nth-child(even) {
  margin-left: auto;
}

.band {
  padding: 20px 0;
}
.band .band-image {
  width: 45%;
}
.band.image-right .band-content {
  margin-left: 0;
  order: 1;
}
.band.image-right .band-image {
  margin-left: auto;
  order: 2;
}

.blue-band {
  background: #1A3263;
  color: #FFF;
}
.blue-band h2 {
  color: #FFF;
}
.blue-band .btn {
  background: #FEB95B;
  color: #1A3263;
}

.yellow-band {
  background: #FEB95B;
}

.red-band {
  background: #F15754;
  color: #FFF;
}
.red-band h2 {
  color: #FFF;
}

.band-content {
  margin-left: auto;
  width: 45%;
}
.band-content .band-badge, .band-content h2 {
  margin-bottom: 40px;
}

.band-badge {
  text-transform: uppercase;
}

.cards > li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  background: #FEB95B;
  margin-bottom: 20px;
  width: 49%;
}
.cards > li:nth-child(even) {
  margin-left: auto;
}
.cards.inactive-cards > li {
  background: #E8E2DB;
}
.cards .listing-content {
  padding: 20px;
}
.cards h3 {
  margin-bottom: 0;
}
.cards.news h3 {
  margin-bottom: 15px;
}
.cards .dateline {
  margin-bottom: 15px;
}
.cards p {
  margin: 0;
}

.products > li {
  background: #FFF;
}

.product .product-images {
  margin-right: 40px;
  width: 40%;
}
.product .product-images ul {
  display: flex;
  margin: 10px 0 0;
}
.product .product-images li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-right: 2%;
  width: 32%;
}
.product .product-images li:last-child {
  margin-right: 0;
}
.product .product-images li img {
  display: block;
}
.product .product-content {
  width: 45%;
}

.product-form {
  background: #E8E2DB;
  border-radius: 2px;
  margin-bottom: 40px;
  padding: 20px;
}
.product-form label {
  display: block;
}
.product-form button {
  margin-right: 10px;
}

.form-radio {
  margin-bottom: 20px;
}
.form-radio label {
  cursor: pointer;
  font-weight: 600;
  padding: 2px;
}
.form-radio h4 {
  margin-bottom: 10px;
}
.form-radio strong {
  color: #1A3263;
  font-weight: 600;
}

.donate-custom input {
  max-width: 250px;
}

.symposiums > li {
  background: #1A3263;
  color: #FFF;
}
.symposiums > li h3, .symposiums > li a {
  color: #FFF;
}
.symposiums > li .listing-content {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
}
.symposiums > li .year-circle {
  background: #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  color: #1A3263;
  flex-shrink: 0;
  font: 600 32px/32px "Source Sans Pro", sans-serif;
  height: 100px;
  margin: 0 20px 0 0;
  overflow: hidden;
  padding: 30px 0;
  text-align: center;
  width: 100px;
}

.symposium-sponsors {
  margin-bottom: 40px;
  text-align: center;
}
.symposium-sponsors .flex li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-right: 20px;
  width: 120px;
}

.categories {
  font-weight: 600;
  margin-bottom: 15px;
}
.categories a {
  margin-right: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.dateline {
  color: #1A3263;
  text-transform: uppercase;
}

.dateline + .categories {
  margin-top: -15px;
}

.carousel li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin: 0 10px;
  text-align: center;
  width: 30%;
}
.carousel img {
  display: block;
}
.carousel h3 {
  border-top: 10px solid #FEB95B;
  margin: 0;
  padding: 20px 20px 0;
}
.carousel h4 {
  padding: 0 10px 20px;
}
.carousel .flickity-button {
  background: #FFF;
  color: #F15754;
}

.toggler {
  background: #E8E2DB;
  border-radius: 2px;
  cursor: pointer;
  font: 600 32px/36px "Source Sans Pro", sans-serif;
  position: relative;
  padding: 10px 40px 10px 10px;
}
.toggler svg {
  color: #F15754;
  font-size: 32px;
  line-height: 32px;
  position: absolute;
  right: 10px;
  top: 12px;
}

.downloads > li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-bottom: 4px solid #FEB95B;
  padding: 20px 0;
}
.downloads > li:last-child {
  border-bottom: 0;
}
.downloads .listing-thumbnail {
  margin-right: 40px;
  text-align: center;
  width: 200px;
}
.downloads .listing-thumbnail img {
  border-radius: 100px;
  height: 200px;
  max-width: 200px;
  width: 200px;
}
.downloads h3 {
  margin-bottom: 5px;
}
.downloads .dateline {
  margin-bottom: 15px;
}

.badge {
  background: #1A3263;
  border-radius: 2px;
  color: #FEB95B;
  font: 600 12px/16px "Source Sans Pro", sans-serif;
  margin-right: 10px;
  padding: 4px 8px;
  text-transform: uppercase;
  vertical-align: middle;
}

.links > li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-bottom: 4px solid #FEB95B;
  padding: 20px 0;
}
.links > li:last-child {
  border-bottom: 0;
}
.links p:last-child {
  margin: 0;
}
.links h3 {
  margin-bottom: 5px;
}

.search li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #FEB95B;
  padding: 20px 0;
}
.search li:last-child {
  border-bottom: 1px solid #FEB95B;
}
.search p:last-child {
  margin: 0;
}
.search h3 {
  margin-bottom: 0;
}

.sessions li, .events li {
  position: relative;
}
.sessions .listing-content, .events .listing-content {
  margin-left: 120px;
}

.sessions-alt li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-top: 4px solid #FEB95B;
  padding: 20px 0;
  position: relative;
}
.sessions-alt .listing-content {
  margin-left: 120px;
}
.sessions-alt .listing-content h3 {
  margin-bottom: 5px;
}
.sessions-alt .session-date {
  left: 0;
  padding-top: 0;
  top: 10px;
}
.sessions-alt .session-date-circle {
  margin-bottom: 0;
}

.events li {
  background: #1A3263;
  color: #FFF;
}
.events li a {
  color: #FFF;
}

.event-date {
  color: #1A3263;
  font-size: 14px;
  font-weight: 600;
  left: 20px;
  line-height: 17px;
  padding-top: 10px;
  position: absolute;
  text-align: center;
  width: 100px;
}

.event-date-circle {
  background: #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  color: #1A3263 !important;
  display: block;
  height: 100px;
  margin-bottom: 10px;
  padding-top: 20px;
  text-decoration: none;
  width: 100px;
}

.event-date-date {
  font-size: 36px;
  line-height: 38px;
}

.event-date-month {
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
}

.board li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-top: 4px solid #FEB95B;
  padding: 20px 0;
}
.board li img {
  border-radius: 100px;
  height: 200px;
  margin-right: 40px;
  width: 200px;
}
.board li h3 {
  margin: 0;
}
.board li h4 {
  margin-bottom: 20px;
}
.board li p {
  margin: 0;
}

.load-more {
  text-align: center;
}
.load-more .btn {
  background: #F15754;
}
.load-more .btn:hover {
  background: #1A3263;
}

/*
 * Home	
*/
.home-news {
  margin-bottom: 60px;
}
.home-news h2 {
  background: transparent url(../img/gradient-line.png) no-repeat right center;
  background-size: 1200px 2px;
  color: #1A3263;
  margin-bottom: 30px;
}
.home-news h2 span {
  background: #FFF;
  padding-right: 40px;
}
.home-news ul {
  margin: 0;
}
.home-news li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-right: 1px solid #E8E2DB;
  margin-right: 30px;
  padding-right: 30px;
  width: 30%;
}
.home-news li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.home-news h3 {
  font: 400 18px/24px "Source Sans Pro", sans-serif;
  margin-bottom: 20px;
}

.date-badge {
  color: #5E6062;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home-events {
  margin-top: 60px;
}

.home-downloads {
  margin: 60px auto 0;
}
.home-downloads ul {
  margin: 0;
  position: relative;
}
.home-downloads li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-left: 50%;
}
.home-downloads li a {
  border: 1px solid #FFF;
  border-width: 0 0 1px 1px;
  color: #FFF;
  display: block;
  padding: 60px 40px;
  text-decoration: none;
  text-transform: uppercase;
}
.home-downloads li.link-2 a {
  background: #1A3263;
}
.home-downloads li.link-2 a .badge {
  background: #FEB95B;
  color: #1A3263;
}
.home-downloads li.link-3 a {
  background: #F15754;
}
.home-downloads li.link-4 a {
  background: #FEB95B;
  border-bottom: 0;
}
.home-downloads li.home-downloads-feature {
  background-size: cover;
  bottom: 0;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 50%;
}
.home-downloads li.home-downloads-feature a {
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  bottom: 20px;
  color: #000;
  left: 20px;
  padding: 40px;
  position: absolute;
}

/*
 * Members	
*/
.member-header {
  background: transparent url(../img/gradient-line.png) no-repeat bottom center;
  background-size: 1200px 2px;
  margin: 0 0 30px;
  padding: 0 0 40px 180px;
}
.member-header .alert {
  margin-top: 20px;
  text-align: left;
}
.member-header .alert svg {
  margin-right: 8px;
}
.member-header img {
  border-radius: 90px;
  height: 180px;
  margin-right: 20px;
  width: 180px;
}
.member-header .member-welcome {
  width: 50%;
}
.member-header h1 {
  color: #1A3263;
  margin-bottom: 20px;
}
.member-header p {
  color: #1A3263;
  margin: 0;
}
.member-header nav {
  margin-left: auto;
  width: 180px;
}
.member-header nav ul {
  margin: 0;
}
.member-header nav li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.member-header nav a {
  background: #1A3263;
  color: #FFF;
  display: block;
  margin-bottom: 2px;
  padding: 4px 6px;
  text-decoration: none;
  -moz-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.member-header nav a svg {
  margin-left: 6px;
}
.member-header nav a:hover {
  background: #000;
}

.members > li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  border-top: 4px solid #FEB95B;
  padding: 20px 0;
}
.members .member-photo {
  flex-shrink: 0;
  margin-right: 40px;
  text-align: center;
  width: 200px;
}
.members .member-photo img {
  border-radius: 100px;
  display: block;
  height: 200px;
  margin-bottom: 20px;
  width: 200px;
}
.members h3 {
  margin-bottom: 0;
}
.members h4 {
  color: #1A3263;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.members .member-meta {
  margin: 0 0 5px;
}
.members .member-meta li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  background: #F15754;
  border-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  margin-right: 5px;
  padding: 6px 4px;
  text-transform: uppercase;
}
.members .member-meta.member-meta-tags li {
  background: #5E6062;
}
.members p {
  font-size: 14px;
  line-break: 19px;
  margin: 0;
}

.group-members {
  margin-bottom: 1em;
}
.group-members .cell {
  color: #1A3263;
  font-size: 14px;
  line-height: 21px;
  padding: 20px 0;
}
.group-members .cell strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.group-members .member-name {
  width: 40%;
}
.group-members .member-date {
  width: 25%;
}
.group-members .member-date span {
  color: #5E6062;
}
.group-members .member-delete {
  text-align: right;
  width: 10%;
}
.group-members .member-delete a {
  color: #F15754;
}
.group-members .member-delete a:hover {
  color: #1A3263;
}

.group-members-header {
  background: transparent url(../img/gradient-line.png) no-repeat bottom center;
  background-size: 1200px 2px;
}
.group-members-header .cell {
  color: #5E6062;
  font-size: 18px;
  line-height: 24px;
}

.group-members-row {
  border-bottom: 4px solid #FEB95B;
}

.group-members-header, .group-members-row {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
}

/*
 * Forms	
*/
.form {
  background: #E8E2DB;
  border-radius: 2px;
  padding: 20px;
}
.form label {
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
}
.form .freeform-row .freeform-column .freeform-instructions {
  color: #000;
  font-size: 16px;
  line-height: 21px;
}
.form h3 {
  margin-bottom: 0;
}
.form .ff-form-errors {
  background: #F15754;
  border: 0;
  color: #FFF;
  font-weight: 600;
  margin-bottom: 20px;
}
.form .ff-form-success {
  background: #FFF;
  border: 1px solid #1A3263;
  border-radius: 4px;
  color: #1A3263;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 20px;
}
.form .ff-form-success p {
  margin: 0;
}

.forgot-link {
  float: right;
  font-style: italic;
}

.hidden {
  display: none;
}

.shipping-billing-checkbox {
  padding: 20px;
  text-align: center;
}
.shipping-billing-checkbox label {
  cursor: pointer;
}

#shippingAddress {
  margin-bottom: 40px;
}

.checkout-addresses .address {
  width: 48%;
}
.checkout-addresses .address:nth-child(even) {
  margin-left: auto;
}

#payment-form {
  margin-bottom: 40px;
}

#stripe-element {
  background: #FFF;
  border: 1px solid #000;
  margin-bottom: 20px;
  padding: 10px;
}

#addForm {
  background: #FFF;
  margin: 0 auto;
  max-width: 300px;
  padding: 40px;
  position: relative;
}
#addForm h3 {
  color: #F15754;
}

.form-row {
  margin-bottom: 15px;
}
.form-row.discount-row {
  margin: 40px auto;
  text-align: center;
  max-width: 560px;
}
.form-row label {
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 5px;
}
.form-row .form-group {
  width: 48%;
}
.form-row .form-group:nth-child(even) {
  margin-left: auto;
}

.other-target {
  margin-top: 15px;
}

.form-note {
  font-size: 14px;
  line-height: 17px;
  padding: 5px 0 0;
  margin: 0;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
}
.member-tags li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin: 0 1% 10px;
  width: 23%;
}
.member-tags label {
  font-weight: 400;
}

.member-search-form {
  margin-bottom: 30px;
}
.member-search-form .form-row {
  margin-bottom: 20px;
}
.member-search-form .form-row label {
  color: #5E6062;
  font-weight: normal;
  margin-bottom: 10px;
}
.member-search-form .input {
  background: #E8E2DB;
  border: 1px solid #5E6062;
}
.member-search-form .member-search-checkboxes {
  margin: 0;
}
.member-search-form .member-search-checkboxes li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-right: 20px;
  width: 20%;
}
.member-search-form .member-search-checkboxes label {
  background: #5E6062;
  border-radius: 4px;
  color: #FFF;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  padding: 6px 4px;
  text-align: center;
  text-transform: uppercase;
}
.member-search-form .member-search-checkboxes label.selected {
  background: #F15754;
}
.member-search-form .member-search-checkboxes input {
  left: -99999px;
  position: absolute;
}

/*
 * Footer	
*/
.global-footer {
  border-top: 4px solid #E8E2DB;
  font-size: 16px;
  line-height: 21px;
  margin-top: 60px;
  padding: 40px 0 0;
}
.global-footer > .flex {
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-newsletter {
  color: #5E6062;
  width: 40%;
}
.footer-newsletter p {
  margin: 0;
}
.footer-newsletter strong {
  color: #1A3263;
}
.footer-newsletter form {
  margin-top: 20px;
}
.footer-newsletter input[type=email] {
  margin-right: 10px;
  width: 200px;
}

.footer-links {
  color: #5E6062;
  text-transform: uppercase;
  width: 40%;
}
.footer-links p {
  margin: 0;
}
.footer-links ul {
  margin: 0;
}
.footer-links li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

.footer-col {
  margin-right: 2%;
  width: 31%;
}

.footer-social {
  background: #1A3263;
  padding: 20px 0;
}
.footer-social .wrapper {
  text-align: right;
}
.footer-social ul {
  margin: 0;
}
.footer-social li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-left: 10px;
}
.footer-social svg {
  color: #FFF;
  font-size: 24px;
  line-height: 24px;
}

/* 
	Forms
*/
/* https://css-tricks.com/the-cleanest-trick-for-autogrowing-textareas/ */
.grow-wrap {
  display: grid;
}

.grow-wrap::after {
  content: attr(data-replicated-value) " ";
  white-space: pre-wrap;
  visibility: hidden;
}

.grow-wrap > textarea {
  resize: none;
  overflow: hidden;
}

.grow-wrap > textarea,
.grow-wrap::after {
  border: 1px solid black;
  padding: 0.5rem;
  font: inherit;
  grid-area: 1/1/2/2;
}

.error {
  color: #F15754;
  font-weight: 600;
}

.errors, .parsley-errors-list, .ff-errors {
  color: #F15754;
  font-weight: 600;
  margin: 0;
}
.errors li, .parsley-errors-list li, .ff-errors li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  color: #F15754 !important;
  padding: 4px;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #F15754;
  border: 1px solid #F15754;
}

span.required {
  color: #F15754;
  font-weight: 600;
  margin-left: 5px;
}

/*
 * Toolkit	
*/
.toolkit h2 {
  border-bottom: 2px solid #1A3263;
  display: inline-block;
  font-weight: 600;
  padding-bottom: 10px;
}
.toolkit h2.toggler {
  background: #E7EAEF;
  border: 0;
  border-radius: 0;
  display: block;
}
.toolkit h2.toggler svg {
  right: 20px;
  top: 18px;
}
.toolkit h2.toggler.expanded {
  background: #1A3263;
  color: #FFF;
}
.toolkit h2.toggler.expanded .section-number {
  color: #1A3263;
}
.toolkit h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
}
.toolkit h3 svg {
  color: #F15754;
  margin-right: 10px;
}
.toolkit .section-number {
  background: #FFF;
  border: 4px solid #1A3263;
  border-radius: 24px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 32px;
  line-height: 38px;
  height: 48px;
  margin-right: 10px;
  position: relative;
  text-align: center;
  top: -2px;
  width: 48px;
}
.toolkit .toggle-content {
  color: #1A3263;
}

.toolkit-filter {
  color: #1A3263;
  margin-bottom: 40px;
}
.toolkit-filter ul {
  display: inline-block;
  margin: 0 20px 0 10px;
}
.toolkit-filter ul li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.toolkit-filter ul li svg {
  color: #F15754;
  margin-left: 6px;
}
.toolkit-filter ul ul {
  background: #E7EAEF;
  display: none;
  font-size: 16px;
  left: -8px;
  line-height: 19px;
  margin: 0;
  padding: 4px 0;
  position: absolute;
  width: 180px;
  z-index: 2;
}
.toolkit-filter ul li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: block;
}
.toolkit-filter ul a {
  display: block;
  padding: 4px 8px;
  text-decoration: none;
}
.toolkit-filter ul a.active {
  font-weight: 600;
}

.howto li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  font: 600 36px/38px "Source Sans Pro", sans-serif;
  margin-bottom: 60px;
  position: relative;
  width: 48%;
}
.howto li:nth-child(even) {
  margin-left: auto;
}
.howto li a {
  display: block;
  padding-left: 70px;
  position: relative;
  text-decoration: none;
  z-index: 3;
}
.howto li svg {
  font-size: 48px;
  left: 10px;
  line-height: 48px;
  margin-top: -24px;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.howto li span {
  background: #FEB95B;
  display: block;
  height: 50px;
  left: 20px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  transform: rotate(-4deg);
  width: 90%;
  z-index: 1;
}

.footnotes {
  font-size: 14px;
  line-height: 17px;
  padding: 20px;
}
.footnotes li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  padding: 5px;
}
.footnotes svg {
  color: #F15754;
  font-size: 12px;
  margin-left: 5px;
}

.toolkit-sizeup {
  border: 2px solid #1A3263;
  border-width: 2px 2px;
  margin-bottom: 2em;
  width: 100%;
}
.toolkit-sizeup th, .toolkit-sizeup td {
  border: 2px solid #1A3263;
  border-width: 0 0 2px 2px;
  color: #1A3263;
  font-size: 16px;
  line-height: 21px;
  padding: 10px;
  vertical-align: top;
  width: 33%;
}
.toolkit-sizeup th {
  background: #E7EAEF;
  font-weight: 600;
}

.action-plan-item {
  margin-bottom: 20px;
}
.action-plan-item label {
  cursor: pointer;
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.toolkit-textarea {
  border: 1px solid #1A3263;
  font: 400 16px/21px "Source Sans Pro", sans-serif;
  min-height: 160px;
  padding: 10px;
  width: 100%;
}

.toolkit-resources li, .search-resource {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
}
.toolkit-resources li svg, .search-resource svg {
  color: #F15754;
  left: 0;
  position: absolute;
  top: 3px;
}
.toolkit-resources li .listing-content, .search-resource .listing-content {
  font-size: 16px;
  line-height: 21px;
  margin-left: 30px;
}
.toolkit-resources li .listing-content p, .search-resource .listing-content p {
  margin-bottom: 10px;
}
.toolkit-resources li .listing-content a, .search-resource .listing-content a {
  color: #F15754;
  font-weight: 600;
}
.toolkit-resources li .listing-content .resource-source, .search-resource .listing-content .resource-source {
  display: block;
  text-transform: uppercase;
}

.search-resource svg {
  top: 23px;
}

.toolkit-header {
  padding: 20px 0;
}

.toolkit-logo {
  position: absolute;
  right: 480px;
  top: 8px;
  width: 120px;
}
.toolkit-home .toolkit-logo {
  position: static;
  top: 0;
}

.toolkit-header-title {
  width: 350px;
}
.toolkit-header-title h1 {
  border-bottom: 4px dotted #F15754;
  color: #1A3263;
  font-size: 38px;
  font-weight: 900;
  line-height: 36px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.toolkit-header-title h2 {
  border: 0;
  font: 600 21px/21px "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
}

.toolkit-nav {
  position: absolute;
  right: 20px;
  top: 20px;
}
.toolkit-home .toolkit-nav {
  top: 10px;
}
.toolkit-nav ul {
  margin: 0;
  text-align: right;
}
.toolkit-nav li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
.toolkit-nav li ul {
  background: #FFF;
  border-radius: 2px;
  border: 1px solid #F15754;
  box-sizing: border-box;
  display: none;
  font-size: 16px;
  line-height: 18px;
  left: -10px;
  margin: 5px 0 0 10px;
  padding: 5px 0;
  position: absolute;
  text-align: left;
  width: 200px;
  z-index: 2;
}
.toolkit-nav li li {
  display: block;
}
.toolkit-nav li li a {
  border: 0;
  color: #1A3263;
  display: block;
  padding: 5px 10px;
}
.toolkit-nav li li a:hover {
  color: #000;
}
.toolkit-nav li li a.active {
  background: #E7EAEF;
  font-weight: 600;
}
.toolkit-nav a {
  padding: 2px 10px;
  text-decoration: none;
}
.toolkit-nav a.active {
  font-weight: 600;
}

#toolkit-search {
  background: #1A3263;
  display: none;
  position: absolute;
  right: 20px;
  top: 50px;
  width: 200px;
}
.toolkit-home #toolkit-search {
  top: 70px;
}
#toolkit-search input[type=text] {
  width: 160px;
}
#toolkit-search svg {
  color: #FFF;
  position: relative;
  top: 2px;
}
#toolkit-search button {
  box-sizing: border-box;
  margin: 0;
  width: 35px;
}

.toolkit-page-header {
  background: #1A3263 url(../img/stripes.png) repeat-x center bottom;
  background-size: 20px 60px;
  margin-bottom: 60px;
  padding: 80px 0 60px;
}
.toolkit-page-header.toolkit-how-tos-header {
  background-color: #FEB95B;
  background-position: center 160px;
}
.toolkit-page-header.has-section-name {
  padding-top: 30px;
}
.toolkit-page-header h1 {
  color: #FFF;
  margin: 0;
  text-transform: uppercase;
}
.toolkit-page-header .toolkit-page-header-section {
  color: #FFF;
  font: 400 32px/32px "Source Sans Pro", sans-serif;
  text-transform: uppercase;
}

.toolkit-home-header {
  background: transparent url(../img/stripes.png) repeat-x center bottom;
  background-size: 20px 60px;
  margin-bottom: 60px;
  padding-bottom: 100px;
}
.toolkit-home-header h1 {
  border-bottom: 8px dotted #F15754;
  color: #1A3263;
  font-size: 92px;
  font-weight: 900;
  line-height: 80px;
  margin-bottom: 20px;
  max-width: 850px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.toolkit-home-header h2 {
  border: 0;
  font: 600 50px/48px "Source Sans Pro", sans-serif;
  margin: 0 0 60px;
  padding: 0;
}

.toolkit-section-bubbles li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  font: 600 36px/38px "Source Sans Pro", sans-serif;
  height: 280px;
  margin: 0 20px 20px;
  text-align: center;
  width: 280px;
}
.toolkit-section-bubbles a {
  background: #1A3263;
  border-radius: 140px;
  box-sizing: border-box;
  color: #FFF;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  width: 100%;
}

.toolkit-button {
  margin-bottom: 40px;
  text-align: right;
}
.toolkit-button .btn {
  text-transform: none;
}
.toolkit-button .btn svg {
  margin-right: 10px;
}

.pull {
  color: #1A3263;
  font: 400 36px/40px "Source Sans Pro", sans-serif;
  margin: 0 auto 40px;
  max-width: 800px;
  padding-left: 60px;
  position: relative;
}
.pull svg {
  font-size: 36px;
  left: 0;
  position: absolute;
  top: 0;
}
.pull cite {
  display: block;
  margin-top: 20px;
  text-align: right;
}

.toolkit-footer {
  border-top: 4px solid #E8E2DB;
  font-size: 16px;
  line-height: 21px;
  margin-top: 60px;
}

.toolkit-footer-logo {
  margin-right: 20px;
  width: 180px;
}

.toolkit-footer-credit {
  padding-top: 40px;
  width: 500px;
}
.toolkit-footer-credit p {
  color: #1A3263;
  font-weight: 600;
}

.toolkit-footer-links {
  color: #5E6062;
  margin-left: auto;
  width: 180px;
  text-transform: uppercase;
}
.toolkit-footer-links p {
  margin: 0;
}

@media screen and (max-width: 1140px) {
  .global-nav {
    font-size: 16px;
  }
  .global-nav li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 960px) {
  .global-header {
    height: auto;
  }
  .global-header .wrapper {
    text-align: center;
  }
  .global-header .logo {
    margin: 0 auto;
    padding: 10px 0 15px;
  }
  .global-header .logo img {
    display: block;
  }
  .global-nav {
    background: #1A3263;
    font-size: 21px;
    line-height: 24px;
    margin: 0 -20px 0;
    padding: 20px 0;
    position: static;
    text-align: left;
  }
  .global-nav li {
    display: block;
    margin-right: 0;
    position: static;
  }
  .global-nav li ul {
    background: #112247;
    font-size: 18px;
    line-height: 21px;
    position: static;
    width: 100%;
  }
  .global-nav li ul a {
    background: #112247;
    padding: 10px 40px;
  }
  .global-nav a {
    border: 0;
    color: #FFF;
    padding: 10px 40px;
  }
  .global-nav a:hover {
    color: #FFF;
  }
  .nav-toggle, .search-toggle {
    color: #5E6062;
    font-size: 28px;
    left: 10px;
    line-height: 28px;
    padding: 10px;
    position: absolute;
    top: 20px;
  }
  .search-toggle {
    left: auto;
    right: 10px;
  }
  .social-nav {
    font-size: 32px;
    line-height: 32px;
    margin-left: 30px;
    position: static;
    text-align: left;
  }
  .social-nav li {
    display: inline-block;
  }
  .social-nav a {
    color: #F15754;
    padding: 10px;
  }
  #search {
    background: #5E6062;
    display: block;
    margin: 0 -20px 0;
    padding: 20px 40px;
    text-align: left;
  }
  #search input[type=text] {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
    padding: 10px;
  }
  #search .btn {
    margin-right: 20px;
  }
  #search .search-cancel {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
  }
  .member-header {
    margin-top: 0;
    padding: 0 0 20px 0;
  }
  .member-header .member-welcome {
    width: 45%;
  }
  .footer-links .footer-col {
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
  }
  .pull {
    font-size: 28px;
    line-height: 32px;
    max-width: 640px;
  }
  .toolkit-home-header h1 {
    font-size: 74px;
    line-height: 64px;
    max-width: 680px;
  }
  .toolkit-home-header h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .toolkit-header-title {
    width: 240px;
  }
  .toolkit-header-title h1 {
    font-size: 26px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .toolkit-header-title h2 {
    font-size: 14px;
    line-height: 16px;
  }
  .toolkit-logo {
    right: 400px;
  }
  .toolkit-nav a {
    font-size: 16px;
    padding: 2px 6px;
  }
  .toolkit-footer-links {
    margin-left: 0;
    padding: 10px 0 40px;
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .toolkit-logo {
    display: none;
  }
  .toolkit-home .toolkit-logo {
    display: block;
  }
}
@media screen and (max-width: 720px) {
  h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  h3 {
    font-size: 21px;
    line-height: 25px;
  }
  h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .toggler {
    border-radius: 0;
    font: 600 24px/28px "Source Sans Pro", sans-serif;
    margin: 0 -20px 10px;
    position: relative;
    padding: 10px 40px 10px 20px;
  }
  .toggler svg {
    font-size: 24px;
    line-height: 24px;
  }
  .page-header {
    height: 200px;
  }
  .page-header.home-header {
    height: 400px;
  }
  .page-hero {
    display: block !important;
  }
  .page-hero .page-hero-content {
    margin: 0 -20px;
    padding: 40px 20px;
    width: auto;
  }
  .page-hero figure {
    border-bottom: 4px solid #FEB95B;
    margin: 0 -20px;
    max-width: none;
    width: auto;
  }
  .member-header img {
    border-radius: 50px;
    height: 100px;
    margin-right: 20px;
    width: 100px;
  }
  .member-header .member-welcome {
    margin-right: 0;
    width: 70%;
  }
  .member-header h1 {
    margin-bottom: 5px;
  }
  .member-header nav {
    margin: 20px 0 0;
    width: 100%;
  }
  .member-header nav ul {
    margin: 0 -20px;
  }
  .member-header nav a {
    padding: 4px 20px;
  }
  .member-search-form .member-search-checkboxes li {
    width: 50%;
  }
  .group-members .member-name {
    width: 100%;
  }
  .group-members .member-date {
    width: 45%;
  }
  .group-members .member-delete {
    width: 10%;
  }
  .group-members .cell {
    padding: 0 0 10px;
  }
  .group-members-header {
    display: none;
  }
  .group-members-row {
    margin-bottom: 10px;
  }
  .howto li {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 40px;
    width: auto;
  }
  .home-news {
    margin-bottom: 0;
  }
  .home-news li {
    border-bottom: 1px solid #E8E2DB;
    border-right: 0;
    margin-bottom: 20px;
    margin-right: 0;
    padding-bottom: 20px;
    padding-right: 0;
    width: 100%;
  }
  .home-news li:last-child {
    border-bottom: 0;
  }
  .band .band-image {
    margin: -20px -20px 20px;
    width: auto;
  }
  .band-content {
    padding-bottom: 20px;
    width: 100%;
  }
  .band-content .band-badge, .band-content h2 {
    margin-bottom: 20px;
  }
  .downloads .listing-thumbnail {
    margin-right: 20px;
    width: 100px;
  }
  .downloads .listing-thumbnail img {
    border-radius: 50px;
    height: 100px;
    max-width: 100px;
    width: 100px;
  }
  .home-events {
    margin-top: 20px;
  }
  .home-downloads {
    margin: 40px 0 0;
    padding: 0;
  }
  .home-downloads li {
    margin-left: 0;
  }
  .home-downloads li a {
    border: 0;
    padding: 40px;
  }
  .home-downloads li.home-downloads-feature {
    background-size: cover;
    height: 400px;
    left: auto;
    position: relative;
    top: auto;
    width: 100%;
  }
  .home-downloads li.home-downloads-feature a {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .cards {
    margin: 0 -20px;
  }
  .cards li {
    margin: 0 0 20px;
    width: 100%;
  }
  .members .member-photo {
    margin-right: 20px;
    width: 100px;
  }
  .members .member-photo img {
    border-radius: 50px;
    height: 100px;
    width: 100px;
  }
  .board li img {
    border-radius: 50px;
    height: 100px;
    margin-right: 20px;
    width: 100px;
  }
  .carousel li {
    max-width: 300px;
    width: 100%;
  }
  .product .product-images {
    margin: 0 -20px 20px;
    width: auto;
  }
  .product .product-content {
    width: 100%;
  }
  .form {
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .form .freeform-row {
    display: block;
  }
  .mobile-bleed {
    margin-left: -20px;
    margin-right: -20px;
  }
  figure.left, figure.right {
    float: none;
    margin: 0 0 20px;
    width: auto;
  }
  .form-row .form-group {
    margin-bottom: 10px;
    width: 100%;
  }
  .form-row .member-tags li {
    margin: 0 0 5px;
    width: 100%;
  }
  .checkout-addresses .address {
    width: 100%;
  }
  .global-footer {
    margin-top: 20px;
  }
  .footer-newsletter {
    margin-bottom: 40px;
    width: 100%;
  }
  .footer-links {
    width: 100%;
  }
  .toolkit-header-title {
    margin: 0 auto;
    text-align: center;
  }
  .toolkit-nav {
    background: #E7EAEF;
    margin-bottom: 20px;
    position: static;
  }
  .toolkit-nav ul {
    padding: 10px 0;
    text-align: left;
  }
  .toolkit-nav li {
    display: block;
  }
  .toolkit-nav li ul {
    background: #FFF;
    border-radius: 0;
    border-width: 1px 0;
    margin: 0;
    position: static;
    width: auto;
  }
  .toolkit-nav li li {
    display: block;
  }
  .toolkit-nav li li a {
    font-size: 18px;
    line-height: 20px;
    padding: 5px 20px;
  }
  .toolkit-nav li li a.active {
    background: transparent;
  }
  .toolkit-nav a {
    display: block;
    font-size: 21px;
    line-height: 24px;
    padding: 5px 20px;
  }
  #toolkit-search {
    background: #E7EAEF;
    display: block;
    margin-bottom: 20px;
    padding: 40px;
    position: static;
    text-align: center;
    width: auto;
  }
  #toolkit-search input[type=text] {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
    padding: 10px;
    width: 80%;
  }
  #toolkit-search svg {
    color: #1A3263;
  }
  .toolkit-nav-toggle {
    color: #1A3263;
    font-size: 32px;
    left: 10px;
    line-height: 32px;
    padding: 10px;
    position: absolute;
    top: 0;
  }
  .toolkit-search-toggle {
    color: #1A3263;
    font-size: 32px;
    line-height: 32px;
    padding: 10px;
    position: absolute;
    right: 10px;
    top: 0;
  }
  .toolkit-home .toolkit-logo {
    margin: 0 auto;
    position: static;
  }
  .toolkit-home-header {
    padding-bottom: 40px;
  }
  .toolkit-home-header h1 {
    font-size: 47px;
    line-height: 42px;
    margin-bottom: 5px;
    max-width: 440px;
  }
  .toolkit-home-header h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .toolkit-footer-credit {
    width: 280px;
  }
  .toolkit-section-bubbles li {
    font-size: 24px;
    line-break: 28px;
    height: 240px;
    width: 240px;
  }
  .toolkit-section-bubbles a {
    border-radius: 120px;
  }
  .columns .text-column {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .toolkit-nav-toggle {
    font-size: 24px;
    left: 0;
    line-height: 24px;
  }
  .toolkit-search-toggle {
    font-size: 24px;
    line-height: 24px;
    right: 0;
  }
  .toolkit-home-header h1 {
    font-size: 30px;
    line-height: 28px;
    padding-bottom: 8px;
  }
  .toolkit-home-header h2 {
    font-size: 16px;
    line-height: 18px;
  }
  .toolkit-button {
    text-align: center;
  }
}
@media print {
  .footer-social, .toolkit-nav, .toolkit-footer-logo, .toolkit-footer-links, .toggler svg, .global-nav, .social-nav, .global-footer, .page-header, .toolkit-button {
    display: none;
  }
  .cards li {
    border: 1px solid #000;
    page-break-inside: avoid;
  }
  .toolkit-header .toolkit-logo {
    left: auto;
    margin: 0;
    right: 20px;
  }
  .toolkit-page-header {
    border: 1px solid #000;
    border-width: 1px 0;
    padding: 20px 0;
  }
  .toolkit-page-header h1, .toolkit-page-header .toolkit-page-header-section {
    color: #000;
  }
  h2.toggler.section-toggle.expanded {
    background: #FFF;
    color: #1A3263;
  }
  .toggle-content {
    display: block !important;
  }
  .action-plan-item, .toolkit-sizeup tr {
    page-break-inside: avoid;
  }
}
