@charset "UTF-8";
/*================ UTILS ================*/
/*================ Mixins ================*/
/*
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*============= Keyframe animation Mixin ============*/
/*============================================================================
  Color Variables
==============================================================================*/
/* ---- Main colors ---- */
/* ---- Other colors ---- */
/* ---- Social colors ---- */
/*============================================================================
  Typography Variables
==============================================================================*/
/* ---- Font line heights ---- */
/* ---- Font sizes ---- */
/* ---- Font weights ---- */
/* ---- Font families ---- */
/*============================================================================
  Padding & Margin Variables
==============================================================================*/
/* ---- Padding ---- */
/* ---- Margin ---- */
/* ---- Grid padding ---- */
/* ---- BD Margin ---- */
/*============================================================================
  Grid Breakpoints and Class Names
==============================================================================*/
/*================ VENDOR ================*/
@import "css/vendor/owl/owl.carousel.min.css";
@import "css/vendor/owl/owl.theme.default.min.css";
/*================= BASE =================*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

img {
  max-width: 100%;
  height: auto;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==========================================================================
animations -- animations.scss
========================================================================== */
.effect--fade,
.effect--slidein {
  -webkit-transition: opacity 250ms ease-out 0s, -webkit-transform 250ms ease-out 0s;
  transition: opacity 250ms ease-out 0s, -webkit-transform 250ms ease-out 0s;
  transition: opacity 250ms ease-out 0s, transform 250ms ease-out 0s;
  transition: opacity 250ms ease-out 0s, transform 250ms ease-out 0s, -webkit-transform 250ms ease-out 0s;
}

.effect--fade {
  opacity: 0;
}

.effect--fade.effect--ready,
.no-cssanimations .effect--fade {
  opacity: 1;
}

.effect--slidein {
  -webkit-transform: translate(0, 2em);
  -ms-transform: translate(0, 2em);
      transform: translate(0, 2em);
}

.effect--slidein.effect--ready,
.no-cssanimations .effect--slidein {
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
      transform: translate(0, 0px);
}

.effect--slidedown {
  -webkit-transform: translate(0, -2em);
  -ms-transform: translate(0, -2em);
      transform: translate(0, -2em);
}

.effect--slidedown.effect--ready,
.no-cssanimations .effect--slidedown {
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
      transform: translate(0, 0px);
}

.effect--slideright {
  -webkit-transform: translate(-2em, 0);
  -ms-transform: translate(-2em, 0);
      transform: translate(-2em, 0);
}

.effect--slideright.effect--ready,
.no-cssanimations .effect--slideright {
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
      transform: translate(0, 0px);
}

.effect--slideleft {
  -webkit-transform: translate(2em, 0px);
  -ms-transform: translate(2em, 0px);
      transform: translate(2em, 0px);
}

.effect--slideleft.effect--ready,
.no-cssanimations .effect--slideleft {
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
      transform: translate(0, 0px);
}

.effect--delay-1 {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.effect--delay-2 {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.effect--delay-3 {
  -webkit-transition-delay: 450ms;
  transition-delay: 450ms;
}

.effect--delay-4 {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.effect--delay-5 {
  -webkit-transition-delay: 750ms;
  transition-delay: 750ms;
}

.effect--delay-6 {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.effect--delay-7 {
  -webkit-transition-delay: 1050ms;
  transition-delay: 1050ms;
}

.effect--delay-0 {
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
}

.effect.gd-u-1-2:nth-child(2n+2) {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

@media only screen and (min-width: 550px) {
  .effect.gd-u-gt550-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt550-1-3:nth-child(3n+2) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt550-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }
}
@media only screen and (min-width: 700px) {
  .effect.gd-u-gt700-1-2:nth-child(2n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt700-1-2:nth-child(2n+2) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt700-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt700-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt700-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .effect.gd-u-gt700-1-4:nth-child(4n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt700-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt700-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .effect.gd-u-gt700-1-4:nth-child(4n+4) {
    -webkit-transition-delay: 450ms;
    transition-delay: 450ms;
  }
}
@media only screen and (min-width: 1200px) {
  .effect.gd-u-gt1000-1-2:nth-child(2n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt1000-1-2:nth-child(2n+2) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt1000-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt1000-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt1000-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .effect.gd-u-gt1000-1-4:nth-child(4n+1) {
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .effect.gd-u-gt1000-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
  }

  .effect.gd-u-gt1000-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .effect.gd-u-gt1000-1-4:nth-child(4n+4) {
    -webkit-transition-delay: 450ms;
    transition-delay: 450ms;
  }
}
/*  ==========================================================================
	Base typography -- typography.scss
	========================================================================== */
html {
  /* stops fonts displaying bolder on firefox */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.25em;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Benton Sans Med", Helvetica, Arial, sans-serif;
}

h4 {
  margin: 1.5em 0 1em;
}

.h1,
h1 {
  margin: 0;
}

.h2,
h2 {
  font-weight: 400;
}

.fontsize--huge,
h1 {
  font-size: 42px;
  line-height: 1.1;
}
@media only screen and (min-width: 550px) {
  .fontsize--huge,
h1 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--huge,
h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--huge,
h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--huge,
h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--huge,
h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--huge,
h1 {
    font-size: 66px;
  }
}

.fontsize--large,
h2 {
  font-size: 22px;
  line-height: 1.1;
}
@media only screen and (min-width: 550px) {
  .fontsize--large,
h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--large,
h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--large,
h2 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--large,
h2 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--large,
h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--large,
h2 {
    font-size: 30px;
  }
}

.fontsize--med,
h3 {
  font-size: 17px;
  line-height: 1.3;
}
@media only screen and (min-width: 550px) {
  .fontsize--med,
h3 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--med,
h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--med,
h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--med,
h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--med,
h3 {
    font-size: 23px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--med,
h3 {
    font-size: 24px;
  }
}

.fontsize--reg,
body,
h4 {
  font-size: 15px;
}
@media only screen and (min-width: 550px) {
  .fontsize--reg,
body,
h4 {
    font-size: 15px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--reg,
body,
h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--reg,
body,
h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--reg,
body,
h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--reg,
body,
h4 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--reg,
body,
h4 {
    font-size: 18px;
  }
}

.fontsize--sml,
h5 {
  font-size: 14px;
}
@media only screen and (min-width: 550px) {
  .fontsize--sml,
h5 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--sml,
h5 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--sml,
h5 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--sml,
h5 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--sml,
h5 {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--sml,
h5 {
    font-size: 15px;
  }
}

.fontsize--tiny, .pagenav__toggle .fal,
h6 {
  font-size: 12px;
}
@media only screen and (min-width: 550px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1000px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--tiny, .pagenav__toggle .fal,
h6 {
    font-size: 13px;
  }
}

.fontsize--zero {
  font-size: 0;
}

.font--bold,
b,
strong {
  font-family: "Benton Sans Bd";
  font-weight: 700;
}

.font--semibold {
  font-family: "Benton Sans Med";
  font-weight: 500;
}

.font--reg {
  font-family: "Benton Sans Reg";
  font-weight: 400;
}

.font--light {
  font-weight: 200;
}

.case--lower {
  text-transform: lowercase;
}

.case--upper {
  text-transform: uppercase;
}

.text-align--center {
  text-align: center;
}

.text-align--left {
  text-align: left;
}

.text-align--right {
  text-align: right;
}

.color--white {
  color: #fff;
}

.color--white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.color--white-66 {
  color: rgba(255, 255, 255, 0.66);
}

.color--grey {
  color: #888;
}

.color--blue {
  color: #00164E;
}

.color--blue-50 {
  color: rgba(0, 22, 78, 0.5);
}

.color--orange {
  color: #EE7203;
}

.color--teal {
  color: #0EA4AF;
}

ol,
ul {
  margin: 0 0 1em;
  padding: 0;
}

p {
  margin: 0 0 1em;
}

.linethrough {
  position: relative;
  text-align: center;
  margin: 0;
}
.linethrough:after {
  content: "";
  width: 100%;
  border-top: 1px solid rgba(0, 22, 78, 0.2);
  position: absolute;
  left: 0;
  top: 50%;
}
.linethrough span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-left: 1em;
  padding-right: 1em;
}

/*  ==========================================================================
    links -- links-buttons.scss
    ========================================================================== */
a {
  color: inherit;
  text-decoration: none;
}
a .fa,
a .fab,
a .fal,
a .far,
a .fas {
  padding: 0 0 0 0.66em;
}
a .fa--left,
a .fab--left,
a .fal--left,
a .far--left,
a .fas--left {
  padding: 0 0.66em 0 0;
}
a .fa--nopad,
a .fab--nopad,
a .fal--nopad,
a .far--nopad,
a .fas--nopad {
  padding: 0;
}

.linkline {
  border-bottom: solid 1px rgba(14, 164, 175, 0.5);
}
a:hover .linkline {
  border-color: #0ea4af;
}

.btn {
  position: relative;
  background-color: #00164E;
  color: #fff;
  border-radius: 3em;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 1em 2.5em;
  -webkit-transition: padding 250ms ease-out;
  transition: padding 250ms ease-out;
  border: none;
}
.btn:before {
  content: "";
  font-family: "font awesome 5 pro";
  font-weight: 400;
  margin-left: -2em;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out 0ms;
  transition: opacity 250ms ease-out 0ms;
}
.btn .linkline {
  border: none;
}
.btn:hover {
  padding: 1em 1.5em 1em 3.5em;
}
.btn:hover:before {
  opacity: 1;
  -webkit-transition: opacity 250ms ease-out 150ms;
  transition: opacity 250ms ease-out 150ms;
}
.btn--transparent {
  background: transparent;
}
.btn--white {
  background: #fff;
  color: #00164E;
}
.btn--grey {
  background: #888;
  color: #00164E;
}
.btn--teal {
  background: #0EA4AF;
  color: #fff;
}
.btn--orange {
  background: #EE7203;
  color: #fff;
}
.btn--blue {
  background: #00164E;
  color: #fff;
}
.btn--white-50 {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn--teal-50 {
  background-color: rgba(14, 164, 175, 0.2);
  color: #0EA4AF;
}
.btn--orange-50 {
  background-color: rgba(238, 114, 3, 0.2);
  color: #EE7203;
}
.btn--blue-50 {
  background-color: rgba(0, 22, 78, 0.2);
  color: #00164E;
}
.btn--border-teal {
  background-color: rgba(14, 164, 175, 0.2);
  border: 1px solid #0EA4AF;
  color: #0EA4AF;
}
.btn--border-orange {
  background-color: rgba(238, 114, 3, 0.2);
  border: 1px solid #EE7203;
  color: #EE7203;
}
.btn--border-blue {
  background-color: rgba(0, 22, 78, 0.2);
  border: 1px solid #00164E;
  color: #00164E;
}

/*  ==========================================================================
    share icons -- links-buttons.scss
    ========================================================================== */
.shareicons {
  color: #fff;
  margin-top: 1em;
}

.shareicons .btn {
  box-sizing: border-box;
  margin: 0 0 1em 0;
}

.shareiconslist li {
  margin: 0;
  display: inline-block;
}

.shareiconslist li.shareicons__btn {
  display: block;
  width: 100%;
  overflow: hidden;
}

.sharelink {
  display: inline-block;
  height: 2em;
  background: #f1f1f1;
  line-height: 2em;
  margin: 0 0.25em 0 0;
  color: #fff;
  border-radius: 1em;
  padding: 0.75em;
  border-radius: 2.5em;
}

.shareiconslist li:last-child .sharelink {
  margin-right: 0;
}

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

.sharelink--facebook {
  background: #3b5998;
}

.sharelink--twitter {
  background: #00aced;
}

.sharelink--linkedin {
  background: #007bb6;
}

.shareicon {
  width: 2em;
  text-align: center;
  display: block;
  float: left;
  padding: 0;
  border: none;
}

.shareicon .fa {
  display: inline-block;
  padding: 0;
  color: #fff;
}

a:hover .shareicon .fa {
  display: inline-block;
  padding: 0;
  color: #fff;
}

.sharetext {
  overflow: hidden;
  font-size: 12px;
  display: block;
  float: left;
  text-align: right;
  width: 0;
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
  text-align: left;
}

.sharelink:hover .sharetext {
  width: 45px;
}

.button-label {
  color: #fff !important;
}

/*================= LAYOUT =================*/
/* ==========================================================================
   grid
   ========================================================================== */
.gd-g {
  letter-spacing: -0.31em;
  *letter-spacing: normal;
  *word-spacing: -0.43em;
  text-rendering: optimizespeed;
  margin-left: -0.75em;
  margin-right: -0.75em;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.gd-g--nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.gd-g--wrapreverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.gd-g--column {
  -webkit-flex-direction: column;
  /* Safari 6.1+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gd-g--columnreverse {
  -webkit-flex-direction: column-reverse;
  /* Safari 6.1+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.gd-g--row {
  -webkit-flex-direction: row;
  /* Safari 6.1+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gd-g--rowreverse {
  -webkit-flex-direction: row-reverse;
  /* Safari 6.1+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (min-width: 550px) {
  .gd-g--rowreverse--sm {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 700px) {
  .gd-g--rowreverse--md {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1000px) {
  .gd-g--rowreverse--lg {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1200px) {
  .gd-g--rowreverse--xl {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1400px) {
  .gd-g--rowreverse--wi {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1600px) {
  .gd-g--rowreverse--xw {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.gd-g--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  /* For IE 10 */
  -ms-flex-pack: center;
}

.gd-g--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.gd-g--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gd-g--spacebetween {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gd-g--spacearound {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.gd-g--spaceevenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.gd-g--vertcenter {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.gd-g--vertstart {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.gd-g--vertend {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.opera-only :-o-prefocus,
.gd-g {
  word-spacing: -0.43em;
}

.gd-u {
  display: inline-block;
  *display: inline;
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
  box-sizing: border-box;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.gd-u.gd-u--nopadleft {
  padding-left: 0;
}

.gd-u.gd-u--nopadright {
  padding-right: 0;
}

.gd-u-1 {
  width: 100%;
}

.gd-u-1-2 {
  width: 50%;
}

.gd-u-1-3 {
  width: 33.3%;
}

.gd-u-2-3 {
  width: 66.66666%;
}

.gd-u-1-4 {
  width: 25%;
}

.gd-u-3-4 {
  width: 75%;
}

.gd-u-1-5 {
  width: 20%;
}

.gd-u-2-5 {
  width: 40%;
}

.gd-u-3-5 {
  width: 60%;
}

.gd-u-4-5 {
  width: 80%;
}

.gd-u-1-6 {
  width: 16.656%;
}

.gd-u-5-6 {
  width: 83.33%;
}

.gd-u-1-8 {
  width: 12.5%;
}

.gd-u-3-8 {
  width: 37.5%;
}

.gd-u-5-8 {
  width: 62.5%;
}

.gd-u-7-8 {
  width: 87.5%;
}

.gd-u-1-12 {
  width: 8.3333%;
}

.gd-u-5-12 {
  width: 41.6666%;
}

.gd-u-7-12 {
  width: 58.3333%;
}

.gd-u-11-12 {
  width: 91.6666%;
}

.gd-u-1-24 {
  width: 4.1666%;
}

.gd-u-5-24 {
  width: 20.8333%;
}

.gd-u-7-24 {
  width: 29.1666%;
}

.gd-u-11-24 {
  width: 45.8333%;
}

.gd-u-13-24 {
  width: 54.1666%;
}

.gd-u-17-24 {
  width: 70.8333%;
}

.gd-u-19-24 {
  width: 79.1666%;
}

.gd-u-23-24 {
  width: 95.8333%;
}

.gd-u-auto {
  width: auto;
}

@media screen and (max-width: 549px) {
  .lt550-hide {
    display: none;
  }
}
@media screen and (min-width: 550px) {
  .gd-u-gt550-1 {
    width: 100%;
  }

  .gd-u-gt550-1-2 {
    width: 50%;
  }

  .gd-u-gt550-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt550-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt550-1-4 {
    width: 25%;
  }

  .gd-u-gt550-3-4 {
    width: 75%;
  }

  .gd-u-gt550-1-5 {
    width: 20%;
  }

  .gd-u-gt550-2-5 {
    width: 40%;
  }

  .gd-u-gt550-3-5 {
    width: 60%;
  }

  .gd-u-gt550-4-5 {
    width: 80%;
  }

  .gd-u-gt550-1-6 {
    width: 16.656%;
  }

  .gd-u-gt550-5-6 {
    width: 83.33%;
  }

  .gd-u-gt550-1-8 {
    width: 12.5%;
  }

  .gd-u-gt550-3-8 {
    width: 37.5%;
  }

  .gd-u-gt550-5-8 {
    width: 62.5%;
  }

  .gd-u-gt550-7-8 {
    width: 87.5%;
  }

  .gd-u-gt550-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt550-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt550-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt550-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt550-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt550-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt550-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt550-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt550-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt550-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt550-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt550-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt550-auto {
    width: auto;
  }

  .gd-u-gt550--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt550--nopadright {
    padding-right: 0;
  }

  .gd-g {
    margin-right: -1em;
    margin-left: -1em;
  }

  .gd-u {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 699px) {
  .lt700-hide {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  .gd-u-gt700-1 {
    width: 100%;
  }

  .gd-u-gt700-1-2 {
    width: 50%;
  }

  .gd-u-gt700-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt700-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt700-1-4 {
    width: 25%;
  }

  .gd-u-gt700-3-4 {
    width: 75%;
  }

  .gd-u-gt700-1-5 {
    width: 20%;
  }

  .gd-u-gt700-2-5 {
    width: 40%;
  }

  .gd-u-gt700-3-5 {
    width: 60%;
  }

  .gd-u-gt700-4-5 {
    width: 80%;
  }

  .gd-u-gt700-1-6 {
    width: 16.656%;
  }

  .gd-u-gt700-5-6 {
    width: 83.33%;
  }

  .gd-u-gt700-1-8 {
    width: 12.5%;
  }

  .gd-u-gt700-3-8 {
    width: 37.5%;
  }

  .gd-u-gt700-5-8 {
    width: 62.5%;
  }

  .gd-u-gt700-7-8 {
    width: 87.5%;
  }

  .gd-u-gt700-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt700-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt700-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt700-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt700-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt700-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt700-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt700-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt700-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt700-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt700-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt700-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt700-auto {
    width: auto;
  }

  .gd-u-gt700--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt700--nopadright {
    padding-right: 0;
  }

  .gd-g {
    margin-right: -1.25em;
    margin-left: -1.25em;
  }

  .gd-u {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}
@media screen and (max-width: 799px) {
  .lt800-hide {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .gd-u-gt800-1 {
    width: 100%;
  }

  .gd-u-gt800-1-2 {
    width: 50%;
  }

  .gd-u-gt800-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt800-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt800-1-4 {
    width: 25%;
  }

  .gd-u-gt800-3-4 {
    width: 75%;
  }

  .gd-u-gt800-1-5 {
    width: 20%;
  }

  .gd-u-gt800-2-5 {
    width: 40%;
  }

  .gd-u-gt800-3-5 {
    width: 60%;
  }

  .gd-u-gt800-4-5 {
    width: 80%;
  }

  .gd-u-gt800-1-6 {
    width: 16.656%;
  }

  .gd-u-gt800-5-6 {
    width: 83.33%;
  }

  .gd-u-gt800-1-8 {
    width: 12.5%;
  }

  .gd-u-gt800-3-8 {
    width: 37.5%;
  }

  .gd-u-gt800-5-8 {
    width: 62.5%;
  }

  .gd-u-gt800-7-8 {
    width: 87.5%;
  }

  .gd-u-gt800-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt800-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt800-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt800-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt800-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt800-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt800-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt800-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt800-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt800-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt800-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt800-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt800-auto {
    width: auto;
  }

  .gd-u-gt800--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt800--nopadright {
    padding-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .lt1000-hide {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .gd-u-gt1000-1 {
    width: 100%;
  }

  .gd-u-gt1000-1-2 {
    width: 50%;
  }

  .gd-u-gt1000-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt1000-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt1000-1-4 {
    width: 25%;
  }

  .gd-u-gt1000-3-4 {
    width: 75%;
  }

  .gd-u-gt1000-1-5 {
    width: 20%;
  }

  .gd-u-gt1000-2-5 {
    width: 40%;
  }

  .gd-u-gt1000-3-5 {
    width: 60%;
  }

  .gd-u-gt1000-4-5 {
    width: 80%;
  }

  .gd-u-gt1000-1-6 {
    width: 16.656%;
  }

  .gd-u-gt1000-5-6 {
    width: 83.33%;
  }

  .gd-u-gt1000-1-8 {
    width: 12.5%;
  }

  .gd-u-gt1000-3-8 {
    width: 37.5%;
  }

  .gd-u-gt1000-5-8 {
    width: 62.5%;
  }

  .gd-u-gt1000-7-8 {
    width: 87.5%;
  }

  .gd-u-gt1000-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt1000-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt1000-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt1000-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt1000-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt1000-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt1000-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt1000-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt1000-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt1000-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt1000-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt1000-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt1000-auto {
    width: auto;
  }

  .gd-u-gt1000--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt1000--nopadright {
    padding-right: 0;
  }

  .gd-g {
    margin-right: -1.5em;
    margin-left: -1.5em;
  }

  .gd-u {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 1200px) {
  .lt1200-hide {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .gd-u-gt1200-1 {
    width: 100%;
  }

  .gd-u-gt1200-1-2 {
    width: 50%;
  }

  .gd-u-gt1200-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt1200-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt1200-1-4 {
    width: 25%;
  }

  .gd-u-gt1200-3-4 {
    width: 75%;
  }

  .gd-u-gt1200-1-5 {
    width: 20%;
  }

  .gd-u-gt1200-2-5 {
    width: 40%;
  }

  .gd-u-gt1200-3-5 {
    width: 60%;
  }

  .gd-u-gt1200-4-5 {
    width: 80%;
  }

  .gd-u-gt1200-1-6 {
    width: 16.656%;
  }

  .gd-u-gt1200-5-6 {
    width: 83.33%;
  }

  .gd-u-gt1200-1-8 {
    width: 12.5%;
  }

  .gd-u-gt1200-3-8 {
    width: 37.5%;
  }

  .gd-u-gt1200-5-8 {
    width: 62.5%;
  }

  .gd-u-gt1200-7-8 {
    width: 87.5%;
  }

  .gd-u-gt1200-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt1200-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt1200-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt1200-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt1200-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt1200-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt1200-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt1200-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt1200-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt1200-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt1200-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt1200-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt1200-auto {
    width: auto;
  }

  .gd-u-gt1200--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt1200--nopadright {
    padding-right: 0;
  }
}
@media screen and (max-width: 1399px) {
  .lt1400-hide {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .gd-u-gt1400-1 {
    width: 100%;
  }

  .gd-u-gt1400-1-2 {
    width: 50%;
  }

  .gd-u-gt1400-1-3 {
    width: 33.33333%;
  }

  .gd-u-gt1400-2-3 {
    width: 66.66666%;
  }

  .gd-u-gt1400-1-4 {
    width: 25%;
  }

  .gd-u-gt1400-3-4 {
    width: 75%;
  }

  .gd-u-gt1400-1-5 {
    width: 20%;
  }

  .gd-u-gt1400-2-5 {
    width: 40%;
  }

  .gd-u-gt1400-3-5 {
    width: 60%;
  }

  .gd-u-gt1400-4-5 {
    width: 80%;
  }

  .gd-u-gt1400-1-6 {
    width: 16.656%;
  }

  .gd-u-gt1400-5-6 {
    width: 83.33%;
  }

  .gd-u-gt1400-1-8 {
    width: 12.5%;
  }

  .gd-u-gt1400-3-8 {
    width: 37.5%;
  }

  .gd-u-gt1400-5-8 {
    width: 62.5%;
  }

  .gd-u-gt1400-7-8 {
    width: 87.5%;
  }

  .gd-u-gt1400-1-12 {
    width: 8.3333%;
  }

  .gd-u-gt1400-5-12 {
    width: 41.6666%;
  }

  .gd-u-gt1400-7-12 {
    width: 58.3333%;
  }

  .gd-u-gt1400-11-12 {
    width: 91.6666%;
  }

  .gd-u-gt1400-1-24 {
    width: 4.1666%;
  }

  .gd-u-gt1400-5-24 {
    width: 20.8333%;
  }

  .gd-u-gt1400-7-24 {
    width: 29.1666%;
  }

  .gd-u-gt1400-11-24 {
    width: 45.8333%;
  }

  .gd-u-gt1400-13-24 {
    width: 54.1666%;
  }

  .gd-u-gt1400-17-24 {
    width: 70.8333%;
  }

  .gd-u-gt1400-19-24 {
    width: 79.1666%;
  }

  .gd-u-gt1400-23-24 {
    width: 95.8333%;
  }

  .gd-u-gt1400-auto {
    width: auto;
  }

  .gd-u-gt1400--nopadleft {
    padding-left: 0;
  }

  .gd-u-gt1400--nopadright {
    padding-right: 0;
  }
}
.opera-only :-o-prefocus,
.gd-g {
  word-spacing: -0.43em;
}

/* ==========================================================================
   forms
   ========================================================================== */
.field {
  padding: 0 0.5em 0.5em 0;
  position: relative;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
select,
textarea {
  padding: 1em;
  background: #fff;
  border: solid 1px rgba(0, 22, 78, 0.2);
  border-radius: 2px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  outline: none;
}

textarea {
  min-height: 5.2em;
}

input.placeholder,
textarea.placeholder {
  color: #888;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

input[disabled],
input[disabled],
input[disabled],
input[disabled],
textarea[disabled],
input[readonly],
input[readonly],
input[readonly],
input[readonly],
textarea[readonly] {
  opacity: 0.5;
}

/* Contact Form 7 (OLD) */
.wpcf7 .wpcf7-not-valid-tip {
  background: #ff4738;
  color: #fff;
  padding: 1em;
  position: relative;
  font-size: 12px;
  z-index: 2;
}

.wpcf7 .wpcf7-not-valid-tip:after {
  content: " ";
  display: block;
  position: absolute;
  top: -0.5em;
  left: 1em;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  border-bottom: 0.5em solid #ff4738;
}

.wpcf7 .wpcf7-response-output {
  border: none;
  background: #888;
  color: #fff;
  padding: 1em;
  font-size: 13px;
}

.wpcf7 .wpcf7-validation-errors {
  background: #ff4738;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background: #2cdc8c;
  color: #111;
}

/*  ==========================================================================
  Ninja Forms
	========================================================================== */
.nf-form-fields-required {
  display: none !important;
}

.nf-form-title h3 {
  margin: 0 0 1em;
}

.nf-field-element h3 {
  margin-bottom: 0.75em;
}

input[type=button],
input[type=submit] {
  font-family: "Benton Sans Reg", Arial, sans-serif;
  background-color: #EE7203;
  color: #fff;
  font-weight: bold;
  border-radius: 3em;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 1em 2.5em;
  border: none;
}
input[type=button]:focus,
input[type=submit]:focus {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none;
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}
input[type=radio]::after,
input[type=checkbox]::after {
  background: #fff;
  border: 1px solid rgba(0, 22, 78, 0.2);
  border-radius: 2px;
  content: "";
  position: absolute;
  top: -8px;
  left: 0px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
input[type=radio]::before,
input[type=checkbox]::before {
  border-radius: 2px;
  content: "";
  position: absolute;
  top: 1px;
  left: 8px;
  width: 9px;
  height: 9px;
  z-index: 18;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
input[type=radio]:checked::before,
input[type=checkbox]:checked::before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input[type=checkbox]:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #0EA4AF;
  background: transparent;
  font-size: 90%;
  top: -1px;
  left: 7px;
  opacity: 0;
}
input[type=checkbox].nf-checked:before, input[type=checkbox]:checked:before {
  opacity: 1;
}

input[type=radio]:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #0EA4AF;
  background: transparent;
  font-size: 90%;
  top: -1px;
  left: 7px;
  opacity: 0;
}
input[type=radio].nf-checked:before, input[type=radio]:checked:before {
  opacity: 1;
}

input[type=radio]:after {
  border-radius: 50%;
}
input[type=radio]:before {
  border-radius: 50%;
}

.checkbox-container input[type=checkbox]::after {
  top: -14px;
}
.checkbox-container input[type=checkbox]::before {
  top: -11px;
}
@media only screen and (min-width: 1400px) {
  .checkbox-container input[type=checkbox]::after {
    top: -16px;
  }
  .checkbox-container input[type=checkbox]::before {
    top: -12px;
  }
}

.checkbox-container input[type=checkbox]::before {
  top: -13px;
}
.checkbox-container input[type=checkbox]::after {
  top: -19px;
}

@media all and (-ms-high-contrast: none) {
  .radio input[type=checkbox] {
    visibility: hidden;
  }

  .radio label {
    position: relative;
  }

  .radio input + label::after {
    border: 4px solid #18438e;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: -4px;
    left: -35px;
    width: 25px;
    height: 25px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-sizing: border-box;
  }

  .radio input:checked + label::before {
    font-family: FontAwesome;
    background: transparent;
    color: #18438e;
    content: "";
    font-size: 13px;
    top: 0px;
    left: -28px;
    position: absolute;
  }

  .radio input:hover + label::before {
    font-family: FontAwesome;
    background: transparent;
    color: #18438e;
    content: "";
    font-size: 13px;
    top: 0px;
    left: -28px;
    position: absolute;
  }
}
@supports (-ms-ime-align: auto) {
  .radio input[type=checkbox] {
    visibility: hidden;
  }

  .radio label {
    position: relative;
  }

  .radio input + label::after {
    border: 4px solid #18438e;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: -4px;
    left: -35px;
    width: 25px;
    height: 25px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-sizing: border-box;
  }

  .radio input:checked + label::before {
    font-family: FontAwesome;
    background: transparent;
    color: #18438e;
    content: "";
    font-size: 13px;
    top: 0px;
    left: -28px;
    position: absolute;
  }

  .radio input:hover + label::before {
    font-family: FontAwesome;
    background: transparent;
    color: #18438e;
    content: "";
    font-size: 13px;
    top: 0px;
    left: -28px;
    position: absolute;
  }
}
.list-checkbox-wrap .nf-field-element li label,
.list-radio-wrap .nf-field-element li label,
.nf-form-content .checkbox-container .nf-field-label label,
.form-check-inline .form-check-label {
  font-weight: 700;
  font-size: 90%;
  margin-left: 1.15em !important;
}

.ninjaform .list-checkbox-wrap .nf-field-element li label,
.ninjaform .list-radio-wrap .nf-field-element li label, .main--page .list-checkbox-wrap .nf-field-element li label,
.main--page .list-radio-wrap .nf-field-element li label {
  margin-left: 3.5em !important;
  font-size: 90%;
}
.ninjaform .list-checkbox-wrap .nf-field-element li label.nf-checked-label,
.ninjaform .list-radio-wrap .nf-field-element li label.nf-checked-label, .main--page .list-checkbox-wrap .nf-field-element li label.nf-checked-label,
.main--page .list-radio-wrap .nf-field-element li label.nf-checked-label {
  color: #00164E;
}
.ninjaform .list-checkbox-wrap .nf-field-element li,
.ninjaform .list-radio-wrap .nf-field-element li, .main--page .list-checkbox-wrap .nf-field-element li,
.main--page .list-radio-wrap .nf-field-element li {
  margin-bottom: 0.75em !important;
}

.main--donate .ninjaform .list-checkbox-wrap .nf-field-element ul {
  margin-bottom: -1em;
}
.main--donate .ninjaform .list-checkbox-wrap .nf-field-element ul li {
  width: 25%;
  display: inline-block;
  margin: 0 1em 1em 0 !important;
}
.main--donate .ninjaform .label-left .nf-field-label {
  text-align: left;
  width: 20%;
}
.main--donate .ninjaform .label-left .nf-field-element {
  position: relative;
  width: 75%;
}
.main--donate .ninjaform .label-left .nf-field-element input[type=number] {
  border-radius: 2em;
  font-size: 220%;
  padding: 0.5em 1em 0.5em 1.75em;
  color: #0EA4AF;
}
.main--donate .ninjaform .label-left .nf-field-element:before {
  content: "£";
  position: absolute;
  left: 1.25em;
  top: 50%;
  font-size: 140%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 22, 78, 0.3);
  z-index: 2;
}
.main--donate .ninjaform .label-left .nf-after-field {
  margin-left: 20%;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-label {
  margin-bottom: 1em;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li {
  display: inline-block;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li input {
  opacity: 0;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label {
  position: relative;
  color: #0EA4AF;
  width: 5em;
  border-radius: 2em;
  border: 1px solid #0EA4AF;
  padding: 0.35em 0.5em;
  text-align: center;
  margin: 0 0.5em 1em 0 !important;
  font-size: 180%;
  font-weight: bold;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label.nf-checked-label {
  background-color: #0EA4AF;
  color: #fff;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label.nf-checked-label::before, .main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label.nf-checked-label::after {
  color: #fff;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label::before {
  content: "£";
  color: #0EA4AF;
  position: absolute;
  bottom: 0.9em;
  left: 1.5em;
  font-size: 60%;
  font-weight: normal;
  opacity: 0.5;
}
.main--donate .ninjaform .select-amount .list-radio-wrap .nf-field-element li label::after {
  content: ".00";
  color: #0EA4AF;
  position: absolute;
  bottom: 0.9em;
  right: 1.25em;
  font-size: 60%;
  font-weight: normal;
  opacity: 0.5;
}
.main--donate .ninjaform .select-amount#nf-field-2707-container .list-radio-wrap .nf-field-element li label {
  margin-bottom: -0.5em !important;
}
.main--donate .ninjaform .nf-form-content .nf-field-container.html-container .nf-field .html-wrap {
  max-width: 32em;
}
.main--donate .ninjaform .nf-form-content .nf-field-container.html-container .nf-field .html-wrap p {
  color: rgba(0, 22, 78, 0.5);
}

.ninja-forms-field {
  border-color: rgba(0, 22, 78, 0.2);
  margin: 1.5em 0;
  border-width: 1px 0 0 0;
}

.nf-form-fields-required {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .nf-form-title h3 {
    color: #18458f;
    background: transparent;
  }
}
.nf-field-label label {
  font-size: 0.9em;
}

.nf-field-element select:focus {
  outline: none;
}

.list-select-wrap .nf-field-element:after,
.listcountry-wrap .nf-field-element:after {
  content: "";
  font-family: FontAwesome;
  color: #333;
  padding: 1em;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  text-align: center;
  width: 10%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
}

/* Hide in IE 10 & 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-select-wrap .nf-field-element:after,
.listcountry-wrap .nf-field-element:after {
    display: none;
  }
}
.label-right .checkbox-wrap .nf-field-label {
  width: 100% !important;
}

.list-multiselect-wrap .ninja-forms-field {
  padding: 0;
  border-radius: 0;
  border: none;
}

.nf-response-msg {
  margin-top: 2em;
}

.nf-progress-container {
  border-radius: 30px;
}

.nf-progress {
  background-color: #2dafe6;
  border-radius: 30px;
}

.nf-help {
  color: #2dafe6;
  background: none !important;
  margin-left: 0.25em;
}

.nf-error .ninja-forms-field {
  border-width: 2px !important;
  box-sizing: border-box;
}

.nf-error input[type=checkbox].ninja-forms-field,
.nf-error input[type=radio].ninja-forms-field {
  border: none !important;
}

.nf-error input[type=checkbox]::after,
.nf-error input[type=radio]::after {
  border-color: #e80000;
}

.nf-after-field .nf-error-msg {
  font-size: 0.8em;
  margin-top: 0.5em;
}

.sitefooter .nf-after-form-content .nf-form-errors {
  background: #fff;
  position: absolute;
  top: 4rem;
  z-index: 99;
}
.sitefooter .nf-after-form-content .nf-error-msg {
  margin: 2rem 0 2rem 3em;
  position: relative;
  top: 0;
}

.nf-after-form-content .nf-error-msg::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.2em;
  font-size: 2em;
  top: -0.4em;
  text-align: center;
  font-family: "FontAwesome";
}

.nf-after-form-content {
  margin-bottom: 30px;
}
.nf-after-form-content .nf-form-errors .nf-error-msg {
  position: relative;
}
.nf-after-form-content .nf-form-errors .nf-error-msg::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-size: 2em;
  position: relative;
  margin-right: 0.25em;
  left: 0;
  top: 0;
  text-align: center;
  font-family: "FontAwesome";
}

.main--donate .nf-error-msg {
  position: relative;
  top: auto;
}

.total-container .nf-static {
  padding: 0;
  font-weight: bold;
}

.nf-product-field .nf-product-price-label {
  padding: 0 !important;
}

.nf-product-field .nf-product-price {
  padding-right: 10px !important;
  padding-left: 0px !important;
}

.html-wrap ul {
  margin-left: 1.25em;
}

/* Stripe loading */
.stripe-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  z-index: 7000;
}

.stripe-loading {
  width: 120px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  margin-top: -200px;
}

.stripe-loading:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "FontAwesome";
  margin-top: -0.75em;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out 0ms;
  transition: opacity 250ms ease-out 0ms;
}

.loadcircle {
  -webkit-transition: opacity 250ms ease-out 0ms;
  transition: opacity 250ms ease-out 0ms;
}

.stripe-loading--success .loadcircle {
  opacity: 0;
}

.stripe-loading--success .loadcircle--8 {
  opacity: 1;
}

.stripe-loading--success:after {
  opacity: 1;
}

.stripe-loading--success .loadcircle--1 {
  background: #2dade4;
  opacity: 1;
}

.loadcircle--1 {
  height: 120px;
  width: 120px;
  background: #164192;
  -webkit-transition: background-color 250ms ease-out 0ms;
  transition: background-color 250ms ease-out 0ms;
}

.loadcircle--2 {
  height: 100px;
  width: 100px;
  background: #184e9b;
}

.loadcircle--3 {
  height: 80px;
  width: 80px;
  background: #1c5ca6;
}

.loadcircle--4 {
  height: 60px;
  width: 60px;
  background: #1f6eb4;
}

.loadcircle--5 {
  height: 40px;
  width: 40px;
  background: #237fc1;
}

.loadcircle--6 {
  height: 20px;
  width: 20px;
  background: #2791cf;
}

.loadcircle--7 {
  height: 10px;
  width: 10px;
  background: #2aa1dc;
}

.loadcircle--8 {
  height: 5px;
  width: 5px;
  background: #2dade4;
}

.loadcircle--1,
.loadcircle--2,
.loadcircle--3,
.loadcircle--4,
.loadcircle--5,
.loadcircle--6,
.loadcircle--7,
.loadcircle--8 {
  border-bottom: none;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  animation-name: cssload-spin;
  -o-animation-name: cssload-spin;
  -ms-animation-name: cssload-spin;
  -webkit-animation-name: cssload-spin;
  -moz-animation-name: cssload-spin;
  animation-duration: 3000ms;
  -o-animation-duration: 3000ms;
  -ms-animation-duration: 3000ms;
  -webkit-animation-duration: 3000ms;
  -moz-animation-duration: 3000ms;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
}

@keyframes cssload-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes cssload-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* Recaptcha Styles */
.nf-form-cont .recaptcha-container {
  margin-bottom: 0;
}

.nf-form-cont .recaptcha-container .nf-field-label {
  display: none;
}

.nf-form-cont .recaptcha-container .nf-field-element {
  text-align: center;
}

.nf-form-cont .recaptcha-container .g-recaptcha {
  display: inline-block;
}

/*  ==========================================================================
	Basic layout classes -- layout/layout.scss
	========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: #f9f5f3;
  font-family: "Benton Sans Reg", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #00164E;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

.frontpagewrapper {
  overflow-x: hidden;
  max-width: 100%;
}

.bd {
  margin: 0 7.14%;
  position: relative;
  min-height: 1px;
}
.bd:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.padding--top {
  padding-top: 10%;
}
@media only screen and (min-width: 550px) {
  .padding--top {
    padding-top: 7%;
  }
}
@media only screen and (min-width: 1200px) {
  .padding--top {
    padding-top: 5%;
  }
}

.padding--bottom {
  padding-bottom: 10%;
}
@media only screen and (min-width: 550px) {
  .padding--bottom {
    padding-bottom: 7%;
  }
}
@media only screen and (min-width: 1200px) {
  .padding--bottom {
    padding-bottom: 5%;
  }
}

.padding--top-half {
  padding-top: 7%;
}
@media only screen and (min-width: 550px) {
  .padding--top-half {
    padding-top: 3.5%;
  }
}
@media only screen and (min-width: 1200px) {
  .padding--top-half {
    padding-top: 3.5%;
  }
}

.padding--bottom-half {
  padding-bottom: 7%;
}
@media only screen and (min-width: 550px) {
  .padding--bottom-half {
    padding-bottom: 3.5%;
  }
}
@media only screen and (min-width: 1200px) {
  .padding--bottom-half {
    padding-bottom: 3.5%;
  }
}

.padding--top-em {
  padding-top: 1em;
}

.padding--bottom-em {
  padding-bottom: 1em;
}

.margin--top {
  margin-top: 10%;
}
@media only screen and (min-width: 550px) {
  .margin--top {
    margin-top: 7%;
  }
}
@media only screen and (min-width: 1200px) {
  .margin--top {
    margin-top: 5%;
  }
}

.margin--bottom {
  margin-bottom: 10%;
}
@media only screen and (min-width: 550px) {
  .margin--bottom {
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 1200px) {
  .margin--bottom {
    margin-bottom: 5%;
  }
}

.margin--top-half {
  margin-top: 7%;
}
@media only screen and (min-width: 550px) {
  .margin--top-half {
    margin-top: 3.5%;
  }
}
@media only screen and (min-width: 1200px) {
  .margin--top-half {
    margin-top: 3.5%;
  }
}

.margin--bottom-half {
  margin-bottom: 7%;
}
@media only screen and (min-width: 550px) {
  .margin--bottom-half {
    margin-bottom: 3.5%;
  }
}
@media only screen and (min-width: 1200px) {
  .margin--bottom-half {
    margin-bottom: 3.5%;
  }
}

.margin--top-em {
  margin-top: 1em;
}

.margin--bottom-em {
  margin-bottom: 1em;
}

.margin--none {
  margin: 0;
}

.margin--none-bottom {
  margin-bottom: 0;
}

.margin--none-top {
  margin-top: 0;
}

.visuallyhidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*  ==========================================================================
base nav
========================================================================== */
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inlinenavlist {
  margin: 0 -0.75em;
}
.inlinenavlist li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.inlinenavlist li a {
  display: block;
  padding: 0 0.75em;
}

/*  ==========================================================================
Page
========================================================================== */
.pageheader {
  position: relative;
  /* pageheader--img */
  /* pageheader--video */
  /* pageheader--post or postheader */
  /* pageheader--person or personheader */
}
.pageheader .pageheader__bd {
  border-bottom: 1px solid rgba(0, 22, 78, 0.2);
  position: relative;
  z-index: 2;
}
.pageheader .pageheader__bd--eventimg {
  z-index: 1;
}
.pageheader h1 {
  color: #00164E;
  max-width: 12em;
}
.pageheader .leader {
  color: #0EA4AF;
  max-width: 28em;
  line-height: 1.4;
}
.pageheader .pageheader__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.pageheader .pageheader__logo {
  width: 200px;
  padding-bottom: 20%;
  background-image: url("img/pcrc.logo.color.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 700px) {
  .pageheader .pageheader__logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .pageheader .pageheader__logo {
    width: 15%;
  }
}
.pageheader .pageheader__logo a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}
.pageheader .pageheader__content {
  margin-top: 2.75em;
}
@media only screen and (min-width: 700px) {
  .pageheader .pageheader__content {
    width: 66.66%;
    margin-left: 33.33%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .pageheader .pageheader__content {
    width: 60%;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader .pageheader__content {
    width: 50%;
  }
}
.pageheader .pageheader__content .pageheader__footer .gd-u {
  margin-bottom: 1em;
}
.pageheader .pageheader__content .pageheader__footer span {
  display: block;
}
.pageheader .pageheader__overlay {
  pointer-events: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  background-image: -webkit-linear-gradient(top, #00164E 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(180deg, #00164E 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}
.pageheaderimg--loaded .pageheader .pageheader__overlay, .personheaderimg--loaded .pageheader .pageheader__overlay, .has-videoheader--playing .pageheader .pageheader__overlay {
  opacity: 1;
}
.pageheader--blog .pageheader__bd {
  border-bottom: none;
}
@media only screen and (min-width: 1000px) {
  .pageheader--blog .pageheader__content {
    width: 80%;
    margin-left: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader--blog .pageheader__content {
    width: 75%;
    margin-left: 25%;
  }
}
.pageheader--event {
  position: relative;
}
.pageheader--event .pageheader__bd {
  border-bottom: none;
}
@media only screen and (min-width: 1000px) {
  .pageheader--event .pageheader__content {
    width: 80%;
    margin-left: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader--event .pageheader__content {
    width: 75%;
    margin-left: 25%;
  }
}
.pageheader--event .pageheader__tags {
  list-style: none;
}
.pageheader--event .pageheader__tags li {
  margin-bottom: 0.45em;
}
.pageheader--event .pageheaderimage {
  margin-top: 10%;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 550px) {
  .pageheader--event .pageheaderimage {
    margin-top: 7%;
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader--event .pageheaderimage {
    margin-top: 5%;
  }
}
.pageheader--event .pageheaderimage--negativetop {
  margin-top: -2em;
}
.pageheader--event .pageheader__footer {
  list-style: none;
  margin-left: -1.5em;
  margin-right: -1.5em;
}
.pageheader--event .pageheader__footer li {
  display: inline-block;
  padding: 0 1.5em;
}
.pageheader--solid {
  background-color: #00164E;
}
.pageheader--solid .pageheader__bd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pageheader--solid h1 {
  color: #fff;
}
.pageheader--solid .pageheader__logo {
  background-image: url("img/pcrc.logo.white.svg") !important;
}
.pageheader--solid .leader {
  color: #0EA4AF;
}
.pageheader--img {
  background: #000;
}
.pageheader--img h1 {
  color: #fff;
  max-width: 12em;
}
.pageheader--img .leader {
  color: #fff;
}
.pageheader--img .pageheader__bd {
  border: none;
}
.pageheader--img .pageheader__logo {
  background-image: url("img/pcrc.logo.white.svg");
}
.pageheader--img .pageheader__footer {
  color: #fff;
}
.pageheader--img .pageheader__footer .color--blue-50 {
  color: rgba(255, 255, 255, 0.5);
}
.pageheader--img .pageheader__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.pageheader--img .sharelink {
  background: #fff;
  color: #00164E;
}
.pageheader--img .sharelink .fa {
  color: #00164E;
}
.pageheader--img .sharelink:hover .fa {
  color: #00164E;
}
@media only screen and (max-width: 699px) {
  .pageheader--frontpage {
    padding-bottom: 0;
  }
}
.pageheader--frontpage .pageheader__bd {
  border-bottom: none;
}
.pageheader--frontpage .pageheader__logo {
  position: static;
  width: 200px;
  padding-bottom: 20%;
  background-image: url("img/pcrc.logo.color.svg") !important;
  margin-left: 0;
}
@media only screen and (max-width: 699px) {
  .pageheader--frontpage .pageheader__logo:before {
    content: "";
    width: 200%;
    height: 70%;
    top: -240px;
    left: -90%;
    display: block;
    position: absolute;
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 50%);
    background: radial-gradient(rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 50%);
    z-index: -9;
  }
}
@media only screen and (max-width: 549px) {
  .pageheader--frontpage .pageheader__logo:before {
    height: 135%;
  }
}
@media only screen and (max-width: 549px) {
  .pageheader--frontpage .pageheader__img {
    background-position-x: 60% !important;
  }
}
.pageheader--frontpage .pageheader__content {
  margin-left: 0;
  margin-top: 50%;
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .pageheader--frontpage .pageheader__content {
    margin-top: 15%;
  }
}
@media only screen and (min-width: 1000px) {
  .pageheader--frontpage .pageheader__content {
    margin-top: 5%;
  }
}
.pageheader--frontpage .pageheader__overlay {
  background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 60%);
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 60%);
}
@media only screen and (min-width: 550px) {
  .pageheader--frontpage .pageheader__overlay {
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 35%, rgba(255, 255, 255, 0) 75%);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 35%, rgba(255, 255, 255, 0) 75%);
  }
}
@media only screen and (min-width: 700px) {
  .pageheader--frontpage .pageheader__overlay {
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 60%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 60%);
  }
}
.pageheader--frontpage h2 {
  color: #00164E;
  max-width: 100%;
  font-size: 28px;
  margin: 0;
}
@media only screen and (min-width: 550px) {
  .pageheader--frontpage h2 {
    max-width: 12em;
    font-size: 35px;
  }
}
@media only screen and (min-width: 1000px) {
  .pageheader--frontpage h2 {
    max-width: 12em;
    font-size: 55px;
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader--frontpage h2 {
    max-width: 12em;
    font-size: 60px;
  }
}
.pageheader--video {
  min-height: 72vh;
}
.pageheader--video h1 {
  color: #fff;
  max-width: 12em;
}
.pageheader--video .leader {
  color: #fff;
}
.pageheader--video .pageheader__bd {
  border: none;
}
.pageheader--video .pageheader__logo {
  background-image: url("img/pcrc.logo.white.svg");
}
.pageheader--video .pageheader__video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 2000ms ease-out 0ms;
  transition: opacity 2000ms ease-out 0ms;
}
.pageheader--video .pageheader__video iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.has-videoheader--playing .pageheader--video .pageheader__video {
  opacity: 0.66;
}
.pageheader--post .pageheader__content {
  padding-bottom: 0;
}
.pageheader--post .pageheader__bd {
  border: none;
}
.pageheader--post .pageheader__img {
  width: 100%;
  margin-top: 2.5em;
  padding-bottom: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1000ms ease-out 0ms;
  transition: opacity 1000ms ease-out 0ms;
}
.pageheaderimg--loaded .pageheader--post .pageheader__img, .personheaderimg--loaded .pageheader--post .pageheader__img {
  opacity: 1;
}
@media only screen and (min-width: 700px) {
  .pageheader--post .pageheader__img {
    width: 66.66%;
    margin-left: 33.33%;
    padding-bottom: 40%;
  }
}
@media only screen and (min-width: 1000px) {
  .pageheader--post .pageheader__img {
    width: 50%;
    padding-bottom: 30%;
    margin-left: calc(20% + 0.75em);
  }
}
@media only screen and (min-width: 1200px) {
  .pageheader--post .pageheader__img {
    width: 50%;
    margin-left: calc(25% + 0.75em);
  }
}
.pageheader--person .pageheader__personrole {
  margin-top: 1em;
  margin-bottom: 0;
}

.no-touch .has-videoheader .pageheader__img {
  display: none;
}

/*  ==========================================================================
content -- layout/layout.scss
========================================================================== */
.content {
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 550px) {
  .content {
    width: 83.4%;
    padding: 0 0.5em;
  }
}
@media only screen and (min-width: 700px) {
  .content {
    padding: 0 0.625em;
    width: 66.66%;
  }
}
@media only screen and (min-width: 1000px) {
  .content {
    width: 60%;
    padding: 0 0.75em;
  }
}
@media only screen and (min-width: 1200px) {
  .content {
    width: 50%;
  }
}
.content ol,
.content ul {
  padding-left: 1em;
}

.content ul li {
  margin-bottom: 1em;
}

/*  ==========================================================================
Frontpage
========================================================================== */
.frontpage__intro {
  position: relative;
}
.frontpage__intro .intro__content {
  position: relative;
  z-index: 4;
  margin-left: 0;
}
.frontpage__intro .intro__content .leader {
  line-height: 1.4;
  margin-right: 20%;
}
@media only screen and (min-width: 550px) {
  .frontpage__intro .intro__content .leader {
    margin-right: 5%;
  }
}
@media only screen and (min-width: 700px) {
  .frontpage__intro .intro__content .leader {
    margin-right: 0;
  }
}
.frontpage__intro .intro__content .intro__body {
  margin-left: 0;
}
.frontpage__intro .intro__content .intro__body > div {
  margin-bottom: 2em;
}
.frontpage__intro .intro__graphic {
  width: 60%;
  position: absolute;
  z-index: -1;
  right: -30%;
  top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 700px) {
  .frontpage__intro .intro__graphic {
    width: 80%;
    right: -30%;
    -webkit-transform: translateY(-60%);
        -ms-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media only screen and (min-width: 1000px) {
  .frontpage__intro .intro__graphic {
    width: 60%;
    right: -20%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1600px) {
  .frontpage__intro .intro__graphic {
    width: 50%;
  }
}
.frontpage__intro .intro__graphic.intro__overlapimg {
  z-index: 3;
}

/*  ==========================================================================
Page
========================================================================== */
.main {
  width: auto;
}

/* Page Nav */
@media only screen and (min-width: 1200px) {
  .pagenav + .pageheader--img {
    margin-top: -7.5em;
  }
  .pagenav + .pageheader--img .pageheaderbody {
    margin-top: 7.5em;
  }

  .pagenav + .pageheader--solid {
    margin-top: -7.5em;
  }
  .pagenav + .pageheader--solid .pageheaderbody {
    margin-top: 7.5em;
  }
}
.pagenav {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  z-index: 49;
  top: 3.45em;
  height: auto;
  overflow: hidden;
  width: 100%;
  background-color: #f9f5f3;
  -webkit-transition: height 250ms ease-out;
  transition: height 250ms ease-out;
}
@media only screen and (min-width: 1200px) {
  .pagenav {
    top: 4.45em;
    height: auto !important;
  }
}
@media all and (-ms-high-contrast: none) {
  .pagenav {
    position: relative;
    top: 0;
  }
}
.pagenav .pagenav__bd {
  border-bottom: 1px solid rgba(0, 22, 78, 0.2);
}
@media only screen and (max-width: 1399px) {
  .pagenav .pagenav__bd {
    margin-left: 2em;
    margin-right: 2em;
  }
}
.pagenav .pagenav__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .pagenav .pagenav__inner {
    height: 0;
    overflow: hidden;
    width: 100%;
  }
}
.pagenav .pagenav__title {
  display: none;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  .pagenav .pagenav__title {
    display: inline-block;
    margin: 0.65em 0;
    padding: 0.5em 0;
    width: 12%;
    white-space: normal;
  }
}
.pagenav .pagenav__body {
  margin: 0.65em 0;
}
@media only screen and (min-width: 1200px) {
  .pagenav .pagenav__body {
    margin-left: 3em;
  }
}
.pagenav .pagenav__body .inlinenavlist li {
  padding: 0.65em 0;
  margin: 0 0 0.5em;
}
@media only screen and (min-width: 1000px) {
  .pagenav .pagenav__body .inlinenavlist li {
    margin: 0;
  }
}
.pagenav .pagenav__body .pagenav__childlink {
  position: relative;
}
.pagenav .pagenav__body .pagenav__childlink--current {
  margin: 0 0.65em;
  padding: 0 0.5em !important;
}
.pagenav .pagenav__body .pagenav__childlink--current::after {
  content: "";
  position: absolute;
  width: calc(100% + 1.25em);
  height: 2.75em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: block;
  background: rgba(14, 164, 175, 0.2);
  border-radius: 3em;
  z-index: -1;
}
.hasscrolled .pagenav {
  background-color: #f9f5f3 !important;
}
.hasscrolled .pagenav .pagenav__body {
  color: #00164E !important;
}
.hasscrolled .pagenav .pagenav__bd {
  border-bottom: 1px solid rgba(0, 22, 78, 0.2) !important;
}
@media only screen and (min-width: 1200px) {
  .hasscrolled .pagenav .pagenav__bd {
    border-bottom: 1px solid rgba(0, 22, 78, 0.2) !important;
  }
}
.solidpageheader .pagenav {
  background: #00164E;
}
.solidpageheader .pagenav .pagenav__bd {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.solidpageheader .pagenav .pagenav__body {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .solidpageheader .pagenav {
    background: transparent;
    color: #fff;
  }
  .solidpageheader .pagenav .pagenav__bd {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.pagenav--open {
  max-height: 70vh;
  height: auto;
  overflow-y: scroll;
}
.pagenav--open .pagenav__body {
  display: inline-block;
}
.pagenav--open .pagenav__body .inlinenavlist li {
  padding: 0.5em 0;
  margin: 0 0.75em;
}
.pagenav--open .pagenav__body .inlinenavlist li a {
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .pagenav--transparent {
    background: transparent;
    color: #fff;
  }
  .pagenav--transparent .pagenav__bd {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (min-width: 1200px) {
  .hasscrolled .pagenav--transparent {
    background-color: #f9f5f3;
    color: #00164E;
  }
  .hasscrolled .pagenav--transparent .pagenav__bd {
    border-color: rgba(0, 22, 78, 0.2);
  }
}
.pagenav--post .pagenav__body .inlinenavlist li {
  padding-left: 0.75em;
  padding-right: 0.75em;
  color: rgba(0, 22, 78, 0.5);
}
.pagenav--post .pagenav__body .inlinenavlist li .date {
  margin-left: 0.35em;
}
.pagenav--post .pagenav__body .inlinenavlist li a {
  display: inline-block;
  margin-left: 0.35em;
  padding: 0;
}

.pagenav__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #0EA4AF;
  padding: 0.5rem 0;
}
.pagenav__toggle .fal {
  padding: 0;
  color: #00164E;
}
@media only screen and (min-width: 1200px) {
  .pagenav__toggle {
    display: none;
  }
}
.pagenav__toggle.open .fal {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
}
.pagenav__toggle.open + .pagenav__inner {
  height: auto;
  overflow: initial;
}

/*  ==========================================================================
News Centre -- layout/layout.scss
========================================================================== */
.carouselsection--featured {
  padding: 0 14.28% 1.5em;
  background: rgba(14, 164, 175, 0.1);
}
.carouselsection--featured .carousel__header {
  border-top: none;
}
.carouselsection--featured.carouselsection--1 .carousel__nav {
  display: none;
}

.carouselsection--latest {
  margin-top: 10%;
}
@media only screen and (min-width: 700px) {
  .carouselsection--latest {
    margin-top: 0;
  }
}
.carouselsection--latest.carouselsection--1 .carousel__nav {
  display: none;
}
@media only screen and (min-width: 700px) {
  .carouselsection--latest.carouselsection--2 .carousel__nav {
    display: none;
  }
}

/*  ==========================================================================
posts -- layout/layout.scss
========================================================================== */
.loadmore {
  text-align: center;
  position: relative;
}
.loadmore:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  background-color: rgba(0, 22, 78, 0.2);
  z-index: -1;
}
.loadmore .loadmore__btn {
  margin-bottom: 0;
  cursor: pointer;
}

.posts__wrapper {
  position: relative;
}
.posts__wrapper .post,
.posts__wrapper .event {
  margin-bottom: 4em;
}
.posts__wrapper .post:after,
.posts__wrapper .event:after {
  display: none;
}
.posts__wrapper .posts__lines {
  position: absolute;
  top: 0;
  left: -1.5em;
  right: -1.5em;
  bottom: 4em;
  z-index: -1;
}
.posts__wrapper .posts__lines .line {
  position: absolute;
  top: 0;
  left: 50%;
  background: rgba(0, 22, 78, 0.15);
  width: 1px;
  height: 100%;
}
.posts__wrapper .posts__lines .line:nth-child(2), .posts__wrapper .posts__lines .line:nth-child(3), .posts__wrapper .posts__lines .line:nth-child(4) {
  display: none;
}
@media only screen and (min-width: 700px) {
  .posts__wrapper .posts__lines .line:nth-child(1) {
    left: 33.3%;
  }
  .posts__wrapper .posts__lines .line:nth-child(2) {
    left: calc(33.3% * 2);
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .posts__wrapper .posts__lines .line:nth-child(1) {
    left: 25%;
  }
  .posts__wrapper .posts__lines .line:nth-child(2) {
    left: 50%;
  }
  .posts__wrapper .posts__lines .line:nth-child(3) {
    left: 75%;
    display: block;
  }
}

.posts .gd-u {
  position: relative;
}
.posts--flex {
  overflow: hidden;
}
.posts--flex .gd-u:last-child .post:after {
  display: none !important;
}
.posts--flex .gd-u:nth-child(2n + 2) .post:after {
  display: none;
}
@media only screen and (min-width: 700px) {
  .posts--flex .gd-u:nth-child(2n + 2) .post:after {
    display: block;
  }
  .posts--flex .gd-u:nth-child(3n + 3) .post:after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .posts--flex .gd-u:nth-child(3n + 3) .post:after {
    display: block;
  }
  .posts--flex .gd-u:nth-child(4n + 4) .post:after {
    display: none;
  }
}

.post .post__link {
  position: relative;
  z-index: 1;
}
.post .post__link .postimg {
  margin-bottom: 1.5em;
}
.post .post__link:hover .postimg__img {
  -webkit-transition: box-shadow 200ms ease-in-out;
  transition: box-shadow 200ms ease-in-out;
  box-shadow: 0 0 25px rgba(0, 22, 78, 0.15);
}
.post:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 1000px;
  width: 1px;
  background: rgba(0, 22, 78, 0.1);
}

.post__categories {
  margin-bottom: 0.75em;
}

.post__heading {
  margin: 0 0 0.5em;
  line-height: 1.2;
}

.post__tags {
  padding: 0 0.66em 0.66em 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #888;
  z-index: 2;
  -webkit-transition: box-shadow 150ms ease-out 0s;
  transition: box-shadow 150ms ease-out 0s;
}
.post__tags:hover {
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.25);
}

/*  ==========================================================================
paging -- layout/layout.scss
========================================================================== */
.paging {
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border-top: solid 1px rgba(0, 22, 78, 0.2);
}
@media only screen and (min-width: 700px) {
  .paging {
    border-bottom: solid 1px rgba(0, 22, 78, 0.2);
  }
  .paging .paging__bd {
    border-bottom: solid 1px rgba(0, 22, 78, 0.2);
    border-top: solid 1px rgba(0, 22, 78, 0.2);
  }
}
.paging .paging__numbers {
  display: none;
}
.paging .paging__numbers a,
.paging .paging__numbers span {
  padding: 1.5em;
  border: none;
  border-right: solid 1px rgba(0, 22, 78, 0.2);
  display: block;
  float: left;
  min-width: 1.4em;
  text-align: center;
}
.paging .paging__numbers .current {
  color: #888;
}
@media only screen and (min-width: 700px) {
  .paging .paging__numbers {
    display: block;
  }
}
.paging .paging__nextprev {
  text-align: center;
  padding: 0.5em;
}
.paging .paging__nextprev .btn {
  margin-bottom: 0;
}
@media only screen and (min-width: 700px) {
  .paging .paging__nextprev {
    position: absolute;
    padding: 0;
    right: 0;
    top: 50%;
    margin-top: -1.75em;
  }
}

/*  ==========================================================================
	modalpopup
	========================================================================== */
.modalpopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  z-index: 1070;
  -webkit-transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
  transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
  opacity: 0;
  top: 1em;
}

.modalpopupoverlay {
  position: fixed;
  z-index: 1060;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-out 0ms, left 0ms linear 500ms;
  transition: opacity 300ms ease-out 0ms, left 0ms linear 500ms;
}

.popupmodal--open .modalpopup {
  left: 0;
  opacity: 1;
  top: 0em;
  -webkit-transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
}

.popupmodal--open .modalpopupoverlay {
  left: 0;
  opacity: 0.88;
  -webkit-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
}

.modalpopup:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.modalcontent {
  width: 80%;
  padding: 10%;
  box-sizing: border-box;
  background: #fff;
  color: #646363;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (min-width: 550px) {
  .modalcontent {
    width: 60%;
    padding: 5%;
  }
}
/*  ==========================================================================
	searchpopup -- layout/layout.scss
	========================================================================== */
.searchpopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 1em;
  left: 100%;
  right: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
  transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
}
.popupsearch--open .searchpopup {
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
}
.searchpopup:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */
}
.searchpopup .searchpopupform {
  width: 85.72%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 700px) {
  .searchpopup .searchpopupform {
    width: 75%;
  }
}
.searchpopup .searchpopupform .field__label {
  display: block;
  font-weight: 500;
  margin: 0 0 0.75em;
}
.searchpopup .searchpopupform .field__note {
  margin: 0.75em 0 0;
}
.searchpopup .searchpopupform .field__note strong {
  cursor: pointer;
}
.searchpopup .searchpopupform .field__input {
  position: relative;
  padding: 0.66em 3.5em 0.66em 0.66em;
  border: solid 1px #fff;
  font-size: 1.5em;
  border-radius: 2px;
}
@media only screen and (min-width: 550px) {
  .searchpopup .searchpopupform .field__input {
    font-size: 1.75em;
  }
}
@media only screen and (min-width: 700px) {
  .searchpopup .searchpopupform .field__input {
    font-size: 2em;
  }
}
.searchpopup .searchpopupform .field__input input {
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  width: 100%;
  outline: none;
  text-align: left;
}

.searchpopupoverlay {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
}
.popupsearch--open .searchpopupoverlay {
  left: 0;
  opacity: 0.88;
  -webkit-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
}

.searchpopupbtn {
  width: 1.75em;
  padding: 0.66em;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.searchpopupbtn:hover {
  background: #fff;
  color: #888;
}
.searchpopupbtn .fa {
  padding: 0;
}

/*  ==========================================================================
Search results page -- layout/layout.scss
========================================================================== */
.searchpagefield {
  position: relative;
}
.searchpagefield input {
  background: none;
  padding-right: 4em;
  position: relative;
  z-index: 1;
}

.searchpagesubmit {
  padding: 1em 1.25em;
  border: none;
  position: absolute;
  z-index: 2;
  top: 1px;
  right: 1px;
  background: none;
  text-align: center;
}
.searchpagesubmit:hover {
  background: #888;
}

/*  ==========================================================================
events -- layout/layout.scss
========================================================================== */
.event .event__info {
  padding: 2.75em 5px 0 5px;
}
.event .event__info .event__title {
  margin: 0 0 0.5em;
}
.event .event__img {
  position: relative;
  width: 100%;
  padding: 66% 0 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.event .event__stickers {
  display: block;
  position: absolute;
  padding-left: 15px;
  margin-top: -23px;
  z-index: 10;
}
.event .event__stickers .eventsticker {
  vertical-align: top;
  width: 46px;
  height: 46px;
  background-color: #00164E;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: -10px;
  text-align: center;
  font-size: 15px;
  overflow: hidden;
  padding-top: 8px;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}
.event .event__stickers .eventsticker span {
  display: block;
  font-size: 8px;
  margin-top: -5px;
  font-weight: 700;
  text-transform: uppercase;
}
.event .event__stickers .eventsticker--running {
  background-size: 40% auto;
  background-image: url("img/icons/running.png");
}
.event .event__stickers .eventsticker--cycling {
  background-size: 50% auto;
  background-image: url("img/icons/cycling.png");
}
.event .event__stickers .eventsticker--walking {
  background-size: 30% auto;
  background-image: url("img/icons/walking.png");
}
.event .event__stickers .eventsticker--science {
  background-size: 70% auto;
  background-image: url("img/icons/science.png");
}
.event .event__stickers .eventsticker--social {
  background-size: 85% auto;
  background-image: url("img/icons/social.png");
}
.event .event__stickers .eventsticker--generic {
  background-size: 50% auto;
  background-image: url("img/icons/generic.png");
}
.event .event__stickers .eventsticker--startdate {
  background-color: #0EA4AF;
}
.event .event__stickers .eventsticker--enddate {
  background-color: #EE7203;
}

/*  ==========================================================================
Research Projects -- layout/layout.scss
========================================================================== */
.researchprojects .researchprojects__heading .heading {
  margin: 0 0 0.5em;
  min-height: 1em;
}
.researchprojects .researchprojects__heading .btn {
  margin-top: 0.5em;
}
.researchprojects .researchprojects__projectlist {
  margin-top: 2.25em;
}
.researchprojects--tiles .gd-g {
  margin-left: -5px;
  margin-right: -5px;
}
.researchprojects--tiles .gd-g .gd-u {
  padding-left: 5px;
  padding-right: 5px;
}
.researchprojects--tiles .researchprojects__projectlist {
  margin-bottom: -10px;
}
.researchprojects--tiles .researchprojects__projectlist .projectlist__project {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.researchprojects--tiles .researchprojects__projectlist .projectlist__project .project {
  height: 100%;
  display: block;
}

/*  ==========================================================================
Projects
========================================================================== */
.project {
  position: relative;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  white-space: normal;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  padding: 1.5em 0;
  border-top: 1px solid rgba(0, 22, 78, 0.2);
}
@media only screen and (min-width: 700px) {
  .project {
    padding: 2em 0;
  }
}
.project .project__heading {
  margin: 0;
}
.project .project__team {
  margin: 1em 0;
  list-style: none;
}
@media only screen and (min-width: 1200px) {
  .project .project__team {
    margin: 1em 0 0;
  }
}
.project .project__team .teammember {
  display: inline-block;
  width: 3em;
  margin-right: -1em;
  position: relative;
}
.project .project__team .teammember .teammember__img {
  width: 100%;
  padding: 100% 0 0;
}
.project .project__team .teammember:nth-child(1) {
  z-index: 10;
}
.project .project__team .teammember:nth-child(2) {
  z-index: 9;
}
.project .project__team .teammember:nth-child(3) {
  z-index: 8;
}
.project .project__team .teammember:nth-child(4) {
  z-index: 7;
}
.project .project__team .teammember:nth-child(5) {
  z-index: 6;
}
.project .project__team .teammember:nth-child(6) {
  z-index: 5;
}
.project hr {
  width: 1.25em;
  border-width: 1px 0 0;
  border-color: #0EA4AF;
  border-style: solid;
  margin: 1em 0;
}
.project .project__details {
  padding-bottom: 5em;
}
.project .project__details .project__location {
  position: absolute;
  bottom: 1.75em;
  right: 1.75em;
  left: 1.75em;
}
.project .project__sml span {
  display: block;
  margin-bottom: 1em;
}
@media only screen and (min-width: 550px) {
  .project .project__sml span {
    display: inline-block;
    margin-right: 1.5em;
    margin-bottom: 0;
  }
  .project .project__sml span:last-child {
    margin-left: 0;
  }
}
.project--row .project__heading {
  margin-bottom: 1em;
}
@media only screen and (min-width: 1200px) {
  .project--row .project__heading {
    margin-bottom: 0;
  }
}
.project--row .project__location {
  margin-top: 1em;
}
@media only screen and (min-width: 1000px) {
  .project--row .project__location {
    margin-top: 0;
  }
}
.project--tile {
  background: #fff;
  padding: 1.5em;
  border-top: none;
}
@media only screen and (min-width: 700px) {
  .project--tile {
    padding: 2em;
  }
}
.project--tile:hover {
  -webkit-transform: translateX(-2px) translateY(-2px);
  -ms-transform: translateX(-2px) translateY(-2px);
      transform: translateX(-2px) translateY(-2px);
  box-shadow: 0 0 5px 0 rgba(0, 22, 78, 0.05);
}
.project--tile.unactive {
  background: rgba(14, 164, 175, 0.15);
}

/*  ==========================================================================
Project Single
========================================================================== */
.projecttab .projecttab__bd {
  border-bottom: 1px solid rgba(0, 22, 78, 0.2);
}
.projecttab:first-child .projecttab__bd {
  border-top: 1px solid rgba(0, 22, 78, 0.2);
}
.projecttab .projecttab__header {
  position: relative;
  padding: 1em 0;
  cursor: pointer;
}
.projecttab .projecttab__header .projecttab__viewall {
  position: absolute;
  right: 3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.projecttab .projecttab__header .projecttab__toggle {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.projecttab .projecttab__header .projecttab__toggle:after {
  color: #0EA4AF;
  content: "";
  font-family: "font awesome 5 pro";
  font-weight: 400;
}
.projecttab .projecttab__body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(0, -1em);
  -ms-transform: translate(0, -1em);
      transform: translate(0, -1em);
  -webkit-transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
}
.projecttab .projecttab__body .flex__heading {
  max-width: 28em;
}
.projecttab.open .projecttab__body {
  -webkit-transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  height: auto;
  overflow: visible;
  opacity: 1;
}
.projecttab.open .projecttab__toggle:after {
  content: "";
}

/*  ==========================================================================
404
========================================================================== */
.main--error .pageheader .pageheader__bd {
  border: none;
}

/*  ==========================================================================
people -- layout/layout.scss
========================================================================== */
/* Person details / Contact details */
.persondetails {
  text-align: center;
}

/* Person grid group */
.people {
  margin-bottom: -2em;
}

/* Person grid item */
.person {
  text-align: center;
  position: relative;
  max-width: 300px;
  margin: 0 auto 2em auto;
}
.person .person__img {
  margin: 0 auto 1em auto;
  width: 75%;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  -webkit-transition: box-shadow 150ms ease-out 0s;
  transition: box-shadow 150ms ease-out 0s;
}
.person .person__link {
  display: block;
  cursor: pointer;
}
.person .person__link:hover .person__img {
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
}
.person .person__content {
  position: relative;
  z-index: 10;
  padding: 1em 0.5em;
}
.person .person__content h3 {
  margin: 0;
}
.person .person__content p {
  margin: 0;
}

/* ------ Registration form template ------ */
.registration__eventdetails .eventdetails__title h2 {
  margin-top: 0;
}

.ballot_place_message {
  background: #e7f8ff;
  padding: 2em;
  border: 1px solid #2dafe6;
  box-sizing: border-box;
  color: #18438d;
}

.ballot_place_message h3 {
  margin-top: 0;
}

.registration-success .ballot_place_message {
  display: none;
}

.justgiving {
  margin-top: 4em;
  text-align: center;
  display: none;
}

.registration-success .justgiving {
  display: block;
}

.registration-success .nf-response-msg {
  text-align: center;
  margin-top: 0;
}

.registration-success .nf-response-msg h2 {
  font-weight: 800;
  color: #18438d;
  margin: 0 auto 0.25em auto;
  max-width: 20em;
}

.registration-success .nf-response-msg h3 {
  text-transform: none;
  font-size: 1.5em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 20em;
}

.justgiving__leader {
  padding-bottom: 1em;
  max-width: 25em;
  margin: 0 auto;
}

.justgiving__logo {
  background-image: url("../img/jg-logo.svg");
  background-size: 100% auto;
  background-position: left center;
  background-repeat: no-repeat;
  width: 60%;
  padding: 14% 0 0 0;
  margin: 0.5em auto;
}

.application_process {
  margin-top: 2em;
}

.application_process_step {
  margin-left: 40px;
  position: relative;
}

.application_process_step::before {
  content: "1";
  background: #18448e;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: -40px;
  top: -7px;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-weight: 900;
}

.application_process__list .application_process_step:nth-child(2)::before {
  content: "2";
}

.application_process__list .application_process_step:nth-child(3)::before {
  content: "3";
}

.application_process__list .application_process_step:nth-child(4)::before {
  content: "4";
}

.application_process__list .application_process_step:nth-child(5)::before {
  content: "5";
}

.application_process__list .application_process_step:nth-child(6)::before {
  content: "6";
}

.application_process__list .application_process_step:nth-child(7)::before {
  content: "7";
}

.application_process__list .application_process_step:nth-child(8)::before {
  content: "8";
}

.application_process__list .application_process_step:nth-child(9)::before {
  content: "9";
}

.application_process__list .application_process_step:nth-child(10)::before {
  content: "10";
}

.application_process__list .application_process_step:nth-child(11)::before {
  content: "11";
}

@media only screen and (min-width: 550px) {
  .justgiving__logo {
    width: 35%;
    padding: 10% 0 0 0;
  }
}
@media only screen and (min-width: 700px) {
  .justgiving__logo {
    width: 50%;
    padding: 12% 0 0 0;
  }
}
@media only screen and (min-width: 900px) {
  .registration_form {
    width: 90%;
  }

  .registration-success .registration_form {
    width: 100%;
  }

  .justgiving__logo {
    width: 35%;
    padding: 7% 0 0 0;
  }
}
/*  ==========================================================================
Donation Form Template
========================================================================== */
.giftaid__logo {
  margin: 0 auto 1em auto;
  display: block;
}
@media only screen and (min-width: 550px) {
  .giftaid__logo {
    width: 80%;
    position: absolute;
    right: 0;
    top: 3.75em;
  }
}

/*  ==========================================================================
Donate Page Template
========================================================================== */
.main--donate .donatetabs {
  position: relative;
  z-index: 10;
}
.main--donate .donatetabs .donatetabs__header {
  padding-top: 5px;
  background-color: #00164E;
}
.main--donate .donatetabs .donatetabs__header .donatetabs__nav {
  list-style: none;
}
.main--donate .donatetabs .donatetabs__header .donatetabs__nav li {
  color: #fff;
  border-radius: 2px 2px 0 0;
  display: inline-block;
  cursor: pointer;
  position: relative;
  opacity: 0.5;
}
.main--donate .donatetabs .donatetabs__header .donatetabs__nav li.active {
  background: #f9f5f3;
  opacity: 1;
  color: #00164E;
}
.main--donate .donatetabs .donatetabs__header .donatetabs__nav li a {
  padding: 1.5em;
  display: block;
}
.main--donate .donate__form {
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1000px) {
  .main--donate .donate__form {
    margin-left: 0;
  }
}
.main--donate .donate__form .leader {
  max-width: 24em;
  line-height: 1.4;
}
.main--donate .donate__form input[type=button] {
  background: #EE7203 !important;
  color: #fff;
  font-weight: 700;
}
.main--donate .donate__sidebar .donate__sidebarinner {
  background: rgba(14, 164, 175, 0.2);
  padding: 1.75em 1.5em;
}
.main--donate .donate__sidebar .sidebar__block {
  padding: 0.75em 0;
}
.main--donate .donate__sidebar .sidebar__block .block__cite {
  font-style: normal;
  position: relative;
  padding-left: 2em;
}
.main--donate .donate__sidebar .sidebar__block .block__cite::after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1.5em;
  border-top: 1px solid #00164e;
}

.donate__amount {
  background: #e7f8ff;
  border-top: 15px solid #18438d;
  text-align: center;
  padding: 0 2em 2em 2em;
  box-sizing: border-box;
}

.donate__amount h2 {
  margin-top: 0.75em;
  margin-bottom: 0;
}

.donate__amount h2.fontsize--huge {
  font-size: 4em;
}

.donate__amount h2.fontsize--large {
  margin-top: 1.25em;
  margin-bottom: 0.25em;
}

.donate__amount__leader {
  max-width: 25em;
  margin: 2em auto;
}

/* Monthly Donations */
.donate--monthly .gd-u:nth-child(2),
.donate--monthly .gd-u:nth-child(3),
.donate--monthly .gd-u:nth-child(4) {
  margin-top: 2em;
}

@media only screen and (min-width: 550px) {
  .donate--monthly .gd-u:nth-child(2) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .donate--monthly .gd-u {
    margin-top: 2em;
  }

  .donate--monthly .gd-u:nth-child(2) {
    margin-top: 0;
  }

  .donate--monthly .gd-u:nth-child(2) .donate__amount {
    border-color: #2dafe6;
  }

  .donate__amount h2.fontsize--huge {
    font-size: 3em;
  }

  .donate--monthly .gd-u:nth-child(2) h2 {
    font-size: 5.5em;
    margin-top: 0.5em;
    color: #2dafe6;
  }
}
/* Single donations */
.donate--single {
  display: none;
}

.donate--single .gd-u:nth-child(2),
.donate--single .gd-u:nth-child(3) {
  margin-top: 2em;
}

.donate__amount__input {
  position: relative;
  margin-top: 2em;
  margin-bottom: 1em;
}

.donate__amount__input::before {
  content: "£";
  position: absolute;
  font-size: 2.5em;
  color: #e5e5e5;
  z-index: 6;
  font-weight: 800;
  padding: 0.25em 0.25em 0.25em 20px;
}

.donate__amount__input input[type=number] {
  padding: 0.25em 1.3em;
  margin: 0;
  border-radius: 100px;
  border-color: transparent;
  font-weight: 800;
  font-size: 2.5em;
  width: 80%;
  max-width: 400px;
  color: #18438d;
  position: relative;
  text-align: center;
  background: #fff;
}

.donate__amount__input input[type=number]::-webkit-inner-spin-button,
.donate__amount__input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media only screen and (min-width: 550px) {
  .donate--single .gd-u:nth-child(2) {
    margin-top: 0;
  }

  .donate__amount__input::before,
.donate__amount__input input[type=number] {
    font-size: 65px;
  }

  .donate__amount__input::before {
    padding: 0.25em 0.25em 0.25em 40px;
  }
}
@media only screen and (min-width: 1000px) {
  .donate--single .gd-u,
.donate--single .gd-u:nth-child(2) {
    margin-top: 2em;
  }

  .donate--single .gd-u:nth-child(3) {
    margin-top: 0;
  }

  .donate--single .gd-u:nth-child(3) .donate__amount {
    border-color: #2dafe6;
  }

  .donate--single .gd-u:nth-child(3) h2 {
    font-size: 5.5em;
    margin-top: 0.5em;
    color: #2dafe6;
  }
}
/* Donate Switch */
.page-template-donate .switch {
  position: relative;
  display: block;
  width: 300px;
  height: 45px;
  margin: 0 auto 2em auto;
}

.page-template-donate .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.page-template-donate .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  background-color: #fff;
  color: #18438d;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 45px;
}

.page-template-donate .slider span {
  display: inline-block;
  width: 50%;
  text-align: center;
}

.page-template-donate .slider:before {
  position: absolute;
  content: "Monthly";
  padding: 7px 20px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  height: 37px;
  width: 146px;
  left: 4px;
  bottom: 4px;
  background-color: #2dafe6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 45px;
}

.page-template-donate input:checked + .slider {
  color: #fff;
  background-color: #18438d;
}

.page-template-donate input:checked + .slider:before {
  content: "One Off";
  -webkit-transform: translateX(146px);
  -ms-transform: translateX(146px);
  transform: translateX(146px);
}

@media only screen and (min-width: 550px) {
  .page-template-donate .pageheaderbody {
    padding-top: 10%;
  }
}
@media only screen and (min-width: 1000px) {
  .page-template-donate .pageheaderbody {
    padding-top: 8%;
  }
}
.sitefooter--donate,
.flex--donate {
  background: #fff;
  margin-bottom: 5px;
  box-shadow: 0 0 40px 0 rgba(0, 22, 78, 0.15);
}
.sitefooter--donate .sitefooter__heading,
.flex--donate .sitefooter__heading {
  position: relative;
}
.sitefooter--donate .sitefooter__heading h3,
.flex--donate .sitefooter__heading h3 {
  max-width: 22em;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .sitefooter__heading h3,
.flex--donate .sitefooter__heading h3 {
    max-width: 18em;
  }
}
@media only screen and (min-width: 1000px) {
  .sitefooter--donate .sitefooter__heading h3,
.flex--donate .sitefooter__heading h3 {
    max-width: 22em;
  }
}
.sitefooter--donate .sitefooter__heading .sitefooter__calltoaction,
.flex--donate .sitefooter__heading .sitefooter__calltoaction {
  margin-top: 1em;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .sitefooter__heading .sitefooter__calltoaction,
.flex--donate .sitefooter__heading .sitefooter__calltoaction {
    position: absolute;
    top: 50%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}
.sitefooter--donate .donatetabs__control,
.flex--donate .donatetabs__control {
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 22, 78, 0.1);
}
.sitefooter--donate .donatetabs__control li,
.flex--donate .donatetabs__control li {
  background: #fff;
  position: relative;
  z-index: 0;
  padding: 1em 1.5em;
  display: inline-block;
  box-sizing: border-box;
  width: 32%;
  cursor: pointer;
  margin-bottom: -1px;
  margin-right: -1px;
}
@media only screen and (min-width: 550px) {
  .sitefooter--donate .donatetabs__control li,
.flex--donate .donatetabs__control li {
    width: auto;
  }
}
.sitefooter--donate .donatetabs__control li span,
.flex--donate .donatetabs__control li span {
  position: relative;
  z-index: 1;
}
.sitefooter--donate .donatetabs__control li:after,
.flex--donate .donatetabs__control li:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 22, 78, 0.1);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: transform 200ms ease-out 0ms;
  -webkit-transition: -webkit-transform 200ms ease-out 0ms;
  transition: -webkit-transform 200ms ease-out 0ms;
  transition: transform 200ms ease-out 0ms;
  transition: transform 200ms ease-out 0ms, -webkit-transform 200ms ease-out 0ms;
}
.sitefooter--donate .donatetabs__control li.active,
.flex--donate .donatetabs__control li.active {
  position: relative;
  z-index: 1;
}
.sitefooter--donate .donatetabs__control li.active:after,
.flex--donate .donatetabs__control li.active:after {
  background: #fff;
  border-radius: 4px 4px 0 0;
  -webkit-transform: scale(1, 1.1);
      -ms-transform: scale(1, 1.1);
          transform: scale(1, 1.1);
  border-bottom: 1px solid #fff;
}
.sitefooter--donate .donatetabs__content,
.flex--donate .donatetabs__content {
  max-width: 28em;
}
.sitefooter--donate .donatetabs__content > div,
.flex--donate .donatetabs__content > div {
  display: none;
}
.sitefooter--donate .donatetabs__content > div.active,
.flex--donate .donatetabs__content > div.active {
  display: block;
  -webkit-animation: slide-up 0.3s ease-out;
  -moz-animation: slide-up 0.3s ease-out;
}
.sitefooter--donate .donatetabs__content .donatetabs__form,
.flex--donate .donatetabs__content .donatetabs__form {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 3em;
  border: 1px solid rgba(0, 22, 78, 0.1);
  padding: 3px;
  margin: 1em 0 2.25em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  min-height: 54.22px;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .donatetabs__content .donatetabs__form,
.flex--donate .donatetabs__content .donatetabs__form {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.sitefooter--donate .donatetabs__content .donatetabs__form input[type=text],
.flex--donate .donatetabs__content .donatetabs__form input[type=text] {
  border: none;
  width: 60%;
  padding: 0.15em 1.5em;
  font-size: 220%;
  color: #0EA4AF;
}
.sitefooter--donate .donatetabs__content .donatetabs__form:before,
.flex--donate .donatetabs__content .donatetabs__form:before {
  content: "£";
  position: absolute;
  left: 26%;
  top: 26%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 22, 78, 0.3);
  z-index: 2;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .donatetabs__content .donatetabs__form:before,
.flex--donate .donatetabs__content .donatetabs__form:before {
    top: 50%;
    left: 1.25em;
  }
}
.sitefooter--donate .donatetabs__content .donatetabs__form .btn,
.flex--donate .donatetabs__content .donatetabs__form .btn {
  position: relative;
  margin: auto;
  z-index: 1;
  display: block;
  width: 70%;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .donatetabs__content .donatetabs__form .btn,
.flex--donate .donatetabs__content .donatetabs__form .btn {
    position: absolute;
    right: 3px;
    margin: 0;
    display: inline-block;
    width: auto;
  }
}
.sitefooter--donate .donatetabs__content .donatetabs__dd .donatetabs__form,
.flex--donate .donatetabs__content .donatetabs__dd .donatetabs__form {
  border: none;
}
.sitefooter--donate .donatetabs__content .donatetabs__dd .donatetabs__form .btn,
.flex--donate .donatetabs__content .donatetabs__dd .donatetabs__form .btn {
  left: 3px;
  right: auto;
}
.sitefooter--donate .donatetabs__content .donatetabs__dd .donatetabs__form:before,
.flex--donate .donatetabs__content .donatetabs__dd .donatetabs__form:before {
  display: none;
}
.sitefooter--donate.flexdonate--dark,
.flex--donate.flexdonate--dark {
  background: #00164E;
  color: rgba(255, 255, 255, 0.5);
}
.sitefooter--donate.flexdonate--dark .color--blue-50,
.flex--donate.flexdonate--dark .color--blue-50 {
  color: rgba(255, 255, 255, 0.5);
}
.sitefooter--donate.flexdonate--dark .donatetabs__form,
.flex--donate.flexdonate--dark .donatetabs__form {
  background: #00164E;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sitefooter--donate.flexdonate--dark .donatetabs__form input[type=text],
.flex--donate.flexdonate--dark .donatetabs__form input[type=text] {
  background: #00164E;
}
.sitefooter--donate.flexdonate--dark .donatetabs__form:before,
.flex--donate.flexdonate--dark .donatetabs__form:before {
  color: rgba(255, 255, 255, 0.5);
}
.sitefooter--donate.flexdonate--dark .donatetabs__control,
.flex--donate.flexdonate--dark .donatetabs__control {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sitefooter--donate.flexdonate--dark .donatetabs__control li,
.flex--donate.flexdonate--dark .donatetabs__control li {
  background: #00164E;
  color: rgba(255, 255, 255, 0.5);
}
.sitefooter--donate.flexdonate--dark .donatetabs__control li:after,
.flex--donate.flexdonate--dark .donatetabs__control li:after {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sitefooter--donate.flexdonate--dark .donatetabs__control li.active,
.flex--donate.flexdonate--dark .donatetabs__control li.active {
  background: #00164E;
  color: #fff;
}
.sitefooter--donate.flexdonate--dark .donatetabs__control li.active:after,
.flex--donate.flexdonate--dark .donatetabs__control li.active:after {
  background: #00164E;
}

/*  ==========================================================================
Site Map
========================================================================== */
.kwayy-html-sitemap-wrapper h2 {
  text-transform: uppercase;
  color: #2dafe6;
  font-weight: 700;
  font-size: 1.2em;
}

.kwayy-html-sitemap-wrapper li {
  margin: 0.5em 0;
}

.kwayy-html-sitemap-wrapper ul {
  margin-left: 1.25em;
}

.kwayy-html-sitemap-wrapper ul ul {
  margin-left: 0;
}

.kwayy-html-sitemap-wrapper ul ul ul {
  margin-left: 1.25em;
}

/*  ==========================================================================
Cookie Banner
========================================================================== */
/*  ==========================================================================
Cookies -- layout/layout.scss
	========================================================================== */
.cky-btn {
  border-radius: 3em !important;
  padding: 1em 2.5em !important;
  margin: 0 0.5em 0.5em 0 !important;
  font-family: "Benton Sans Bd", Helvetica !important;
  font-weight: 700 !important;
}

.cky-notice .cky-title {
  font-size: 16px !important;
  margin-bottom: 0 !important;
}

.cky-show-desc-btn {
  color: #fff !important;
}

.cky-notice-btn-wrapper {
  margin-top: 1em !important;
}

.cky-box-bottom-right {
  bottom: 1em !important;
  right: 1em !important;
}

.cky-modal {
  cursor: default;
}

.cky-consent-container {
  cursor: default;
}
.cky-consent-container .cky-consent-bar {
  padding: 1rem !important;
}

/*  ==========================================================================
	siteheader
	========================================================================== */
.siteheader {
  background: #00164E;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.siteheader--padder {
  position: relative;
  visibility: hidden;
  pointer-events: none;
}
.siteheader .siteheader__bd {
  overflow: hidden;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media only screen and (max-width: 1399px) {
  .siteheader .siteheader__bd {
    margin-left: 2em;
    margin-right: 2em;
  }
}
@media only screen and (min-width: 1200px) {
  .siteheader .siteheader__bd {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
.solidpageheader .siteheader .siteheader__bd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.solidpageheader.hasscrolled .siteheader .siteheader__bd {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}

.sitelogo {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-30px, -50%);
      -ms-transform: translate(-30px, -50%);
          transform: translate(-30px, -50%);
  opacity: 0;
  width: 100px;
  height: 43px;
}
.sitelogo .sitelogo__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("img/pcrc.tiny.white.svg");
}
.hasscrolled .sitelogo {
  opacity: 1;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 150ms ease-out 0s, opacity 150ms ease-out 0s;
  -webkit-transition: opacity 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
  transition: opacity 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s, opacity 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s, opacity 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
}

/*  ==========================================================================
		mobnav
		========================================================================== */
.mobnav {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0;
  background: #00164E;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.5) inset;
  text-align: center;
  -webkit-transition: height 150ms ease-in-out;
  transition: height 150ms ease-in-out;
}
.mobnav li {
  border-top: solid 1px rgba(0, 22, 78, 0.2);
}
.mobnav li:first-child {
  border-top: none;
}
.mobnav li a {
  display: block;
  padding: 0.66em 0;
}
@media only screen and (min-width: 1200px) {
  .mobnav {
    display: none;
  }
}
.mobnav .mobnav__btnblock {
  background: rgba(14, 164, 175, 0.5);
  border-radius: 3em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mobnav .mobnav__btnblock a {
  padding: 1em 2.5em;
  margin: 0;
}
.mobnav .mobnav__btnblock a:hover {
  padding: 1em 1.5em 1em 3.5em;
}

/*  ==========================================================================
		mobtools
		========================================================================== */
.mobtools {
  width: 100%;
  text-align: right;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  .mobtools {
    display: none;
  }
}
.mobtools .mobtools__pagenav {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 150ms ease-out 0s;
  transition: -webkit-transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
}
.hasscrolled .mobtools .mobtools__pagenav {
  -webkit-transform: translate(115px, -50%);
      -ms-transform: translate(115px, -50%);
          transform: translate(115px, -50%);
}
@media only screen and (min-width: 1200px) {
  .mobtools .mobtools__pagenav {
    display: none;
  }
}

/*  ==========================================================================
		sitenav
		========================================================================== */
.sitenav {
  position: relative;
  display: none;
  padding: 1em 0;
}
@media only screen and (min-width: 1200px) {
  .sitenav {
    display: block;
  }
}
.sitenav--left {
  width: 60%;
  -webkit-transition: -webkit-transform 150ms ease-out 0s;
  transition: -webkit-transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
}
.hasscrolled .sitenav--left {
  -webkit-transform: translateX(130px);
      -ms-transform: translateX(130px);
          transform: translateX(130px);
}
.sitenav--right {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sitenav .sitenav__btnblock {
  background: rgba(14, 164, 175, 0.2);
  border-radius: 3em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.sitenav .sitenav__btnblock a {
  padding: 1em 2.5em;
  margin: 0;
}
.sitenav .sitenav__btnblock a:hover {
  padding: 1em 1.5em 1em 3.5em;
}

.projectcount {
  color: #fff;
  margin-left: 1em;
  position: relative;
}
.projectcount::after {
  content: "";
  position: absolute;
  width: 2.25em;
  height: 2.25em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: block;
  background: rgba(14, 164, 175, 0.2);
  border-radius: 50%;
}

@media only screen and (min-width: 1000px) {
  .sitefooter {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.sitefooter--graphic {
  position: relative;
  z-index: -1;
  overflow: hidden;
  padding-top: 40%;
  background-image: url(https://pcrusa.alchemy.construction/wp-content/themes/pcr.usa.2021/img/footer.graphic.svg);
  background-repeat: repeat-x;
  background-size: auto 141%;
}
@media only screen and (min-width: 1000px) {
  .sitefooter--graphic {
    padding-top: 20%;
    background-size: auto 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.sitefooter--graphic img {
  width: 98%;
  margin: 0 1%;
}
.sitefooter--main, .sitefooter--legal {
  color: #fff;
  background: #00164E;
}
.sitefooter--cta {
  position: relative;
  color: #fff;
  background: #0EA4AF;
  text-align: center;
  padding: 3em 0;
}
.sitefooter--cta.cta .cta__heading {
  max-width: 30rem;
  margin: 0 auto 2em;
}
.sitefooter--cta.cta .cta__btn {
  max-width: 30rem;
  margin: 0 auto;
}
.sitefooter--donate {
  background: #fff;
  margin-bottom: 5px;
  box-shadow: 0 0 40px 0 rgba(0, 22, 78, 0.15);
}
.sitefooter--donate .sitefooter__heading {
  position: relative;
}
.sitefooter--donate .sitefooter__heading h3 {
  max-width: 22em;
}
@media only screen and (min-width: 700px) {
  .sitefooter--donate .sitefooter__heading h3 {
    max-width: 18em;
  }
}
@media only screen and (min-width: 1000px) {
  .sitefooter--donate .sitefooter__heading h3 {
    max-width: 22em;
  }
}
.sitefooter--donate .sitefooter__heading .sitefooter__calltoaction {
  margin-top: 1em;
}
.sitefooter--donate .donatetabs__control {
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 22, 78, 0.1);
}
.sitefooter--donate .donatetabs__control li {
  background: #fff;
  position: relative;
  z-index: 0;
  padding: 1em 1.5em;
  display: inline-block;
  box-sizing: border-box;
  width: 32%;
  cursor: pointer;
  margin-bottom: -1px;
  margin-right: -1px;
}
@media only screen and (min-width: 550px) {
  .sitefooter--donate .donatetabs__control li {
    width: auto;
  }
}
.sitefooter--donate .donatetabs__control li span {
  position: relative;
  z-index: 1;
}
.sitefooter--donate .donatetabs__control li:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 22, 78, 0.1);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: transform 200ms ease-out 0ms;
  -webkit-transition: -webkit-transform 200ms ease-out 0ms;
  transition: -webkit-transform 200ms ease-out 0ms;
  transition: transform 200ms ease-out 0ms;
  transition: transform 200ms ease-out 0ms, -webkit-transform 200ms ease-out 0ms;
}
.sitefooter--donate .donatetabs__control li.active {
  position: relative;
  z-index: 1;
}
.sitefooter--donate .donatetabs__control li.active:after {
  background: #fff;
  border-radius: 4px 4px 0 0;
  -webkit-transform: scale(1, 1.1);
      -ms-transform: scale(1, 1.1);
          transform: scale(1, 1.1);
  border-bottom: 1px solid #fff;
}
.sitefooter--donate .donatetabs__content {
  max-width: 28em;
}
.sitefooter--donate .donatetabs__content > div {
  display: none;
}
.sitefooter--donate .donatetabs__content > div.active {
  display: block;
  -webkit-animation: slide-up 0.3s ease-out;
  -moz-animation: slide-up 0.3s ease-out;
}
.sitefooter .sitefooter__logo {
  position: relative;
  width: 200px;
  padding-bottom: 20%;
  background-image: url("img/pcrc.logo.white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 700px) {
  .sitefooter .sitefooter__logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .sitefooter .sitefooter__logo {
    width: 15%;
  }
}
.sitefooter .sitefooter__logo a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}
.sitefooter .sitefooter__social a {
  display: block;
  margin-bottom: 1em;
}
.sitefooter .sitefooter__social a .fab {
  color: #0EA4AF;
}
.sitefooter .sitefooter__address address {
  font-style: normal;
}
.sitefooter .sitefooter__legallogos img {
  max-width: 225px;
}
.sitefooter .sitefooter__copyright,
.sitefooter .sitefooter__address {
  color: rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
/*  ==========================================================================
	flex -- layout/flex.scss
	========================================================================== */
.flex__image {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 2.5em;
  padding-bottom: 65%;
}
.flex__image .flex__imagesrc {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.flex__heading .heading {
  margin: 0 0 0.5em;
}
.flex__heading hr {
  width: 1.25em;
  border-width: 1px 0 0;
  border-color: #0ea4af;
  border-style: solid;
  margin: 1em 0;
}
.flex__heading .btn {
  margin-top: 0.5em;
}

.flex--fullwidth + .flex--fullwidth {
  margin-top: -10%;
}
@media only screen and (min-width: 550px) {
  .flex--fullwidth + .flex--fullwidth {
    margin-top: -7%;
  }
}
@media only screen and (min-width: 1000px) {
  .flex--fullwidth + .flex--fullwidth {
    margin-top: -5%;
  }
}

.flex__linklist {
  list-style: none;
}
.flex__linklist li {
  margin: 0 0 0.5em;
  display: block;
}

/*  ==========================================================================
	flexline -- Line
	========================================================================== */
.flexline__line {
  border-top: solid 1px rgba(0, 22, 78, 0.2);
  height: 0;
}

/*  ==========================================================================
	flexcols -- Content Columns
	========================================================================== */
.flex--contentcols .flex__heading h2 {
  min-height: 1em;
}
.flex--contentcols .content--cols {
  margin-bottom: -2em;
  padding: 0;
}
.flex--contentcols .content--cols .contentcol {
  margin-bottom: 2em;
}
@media only screen and (min-width: 550px) {
  .flex--contentcols .content--cols--2, .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
    width: 100%;
  }
}
@media only screen and (min-width: 700px) {
  .flex--contentcols .content--cols--2, .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .flex--contentcols .content--cols--2 {
    width: 0 83.4%;
  }
  .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .flex--contentcols .content--cols--2 {
    width: 0 83.4%;
  }
  .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .flex--contentcols .content--cols--2 {
    width: 0 83.4%;
  }
  .flex--contentcols .content--cols--3 {
    width: 100%;
  }
  .flex--contentcols .content--cols--4 {
    width: 100%;
  }
}
.flex--contentcols .content:last-child {
  padding-bottom: 0;
}

/*  ==========================================================================
	flex--tilecols -- Tile Grid
	========================================================================== */
/*  ==========================================================================
	flex--faqs -- FAQs
	========================================================================== */
.faqs {
  border-top: 1px solid rgba(0, 22, 78, 0.2);
  position: relative;
}
.faqs--side .flex__heading {
  max-width: 80%;
}
.faqs--side .faqs {
  margin-top: 3em;
}
.faqs .faq {
  display: block;
  position: relative;
  border-bottom: 1px solid rgba(0, 22, 78, 0.2);
}
.faqs .faq .faq__question {
  margin: 0;
  border-top: none;
  padding: 1em 0;
  position: relative;
  cursor: pointer;
}
.faqs .faq .faq__question .fal {
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  line-height: 1.2;
  -webkit-transition: -webkit-transform 150ms ease-out 0s;
  transition: -webkit-transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s, -webkit-transform 150ms ease-out 0s;
}
.faqs .faq .faq__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(0, -1em);
  -ms-transform: translate(0, -1em);
      transform: translate(0, -1em);
  -webkit-transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
}
.faqs .faq .faq__answer .inner {
  margin: 0;
  padding: 0em 0em 1em 0;
}
.faqs .faq.faq--open .faq__answer {
  -webkit-transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  height: auto;
  opacity: 1;
  -webkit-transform: translate(0, 0em);
  -ms-transform: translate(0, 0em);
      transform: translate(0, 0em);
}
.faqs .faq.faq--open .faq__question .fal {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
}

/*  ==========================================================================
	flex--slides -- Full width image / carousel
	========================================================================== */
.flexslides--1 {
  display: block !important;
}

.flexslides {
  max-width: 100%;
  overflow: hidden;
}
.flexslides .flexslide {
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslide__bd {
    padding-top: 12%;
    padding-bottom: 12%;
    position: relative;
    z-index: 2;
  }
}
@media only screen and (min-width: 1400px) {
  .flexslides .flexslide .flexslide__bd {
    padding-top: 10%;
    padding-bottom: 10%;
  }
}
.flexslides .flexslide .flexslideimg {
  padding: 50% 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslideimg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
}
.flexslides .flexslide .flexslide__content {
  background: #fff;
  padding: 2em 2em 0;
  margin: -3em 0 0;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (min-width: 550px) {
  .flexslides .flexslide .flexslide__content {
    width: 90.6%;
    display: inline-block;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslide__content {
    margin: 0;
    padding: 2.5em;
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .flexslides .flexslide .flexslide__content {
    margin: 0;
    padding: 3em;
    width: 33.3%;
  }
}
@media only screen and (min-width: 1400px) {
  .flexslides .flexslide .flexslide__content {
    width: 28.5%;
  }
}
.flexslides .flexslide .flexslide__content .flexslide__heading {
  margin-top: 0;
}
@media only screen and (min-width: 550px) {
  .flexslides .flexslide--left .flexslide__content {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--left {
    text-align: left;
  }
  .flexslides .flexslide--left .flexslide__content {
    margin-left: 0em;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--right {
    text-align: right;
  }
  .flexslides .flexslide--right .flexslide__content {
    margin-right: 0em;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--center {
    text-align: center;
  }
}
.flexslides.owl-carousel .owl-item .flexslide__content {
  opacity: 0;
  -webkit-transform: translate(0px, 20px);
  -ms-transform: translate(0px, 20px);
      transform: translate(0px, 20px);
  -webkit-transition: opacity 500ms ease-out 250ms, -webkit-transform 500ms ease-out 250ms;
  transition: opacity 500ms ease-out 250ms, -webkit-transform 500ms ease-out 250ms;
  transition: opacity 500ms ease-out 250ms, transform 500ms ease-out 250ms;
  transition: opacity 500ms ease-out 250ms, transform 500ms ease-out 250ms, -webkit-transform 500ms ease-out 250ms;
}
.flexslides.owl-carousel .owl-item.active .flexslide__content {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
}
.flexslides.owl-carousel .owl-dots {
  position: absolute;
  top: 0em;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 !important;
}
.flexslides.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0;
  color: #888;
  outline: none;
}
.flexslides.owl-carousel .owl-dots .owl-dot span {
  display: block;
  margin: 0;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  background: #fff;
  border: none;
  border-left: solid 1px rgba(0, 22, 78, 0.2);
  line-height: 1em;
  position: relative;
  border-radius: 0;
  opacity: 1;
}
.flexslides.owl-carousel .owl-dots .owl-dot span:before {
  font-size: 11px;
  line-height: 1em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  left: 0;
  right: 0;
  text-align: center;
}
.flexslides.owl-carousel .owl-dots .owl-dot:first-child span {
  border-left: none;
}
.flexslides.owl-carousel .owl-dots .owl-dot:hover {
  color: #000;
}
.flexslides.owl-carousel .owl-dots .owl-dot.active {
  color: #000;
  font-weight: 500;
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(1) span:before {
  content: "1";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(2) span:before {
  content: "2";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(3) span:before {
  content: "3";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(4) span:before {
  content: "4";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(5) span:before {
  content: "5";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(6) span:before {
  content: "6";
}

/*  ==========================================================================
	flex--feature (flexfeature--img, flexfeature--video, flexfeature--list-grid, flexfeature--gallery, flexfeature--logos) -- Feature Row
	========================================================================== */
.flexfeature .flex__heading {
  margin-top: 2.5em;
}
@media only screen and (min-width: 1200px) {
  .flexfeature .flexfeature__featurecontainer {
    margin-bottom: 0;
  }
}
.flexfeature .flexfeaturecontent {
  max-width: 28em;
  padding: 0 7.14%;
}
.flexfeature .flexfeaturecontent .flexfeaturecontent__heading {
  margin: 0 0 0.5em;
}
.flexfeature .flexfeaturecontent .flexfeaturecontent__post {
  max-width: 15em;
  margin-top: 3em;
}
.flexfeature .flexfeaturecontent .flexfeaturecontent__post .post {
  margin-bottom: 0;
}
.flexfeature .flexfeaturecontent .flexfeaturecontent__link {
  display: block;
  margin-top: 1em;
}
@media only screen and (min-width: 1000px) {
  .flexfeature--left .flexfeature__contentcontainer {
    padding-left: 7.14%;
  }
  .flexfeature--left .flexfeature__featurecontainer {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1000px) and (-ms-high-contrast: active), only screen and (min-width: 1000px) and (-ms-high-contrast: none) {
  .flexfeature--left .flexfeature__featurecontainer {
    /* As the flex reverse direction doesnt work on IE, add the padding back in */
    padding-right: 1.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .flexfeature--left .flexfeature__contentcontainer {
    padding-left: 1.5em;
  }
}
@media only screen and (min-width: 1000px) {
  .flexfeature--right .flexfeature__contentcontainer {
    padding-right: 7.14%;
  }
  .flexfeature--right .flexfeature__featurecontainer {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1000px) and (-ms-high-contrast: active), only screen and (min-width: 1000px) and (-ms-high-contrast: none) {
  .flexfeature--right .flexfeature__featurecontainer {
    /* As the flex reverse direction doesnt work on IE, add the padding back in */
    padding-left: 1.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .flexfeature--right .flexfeature__contentcontainer {
    padding-right: 1.5em;
  }
}
.flexfeature--img .flexfeature__img {
  background-color: #00164E;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 125% 0 0;
  box-shadow: 0 0 40px 0 rgba(0, 22, 78, 0.15);
}
.flexfeature--img .flexfeature__imgimg {
  display: block;
  width: 100%;
}
.flexfeature--img .flexfeature__caption {
  text-align: left;
  margin-top: 1em;
  color: rgba(0, 22, 78, 0.5);
}
.flexfeature--img .flexfeature__caption:after {
  content: " ";
  display: none;
  width: 1.5em;
  border-bottom: solid 1px #0EA4AF;
  margin: 1em 0 0;
}
@media only screen and (min-width: 1000px) {
  .flexfeature--img .flexfeature__caption:after {
    display: block;
  }
}

.flexfeature--video .flexfeature__video .flexfeature__video__link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.flexfeature--video .flexfeature__video .flexfeature__video__link--vimeo:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 3em;
  text-align: center;
  width: 3em;
  height: 3em;
  margin-top: -1.5em;
  margin-left: -1.5em;
  color: #fff;
  opacity: 0.4;
  -webkit-transition: opacity 250ms ease-out 0ms;
  transition: opacity 250ms ease-out 0ms;
}
.flexfeature--video .flexfeature__video .flexfeature__video__link--vimeo:hover:after {
  opacity: 1;
}
.flexfeature--video .flexfeature__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.flexfeature--list-grid .flexfeature__listgrid {
  margin-bottom: -2em;
}
.flexfeature--list-grid .flexfeature__listgrid .listgrid__item {
  margin-bottom: 2em;
}
.flexfeature--list-grid .flexfeature__listgrid .listgrid__item .listgrid__item__img {
  position: relative;
  width: 3.5em;
  display: block;
  margin: 0 0 1em;
}
.flexfeature--list-grid .flexfeature__listgrid .listgrid__item .listgrid__item__img img {
  width: 100%;
  height: auto;
}
.flexfeature--list-grid .flexfeature__listgrid .listgrid__item .listgrid__item__title {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.flexfeature--list-grid .flexfeature__listgrid .listgrid__item .listgrid__item__link {
  display: block;
  margin-top: 0.5em;
}

.flexfeature--gallery .flexfeature__gallery {
  margin-bottom: calc(-0.75em * 2);
}
@media only screen and (min-width: 550px) {
  .flexfeature--gallery .flexfeature__gallery {
    margin-bottom: calc(-1em * 2);
  }
}
@media only screen and (min-width: 700px) {
  .flexfeature--gallery .flexfeature__gallery {
    margin-bottom: calc(-1.25em * 2);
  }
}
@media only screen and (min-width: 1000px) {
  .flexfeature--gallery .flexfeature__gallery {
    margin-bottom: calc(-1.5em * 2);
  }
}
.flexfeature--gallery .flexfeature__gallery .gallery__row {
  margin-bottom: calc(0.75em * 2);
}
@media only screen and (min-width: 550px) {
  .flexfeature--gallery .flexfeature__gallery .gallery__row {
    margin-bottom: calc(1em * 2);
  }
}
@media only screen and (min-width: 700px) {
  .flexfeature--gallery .flexfeature__gallery .gallery__row {
    margin-bottom: calc(1.25em * 2);
  }
}
@media only screen and (min-width: 1000px) {
  .flexfeature--gallery .flexfeature__gallery .gallery__row {
    margin-bottom: calc(1.5em * 2);
  }
}
.flexfeature--gallery .flexfeature__gallery .gallery__img {
  width: 100%;
  padding: 60% 0 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.flexfeature--gallery .flexfeature__gallery .gallery__img--portrait {
  padding: 120% 0 0 0;
}

.flexfeature--logos .flexfeature__logos .logos__logo {
  padding: 1.5em;
}
.flexfeature--logos .flexfeature__logos .logos__logo .logos__logo__img {
  max-width: 10em;
  margin: 0 auto;
}
.flexfeature--logos .flexfeature__logos .logos__logo .logos__logo__img .logos__logo__img__img {
  width: 100%;
  height: auto;
}
.flexfeature--logos .flexfeature__logos--1 .logos__logo .logos__logo__img {
  max-width: 20em;
}

.flexfeature--stats .flexfeature__stats {
  margin-bottom: -2em;
}
.flexfeature--stats .flexfeature__stats .stats__stat {
  text-align: center;
  margin-bottom: 2em;
}
.flexfeature--stats .flexfeature__stats--1 .stats__stat .stats__stat__heading {
  font-size: 7em;
}

/*  ==========================================================================
	flex--iconlist -- Icon List
	========================================================================== */
.flexiconlist--wside .flex__heading, .flexiconlist--side .flex__heading {
  box-sizing: border-box;
}
.flexiconlist--wside .flex__heading .heading, .flexiconlist--side .flex__heading .heading {
  min-height: 1em;
}
@media only screen and (min-width: 550px) {
  .flexiconlist--wside .flex__heading, .flexiconlist--side .flex__heading {
    width: 83.4%;
    padding: 0 0.5em;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 700px) {
  .flexiconlist--wside .flex__heading, .flexiconlist--side .flex__heading {
    padding: 0 0.625em;
    width: 66.66%;
  }
}
@media only screen and (min-width: 1000px) {
  .flexiconlist--wside .flex__heading, .flexiconlist--side .flex__heading {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 83.4%;
  }
}
.flexiconlist .iconlist {
  margin-top: 2.5em;
  margin-bottom: -2em;
}
@media only screen and (min-width: 700px) {
  .flexiconlist .iconlist {
    margin-bottom: -2.5em;
  }
  .flexiconlist .iconlist.iconlist--rows-4 {
    margin-left: -14%;
    margin-right: -14%;
  }
}
@media only screen and (min-width: 1000px) {
  .flexiconlist .iconlist {
    margin-bottom: -3em;
  }
}
.flexiconlist .iconlist .iconlistitem {
  margin-bottom: 2em;
}
@media only screen and (min-width: 700px) {
  .flexiconlist .iconlist .iconlistitem {
    margin-bottom: 2.5em;
  }
}
@media only screen and (min-width: 1000px) {
  .flexiconlist .iconlist .iconlistitem {
    margin-bottom: 3em;
  }
}
.flexiconlist .iconlist .iconlistitem hr {
  width: 1.25em;
  border-width: 1px 0 0;
  border-color: #0EA4AF;
  border-style: solid;
  margin: 1em 0;
}
.flexiconlist .iconlist .iconlistitem .iconlistitem__heading {
  margin: 0 0 0.5em;
}
.flexiconlist .iconlist .iconlistitem .iconlistitem__img {
  width: 3.5em;
  display: block;
  margin: 0 0 1em;
}

/*  ==========================================================================
	flex--image -- Image
	========================================================================== */
@media only screen and (min-width: 1200px) {
  .fleximg {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.fleximg .fleximg__img {
  box-shadow: 0 0 50px 0 rgba(0, 22, 78, 0.2);
}
.fleximg .flex__bd {
  padding-bottom: 3.5em;
}
@media only screen and (min-width: 700px) {
  .fleximg .flex__bd {
    padding-bottom: 2.5em;
  }
}
.fleximg .fleximg__inner {
  position: relative;
  text-align: center;
  display: table;
  margin: 0 auto;
}
.fleximg .fleximg__caption {
  text-align: left;
  left: 0;
  position: absolute;
  margin-top: 1em;
  color: rgba(0, 22, 78, 0.5);
}
.fleximg .fleximg__caption:after {
  content: " ";
  display: block;
  width: 1.5em;
  border-bottom: solid 1px #0EA4AF;
  margin: 1em 0 0;
}

/*  ==========================================================================
	flex--images -- Images / Gallery
	========================================================================== */
.galleryitem {
  margin-bottom: 2em;
}
.galleryitem .galleryitem__img {
  width: 100%;
  display: block;
}
.galleryitem .galleryitem__caption {
  margin-top: 1em;
  color: rbga(#00164E, 0.5);
}
.galleryitem .galleryitem__caption:after {
  content: " ";
  display: block;
  width: 1.5em;
  border-bottom: solid 1px #0EA4AF;
  margin: 1em 0 0;
}

/*  ==========================================================================
  Flex--shareimgs
	========================================================================== */
.flexshareimgs .flexshareimgs__header {
  text-align: center;
  margin-bottom: 2em;
}

.flexshareimgs .flexshareimgs__header__leader {
  max-width: 28em;
  margin: 0 auto;
}

.flexshareimgs .flex__heading {
  margin: 0 auto 0.5em auto;
  max-width: 15em;
}

.flexshareimgs__item {
  position: relative;
  margin-bottom: 1em;
}

.flexshareimgs__item__link {
  display: block;
  position: relative;
}

.flexshareimgs__item__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4em;
  background: black;
  z-index: 1;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 100%);
}

.flexshareimgs__item__img {
  width: 100%;
  display: block;
}

.flexshareimgs__item__caption {
  color: #ffffff;
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 2;
}

.flexshareimgs__item__share {
  list-style: none;
  position: absolute;
  top: 1em;
  left: 1em;
}

.flexshareimgs__item__share li {
  display: inline-block;
}

.flexshareimgs__item__share .sharelink {
  width: 1em;
  height: 1em;
  line-height: 1em;
}

.flexshareimgs__item__share .shareicon {
  width: 100%;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.65em;
}

.flexshareimgs .gd-g {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.flexshareimgs .gd-u {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

@media only screen and (min-width: 1200px) {
  .flexshareimgs__item__link:after,
.flexshareimgs__item__caption,
.flexshareimgs__item__share {
    opacity: 0;
    -webkit-transition: opacity 250ms ease-out 0ms;
    transition: opacity 250ms ease-out 0ms;
  }

  .flexshareimgs__item:hover .flexshareimgs__item__caption,
.flexshareimgs__item:hover .flexshareimgs__item__link:after,
.flexshareimgs__item:hover .flexshareimgs__item__share {
    opacity: 1;
  }
}
/*  ==========================================================================
	Flex Tile Grid
	========================================================================== */
.flex--tilecols .eventcategorynav {
  border-top: 1px solid #eeeeee;
  background: transparent;
  margin: 0.3em;
  letter-spacing: initial;
}

.flex--tilecols .gd-u {
  padding: 0.3em;
}

.tilecol {
  position: relative;
  display: block;
  background-color: #2388b3;
}

.tilecol:hover .tilecol__img {
  opacity: 0.2;
}

.tilecol h3 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 0.5em;
  box-sizing: border-box;
  z-index: 10;
  letter-spacing: initial;
}

.tilecol__img {
  -webkit-filter: contrast(1.5) grayscale(100%);
  filter: contrast(1.5) grayscale(100%);
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  width: 100%;
  padding: 55% 0 0 0;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}

.flex--tilecols .gd-u-1 .tilecol__img {
  padding: 33% 0 0 0;
}

@media only screen and (min-width: 550px) {
  .gd-u-gt550-1-4 .tilecol__img {
    padding: 70% 0 0 0;
  }

  .flex--tilecols .gd-u-1 .tilecol__img {
    padding: 55% 0 0 0;
  }
}
/*  ==========================================================================
	Flex Donations
	========================================================================== */
.flex--donations {
  background: #2dafe6;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #18458f 0%, #2dafe6 73%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(45deg, #18458f 0%, #2dafe6 73%);
  background: linear-gradient(45deg, #18458f 0%, #2dafe6 73%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#18458f", endColorstr="#2dafe6", GradientType=1);
}

.flex--donations h3 {
  margin-top: 0;
  color: rgba(0, 0, 0, 0.4);
}

.flex--donations .donations__leftcontent .btn {
  background: rgba(0, 0, 0, 0.4);
}

.flex--donations .donations__leftcontent .btn:hover {
  background: #2896d0;
}

.donations__form {
  position: relative;
}

.donations__option {
  padding-right: 0.5em;
  padding-left: 0;
}

.donations__option a {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75em;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
}

.donation__form__submit {
  margin-top: -2.9em;
  padding: 0.5em 1.5em;
  z-index: 10;
  position: absolute;
  right: 0;
}

#donation__form__amount {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #fff;
  font-weight: 800;
  padding-left: 3em;
  padding-right: 13em;
  -moz-appearance: textfield;
  border-radius: 3em;
}

#donation__form__amount::-webkit-outer-spin-button,
#donation__form__amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.donation__form__input {
  position: relative;
  margin-top: 1em;
}

.donation__form__input::before {
  content: "£";
  position: absolute;
  color: #fff;
  top: 1.5em;
  left: 1.5em;
  font-weight: 800;
}

.donations__leftcontent {
  margin-bottom: 2em;
}

@media only screen and (min-width: 1200px) {
  .donations__leftcontent {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .donations__leftcontent {
    margin-right: 4em;
  }
}
/*  ==========================================================================
	Flex Project
	========================================================================== */
.flex--project .projectcol {
  padding: 0;
  position: relative;
}

.flex--project .projectcol:first-child {
  background: #e7f8ff;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}

.flex--project .projectcol:first-child:hover {
  -ms-transform: translateX(-5px) translateY(-5px);
      transform: translateX(-5px) translateY(-5px);
  -webkit-transform: translateX(-5px) translateY(-5px);
  box-shadow: 5px 5px 0px 0px #dadada;
}

.flex--project.unactive .projectcol:first-child {
  background: #f5f5f5;
}

.flex--project.unactive .projectcol__status {
  color: #f39a24;
}

.flex--project .projectcol__wrapper {
  padding: 10%;
}

.projectcol__pre_title {
  margin-bottom: 0.5em;
}

.projectcol__title {
  margin-top: 0;
}

.projectcol__details {
  margin: 0;
}

.projectcol__details .gd-u {
  padding-left: 0;
  padding-right: 0.5em;
}

.projectcol__details {
  color: #5f6163;
}

.projectcol__details h5 {
  opacity: 0.5;
  font-weight: 500;
}

.projectcol__summarytitle {
  margin-top: 0;
}

.flex--project .projectcol:first-child::after {
  content: "";
  position: absolute;
  height: 3em;
  width: 1px;
  background: #2dafe6;
  bottom: -1.5em;
  left: 10%;
}

@media only screen and (min-width: 550px) {
  .flex--project .projectcol:first-child::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 1px;
    background: #2dafe6;
    top: 34%;
    bottom: auto;
    left: auto;
    right: -10%;
    display: none;
  }

  .projectcol__summarytitle {
    position: relative;
  }

  .projectcol__summarytitle:before {
    content: "";
    position: absolute;
    width: 20%;
    height: 1px;
    background: #2dafe6;
    top: 0.5em;
    left: -30%;
  }

  .flex--project.project--right .projectcol__summarytitle:before {
    right: -30%;
    left: auto;
  }

  .flex--project .projectcol:last-child .projectcol__wrapper {
    padding: 15%;
  }

  .flex--project.project--right .projectcol {
    float: right;
  }
}
/*  ==========================================================================
	Flex Featured Projects
	========================================================================== */
.flex--featuredprojects {
  overflow: hidden;
}

/*  ==========================================================================
	Flex Map
	========================================================================== */
.acf-map {
  width: 100%;
  height: 400px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

a[href^="http://maps.google.com/maps"] {
  display: none !important;
}

a[href^="https://maps.google.com/maps"] {
  display: none !important;
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
  display: none;
}

.gmnoprint div {
  background: none !important;
}

.map__details {
  width: 90%;
  margin-top: -7em;
  background: #fff;
  z-index: 10;
  left: 5%;
  padding: 2% 10%;
  box-sizing: border-box;
  position: relative;
}

.map__details__title {
  text-align: center;
  max-width: 20em;
  margin: 1em auto;
}

.map__details__directions {
  display: block;
  margin-top: 1em;
}

.map__details__cta {
  text-align: center;
  margin-top: 1em;
}

.map__details__cta a {
  margin: 0 0.5em 0.75em;
  display: inline-block;
}

@media only screen and (min-width: 550px) {
  .map__details {
    width: 70%;
    left: 15%;
    margin-top: -5em;
  }
}
/*  ==========================================================================
	flex--featuredposts -- Featured Posts
	========================================================================== */
.flex--featuredposts .fpleader {
  text-align: center;
  max-width: 35em;
  margin: 0 auto 2em;
}
.flex--featuredposts .fpleader p {
  margin: 0 0 0.5em;
}
@media only screen and (min-width: 700px) {
  .flex--featuredposts .fpleader {
    text-align: left;
  }
  .flex--featuredposts .fpleader .leader {
    margin-right: 10%;
  }
}
.flex--featuredposts .flexpostcount--1 .post {
  margin-top: 10%;
}
@media only screen and (min-width: 700px) {
  .flex--featuredposts .flexpostcount--1 .post {
    margin-top: 0;
  }
}

/*  ==========================================================================
	flex--quote -- Quote
	========================================================================== */
.flexquote {
  position: relative;
  /* flexquote--img */
}
.flexquote .flexquote__bd {
  position: relative;
  z-index: 2;
}
.flexquote .flexquote__bd .flexquote__quote {
  color: #0EA4AF;
  position: relative;
  margin: 0;
  padding: 0 0 0 1.25em;
}
@media only screen and (min-width: 700px) {
  .flexquote .flexquote__bd .flexquote__quote {
    width: 85%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .flexquote .flexquote__bd .flexquote__quote {
    width: 75%;
  }
}
@media only screen and (min-width: 1400px) {
  .flexquote .flexquote__bd .flexquote__quote {
    width: 60%;
  }
}
.flexquote .flexquote__bd .flexquote__quote p {
  margin: 0 0 0.5em;
}
.flexquote .flexquote__bd .flexquote__quote .flexquote__quotemark {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  height: 0.75em;
  font-weight: 700;
}
.flexquote .flexquote__bd .flexquote__cite {
  color: #00164E;
  position: relative;
  padding-left: calc(25% + 1em);
  font-style: normal;
  display: block;
  margin: 1.75em 0 0 0;
}
.flexquote .flexquote__bd .flexquote__cite:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 25%;
  border-top: 1px solid #00164E;
}
@media only screen and (min-width: 1000px) {
  .flexquote .flexquote__bd .flexquote__cite {
    padding-left: calc(20% + 1em);
  }
  .flexquote .flexquote__bd .flexquote__cite:before {
    width: 20%;
  }
}
.flexquote.flexquote--withimg {
  background: #000;
  overflow: hidden;
}
.flexquote.flexquote--withimg .flexquote__quote {
  color: #fff;
}
.flexquote.flexquote--withimg .flexquote__cite {
  color: #fff;
}
.flexquote.flexquote--withimg .flexquote__cite:before {
  border-color: #fff;
}
.flexquote.flexquote--withimg .flexquote__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: -webkit-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
  -webkit-transition: opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  transition: opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
  transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
      transform: scale(1.1, 1.1);
}
.flexquote.flexquote--withimg .flexquote__img.effect--ready {
  opacity: 0.66;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
}

/*  ==========================================================================
	flex--video -- Video
	========================================================================== */
@media only screen and (min-width: 1200px) {
  .flexvideo {
    width: 85%;
    margin: 0 auto;
  }
}
.flexvideo .flexvideo__videocode {
  padding: 56.6% 0 0;
  position: relative;
  box-shadow: 0 0 50px 0 rgba(0, 22, 78, 0.2);
}
.flexvideo .flexvideo__videocode * {
  display: none;
}
.flexvideo .flexvideo__videocode iframe {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.flexvideo .flexvideo__caption {
  max-width: 48em;
  margin-top: 1em;
  color: rgba(0, 22, 78, 0.5);
}
.flexvideo .flexvideo__caption:after {
  content: " ";
  display: block;
  width: 1.5em;
  border-bottom: solid 1px #0EA4AF;
  margin: 1em 0 0;
}

/*  ==========================================================================
	flex--cta -- Call to action
	========================================================================== */
.flex--cta--solid .flexcta__bd {
  background: #0EA4AF;
  padding: 1.5em;
}
@media only screen and (max-width: 699px) {
  .flex--cta--solid .flexcta__bd {
    padding: 0;
  }
}
.flex--cta--solid .flexcta__bd .flexcta__leader {
  color: #fff;
}

.flexcta {
  position: relative;
  /* flexquote--img */
}
.flexcta .flexcta__bd {
  position: relative;
  z-index: 2;
}
.flexcta .flexcta__bd .flexcta__leader {
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
}
.flexcta .flexcta__bd .flexcta__cta a {
  margin: 0 0.5em 0.75em;
  display: inline-block;
}
.flexcta.flexcta--withimg {
  color: #fff;
  background: #000;
  overflow: hidden;
}
.flexcta.flexcta--withimg .flexcta__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  opacity: 0;
  -webkit-transition: -webkit-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
  -webkit-transition: opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  transition: opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
  transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms, -webkit-transform 2000ms ease-out 0ms;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
      transform: scale(1.1, 1.1);
}
.flexcta.flexcta--withimg .flexcta__img.effect--ready {
  opacity: 0.66;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
}

/*  ==========================================================================
	flex--team -- Team
	========================================================================== */
.teammember .teammember__heading {
  max-width: 400px;
  margin: 0 auto 1em auto;
}
@media only screen and (min-width: 700px) {
  .teammember .teammember__heading {
    margin: 0 0 1em 0;
  }
}
.teammember h3 {
  margin-bottom: 0.5em;
}
.teammember hr {
  width: 1.25em;
  border-width: 1px 0 0;
  border-color: #0EA4AF;
  border-style: solid;
  margin: 1em 0;
}
.teammember .teammember__bio {
  max-width: 400px;
  margin: 0 auto 1em auto;
}
@media only screen and (min-width: 700px) {
  .teammember .teammember__bio {
    margin: 0 0 1em 0;
  }
}
.teammember .teammember__img {
  width: 50%;
  padding: 50% 0 0;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 22, 78, 0.15);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 auto;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
@media only screen and (min-width: 700px) {
  .teammember .teammember__img {
    margin: 0;
  }
}
.teammember .gd-u {
  text-align: center;
}
@media only screen and (min-width: 700px) {
  .teammember .gd-u {
    text-align: left;
  }
}

/*  ==========================================================================
	Posts/Projects/Events Carousel
	========================================================================== */
.flex--featuredprojects .owl-stage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex--featuredprojects .owl-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: auto !important;
}

.flex--carousel .carousel,
.carouselsection .carousel {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
.flex--carousel .carousel.owl-loaded,
.carouselsection .carousel.owl-loaded {
  opacity: 1;
}
.flex--carousel .project,
.carouselsection .project {
  height: 100%;
}
.flex--carousel .post,
.carouselsection .post {
  padding-bottom: 0;
}
.flex--carousel .post:after,
.carouselsection .post:after {
  right: -20px;
}

.carousel__header {
  position: relative;
  padding: 1.5em 0;
  border-top: 1px solid rgba(0, 22, 78, 0.2);
  text-align: left;
}
.carousel__header h5 {
  margin: 0;
  width: 80%;
}
.carousel__header .carouselcount {
  color: #0EA4AF;
  margin-right: 1em;
  margin-left: 0;
  position: relative;
  background: rgba(14, 164, 175, 0.2);
  border-radius: 50%;
  width: 2.25em;
  height: 2.25em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  margin-top: 0;
}
.carousel__nav li {
  display: inline-block;
}
.carousel__nav .btn {
  margin: 0;
  display: none;
}
@media only screen and (min-width: 550px) {
  .carousel__nav .btn {
    display: block;
  }
}
.carousel__nav .carousel__navitem {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1.25em;
  border-right: 1px solid rgba(0, 22, 78, 0.2);
}
.carousel__nav .carousel__navitem:last-child {
  border: none;
}
.carousel__nav .carousel__navitem .fas {
  font-size: 10px;
}

@media only screen and (min-width: 700px) {
  .featuredprojects--3 .carousel__navitem,
.featuredposts--3 .carousel__navitem {
    display: none;
  }
}
@media only screen and (min-width: 1000px) {
  .featuredprojects--4 .carousel__navitem,
.featuredposts--4 .carousel__navitem {
    display: none;
  }
}
/*  ==========================================================================
	flex event gallery
	========================================================================== */
.eventgallery__img {
  width: 24%;
  padding: 24% 0 0 0;
  margin: 0.5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
}

.flex--eventgallery .flex__bd .eventgallery__img:first-child {
  width: 49%;
  padding: 49% 0 0 0;
}

.eventgallery--right .flex__bd:nth-child(2n + 1) .eventgallery__img {
  float: right;
}

.eventgallery--left .flex__bd:nth-child(2n) .eventgallery__img {
  float: right;
}

/*  ==========================================================================
	Flex Project
	========================================================================== */
.flex--project .projectcol {
  border-top: 0 solid rgba(0, 22, 78, 0.2);
  padding: 0;
  position: relative;
}
.flex--project .projectcol:first-child {
  background: #fff;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.flex--project .projectcol:first-child:hover {
  -webkit-transform: translateX(-5px) translateY(-5px);
  -ms-transform: translateX(-5px) translateY(-5px);
      transform: translateX(-5px) translateY(-5px);
  box-shadow: 0px 0px 10px 0px rgba(0, 22, 78, 0.15);
}
.flex--project .projectcol__wrapper {
  padding: 10%;
}
.flex--project .project__location {
  max-width: 20em;
}
.flex--project .project__sml span {
  display: block;
  margin-bottom: 0.25em;
  margin-left: 0;
}
.flex--project .projectcol__title {
  margin-top: 0;
}
.flex--project .projectcol__details {
  margin: 0;
  color: #5f6163;
}
.flex--project .projectcol__details .gd-u {
  padding-left: 0;
  padding-right: 0.5em;
}
.flex--project.unactive .projectcol:first-child {
  background: #f5f5f5;
}
.flex--project.unactive .projectcol__status {
  color: #f39a24;
}

.projectcol__details h5 {
  opacity: 0.5;
  font-weight: 500;
}

.projectcol__summarytitle {
  margin-top: 0;
}

.flex--project .projectcol:first-child::after {
  content: "";
  position: absolute;
  height: 3em;
  width: 1px;
  background: #2dafe6;
  bottom: -1.5em;
  left: 10%;
}

@media only screen and (min-width: 550px) {
  .flex--project .projectcol:first-child::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 1px;
    background: #2dafe6;
    top: 34%;
    bottom: auto;
    left: auto;
    right: -10%;
    display: none;
  }

  .projectcol__summarytitle {
    position: relative;
  }

  .projectcol__summarytitle:before {
    content: "";
    position: absolute;
    width: 20%;
    height: 1px;
    background: #2dafe6;
    top: 0.5em;
    left: -30%;
  }

  .flex--project.project--right .projectcol__summarytitle:before {
    right: -30%;
    left: auto;
  }

  .flex--project .projectcol:last-child .projectcol__wrapper {
    padding: 15%;
  }

  .flex--project.project--right .projectcol {
    float: right;
  }
}
/*  ==========================================================================
	Flexchart General
	========================================================================== */
.flexchart .chartheading {
  margin: 0 0 0.25em;
}
.flexchart .chart {
  padding: 100% 0 0;
  position: relative;
  margin-bottom: 1.5em;
}
.flexchart .chart .chart__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flexchart .chart .chart__data {
  display: none;
}
.flexchart .chart-yaxis-adjust {
  margin-left: 0px;
}

/* Legends */
.flex__legend {
  text-align: left;
  color: #888;
}
.flex__legend .legend__item {
  display: block;
  margin: 0 1.5em 0.5em 0;
  padding-left: 2em;
  position: relative;
}
.flex__legend span {
  width: 1em;
  height: 1em;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.flex__legend strong {
  display: inline-block;
  padding: 0 0.5em 0 0;
}

/*  ==========================================================================
	flexpiechart -- Pie Chart
	========================================================================== */
.flexpiechart .flex__legend {
  text-align: center;
  margin-top: 2em;
}
.flexpiechart .flex__legend .legend__item {
  display: inline-block;
}
@media only screen and (min-width: 700px) {
  .flexpiechart .flex__legend {
    text-align: left;
    margin-top: 0;
  }
  .flexpiechart .flex__legend .legend__item {
    display: block;
  }
}
.flexpiechart .flexpiechart__content {
  margin-bottom: 2em;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .flexpiechart .flexpiechart__content {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
}

/*  ==========================================================================
	flexbarchart -- Bar Chart
	========================================================================== */
.flexbarchart {
  /* Graph styling */
}
.flexbarchart .flex__legend {
  text-align: center;
}
.flexbarchart .flex__legend .legend__item {
  display: inline-block;
}
@media only screen and (min-width: 700px) {
  .flexbarchart .flex__legend {
    text-align: left;
  }
  .flexbarchart .flex__legend .legend__item {
    display: block;
  }
}
.flexbarchart .flexbarchart__content {
  margin-bottom: 2em;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .flexbarchart--reg .flexbarchart__content {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
}
.flexbarchart .chart--bar--large {
  padding: 66% 0 0;
}

/*  ==========================================================================
	flexbarchartstacked -- Stacked Bar Chart
	========================================================================== */
.flexbarchartstacked {
  /* Graph styling */
}
.flexbarchartstacked .flexbarchartstacked__content {
  margin-bottom: 2em;
  text-align: center;
}
@media only screen and (min-width: 700px) {
  .flexbarchartstacked .flexbarchartstacked__content {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
}
.flexbarchartstacked .chart--barstacked {
  margin: 5% 0 5%;
}
.flexbarchartstacked .chart .stackedcanvas {
  width: 10%;
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  margin-left: -5%;
}
.flexbarchartstacked .chart .stackeditem {
  position: relative;
}
.flexbarchartstacked .chart .stackeditem .stackeditem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(0, 25deg);
  -ms-transform: skew(0, 25deg);
      transform: skew(0, 25deg);
}
.flexbarchartstacked .chart .stackeditem .stackeditem__info {
  position: absolute;
  left: 100%;
  top: 1.5em;
  padding: 0.75em 0 0.75em;
  box-sizing: border-box;
  border-top: dotted 1px #ddd;
  width: 450%;
  text-align: right;
  color: #666;
}
.flexbarchartstacked .chart .stackeditem:nth-child(even) .stackeditem__info {
  right: 100%;
  left: auto;
  text-align: left;
  top: 0.25em;
}
.flexbarchartstacked .chart .stackeditem .stackeditem__value {
  margin: 0;
}

/*  ==========================================================================
	chart--horizstacked -- Horizontal Stacked Graph
	========================================================================== */
.flexhorizstacked {
  /* Graph styling */
}
.flexhorizstacked .horizontalstackedgraph {
  margin: 0 0 0em;
}
.flexhorizstacked .horizontalstackedgraph .horizontalstackedgraph__heading {
  margin: 0 0 0.5em;
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked {
  height: 3.5em;
  padding: 0;
  margin: 0 0 3em 0;
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked .stackedcanvas {
  width: 100%;
  position: relative;
  height: 3em;
  left: 0;
  top: 0;
  margin: 0;
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked .stackeditem {
  position: relative;
  float: left;
  height: 100%;
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked .stackeditem .stackeditem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(-25deg, 0deg);
  -ms-transform: skew(-25deg, 0deg);
      transform: skew(-25deg, 0deg);
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked .stackeditem .stackeditem__value {
  margin: 0;
}
.flexhorizstacked .horizontalstackedgraph .chart--horizstacked .stackeditem .stackeditem__info {
  position: absolute;
  left: 1.5em;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 1em 0 0 0.5em;
  box-sizing: border-box;
  border: none;
  width: auto;
  color: #888;
  text-align: left;
  border-left: dotted 1px #888;
}

/*  ==========================================================================
	chart--line -- Line Graph
	========================================================================== */
.flexlinegraph .content {
  text-align: center;
}
.flexlinegraph .flex__legend .legend__item {
  display: inline-block;
}

/*================= Sections =================*/
/*  ==========================================================================
	Events Template
	========================================================================== */
/* Event Category Nav */
.eventcategorynav {
  background: #e7f8ff;
  padding: 1.5em 0;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.eventcategorynav span {
  display: none;
}

.eventcategorynav a {
  margin-left: 0.5em;
  display: inline-block;
}

.eventcategorynav a:first-child {
  margin-left: 0;
}

@media only screen and (min-width: 550px) {
  .eventcategorynav span {
    display: inline-block;
  }

  .eventcategorynav a,
.eventcategorynav a:first-child {
    margin-left: 1em;
  }
}
/*  ==========================================================================
	Events Category - taxonomy-eventcategories.php
	========================================================================== */
.events--flex {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid #eeeeee;
}

.events--flex .gd-u,
.archive .events .gd-u {
  padding: 0.25em;
}

.archive .events {
  padding: 1em 0;
}

.archive .events .gd-u {
  margin-bottom: 0.25em;
}

/*  ==========================================================================
	Single Event
	========================================================================== */
.eventdetails .eventdetails__details h3::after {
  content: "";
  width: 1.25em;
  border-width: 1px 0 0;
  border-color: #0EA4AF;
  border-style: solid;
  margin: 0.75em 0 1em;
  display: block;
}

.eventtabs .eventtab {
  border-top: 1px solid rgba(0, 22, 78, 0.2);
}
.eventtabs .eventtab:last-child {
  border-bottom: 1px solid rgba(0, 22, 78, 0.2);
}
.eventtabs .eventtab .eventtab__header {
  cursor: pointer;
  position: relative;
  padding: 1.5em 0;
}
.eventtabs .eventtab .eventtab__header .eventtab__toggle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.eventtabs .eventtab .eventtab__header .eventtab__toggle::after {
  content: "";
  font-family: "font awesome 5 pro";
  font-weight: 400;
  padding: 0 1.5em;
  color: #0EA4AF;
}
.eventtabs .eventtab .eventtab__body {
  margin: 0 -8.28%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(0, -1em);
  -ms-transform: translate(0, -1em);
      transform: translate(0, -1em);
  -webkit-transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms;
  transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
}
.eventtabs .eventtab.eventtab--open .eventtab__body {
  -webkit-transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms;
  transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, transform 150ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  height: auto;
  opacity: 1;
  -webkit-transform: translate(0, 0em);
  -ms-transform: translate(0, 0em);
      transform: translate(0, 0em);
}
.eventtabs .eventtab.eventtab--open .eventtab__header .eventtab__toggle {
  content: "";
}

/*  ==========================================================================
	Single Event - Registration Form
	========================================================================== */
.registration__form {
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1000px) {
  .registration__form {
    margin-left: 0;
  }
}
.registration__form .leader {
  max-width: 24em;
  line-height: 1.4;
}
.registration__form input[type=button] {
  background: #EE7203 !important;
  color: #fff;
  font-weight: 700;
}

.registration__sidebar .registration__sidebarinner {
  background: rgba(14, 164, 175, 0.2);
  padding: 1.75em 1.5em;
}
.registration__sidebar .sidebar__block {
  padding: 0.75em 0;
}
.registration__sidebar .sidebar__block .block__cite {
  font-style: normal;
  position: relative;
  padding-left: 2em;
}
.registration__sidebar .sidebar__block .block__cite::after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1.5em;
  border-top: 1px solid #00164E;
}

a.anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -65px;
}

.eventmenu,
.projectmenu {
  background: #e7f8ff;
  width: 100%;
  /* max-width: 1500px; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.eventmenu.sticky,
.projectmenu.sticky {
  position: fixed;
  top: 0;
  margin-top: 100px;
  z-index: 20;
}

.tabsection {
  overflow: hidden;
}

.eventmenu__bd {
  margin: 0;
}

.eventmenu__bd,
.projectmenu__bd {
  height: 100%;
}

.eventmenu ul,
.projectmenu ul {
  list-style: none;
  margin: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  text-align: center;
}

.projectmenu__btnwrap .btn,
.eventmenu__btnwrap .btn {
  margin: 0;
  float: right;
}

.projectmenu__btnwrap,
.eventmenu__btnwrap {
  display: none;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
}

.eventmenu li,
.projectmenu li {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 0.8em;
  height: 100%;
}

.eventmenu li a,
.projectmenu li a {
  display: block;
  padding: 1em;
  box-sizing: border-box;
}

.eventmenu li.selected,
.projectmenu li.selected {
  background-color: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.eventmenu.sticky li.selected,
.projectmenu.sticky li.selected {
  margin: 0.5em 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.eventmenu li.selected:after,
.projectmenu li.selected:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: #fff;
}

.eventmenu.sticky li.selected:after,
.projectmenu.sticky li.selected:after {
  display: none;
}

.tabsection__eventdetails .gd-u {
  padding: 0;
}

.single-project .project__details {
  text-align: center;
}

@media only screen and (min-width: 550px) {
  .eventmenu__bd {
    margin: 0 7.14%;
  }

  .eventmenu li,
.projectmenu li {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 1em;
  }
}
@media only screen and (min-width: 900px) {
  .eventmenu__bd:before,
.projectmenu__bd:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

  .eventmenu ul,
.projectmenu ul {
    width: 60%;
    text-align: left;
  }

  .projectmenu__btnwrap,
.eventmenu__btnwrap {
    display: inline-block;
    text-align: center;
    width: 38%;
  }

  .eventmenu li a,
.projectmenu li a {
    padding: 0 0.75em;
  }
}
@media only screen and (min-width: 900px) {
  .eventmenu li a,
.projectmenu li a {
    padding: 1.5em 1em;
  }

  .eventmenu.sticky li a,
.projectmenu.sticky li a {
    padding: 1em;
  }
}
@media only screen and (min-width: 1000px) {
  a.anchor {
    top: -76px;
  }

  .eventmenu ul,
.projectmenu ul {
    width: 70%;
  }

  .projectmenu__btnwrap,
.eventmenu__btnwrap {
    width: 29%;
  }
}
/* Firefox Fix */
@-moz-document url-prefix() {
  a.anchor--project {
    top: -100px;
  }

  @media only screen and (min-width: 1000px) {
    a.anchor--project {
      top: -140px;
    }
  }
}
@media only screen and (min-width: 1200px) {
  .eventmenu ul,
.projectmenu ul {
    width: 75%;
  }

  .projectmenu__btnwrap,
.eventmenu__btnwrap {
    width: 24%;
  }
}
/* ------ Registration form template ------ */
.registration__eventdetails .eventdetails__title h2 {
  margin-top: 0;
}

.ballot_place_message {
  background: #e7f8ff;
  padding: 2em;
  border: 1px solid #2dafe6;
  box-sizing: border-box;
  color: #18438d;
}

.ballot_place_message h3 {
  margin-top: 0;
}

.registration-success .ballot_place_message {
  display: none;
}

.justgiving {
  margin-top: 4em;
  text-align: center;
  display: none;
}

.registration-success .justgiving {
  display: block;
}

.registration-success .nf-response-msg {
  text-align: center;
  margin-top: 0;
}

.registration-success .nf-response-msg h2 {
  font-weight: 800;
  color: #18438d;
  margin: 0 auto 0.25em auto;
  max-width: 20em;
}

.registration-success .nf-response-msg h3 {
  text-transform: none;
  font-size: 1.5em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 20em;
}

.justgiving__leader {
  padding-bottom: 1em;
  max-width: 25em;
  margin: 0 auto;
}

.justgiving__logo {
  background-image: url("../img/jg-logo.svg");
  background-size: 100% auto;
  background-position: left center;
  background-repeat: no-repeat;
  width: 60%;
  padding: 14% 0 0 0;
  margin: 0.5em auto;
}

.application_process {
  margin-top: 2em;
}

.application_process_step {
  margin-left: 40px;
  position: relative;
}

.application_process_step::before {
  content: "1";
  background: #18448e;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: -40px;
  top: -7px;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-weight: 900;
}

.application_process__list .application_process_step:nth-child(2)::before {
  content: "2";
}

.application_process__list .application_process_step:nth-child(3)::before {
  content: "3";
}

.application_process__list .application_process_step:nth-child(4)::before {
  content: "4";
}

.application_process__list .application_process_step:nth-child(5)::before {
  content: "5";
}

.application_process__list .application_process_step:nth-child(6)::before {
  content: "6";
}

.application_process__list .application_process_step:nth-child(7)::before {
  content: "7";
}

.application_process__list .application_process_step:nth-child(8)::before {
  content: "8";
}

.application_process__list .application_process_step:nth-child(9)::before {
  content: "9";
}

.application_process__list .application_process_step:nth-child(10)::before {
  content: "10";
}

.application_process__list .application_process_step:nth-child(11)::before {
  content: "11";
}

@media only screen and (min-width: 550px) {
  .justgiving__logo {
    width: 35%;
    padding: 10% 0 0 0;
  }
}
@media only screen and (min-width: 700px) {
  .justgiving__logo {
    width: 50%;
    padding: 12% 0 0 0;
  }
}
@media only screen and (min-width: 900px) {
  .registration_form {
    width: 90%;
  }

  .registration-success .registration_form {
    width: 100%;
  }

  .justgiving__logo {
    width: 35%;
    padding: 7% 0 0 0;
  }
}

/*# sourceMappingURL=style.css.map */