@charset "UTF-8";
/* --------------------------------- *
 * PARTIALS                          *
 * --------------------------------- */
/* --------------------------------- *
 * MIXINS.SCSS                       *
 * --------------------------------- */
/**
 * Media query mixin.
 * 
 * Looks through the user defined map of media queries and outputs the content
 * in the found query.
 * 
 * Can also take a custom query.
 */
/**
 * Hover/active/focus state mixin
 * 
 * Adds styles for interaction states
 */
/**
 * Transition mixin.
 * 
 * Looks through the user defined map of transitions and outputs the transition
 * if it is found. Otherwise it will output a custom transition.
 * 
 * Properties can be specified to limit the transition to specific properties.
 */
/* --------------------------------- *
 * TESTS                             *
 * --------------------------------- */
/**
 * This mixin displays the current media query name and actual query, so that
 * you can quickly see in which breakpoint you are.
 */
/* --------------------------------- *
 * NORMALIZE.SCSS                    *
 * --------------------------------- */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

/**
 * 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; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 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 and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 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 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/* --------------------------------- *
 * BOILERPLATE.SCSS                  *
 * --------------------------------- */
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers:
 * http://juicystudio.com/article/screen-readers-display-none.php
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* --------------------------------- *
 * BASE                              *
 * --------------------------------- */

@font-face {
  font-family: 'Relato Sans';
  src: url("../fonts/relatosansot-medium-webfont.eot");
  src: url("../fonts/relatosansot-medium-webfont.eot?#iefix") format("embedded-opentype"),
  url("../fonts/relatosansot-medium-webfont.woff2") format("woff2"),
  url("../fonts/relatosansot-medium-webfont.woff") format("woff"),
  url("../fonts/relatosansot-medium-webfont.ttf") format("truetype"),
  url("../fonts/relatosansot-medium-webfont.svg#relato_sansmedium") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?w0xmco");
  src: url("../fonts/icomoon.eot?w0xmco#iefix") format("embedded-opentype"),
  url("../fonts/icomoon.ttf?w0xmco") format("truetype"),
  url("../fonts/icomoon.woff?w0xmco") format("woff"),
  url("../fonts/icomoon.svg?w0xmco#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-arrow-r:before {
  content: "\e900"; }

.icon-arrow-l:before {
  content: "\e901"; }

/* --------------------------------- *
 * VARIABLES                         *
 * --------------------------------- */
/* @font-face {
  font-family: 'Relato Sans';
  src:
  url('../fonts/relatosansot-regular-webfont.woff2') format('woff2'),
       url('../fonts/relatosansot-regular-webfont.woff') format('woff'),
       url('../fonts/relatosansot-regular-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
    font-family: 'Relato Sans';
    src: url('../fonts/relatosansot-semibold-webfont.woff2') format('woff2'),
         url('../fonts/relatosansot-semibold-webfont.woff') format('woff'),
         url('../fonts/relatosansot-semibold-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
} */
/* --------------------------------- *
 * MEDIA QUERIES                     *
 * --------------------------------- */
/* --------------------------------- *
 * TYPOGRAPHY                        *
 * --------------------------------- */
body {
  font-family: "Relato Sans", "Helvetica", sans-serif;
  color: #2C2A29; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Relato Sans", "Helvetica", sans-serif;
  font-weight: 400;
  color: #2C2A29;
  margin-bottom: 1.375rem;
  line-height: 1.25; }
  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
  .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0; }

h1, .h1 {
  font-size: 1.875rem; }
  @media screen and (min-width: 26.5625em) {
    h1, .h1 {
      font-size: 2rem; } }
  @media screen and (min-width: 48em) {
    h1, .h1 {
      line-height: 1;
      font-size: 3.25rem; } }

h2, .h2 {
  font-size: 1.75rem; }
  @media screen and (min-width: 26.5625em) {
    h2, .h2 {
      font-size: 2rem; } }
  @media screen and (min-width: 48em) {
    h2, .h2 {
      font-size: 2.25rem; } }

h3, .h3 {
  font-size: 1.25rem; }
  @media screen and (min-width: 26.5625em) {
    h3, .h3 {
      font-size: 1.5rem; } }
  @media screen and (min-width: 48em) {
    h3, .h3 {
      font-size: 1.75rem; } }

h4, .h4 {
  font-size: 1.125rem; }
  @media screen and (min-width: 26.5625em) {
    h4, .h4 {
      font-size: 1.375rem; } }
  @media screen and (min-width: 48em) {
    h4, .h4 {
      font-size: 1.5625rem; } }

p, li {
  font-size: 1rem;
  line-height: 1.6; }

p.lead {
  font-family: "Relato Sans", "Helvetica", sans-serif;
  font-size: 1.25rem;
  color: #2C2A29; }
  @media screen and (min-width: 48em) {
    p.lead {
      font-size: 1.5rem; } }

.module p,
.module li {
  max-width: 53.75rem; }

ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  ul:not([class]) {
    list-style-type: disc;
    padding-left: 1.5rem; }

a:not([class]) {
  display: inline;
  color: #2C2A29;
  font-weight: bold;
  border-bottom: 2px solid #62B5E5;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: color;
  transition-property: color; }
  a:not([class]):focus, a:not([class]):hover, a:not([class]):active {
    text-decoration: none;
    color: #62B5E5; }

.module--green a:not([class]),
.module .module__sub--green a:not([class]) {
  border-bottom-color: #6BA539; }
  .module--green a:not([class]):focus, .module--green a:not([class]):hover, .module--green a:not([class]):active,
  .module .module__sub--green a:not([class]):focus,
  .module .module__sub--green a:not([class]):hover,
  .module .module__sub--green a:not([class]):active {
    color: #6BA539; }

.module--red a:not([class]),
.module .module__sub--red a:not([class]) {
  border-bottom-color: #F9423A; }
  .module--red a:not([class]):focus, .module--red a:not([class]):hover, .module--red a:not([class]):active,
  .module .module__sub--red a:not([class]):focus,
  .module .module__sub--red a:not([class]):hover,
  .module .module__sub--red a:not([class]):active {
    color: #F9423A; }

.module--purple a:not([class]),
.module .module__sub--purple a:not([class]) {
  border-bottom-color: #A77BCA; }
  .module--purple a:not([class]):focus, .module--purple a:not([class]):hover, .module--purple a:not([class]):active,
  .module .module__sub--purple a:not([class]):focus,
  .module .module__sub--purple a:not([class]):hover,
  .module .module__sub--purple a:not([class]):active {
    color: #A77BCA; }

.module--orange a:not([class]),
.module .module__sub--orange a:not([class]) {
  border-bottom-color: #ED8B00; }
  .module--orange a:not([class]):focus, .module--orange a:not([class]):hover, .module--orange a:not([class]):active,
  .module .module__sub--orange a:not([class]):focus,
  .module .module__sub--orange a:not([class]):hover,
  .module .module__sub--orange a:not([class]):active {
    color: #ED8B00; }

.module--blue a:not([class]),
.module .module__sub--blue a:not([class]) {
  border-bottom-color: #62B5E5; }
  .module--blue a:not([class]):focus, .module--blue a:not([class]):hover, .module--blue a:not([class]):active,
  .module .module__sub--blue a:not([class]):focus,
  .module .module__sub--blue a:not([class]):hover,
  .module .module__sub--blue a:not([class]):active {
    color: #62B5E5; }

p strong,
li strong,
p b,
li b {
  font-family: "Relato Sans", "Helvetica", sans-serif;
  font-weight: 600;
  color: #2C2A29; }

#content p:last-child,
#content ul:not([class]):last-child,
#content ol:not([class]):last-child {
  margin-bottom: 0; }

/* --------------------------------- *
 * DOCUMENT                          *
 * --------------------------------- */
html {
  position: relative; }

body {
  background-color: #FFF; }

#content {
  min-height: 100vh; }

.container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 60rem;
  margin: auto;
  padding: 0 0.875rem; }
  @media screen and (min-width: 64em) {
    .container {
      padding: 0; } }
  @media screen and (min-width: 90em) {
    .container {
      max-width: 67.5rem; } }

.container--wide {
  padding: 0 0.875rem; }
  @media screen and (min-width: 75em) {
    .container--wide {
      padding: 0;
      max-width: 67.5rem; } }
  @media screen and (min-width: 90em) {
    .container--wide {
      max-width: 78.75rem; } }

.c-placeholder {
  background-color: #818385;
  height: 7.5rem;
  margin-bottom: 1.5rem; }

.module {
  position: relative;
  display: block;
  margin: 7rem 0; }
  .module.module--pull-top:first-child {
    margin-top: 0; }
  .module.module--pull-last:last-child, .module.module--pull-bottom:last-child {
    margin-bottom: 0; }

.module--close-bottom + .module--close-top {
  margin-top: -4.5rem; }

.module--pull-bottom + .module--pull-top {
  margin-top: -7rem; }

.module::before {
  content: attr(data-mod-info);
  display: none;
  position: absolute;
  top: 0;
  left: -1px;
  height: 2rem;
  padding: 0.5rem 0.625rem 0.5rem 0.5rem;
  background-color: #F9423A;
  color: #FFF;
  z-index: 99; }

.show-modules .module {
  outline: 1px solid #F9423A;
  background-color: rgba(249, 66, 58, 0.1); }
  .show-modules .module::before {
    display: block; }

.m-search-results .container > h1 {
  margin-bottom: 3.25rem; }

.m-search-results .c-entry-box {
  background-color: #f0f2f4; }

.m-search-results .c-entry-box__tag-text,
.m-search-results .c-entry-box__tag-date {
  background-color: #FFF; }

.m-search-results__pagination {
  margin-top: 7rem; }
  .m-search-results__pagination {
    *zoom: 1; }
  .m-search-results__pagination:before, .m-search-results__pagination:after {
    content: "";
    display: table; }
  .m-search-results__pagination:after {
    clear: both; }

.c-btn.m-search-results__next,
.c-btn.m-search-results__prev {
  display: inline-block;
  width: 48%;
  text-align: center;
  margin: 0;
  padding-left: 0;
  padding-right: 0; }
  @media screen and (min-width: 48em) {
    .c-btn.m-search-results__next,
    .c-btn.m-search-results__prev {
      width: 12rem; } }

.c-btn.m-search-results__next {
  margin-left: 2%; }
  @media screen and (min-width: 48em) {
    .c-btn.m-search-results__next {
      float: right; } }

.c-btn.m-search-results__prev {
  margin-right: 2%; }

.not-found {
  padding: 7rem 0; }

.not-found__text {
  font-size: 1.5rem; }

.grid {
  text-align: left;
  display: block;
  width: 100%;
  margin-bottom: -0.875rem; }

.grid__item {
  vertical-align: top;
  position: relative;
  height: auto;
  display: block;
  width: 100%;
  margin-bottom: 0.875rem; }
  @media screen and (min-width: 48em) {
    .grid__item {
      display: inline-block;
      width: 31.333%;
      height: 100%;
      margin-left: 1%;
      margin-right: 1%; }
      .grid__item.grid__item--double {
        width: 64.666%; } }

.grid__item--hidden {
  display: none !important; }

@media screen and (min-width: 48em) {
  .grid--wide .grid__item {
    width: 48%; } }

@media screen and (min-width: 48em) {
  .grid--narrow .grid__item {
    width: 23%; } }

.grid__item--full {
  width: 100% !important;
  margin: 0 0 0.875rem !important; }

@media screen and (min-width: 48em) {
  html.flexbox.flexwrap .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  html.flexbox.flexwrap .grid--centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  html.flexbox.flexwrap .grid__item {
    vertical-align: middle;
    display: block;
    height: auto;
    width: calc(33.333% - 0.5833333333rem);
    margin-right: 0;
    margin-left: 0; }
    html.flexbox.flexwrap .grid__item:nth-of-type(3n+1) {
      margin-right: 0.4375rem; }
    html.flexbox.flexwrap .grid__item:nth-of-type(3n+2) {
      margin-left: 0.4375rem;
      margin-right: 0.4375rem; }
    html.flexbox.flexwrap .grid__item:nth-of-type(3n+3) {
      margin-left: 0.4375rem; }
  html.flexbox.flexwrap .grid__item--double {
    width: calc(66.667% - 0.2916666667rem); }
    html.flexbox.flexwrap .grid__item--double:nth-of-type(n+1) {
      margin-right: 0.4375rem;
      margin-left: 0; }
    html.flexbox.flexwrap .grid__item--double:nth-of-type(n+2) {
      margin-right: 0;
      margin-left: 0.4375rem; }
    html.flexbox.flexwrap .grid__item--double + .grid__item {
      margin-right: 0; }
  html.flexbox.flexwrap .grid--wide .grid__item {
    width: calc(50% - 0.4375rem); }
    html.flexbox.flexwrap .grid--wide .grid__item:nth-of-type(3n+1), html.flexbox.flexwrap .grid--wide .grid__item:nth-of-type(3n+2), html.flexbox.flexwrap .grid--wide .grid__item:nth-of-type(3n+3) {
      margin-left: 0;
      margin-right: 0; }
    html.flexbox.flexwrap .grid--wide .grid__item:nth-of-type(2n+1) {
      margin-right: 0.4375rem; }
    html.flexbox.flexwrap .grid--wide .grid__item:nth-of-type(2n+2) {
      margin-left: 0.4375rem; }
  html.flexbox.flexwrap .grid--narrow .grid__item {
    width: calc(25% - 0.6603773585rem);
    margin-bottom: 1rem; }
    html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(3n+1), html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(3n+2), html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(3n+3) {
      margin-left: 0;
      margin-right: 0; }
    html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(4n+1) {
      margin-right: 0.4375rem; }
    html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(4n+2), html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(4n+3) {
      margin-right: 0.4375rem;
      margin-left: 0.4375rem; }
    html.flexbox.flexwrap .grid--narrow .grid__item:nth-of-type(4n+4) {
      margin-left: 0.4375rem; } }

.f-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%; }

.f-table__row {
  display: block; }
  @media screen and (min-width: 48em) {
    .f-table__row {
      display: table-row; } }

.f-table__cell {
  display: table-cell;
  vertical-align: middle; }

.html.flexbox.flexwrap .f-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media screen and (min-width: 48em) {
  body.modal-open {
    height: 100%;
    overflow: hidden; } }

body.modal-open .modal-overlay {
  visibility: visible;
  opacity: 1; }

body.modal-open .modal--main {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }
  @media screen and (min-width: 48em) {
    body.modal-open .modal--main {
      top: 12.5vh; } }

.modal-overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 100;
  background-color: rgba(44, 42, 41, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity,visibility;
  transition-property: opacity,visibility; }

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  z-index: 101;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity,visibility,top;
  transition-property: opacity,visibility,top; }
  @media screen and (min-width: 48em) {
    .modal {
      top: 15vh;
      right: auto;
      bottom: auto;
      left: 10%;
      width: 80%;
      height: 75vh; } }
  @media screen and (min-width: 75em) {
    .modal {
      left: 15%;
      width: 70%; } }
  @media screen and (min-width: 90em) {
    .modal {
      left: 17.5%;
      width: 65%; } }

.c-btn.js-close-modal {
  position: absolute;
  top: 1.1875rem;
  margin: 0;
  right: 0.875rem;
  padding: 0.4375rem 0.75rem 0.375rem;
  border: 0.125rem solid transparent;
  font-size: 0.875rem;
  color: #2C2A29; }
  @media screen and (min-width: 26.5625em) {
    .c-btn.js-close-modal {
      top: 1.6875rem; } }
  .c-btn.js-close-modal .icon {
    fill: currentColor;
    width: 1.25rem;
    height: 1.25rem; }
  .c-btn.js-close-modal:focus, .c-btn.js-close-modal:hover, .c-btn.js-close-modal:active {
    outline: none;
    color: #FFF;
    border-color: transparent; }

.modal__content {
  height: 100%;
  overflow-y: scroll; }
  @media screen and (min-width: 48em) {
    .modal__content {
      overflow: hidden; } }
  .modal__content p:first-child {
    margin-top: 0; }
  .modal__content p:last-child {
    margin-bottom: 0; }

body.search-open .modal--search {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.modal--search {
  background-color: #373e48;
  color: #FFF; }
  .modal--search .modal__content {
    padding: 4.5rem 0.875rem; }
    @media screen and (min-width: 48em) {
      .modal--search .modal__content {
        padding: 4.5rem 3.5rem; } }
  .modal--search .c-btn.js-close-modal {
    color: #FFF; }
    .modal--search .c-btn.js-close-modal:focus, .modal--search .c-btn.js-close-modal:hover, .modal--search .c-btn.js-close-modal:active {
      color: #2C2A29;
      background-color: #FFF; }
  .modal--search .search__label {
    font-size: 1rem;
    text-transform: uppercase;
    color: #FFF;
    opacity: 0;
    visibility: hidden; }
  .modal--search .search__container {
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: 2rem; }
    @media screen and (min-width: 48em) {
      .modal--search .search__container {
        position: absolute;
        top: 50%;
        left: 3.5rem;
        right: 3.5rem;
        width: auto;
        margin-top: -6.625rem; } }
  .modal--search .search__field {
    border: 2px solid #2f353e;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 2.375rem;
    width: 100%;
    text-align: left;
    position: relative; }
    @media screen and (min-width: 48em) {
      .modal--search .search__field {
        max-width: 40rem; } }
    .modal--search .search__field .icon {
      position: absolute;
      top: 1.25rem;
      right: 1rem;
      width: 1rem;
      height: 1rem; }
      @media screen and (min-width: 48em) {
        .modal--search .search__field .icon {
          width: 1.5rem;
          height: 1.5rem;
          top: 1.375rem; } }
  .modal--search .search__input {
    background: transparent;
    border: none;
    font-size: 0.875rem;
    width: 100%;
    padding: 1.25rem 3rem 1.25rem 1rem; }
    .modal--search .search__input::-webkit-input-placeholder {
      color: #FFF; }
    .modal--search .search__input:-ms-input-placeholder {
      color: #FFF; }
    .modal--search .search__input::placeholder {
      color: #FFF; }
    @media screen and (min-width: 48em) {
      .modal--search .search__input {
        font-size: 1.5rem;
        padding-right: 3.5rem; } }
    .modal--search .search__input:focus, .modal--search .search__input:hover, .modal--search .search__input:active {
      outline: none; }
  .modal--search .c-btn {
    color: #FFF; }
  @media screen and (min-width: 48em) {
    .modal--search {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; } }

.company-info {
  height: 100%; }

.company-info__panel {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 4.5rem 0.875rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none; }
  .company-info__panel::-webkit-scrollbar {
    display: none; }
  @media screen and (min-width: 48em) {
    .company-info__panel {
      width: 50%;
      height: 100%;
      padding: 4.5rem 3.5rem; } }

@media screen and (min-width: 48em) {
  .company-info--has-link .company-info__panel {
    height: calc(100% - 6.375rem); } }

.company-info__panel--right {
  background-color: #f0f2f4;
  text-align: center; }

.company-info__logo {
  display: block;
  max-width: 100%;
  margin: auto; }

.company-info__news {
  margin: 3.25rem 0; }

.company-info__news-item {
  margin-bottom: 1rem; }

.company-info__news-link {
  text-align: left;
  display: block;
  background-color: #FFF;
  color: #2C2A29;
  text-decoration: none;
  font-weight: bold;
  padding: 1.5rem 2rem;
  position: relative; }
  .company-info__news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.25rem;
    background-color: #62B5E5;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: width;
    transition-property: width; }
  .company-info__news-link:focus::before, .company-info__news-link:hover::before, .company-info__news-link:active::before {
    width: 100%; }

.company-info__obi {
  border: 1px solid #CFE1E7;
  display: table;
  width: 100%; }

.company-info__obi-heading {
  display: inline-block;
  background-color: #CFE1E7;
  font-weight: bold;
  width: 10rem; }

.company-info__obi-heading,
.company-info__obi-content {
  display: table-cell;
  padding: 1rem;
  text-align: center; }

.company-info__btn {
  background-color: #373e48;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-size: 1.25rem;
  padding: 2rem 1rem;
  display: block;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .company-info__btn {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      font-size: 2rem;
      padding: 2rem; } }

.person-info__panel {
  width: 100%;
  height: 100%;
  padding: 4.5rem 0.875rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none; }
  .person-info__panel::-webkit-scrollbar {
    display: none; }
  @media screen and (min-width: 48em) {
    .person-info__panel {
      padding: 4.5rem 3.5rem;
      padding-bottom: 8rem; } }
  .person-info__panel p {
    max-width: 53.75rem; }
  .person-info__panel .m-people__btn {
    bottom: 4.5rem;
    left: 1rem; }
    @media screen and (min-width: 48em) {
      .person-info__panel .m-people__btn {
        left: 3.5rem; } }

.person-info__header {
  border-bottom: 1px solid #dcdada;
  display: block;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 53.75rem; }
  .person-info__header .m-people__name {
    font-size: 1.5rem;
    margin-bottom: 0.125rem; }

/*
 * Scroll Effects
 * --------------
 * 
 * Animate an element by adding the classes "fx fx--[effectname]" to it
 * 
 * Animate all the children of an element by adding the classes "fx fx--children"
 * to the parent element and "fx--[effectname]" to the children
 *
 * To have a delay before triggering the animation (after it enters the active scroll zone),
 * add an attribute to the element with the "fx" class like this: data-fx-lag="400" where 400
 * is the number of milliseconds to wait. If animating children, this lag will occur between
 * each child animating in.
 *
 */
.fx--fade {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity;
  transition-property: opacity; }
  .fx--fade.fx--on {
    opacity: 1; }

.fx--grow {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }
  .fx--grow.fx--on {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

.fx--growfade {
  opacity: 0;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform; }
  .fx--growfade.fx--on {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

@media screen and (min-width: 64em) {
  .fx--slide-right {
    opacity: 0;
    -webkit-transform: translateX(-5rem);
        -ms-transform: translateX(-5rem);
            transform: translateX(-5rem);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform; }
    .fx--slide-right.fx--on {
      opacity: 1;
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
  .fx--slide-left {
    opacity: 0;
    -webkit-transform: translateX(5rem);
        -ms-transform: translateX(5rem);
            transform: translateX(5rem);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform; }
    .fx--slide-left.fx--on {
      opacity: 1;
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); } }

/* --------------------------------- *
 * COMPONENTS                        *
 * --------------------------------- */
.icon {
  width: 2rem;
  height: 2rem; }

.st0 {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-miterlimit: 10; }

.st2 {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-miterlimit: 10; }

.st3 {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-miterlimit: 10; }

.strjoin {
  stroke-linejoin: round; }

.strcap {
  stroke-linecap: round; }

.st1 {
  fill: currentColor; }

.icon--circled {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  padding: 0.1875em; }

.logo {
  display: inline-block;
  color: #FFF;
  position: relative;
  z-index: 2;
  text-decoration: none; }

.logo__svg {
  fill: currentColor;
  width: 100px;
  height: 29.0441176471px; }
  @media screen and (min-width: 64em) {
    .logo__svg {
      width: 200px;
      height: 58.0882352941px; } }

.c-btn-row {
  margin-top: 1.5rem;
  line-height: 1.6; }

.c-btn {
  display: inline-block;
  padding: 0.75rem 3rem;
  margin: 0.5rem 0.5rem 0 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: #2C2A29;
  background-color: transparent;
  border: 2px solid #2C2A29;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color; }
  @media screen and (min-width: 48em) {
    .c-btn {
      font-size: 1.125rem; } }
  .c-btn:focus, .c-btn:hover, .c-btn:active {
    outline: none;
    background-color: #2C2A29;
    color: #FFF; }
  .c-btn.c-btn--slim {
    padding: 0.375rem 2rem; }

.c-btn--inverted {
  color: #FFF;
  border-color: #FFF; }
  .c-btn--inverted:focus, .c-btn--inverted:hover, .c-btn--inverted:active {
    background-color: #FFF;
    color: #2C2A29; }

.module--green .c-btn,
.module .module__sub--green .c-btn {
  border-color: #6BA539; }
  .module--green .c-btn:focus, .module--green .c-btn:hover, .module--green .c-btn:active,
  .module .module__sub--green .c-btn:focus,
  .module .module__sub--green .c-btn:hover,
  .module .module__sub--green .c-btn:active {
    background-color: #6BA539; }

.module--red .c-btn,
.module .module__sub--red .c-btn {
  border-color: #F9423A; }
  .module--red .c-btn:focus, .module--red .c-btn:hover, .module--red .c-btn:active,
  .module .module__sub--red .c-btn:focus,
  .module .module__sub--red .c-btn:hover,
  .module .module__sub--red .c-btn:active {
    background-color: #F9423A; }

.module--purple .c-btn,
.module .module__sub--purple .c-btn {
  border-color: #A77BCA; }
  .module--purple .c-btn:focus, .module--purple .c-btn:hover, .module--purple .c-btn:active,
  .module .module__sub--purple .c-btn:focus,
  .module .module__sub--purple .c-btn:hover,
  .module .module__sub--purple .c-btn:active {
    background-color: #A77BCA; }

.module--orange .c-btn,
.module .module__sub--orange .c-btn {
  border-color: #ED8B00; }
  .module--orange .c-btn:focus, .module--orange .c-btn:hover, .module--orange .c-btn:active,
  .module .module__sub--orange .c-btn:focus,
  .module .module__sub--orange .c-btn:hover,
  .module .module__sub--orange .c-btn:active {
    background-color: #ED8B00; }

.module--blue .c-btn,
.module .module__sub--blue .c-btn {
  border-color: #62B5E5; }
  .module--blue .c-btn:focus, .module--blue .c-btn:hover, .module--blue .c-btn:active,
  .module .module__sub--blue .c-btn:focus,
  .module .module__sub--blue .c-btn:hover,
  .module .module__sub--blue .c-btn:active {
    background-color: #62B5E5; }

.c-rainbow {
  position: absolute;
  z-index: 1;
  top: -0.25rem;
  left: 0;
  right: 0;
  display: block;
  width: 100.1%; }

.c-rainbow__slice {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  width: 20%;
  height: 0.25rem; }

.c-rainbow__slice--purple {
  background-color: #A77BCA; }

.c-rainbow__slice--red {
  background-color: #F9423A; }

.c-rainbow__slice--green {
  background-color: #6BA539; }

.c-rainbow__slice--blue {
  background-color: #62B5E5; }

.c-rainbow__slice--orange {
  background-color: #ED8B00; }

.c-pie {
  position: relative;
  height: 8rem; }

.c-pie__slice {
  position: absolute;
  width: 4rem;
  height: 8rem;
  overflow: hidden;
  left: 4rem;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center; }

.c-pie__slice::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 8rem;
  left: -4rem;
  border-radius: 4rem 0 0 4rem;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center; }

.c-pie__slice::before, .c-pie__slice::after {
  background-color: #62B5E5; }

.c-pie__slice:nth-of-type(2) {
  -webkit-transform: rotate(72deg);
      -ms-transform: rotate(72deg);
          transform: rotate(72deg); }
  .c-pie__slice:nth-of-type(2)::before, .c-pie__slice:nth-of-type(2)::after {
    background-color: #F9423A; }

.c-pie__slice:nth-of-type(3) {
  -webkit-transform: rotate(144deg);
      -ms-transform: rotate(144deg);
          transform: rotate(144deg); }
  .c-pie__slice:nth-of-type(3)::before, .c-pie__slice:nth-of-type(3)::after {
    background-color: #6BA539; }

.c-pie__slice:nth-of-type(4) {
  -webkit-transform: rotate(216deg);
      -ms-transform: rotate(216deg);
          transform: rotate(216deg); }
  .c-pie__slice:nth-of-type(4)::before, .c-pie__slice:nth-of-type(4)::after {
    background-color: #ED8B00; }

.c-pie__slice:nth-of-type(5) {
  -webkit-transform: rotate(288deg);
      -ms-transform: rotate(288deg);
          transform: rotate(288deg); }
  .c-pie__slice:nth-of-type(5)::before, .c-pie__slice:nth-of-type(5)::after {
    background-color: #A77BCA; }

.c-pie__slice::before {
  -webkit-transform: rotate(73deg);
      -ms-transform: rotate(73deg);
          transform: rotate(73deg); }

.c-pie__filling {
  background-color: #FFF;
  width: 7.625rem;
  height: 7.625rem;
  border-radius: 50%;
  position: absolute;
  left: 0.1875rem;
  top: 0.1875rem;
  z-index: 1; }

.c-pie__filling--photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.c-pie__icon {
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: 1.8125rem;
  left: 1.8125rem; }

.c-flourish {
  vertical-align: top;
  display: inline-block;
  text-align: left;
  width: 5.5rem;
  height: 0.25rem; }

.c-flourish__part {
  vertical-align: top;
  display: inline-block;
  text-align: left;
  height: 0.25rem;
  background-color: #2C2A29;
  width: 0;
  margin-right: 0.3125rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-property: width;
  transition-property: width; }
  .c-flourish__part:nth-of-type(3) {
    margin-right: 0; }

.c-flourish__part.fx--on:nth-of-type(1) {
  width: 46.5%; }

.c-flourish__part.fx--on:nth-of-type(2) {
  width: 15%; }

.c-flourish__part.fx--on:nth-of-type(3) {
  width: 26.7%; }

.c-flourish__part--green {
  background-color: #6BA539; }

.c-flourish__part--red {
  background-color: #F9423A; }

.c-flourish__part--blue {
  background-color: #62B5E5; }

.c-flourish__part--purple {
  background-color: #A77BCA; }

.c-flourish__part--orange {
  background-color: #ED8B00; }

.c-ribbons {
  position: absolute;
  bottom: 0;
  left: 0; }
  .c-ribbons #gradient-back .grad--start {
    stop-color: #ED8B00; }
  .c-ribbons #gradient-back .grad--end {
    stop-color: #F9423A; }
  .c-ribbons #gradient-mid .grad--start {
    stop-color: #62B5E5; }
  .c-ribbons #gradient-mid .grad--end {
    stop-color: #A77BCA; }
  .c-ribbons #gradient-front .grad--start {
    stop-color: #6BA539; }
  .c-ribbons #gradient-front .grad--end {
    stop-color: #62B5E5; }

.c-ribbons--mirror {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
  left: auto;
  right: 0; }

.module--blue .c-ribbons:not(.c-ribbons--multi) .line--front {
  fill: #62B5E5; }

.module--blue .c-ribbons:not(.c-ribbons--multi) .line--mid {
  fill: #41a6e0; }

.module--blue .c-ribbons:not(.c-ribbons--multi) .line--back {
  fill: #2495d7; }

.module--green .c-ribbons:not(.c-ribbons--multi) .line--front {
  fill: #6BA539; }

.module--green .c-ribbons:not(.c-ribbons--multi) .line--mid {
  fill: #5f9232; }

.module--green .c-ribbons:not(.c-ribbons--multi) .line--back {
  fill: #527f2c; }

.module--purple .c-ribbons:not(.c-ribbons--multi) .line--front {
  fill: #A77BCA; }

.module--purple .c-ribbons:not(.c-ribbons--multi) .line--mid {
  fill: #9b69c3; }

.module--purple .c-ribbons:not(.c-ribbons--multi) .line--back {
  fill: #8f57bb; }

.module--orange .c-ribbons:not(.c-ribbons--multi) .line--front {
  fill: #ff9500; }

.module--orange .c-ribbons:not(.c-ribbons--multi) .line--mid {
  fill: #ED8B00; }

.module--orange .c-ribbons:not(.c-ribbons--multi) .line--back {
  fill: #db8100; }

.module--red .c-ribbons:not(.c-ribbons--multi) .line--front {
  fill: #F9423A; }

.module--red .c-ribbons:not(.c-ribbons--multi) .line--mid {
  fill: #f81e15; }

.module--red .c-ribbons:not(.c-ribbons--multi) .line--back {
  fill: #e01007; }

.c-entry-box {
  background-color: #FFF;
  height: 100%; }

.c-entry-box__link {
  text-decoration: none; }
  .c-entry-box__link:focus .c-entry-box__btn, .c-entry-box__link:hover .c-entry-box__btn, .c-entry-box__link:active .c-entry-box__btn {
    background-color: #F9423A; }

.c-entry-box__content {
  padding: 2rem 2.25rem 5.75rem; }

.c-entry-box__title {
  line-height: 1.1;
  font-size: 1.5625rem;
  margin: 2rem 0 0.5rem;
  word-break: break-word; }

.c-entry-box__tag {
  display: inline-block;
  position: relative; }

.c-entry-box__tag-icon {
  background-color: #F9423A;
  color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2.625rem;
  padding: 0 0.75rem; }
  .c-entry-box__tag-icon .icon {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0.625rem; }

.c-entry-box__tag-text,
.c-entry-box__tag-date {
  display: inline-block;
  background-color: #f0f2f4;
  color: #2C2A29;
  font-size: 0.875rem;
  font-style: italic;
  padding: 0.5rem 0.75rem 0.5rem 3.375rem; }

.c-entry-box__tag-date {
  padding-left: 0.75rem;
  margin-left: 0.25rem; }

.c-entry-box__summary {
  color: #2C2A29; }

.c-entry-box__btn {
  background-color: #373e48;
  color: #FFF;
  display: block;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color; }

.grid__item:nth-of-type(5n+1) .c-entry-box__tag-icon {
  background-color: #F9423A; }

.grid__item:nth-of-type(5n+1) .c-entry-box__link:focus .c-entry-box__btn, .grid__item:nth-of-type(5n+1) .c-entry-box__link:hover .c-entry-box__btn, .grid__item:nth-of-type(5n+1) .c-entry-box__link:active .c-entry-box__btn {
  background-color: #F9423A; }

.grid__item:nth-of-type(5n+2) .c-entry-box__tag-icon {
  background-color: #6BA539; }

.grid__item:nth-of-type(5n+2) .c-entry-box__link:focus .c-entry-box__btn, .grid__item:nth-of-type(5n+2) .c-entry-box__link:hover .c-entry-box__btn, .grid__item:nth-of-type(5n+2) .c-entry-box__link:active .c-entry-box__btn {
  background-color: #6BA539; }

.grid__item:nth-of-type(5n+3) .c-entry-box__tag-icon {
  background-color: #62B5E5; }

.grid__item:nth-of-type(5n+3) .c-entry-box__link:focus .c-entry-box__btn, .grid__item:nth-of-type(5n+3) .c-entry-box__link:hover .c-entry-box__btn, .grid__item:nth-of-type(5n+3) .c-entry-box__link:active .c-entry-box__btn {
  background-color: #62B5E5; }

.grid__item:nth-of-type(5n+4) .c-entry-box__tag-icon {
  background-color: #A77BCA; }

.grid__item:nth-of-type(5n+4) .c-entry-box__link:focus .c-entry-box__btn, .grid__item:nth-of-type(5n+4) .c-entry-box__link:hover .c-entry-box__btn, .grid__item:nth-of-type(5n+4) .c-entry-box__link:active .c-entry-box__btn {
  background-color: #A77BCA; }

.grid__item:nth-of-type(5n+5) .c-entry-box__tag-icon {
  background-color: #ED8B00; }

.grid__item:nth-of-type(5n+5) .c-entry-box__link:focus .c-entry-box__btn, .grid__item:nth-of-type(5n+5) .c-entry-box__link:hover .c-entry-box__btn, .grid__item:nth-of-type(5n+5) .c-entry-box__link:active .c-entry-box__btn {
  background-color: #ED8B00; }

.c-home-tile {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 0.5rem; }
  .c-home-tile.c-home-tile--featured {
    width: 100%;
    margin: 0 0 0.5rem; }
    @media screen and (min-width: 75em) {
      .c-home-tile.c-home-tile--featured ~ .c-home-tile:nth-of-type(2) {
        margin: 0 0.5rem 0.5rem 0; }
      .c-home-tile.c-home-tile--featured ~ .c-home-tile:nth-of-type(3) {
        margin: 0 0 0.5rem 0.5rem; } }
  @media screen and (min-width: 75em) {
    .c-home-tile {
      width: calc(50% - 0.5rem);
      margin: 0 0.5rem 0.5rem; }
      .c-home-tile:nth-of-type(1n) {
        margin: 0 0.5rem 0.5rem 0; }
      .c-home-tile:nth-of-type(2n) {
        margin: 0 0 0.5rem 0.5rem; } }

.c-home-tile__link {
  background-color: #373e48;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-decoration: none; }
  .c-home-tile__link::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(44, 42, 41, 0.5);
    background: -webkit-linear-gradient(top, rgba(44, 42, 41, 0.6) 40%, rgba(44, 42, 41, 0.95) 80%);
    background: linear-gradient(to bottom, rgba(44, 42, 41, 0.6) 40%, rgba(44, 42, 41, 0.95) 80%);
    opacity: 0.85;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-property: opacity;
    transition-property: opacity; }
  .c-home-tile__link:focus .icon, .c-home-tile__link:hover .icon, .c-home-tile__link:active .icon {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); }
  .c-home-tile__link:focus .c-home-tile__more, .c-home-tile__link:hover .c-home-tile__more, .c-home-tile__link:active .c-home-tile__more {
    border-left-width: 0.375rem;
    padding-left: 0.75rem;
    background-color: #FFF; }
  .c-home-tile__link:focus::before, .c-home-tile__link:hover::before, .c-home-tile__link:active::before {
    opacity: 1; }

.c-home-tile__tag {
  color: #2C2A29;
  position: relative;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.5rem;
  line-height: 1.25;
  display: inline-block;
  background-color: #FFF;
  font-style: italic;
  font-size: 0.875rem;
  border-left: 0.375rem solid #F9423A; }

.c-home-tile__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #FFF;
  padding: 3.75rem 1rem 1rem; }

.c-home-tile__heading {
  color: #FFF;
  font-size: 1.125rem;
  margin: 0; }

.c-home-tile__description {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0; }

.c-home-tile .icon {
  top: 50%;
  position: absolute;
  color: #FFF;
  z-index: 1;
  height: 4rem;
  width: 4rem;
  border: 0.125rem solid white;
  border-radius: 50%;
  left: 50%;
  margin-left: -2rem;
  margin-top: -2rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.c-home-tile__caption {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  line-height: 1.25; }
  .c-home-tile__caption p {
    margin: 0;
    line-height: 1.25; }

.c-home-tile__more {
  display: inline-block;
  padding-right: 1rem;
  line-height: 2;
  color: #F9423A;
  font-weight: bold;
  border-left: 0 solid #F9423A;
  margin-top: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: padding-left,border-left-width,background-color;
  transition-property: padding-left,border-left-width,background-color; }

.c-home-tile:nth-of-type(1) .c-home-tile__tag {
  border-left-color: #F9423A; }

.c-home-tile:nth-of-type(1) .c-home-tile__more {
  color: #F9423A;
  border-left-color: #F9423A; }

.c-home-tile:nth-of-type(2) .c-home-tile__tag {
  border-left-color: #ED8B00; }

.c-home-tile:nth-of-type(2) .c-home-tile__more {
  color: #ED8B00;
  border-left-color: #ED8B00; }

.c-home-tile:nth-of-type(3) .c-home-tile__tag {
  border-left-color: #6BA539; }

.c-home-tile:nth-of-type(3) .c-home-tile__more {
  color: #6BA539;
  border-left-color: #6BA539; }

.c-home-tile:nth-of-type(4) .c-home-tile__tag {
  border-left-color: #A77BCA; }

.c-home-tile:nth-of-type(4) .c-home-tile__more {
  color: #A77BCA;
  border-left-color: #A77BCA; }

.c-select__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
  color: #2C2A29; }
  .c-select__label + .c-select__container {
    margin-bottom: 1.5rem;
    display: block;
    width: 100%; }

@media screen and (min-width: 26.5625em) {
  .c-select__label--left {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    padding-right: 0.75rem; }
    .c-select__label--left + .c-select__container {
      margin-bottom: 0;
      display: inline-block;
      vertical-align: middle;
      width: 75%; } }

@media screen and (min-width: 64em) {
  .c-select__label--left {
    width: 50%; }
    .c-select__label--left + .c-select__container {
      width: 50%; } }

.c-select__container {
  position: relative;
  height: 3.3625rem;
  border: 1px solid #dadfe4; }

.c-select__select {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 100%;
  color: #2C2A29;
  background-color: #FFF;
  z-index: 9;
  font-size: 1rem;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color; }
  .c-select__select:focus, .c-select__select:hover, .c-select__select:active {
    background-color: #f0f2f4; }

.c-select__select--open {
  position: absolute;
  z-index: 99;
  max-height: 24rem;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  outline: 1px solid #dadfe4; }
  .c-select__select--open .c-select__value {
    display: none; }
  .c-select__select--open .c-select__options {
    display: block; }
  .c-select__select--open .c-select__btn .icon {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
    top: 1.25rem; }

.c-select__value {
  display: block;
  padding: 1rem 4rem 1rem 1rem;
  height: 3.25rem; }

.c-select__value-line {
  height: 1.5rem;
  overflow: hidden;
  display: block; }

.c-select__options {
  background-color: #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%; }

.c-select__option {
  max-width: none !important;
  font-size: 1rem;
  color: #2C2A29;
  padding: 0.875rem 4rem 0.925rem 1rem;
  margin: 0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 1px solid #fbfdfd; }
  .c-select__option:last-of-type {
    border-bottom: none; }
  .c-select__option:focus, .c-select__option:hover, .c-select__option:active {
    background-color: #62B5E5;
    color: #FFF; }

.c-select__option--active {
  color: #62B5E5; }

.c-select__input {
  width: 100px;
  position: absolute;
  left: -9999px; }

.c-select__btn {
  color: #2C2A29;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  height: 3.375rem;
  padding: 0.5rem 1.5rem;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color,color;
  transition-property: background-color,color; }
  .c-select__btn .icon {
    position: absolute;
    top: 1.375rem;
    right: 1.0625rem;
    height: 0.875rem;
    width: 0.875rem;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-property: top,-webkit-transform;
    transition-property: top,-webkit-transform;
    transition-property: top,transform;
    transition-property: top,transform,-webkit-transform; }

/* --------------------------------- *
 * MODULES                           *
 * --------------------------------- */
.m-text p:first-child {
  margin-top: 0; }

.m-text__content {
  line-height: 0; }

.m-text__content--centered {
  text-align: center; }

.m-text__text {
  margin-top: 2.375rem; }

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

.m-text__text--centered {
  text-align: center; }
  .m-text__text--centered p {
    margin-left: auto;
    margin-right: auto; }

.m-hero-banner {
  min-height: 32rem; }

.m-hero-banner__overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden; }

.m-hero-banner__overlay .c-ribbons {
  z-index: 2;
  opacity: 0.2;
  width: 25rem;
  height: 22rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-property: opacity;
  transition-property: opacity; }
  @media screen and (min-width: 64em) {
    .m-hero-banner__overlay .c-ribbons {
      opacity: 0.5; } }
  @media screen and (min-width: 85.375em) {
    .m-hero-banner__overlay .c-ribbons {
      opacity: 1; } }

.m-hero-banner__image {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0; }

.m-hero-banner__content {
  padding: 7rem 0 9rem;
  position: relative;
  z-index: 2;
  width: 75%; }
  @media screen and (min-width: 26.5625em) {
    .m-hero-banner__content {
      width: 60%; } }
  @media screen and (min-width: 48em) {
    .m-hero-banner__content {
      width: 50%; } }
  @media screen and (min-width: 64em) {
    .m-hero-banner__content {
      width: 37.5%; } }

.m-hero-banner__content .c-btn {
  color: #2C2A29;
  background-color: #FFF;
  background-color: #ffffffd1; }

.m-hero-banner__content .c-btn:focus,
.m-hero-banner__content .c-btn:hover,
.m-hero-banner__content .c-btn:active {
  color: #FFF;
  background-color: #2C2A29;
  background-color: #2c2a29d1;
  border-color: #FFF; }

.m-hero-banner__heading,
.m-hero-banner__intro {
  color: #FFF; }

.m-hero-banner__intro {
  font-size: 1.125rem; }

.m-hero-banner__intro--short {
  font-size: 1.5rem; }

.section-homepage .m-hero-banner__heading {
  font-size: 1.375rem;
  background-color: #2C2A29;
  background-color: #2c2a29d1;
  padding: 10px;
  width: 72.5%; }
  @media screen and (min-width: 26.5625em) {
    .section-homepage .m-hero-banner__heading {
      font-size: 1.875rem;
      width: 100%; } }
  @media screen and (min-width: 48em) {
    .section-homepage .m-hero-banner__heading {
      font-size: 3.25rem; } }

.m-points__content {
  text-align: center; }
  .m-points__content .lead {
    margin-left: auto;
    margin-right: auto; }

.m-points__highlight {
  margin-top: 2.875rem;
  padding: 1rem 0; }
  @media screen and (min-width: 48em) {
    .m-points__highlight {
      padding: 5rem 0; } }

.m-points__points {
  margin-top: 0; }

.m-points__point {
  vertical-align: top;
  position: relative;
  text-align: center;
  background-color: #FFF;
  color: #2C2A29;
  padding: 2.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2); }

.m-points__number {
  display: block;
  font-family: proxima-nova-soft, "Relato Sans", "Helvetica", sans-serif;
  font-weight: bold;
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .m-points__number {
      font-size: 3.75rem; } }

.m-points__number--largenum,
.m-points__number--word {
  font-size: 1.5rem;
  padding: 0.75rem 0 0.5rem; }
  @media screen and (min-width: 48em) {
    .m-points__number--largenum,
    .m-points__number--word {
      font-size: 2rem;
      padding: 1rem 0 0.75rem; } }

.m-points__number--word {
  font-family: "Relato Sans", "Helvetica", sans-serif; }

.m-points__text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2; }
  @media screen and (min-width: 48em) {
    .m-points__text {
      font-size: 1.375rem; } }

.module--blue .m-points__highlight {
  background-color: #62B5E5; }

.module--green .m-points__highlight {
  background-color: #6BA539; }

.module--orange .m-points__highlight {
  background-color: #ED8B00; }

.module--purple .m-points__highlight {
  background-color: #A77BCA; }

.module--red .m-points__highlight {
  background-color: #F9423A; }

.m-tiles {
  background-color: #f0f2f4;
  padding: 7rem 0; }

.m-tiles + .m-tiles {
  padding-top: 0;
  margin-top: -7rem; }

.m-slider + .m-tiles {
  margin-top: -7rem; }

.m-tiles__content {
  text-align: center; }
  .m-tiles__content .lead {
    margin-left: auto;
    margin-right: auto; }

.m-tiles__tiles {
  margin-top: 3.75rem; }

.m-tiles__tile {
  vertical-align: top;
  position: relative;
  background-color: #FFF;
  border-top: 0.25rem solid #2C2A29;
  padding: 2.5rem; }
  .m-tiles__tile .c-btn-row {
    margin-top: 1.5rem; }

.m-tiles__tile--image {
  background-size: cover;
  background-repeat: no-repeat; }
  .m-tiles__tile--image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.65;
    z-index: 1; }
  .m-tiles__tile--image .m-tiles__title, .m-tiles__tile--image .m-tiles__text, .m-tiles__tile--image .c-btn {
    color: #FFF;
    position: relative;
    z-index: 2; }

.m-tiles__title {
  font-size: 1.5rem;
  margin-bottom: 1rem; }

.m-tiles__text, .m-tiles__text p {
  font-size: 0.875rem; }

.module--blue .m-tiles__tile {
  border-top-color: #62B5E5; }

.module--green .m-tiles__tile {
  border-top-color: #6BA539; }

.module--orange .m-tiles__tile {
  border-top-color: #ED8B00; }

.module--purple .m-tiles__tile {
  border-top-color: #A77BCA; }

.module--red .m-tiles__tile {
  border-top-color: #F9423A; }

.m-tiles .m-tiles__tile--blue {
  border-top-color: #62B5E5; }

.m-tiles .m-tiles__tile--green {
  border-top-color: #6BA539; }

.m-tiles .m-tiles__tile--orange {
  border-top-color: #ED8B00; }

.m-tiles .m-tiles__tile--purple {
  border-top-color: #A77BCA; }

.m-tiles .m-tiles__tile--red {
  border-top-color: #F9423A; }

.m-featured-content {
  padding-bottom: 2rem;
  overflow: hidden; }

.m-featured-content__box {
  background: #f0f2f4; }
  @media screen and (min-width: 48em) {
    .m-featured-content__box {
      width: calc(50% + 2rem); } }

@media screen and (min-width: 48em) {
  .m-featured-content__row--left {
    text-align: right; }
    .m-featured-content__row--left .m-featured-content__box--content {
      padding-left: 7.5rem; }
    .m-featured-content__row--left .m-featured-content__box--image {
      right: calc(50% - 2rem); } }

@media screen and (min-width: 48em) {
  .m-featured-content__row--right {
    text-align: left; }
    .m-featured-content__row--right .m-featured-content__box--content {
      padding-right: 7.5rem; }
    .m-featured-content__row--right .m-featured-content__box--image {
      left: calc(50% - 2rem); } }

.m-featured-content__box--content {
  display: block;
  text-align: left;
  position: relative;
  padding: 1.5rem;
  border-top: 0.25rem solid #62B5E5; }
  @media screen and (min-width: 48em) {
    .m-featured-content__box--content {
      padding: 4rem;
      display: inline-block;
      vertical-align: top; } }
  .m-featured-content__box--content h2 {
    font-size: 1.5rem;
    margin: 0; }
  .m-featured-content__box--content p {
    font-size: 1rem; }

.module--blue .m-featured-content__box--content {
  border-top-color: #62B5E5; }

.module--green .m-featured-content__box--content {
  border-top-color: #6BA539; }

.module--red .m-featured-content__box--content {
  border-top-color: #F9423A; }

.module--orange .m-featured-content__box--content {
  border-top-color: #ED8B00; }

.module--purple .m-featured-content__box--content {
  border-top-color: #A77BCA; }

.m-featured-content__box--image {
  overflow: hidden;
  min-height: 15rem;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-color: #2C2A29;
  z-index: 1;
  position: relative; }
  @media screen and (min-width: 48em) {
    .m-featured-content__box--image {
      position: absolute;
      top: 2rem; } }

.m-featured-content .c-ribbons {
  width: 12.5rem;
  height: 11rem; }
  @media screen and (min-width: 75em) {
    .m-featured-content .c-ribbons {
      width: 18.75rem;
      height: 16.5rem; } }

.m-statement__content {
  display: block;
  margin: auto;
  position: relative;
  padding-left: 1rem;
  border-left: 0.25rem solid #2C2A29; }
  @media screen and (min-width: 48em) {
    .m-statement__content {
      width: 80%;
      padding-left: 2.25rem; } }

.module--blue .m-statement__content {
  border-left-color: #62B5E5; }

.module--green .m-statement__content {
  border-left-color: #6BA539; }

.module--purple .m-statement__content {
  border-left-color: #A77BCA; }

.module--orange .m-statement__content {
  border-left-color: #ED8B00; }

.module--red .m-statement__content {
  border-left-color: #F9423A; }

.m-statement__statement {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .m-statement__statement {
      font-size: 1.875rem; } }

.m-statement__photo {
  position: absolute;
  opacity: 0.2;
  right: 10rem;
  top: 50%;
  margin-top: -4rem; }
  @media screen and (min-width: 48em) {
    .m-statement__photo {
      right: auto;
      opacity: 1; } }
  .m-statement__photo + .m-statement__content {
    border-left-color: #dcdada; }
    @media screen and (min-width: 48em) {
      .m-statement__photo + .m-statement__content {
        margin-left: calc(10% + 4rem);
        margin-right: 10%; } }

.m-statement__content--quote .m-statement__statement::before {
  content: "\201C";
  display: block;
  position: absolute;
  left: 0.375rem;
  top: 0; }
  @media screen and (min-width: 48em) {
    .m-statement__content--quote .m-statement__statement::before {
      left: 1.375rem; } }

.m-statement__content--quote .m-statement__statement::after {
  content: "\201D"; }

.m-statement__source {
  font-size: 1rem;
  font-style: italic;
  margin: 1rem 0 0;
  color: #646464; }
  @media screen and (min-width: 48em) {
    .m-statement__source {
      font-size: 1.125rem; } }

.m-media,
.m-media__wrapper {
  position: relative; }

.m-media__figure {
  position: relative;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

.m-media__image {
  width: 100%;
  height: auto; }

.m-media__placeholder {
  width: 100%;
  height: 10rem;
  background-color: #2C2A29; }

.m-media__image-overlay {
  position: relative;
  overflow: hidden; }
  .m-media__image-overlay .c-ribbons {
    width: 12.5rem;
    height: 11rem; }
    @media screen and (min-width: 48em) {
      .m-media__image-overlay .c-ribbons {
        width: 18.75rem;
        height: 16.5rem; } }

.m-media--video:focus, .m-media--video:hover, .m-media--video:active {
  cursor: pointer; }
  .m-media--video:focus .m-media__play, .m-media--video:hover .m-media__play, .m-media--video:active .m-media__play {
    opacity: 0.9; }

.m-media--video .m-media__video {
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  position: relative; }
  .m-media--video .m-media__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.m-media--video.playing .m-media__play {
  display: none; }

.m-media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFF;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  width: 2.5rem;
  height: 2.5rem; }
  .m-media__play:focus, .m-media__play:hover, .m-media__play:active {
    opacity: 0.9; }
  .m-media__play .icon {
    width: 2.5rem;
    height: 2.5rem; }
  @media screen and (min-width: 48em) {
    .m-media__play {
      margin-left: -2.5rem;
      margin-top: -2.5rem;
      width: 5rem;
      height: 5rem; }
      .m-media__play .icon {
        width: 5rem;
        height: 5rem; } }

.m-media__caption {
  font-family: "Relato Sans", "Helvetica", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 2rem 3rem;
  width: 100%;
  background-color: #f0f2f4; }
  .m-media__caption p:first-child {
    margin-top: 0; }

.m-media__slider .slick-prev, .m-media__slider .slick-next {
  position: absolute;
  left: 1rem;
  top: 50%;
  margin-top: -1.25rem;
  z-index: 2;
  border: none;
  display: block;
  background-color: rgba(44, 42, 41, 0.5);
  border: 1px solid #FFF;
  color: #FFF;
  padding: 0.5rem 1rem 0.25rem;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color; }
  .m-media__slider .slick-prev:focus, .m-media__slider .slick-prev:hover, .m-media__slider .slick-prev:active, .m-media__slider .slick-next:focus, .m-media__slider .slick-next:hover, .m-media__slider .slick-next:active {
    outline: none;
    background-color: rgba(44, 42, 41, 0.8); }

.m-media__slider .slick-next {
  left: auto;
  right: 1rem; }

.m-media__slider .arrow {
  display: block;
  margin-top: -0.25rem;
  -webkit-transform: scaleX(0.75);
      -ms-transform: scaleX(0.75);
          transform: scaleX(0.75); }

.m-slider {
  background-color: #f0f2f4;
  overflow: hidden; }
  .m-slider .container {
    display: block;
    pointer-events: none;
    margin-top: -40rem;
    height: 40rem;
    padding-top: 6rem;
    padding-bottom: 6rem; }
    .m-slider .container {
      *zoom: 1; }
    .m-slider .container:before, .m-slider .container:after {
      content: "";
      display: table; }
    .m-slider .container:after {
      clear: both; }
  .m-slider > .container {
    z-index: 2;
    pointer-events: auto; }

.m-slider__main-heading {
  margin: 0 0 0.5rem; }

.m-slider__slides {
  height: 40rem;
  z-index: 1; }

.m-slider__slide {
  position: relative;
  height: 100% !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .m-slider__slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(left, transparent 10%, rgba(240, 242, 244, 0.2) 30%, #f0f2f4 90%);
    background: linear-gradient(to right, transparent 10%, rgba(240, 242, 244, 0.2) 30%, #f0f2f4 90%); }

.slick-track, .slick-list {
  height: 100%; }

.m-slider__content {
  display: block;
  pointer-events: initial;
  position: relative;
  background-color: #FFF;
  padding: 2.5rem; }
  @media screen and (min-width: 48em) {
    .m-slider__content {
      width: 50%; } }

@media screen and (min-width: 48em) {
  .m-slider__content--left {
    float: right; } }

.m-slider__inactive-slide {
  opacity: 0;
  visibility: hidden;
  padding: 0 2.5rem; }
  @media screen and (min-width: 48em) {
    .m-slider__inactive-slide {
      width: 50%; } }

.m-slider__current-slide {
  margin-top: 1rem; }

.m-slider__btns {
  position: relative; }

.m-slider__prev,
.m-slider__next {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  font-size: 1.5rem;
  line-height: 0; }
  .m-slider__prev .arrow,
  .m-slider__next .arrow {
    line-height: 0.6255;
    display: inline-block;
    vertical-align: middle; }
  .m-slider__prev:focus, .m-slider__prev:hover, .m-slider__prev:active,
  .m-slider__next:focus,
  .m-slider__next:hover,
  .m-slider__next:active {
    outline: none; }

.m-resources__resources {
  margin-top: 3.5rem; }

.m-resources__resource {
  background-color: #f0f2f4;
  position: relative; }
  .m-resources__resource::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.25rem;
    background-color: #62B5E5;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: width;
    transition-property: width; }
  .m-resources__resource:focus::before, .m-resources__resource:hover::before, .m-resources__resource:active::before {
    width: 100%; }

.m-resources__resource-link {
  text-decoration: none;
  color: #2C2A29; }

.m-resources__resource-icon {
  background-color: #2C2A29;
  color: #FFF;
  padding: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .m-resources__resource-icon .icon {
    width: 3.25rem;
    height: 3.25rem; }

.m-resources__resource-content {
  padding: 1rem; }

.m-resources__resource-title {
  display: block;
  width: 100%;
  font-weight: bold;
  line-height: 1.2;
  font-size: 0.9375rem; }
  @media screen and (min-width: 26.5625em) {
    .m-resources__resource-title {
      font-size: 1rem; } }
  @media screen and (min-width: 75em) {
    .m-resources__resource-title {
      font-size: 1.25rem; } }

.m-resources__resource-type {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  color: #646464; }

@media screen and (min-width: 48em) {
  .flexbox .m-resources .f-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .flexbox .m-resources .f-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    -ms-flex-line-pack: center;
        align-content: center; }
  .flexbox .m-resources .f-table__cell {
    -ms-flex-line-pack: center;
        align-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap; }
  .flexbox .m-resources .icon {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; } }

.module--blue .m-resources__resource::before {
  background-color: #62B5E5; }

.module--blue .m-resources__resource .m-resources__resource-icon {
  background-color: #62B5E5; }

.module--green .m-resources__resource::before {
  background-color: #6BA539; }

.module--green .m-resources__resource .m-resources__resource-icon {
  background-color: #6BA539; }

.module--orange .m-resources__resource::before {
  background-color: #ED8B00; }

.module--orange .m-resources__resource .m-resources__resource-icon {
  background-color: #ED8B00; }

.module--purple .m-resources__resource::before {
  background-color: #A77BCA; }

.module--purple .m-resources__resource .m-resources__resource-icon {
  background-color: #A77BCA; }

.module--red .m-resources__resource::before {
  background-color: #F9423A; }

.module--red .m-resources__resource .m-resources__resource-icon {
  background-color: #F9423A; }

.m-resources .m-resources__resource--blue::before {
  background-color: #62B5E5; }

.m-resources .m-resources__resource--blue .m-resources__resource-icon {
  background-color: #62B5E5; }

.m-resources .m-resources__resource--green::before {
  background-color: #6BA539; }

.m-resources .m-resources__resource--green .m-resources__resource-icon {
  background-color: #6BA539; }

.m-resources .m-resources__resource--orange::before {
  background-color: #ED8B00; }

.m-resources .m-resources__resource--orange .m-resources__resource-icon {
  background-color: #ED8B00; }

.m-resources .m-resources__resource--purple::before {
  background-color: #A77BCA; }

.m-resources .m-resources__resource--purple .m-resources__resource-icon {
  background-color: #A77BCA; }

.m-resources .m-resources__resource--red::before {
  background-color: #F9423A; }

.m-resources .m-resources__resource--red .m-resources__resource-icon {
  background-color: #F9423A; }

.m-people__people {
  margin-bottom: -3rem; }

.m-people__person {
  margin-bottom: 3rem;
  padding-right: 1.5rem; }

.m-people__person--has-button {
  padding-bottom: 5.825rem; }

.m-people__name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0; }

.m-people__bio {
  margin: 1.5rem 0 0; }

.m-people__title,
.m-people__bio p {
  font-size: 1.125rem; }

.m-people__contact {
  display: block;
  position: relative;
  padding: 0.25rem 0; }

.m-people__contact--email .icon {
  color: #6BA539; }

.m-people__contact--phone .icon {
  color: #A77BCA; }

.m-people__contact .icon {
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem; }

.m-people__contact-text {
  font-size: 1.125rem;
  padding-left: 2rem; }

.m-people__modal-content {
  display: none; }

.m-people__btn {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  margin: 0; }

.m-organization {
  background-color: #f0f2f4;
  padding: 7rem 0; }
  .m-organization .m-media {
    margin-top: 2.5rem; }
    @media screen and (min-width: 48em) {
      .m-organization .m-media {
        margin-top: 1.5rem; } }
  .m-organization .m-media__caption {
    background-color: #FFF;
    padding: 1rem 2rem;
    font-size: 0.75rem; }

@media screen and (min-width: 48em) {
  .m-organization__content {
    padding-right: 5rem; } }

.m-organization__logo {
  max-width: 15rem; }

.BambooHR-ATS-Department-Item {
  padding: 1rem 2.5rem;
  border: 1px solid #f0f2f4;
  background-color: #f7f8f9; }

.BambooHR-ATS-Department-Item:nth-of-type(odd) {
  background-color: white; }

.BambooHR-ATS-Department-Header {
  font-size: 1.125rem; }
  @media screen and (min-width: 26.5625em) {
    .BambooHR-ATS-Department-Header {
      font-size: 1.25rem; } }
  @media screen and (min-width: 48em) {
    .BambooHR-ATS-Department-Header {
      font-size: 1.5rem; } }

.BambooHR-ATS-Department-List p, .BambooHR-ATS-Department-List li,
.BambooHR-ATS-Jobs-List p,
.BambooHR-ATS-Jobs-List li {
  max-width: 100%; }

.BambooHR-ATS-Jobs-Item a {
  vertical-align: top;
  display: inline-block;
  width: auto; }

.BambooHR-ATS-Location {
  display: block;
  color: #818385; }
  @media screen and (min-width: 48em) {
    .BambooHR-ATS-Location {
      display: inline-block;
      float: right;
      text-align: right; } }

#BambooHR-Footer {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
  padding: 0.5rem 0 0;
  position: absolute;
  right: 0; }
  #BambooHR-Footer a {
    display: inline-block; }
    #BambooHR-Footer a:focus, #BambooHR-Footer a:hover, #BambooHR-Footer a:active {
      background-color: transparent; }

.m-news-event__table,
.m-partner-opportunities__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #f0f2f4;
  background-color: #f7f8f9; }
  .m-news-event__table thead,
  .m-partner-opportunities__table thead {
    display: none; }
    @media screen and (min-width: 48em) {
      .m-news-event__table thead,
      .m-partner-opportunities__table thead {
        display: table-header-group; } }
  .m-news-event__table th,
  .m-partner-opportunities__table th {
    text-align: left;
    font-weight: normal;
    color: #2C2A29; }
  .m-news-event__table thead th,
  .m-partner-opportunities__table thead th {
    font-size: 1.125rem; }
    @media screen and (min-width: 26.5625em) {
      .m-news-event__table thead th,
      .m-partner-opportunities__table thead th {
        font-size: 1.25rem; } }
    @media screen and (min-width: 48em) {
      .m-news-event__table thead th,
      .m-partner-opportunities__table thead th {
        font-size: 1.5rem; } }
  .m-news-event__table tr,
  .m-partner-opportunities__table tr {
    padding: 1rem 0;
    display: block; }
    @media screen and (min-width: 48em) {
      .m-news-event__table tr,
      .m-partner-opportunities__table tr {
        display: table-row;
        padding: 0; } }
  .m-news-event__table td, .m-news-event__table th,
  .m-partner-opportunities__table td,
  .m-partner-opportunities__table th {
    padding: 0.5rem 1rem;
    display: block; }
    @media screen and (min-width: 48em) {
      .m-news-event__table td, .m-news-event__table th,
      .m-partner-opportunities__table td,
      .m-partner-opportunities__table th {
        display: table-cell;
        padding: 1rem 2.5rem; } }
  .m-news-event__table td,
  .m-partner-opportunities__table td {
    color: #818385; }
  .m-news-event__table tbody tr:nth-of-type(odd),
  .m-partner-opportunities__table tbody tr:nth-of-type(odd) {
    background-color: white; }

.m-portfolio-companies__video {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; }
  @media screen and (min-width: 48em) {
    .m-portfolio-companies__video {
      display: block; } }

.m-portfolio-companies__sectors {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover; }
  .m-portfolio-companies__sectors .container {
    max-width: 45rem;
    z-index: 2; }
  .m-portfolio-companies__sectors::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.6;
    z-index: 1; }

.m-portfolio-companies__sectors-title-bar {
  color: #FFF;
  margin-bottom: 0.875rem;
  text-align: center; }

.m-portfolio-companies__sectors-title {
  color: #FFF;
  display: block;
  width: 100%;
  margin: 0;
  vertical-align: middle;
  text-align: center;
  max-width: none !important; }
  @media screen and (min-width: 48em) {
    .m-portfolio-companies__sectors-title {
      font-size: 4rem; } }

.m-portfolio-companies__sectors-lead {
  font-size: 1.375rem;
  margin: 0.5rem auto 0;
  vertical-align: middle;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 37.5rem !important;
  /*@include mq(tab) {
		margin:0;
		width:50%;
		display:inline-block;
	}*/ }

.m-portfolio-companies__sector {
  vertical-align: top;
  position: relative;
  text-align: center;
  color: #FFF;
  padding: 2rem 1rem 1.75rem; }
  .m-portfolio-companies__sector:nth-of-type(5n+1) .m-portfolio-companies__sector-icon {
    border-color: #62B5E5;
    color: #62B5E5; }
  .m-portfolio-companies__sector:nth-of-type(5n+2) .m-portfolio-companies__sector-icon {
    border-color: #F9423A;
    color: #F9423A; }
  .m-portfolio-companies__sector:nth-of-type(5n+3) .m-portfolio-companies__sector-icon {
    border-color: #ED8B00;
    color: #ED8B00; }
  .m-portfolio-companies__sector:nth-of-type(5n+4) .m-portfolio-companies__sector-icon {
    border-color: #A77BCA;
    color: #A77BCA; }
  .m-portfolio-companies__sector:nth-of-type(5n+5) .m-portfolio-companies__sector-icon {
    border-color: #6BA539;
    color: #6BA539; }

.m-portfolio-companies__sector-link {
  text-decoration: none;
  display: block;
  color: #FFF; }

.m-portfolio-companies__sector-icon {
  color: #A77BCA;
  display: inline-block; }
  .m-portfolio-companies__sector-icon .icon {
    width: 4rem;
    height: 4rem; }

.m-portfolio-companies__sector-count {
  display: block;
  font-family: proxima-nova-soft, "Relato Sans", "Helvetica", sans-serif;
  font-weight: bold;
  font-size: 3.75rem;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 0; }

.m-portfolio-companies__sector-title {
  margin: 1rem 0 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.125rem; }

.m-portfolio-companies__label {
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.125rem; }

.m-portfolio-companies__results {
  background: #f0f2f4;
  padding: 5.25rem 0 7rem; }
  .m-portfolio-companies__results .grid {
    margin-top: 3.25rem; }
  .m-portfolio-companies__results .grid__item {
    background-color: #FFF;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05); }

@media screen and (min-width: 48em) {
  .m-portfolio-companies__results-title, .m-portfolio-companies__filter {
    display: inline-block;
    width: 50%;
    vertical-align: top; } }

.m-portfolio-companies__filter {
  margin-top: 2.125rem; }
  @media screen and (min-width: 48em) {
    .m-portfolio-companies__filter {
      margin-top: 0; } }

.m-portfolio-companies__result {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: opacity,visibility,-webkit-transform;
  transition-property: opacity,visibility,-webkit-transform;
  transition-property: opacity,visibility,transform;
  transition-property: opacity,visibility,transform,-webkit-transform; }
  .m-portfolio-companies__result.result-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    -webkit-transform: scale(0.5) !important;
        -ms-transform: scale(0.5) !important;
            transform: scale(0.5) !important;
    width: 0 !important;
    margin: 0 !important; }
    .m-portfolio-companies__result.result-hidden > * {
      display: none; }

.m-portfolio-companies__company-link {
  display: block;
  height: 100%;
  text-decoration: none;
  text-align: center; }
  .m-portfolio-companies__company-link:focus .m-portfolio-companies__company-info::before, .m-portfolio-companies__company-link:hover .m-portfolio-companies__company-info::before, .m-portfolio-companies__company-link:active .m-portfolio-companies__company-info::before {
    width: 100%; }

.m-portfolio-companies__company-logo {
  padding: 0 1.5rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .m-portfolio-companies__company-logo {
      height: 15rem;
      padding: 2.25rem 1.5rem; } }

.m-portfolio-companies__company-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle; }

.m-portfolio-companies__company-info {
  padding: 0.75rem 1rem;
  border-top: 1px solid #f0f2f4;
  text-align: left;
  color: #373e48;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: color,background-color;
  transition-property: color,background-color; }
  .m-portfolio-companies__company-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0%;
    height: 0.25rem;
    background-color: #62B5E5;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: width;
    transition-property: width; }
  .m-portfolio-companies__company-info p {
    margin: 0; }

.m-portfolio-companies__company-name {
  font-weight: bold; }

.m-portfolio-companies__result--sector-128 .m-portfolio-companies__company-info::before {
  background-color: #62B5E5; }

.m-portfolio-companies__result--sector-129 .m-portfolio-companies__company-info::before {
  background-color: #F9423A; }

.m-portfolio-companies__result--sector-127 .m-portfolio-companies__company-info::before {
  background-color: #ED8B00; }

.m-section-nav {
  background-color: #f0f2f4;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF; }

.nav--section {
  padding: 2.5rem 0; }
  .nav--section .nav__list {
    border-left: 0.25rem solid #62B5E5;
    padding-left: 0.875rem; }
    @media screen and (min-width: 48em) {
      .nav--section .nav__list {
        border-left: none;
        padding-left: 0; } }
  .nav--section .nav__item {
    display: block; }
    @media screen and (min-width: 48em) {
      .nav--section .nav__item {
        display: inline-block;
        margin-right: 2rem; } }
    .nav--section .nav__item:last-of-type {
      margin-right: 0; }
  .nav--section .nav__item--parent {
    font-weight: bold; }
  .nav--section .nav__link {
    padding: 0.5rem 0;
    color: #2C2A29;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-property: color;
    transition-property: color; }

.module--orange .nav--section .nav__list {
  border-left-color: #ED8B00; }

.module--blue .nav--section .nav__list {
  border-left-color: #62B5E5; }

.module--green .nav--section .nav__list {
  border-left-color: #6BA539; }

.module--red .nav--section .nav__list {
  border-left-color: #F9423A; }

.module--purple .nav--section .nav__list {
  border-left-color: #A77BCA; }

.module--orange .nav--section .nav__link:focus, .module--orange .nav--section .nav__link:hover, .module--orange .nav--section .nav__link:active {
  color: #ED8B00; }

.module--blue .nav--section .nav__link:focus, .module--blue .nav--section .nav__link:hover, .module--blue .nav--section .nav__link:active {
  color: #62B5E5; }

.module--green .nav--section .nav__link:focus, .module--green .nav--section .nav__link:hover, .module--green .nav--section .nav__link:active {
  color: #6BA539; }

.module--red .nav--section .nav__link:focus, .module--red .nav--section .nav__link:hover, .module--red .nav--section .nav__link:active {
  color: #F9423A; }

.module--purple .nav--section .nav__link:focus, .module--purple .nav--section .nav__link:hover, .module--purple .nav--section .nav__link:active {
  color: #A77BCA; }

.module--orange .nav--section .nav__item--current .nav__link {
  color: #ED8B00; }

.module--blue .nav--section .nav__item--current .nav__link {
  color: #62B5E5; }

.module--green .nav--section .nav__item--current .nav__link {
  color: #6BA539; }

.module--red .nav--section .nav__item--current .nav__link {
  color: #F9423A; }

.module--purple .nav--section .nav__item--current .nav__link {
  color: #A77BCA; }

.m-home-impact {
  text-align: center; }
  .m-home-impact .grid {
    margin-top: 3rem; }
    @media screen and (min-width: 48em) {
      .m-home-impact .grid {
        margin-bottom: -5rem; } }
  .m-home-impact .grid__item {
    text-align: center;
    margin-bottom: 5rem; }
    .m-home-impact .grid__item h3 {
      margin-bottom: 0.5rem; }
    .m-home-impact .grid__item p {
      margin-top: 0.5rem;
      padding: 0 1.5rem; }
  .m-home-impact .grid__item .icon {
    width: 3.75rem;
    height: 3.75rem; }
  .m-home-impact .module--blue .icon {
    color: #62B5E5; }
  .m-home-impact .module--green .icon {
    color: #6BA539; }
  .m-home-impact .module--red .icon {
    color: #F9423A; }
  .m-home-impact .module--orange .icon {
    color: #ED8B00; }
  .m-home-impact .module--purple .icon {
    color: #A77BCA; }

.m-home-impact p {
  margin-left: auto;
  margin-right: auto; }

.m-home-impact .grid__item p {
  max-width: 25rem; }

.m-home-sections {
  background-color: #fbfdfd;
  position: relative; }
  @media screen and (min-width: 48em) {
    .m-home-sections::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      left: 50%;
      background-color: #f0f2f4;
      z-index: 0; } }

.m-home-updates {
  position: relative;
  z-index: 1;
  background-color: #fbfdfd;
  padding: 3rem 1.5rem;
  margin: 0 -0.75rem; }
  @media screen and (min-width: 48em) {
    .m-home-updates {
      margin: 0;
      background-color: transparent;
      padding: 3.5rem 0.4375rem 3.5rem 0; } }
  @media screen and (min-width: 64em) {
    .m-home-updates {
      padding-right: 3.5rem; } }
  @media screen and (min-width: 75em) {
    .m-home-updates {
      padding-right: 5rem; } }

.m-home-news {
  position: relative;
  z-index: 1;
  background-color: #f0f2f4;
  padding: 3rem 1.5rem;
  margin: 0 -0.75rem; }
  @media screen and (min-width: 48em) {
    .m-home-news {
      margin: 0;
      background-color: transparent;
      padding: 3.5rem 0 3.5rem 0.4375rem; } }
  @media screen and (min-width: 64em) {
    .m-home-news {
      padding-left: 3.5rem; } }
  @media screen and (min-width: 75em) {
    .m-home-news {
      padding-left: 5rem; } }

.m-home-updates__tiles,
.m-home-news__tiles {
  margin: 1.75rem 0; }

@media screen and (min-width: 48em) {
  .m-news-intro__heading, .m-news-intro__filter {
    display: inline-block;
    width: 50%;
    vertical-align: top; } }

.m-news-month {
  background-color: #f0f2f4;
  padding: 7rem 0;
  margin: 0 !important;
  display: none; }
  .m-news-month.m-news-month--active {
    display: block; }
  .m-news-month.m-news-month--alt {
    background-color: #FFF; }
    .m-news-month.m-news-month--alt .c-entry-box {
      background-color: #f0f2f4; }
    .m-news-month.m-news-month--alt .c-entry-box__tag-text,
    .m-news-month.m-news-month--alt .c-entry-box__tag-date {
      background-color: #FFF; }

.m-news-month__heading {
  border-bottom: 1px solid #dcdada;
  padding-bottom: 1.75rem;
  margin-bottom: 4.25rem; }

.m-news-event p {
  max-width: 53.75rem; }

.m-news-event__notice {
  display: inline-block;
  background-color: #d1e8c7;
  padding: 0.5rem 2rem;
  border: 1px solid #6BA539; }

.m-news-event__title {
  margin-bottom: 2.5rem; }

.m-news-event__image {
  margin: 0 0 2.5rem;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .m-news-event__image {
      float: right;
      width: 50%;
      height: auto;
      margin: 0 0 2.5rem 2.5rem; } }

.m-news-event__box {
  margin-bottom: 2.5rem; }

.m-news-event__map iframe {
  width: 100%; }

.m-news-event__box--agenda .c-btn {
  margin-top: 1.5rem; }

.m-news-event__eventbrite,
.m-news-event__details {
  margin: 2.5rem 0; }

.m-news-event__detail {
  display: block;
  font-size: 1.375rem;
  margin-bottom: 1rem; }
  .m-news-event__detail .icon {
    width: 1.375rem;
    height: 1.375rem;
    color: #6BA539;
    vertical-align: middle;
    margin-right: 0.75rem;
    margin-top: -0.25rem; }
  .m-news-event__detail:nth-of-type(2) .icon {
    color: #62B5E5; }
  .m-news-event__detail:nth-of-type(3) .icon {
    color: #ED8B00; }

.m-news-entry__date {
  font-size: 1.125rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f0f2f4;
  font-style: italic;
  margin-top: 0; }
  @media screen and (min-width: 48em) {
    .m-news-entry__date {
      font-size: 1.25rem; } }

.form__note {
  text-align: right;
  display: block; }

.form__asterisk {
  color: #F9423A; }

.form .errors li {
  color: #F9423A;
  display: block;
  padding: 0.75rem 0; }

.form__field {
  margin-bottom: 2rem; }

.form__legend {
  font-weight: bold; }

.form__field .c-select__container,
.form__input,
.form__textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin: 0.75rem 0.5rem 0 0;
  text-decoration: none;
  font-size: 1rem;
  color: #2C2A29;
  background-color: transparent;
  border: 2px solid #B7B7B7;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: border-color;
  transition-property: border-color; }
  @media screen and (min-width: 48em) {
    .form__field .c-select__container,
    .form__input,
    .form__textarea {
      font-size: 1.125rem; } }
  .form__field .c-select__container:focus, .form__field .c-select__container:hover, .form__field .c-select__container:active,
  .form__input:focus,
  .form__input:hover,
  .form__input:active,
  .form__textarea:focus,
  .form__textarea:hover,
  .form__textarea:active {
    outline: none;
    border-color: #818385; }

.form__field .c-select__container {
  padding: 0;
  height: 3.5rem; }

.form__radio {
  display: block;
  margin: 0.75rem 0; }
  .form__radio label {
    padding-left: 0.75rem; }

#preferredMethod {
  display: none; }

.form__submit-msg {
  display: none;
  font-size: 1.25rem;
  font-weight: bold; }

.top-nav {
  background-color: #EEF0F2;
  text-align: center; }
  .top-nav ul {
    margin: 0px;
    display: inline-block; }
  .top-nav li {
    list-style: none;
    display: inline-block;
    color: #000000;
    font-size: 15px;
    margin-left: 30px;
    text-transform: uppercase;
    padding: 0px; }
    .top-nav li a {
      color: #000000;
      font: normal normal normal 15px/21px Relato Sans;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding: 15px 0px;
      display: inline-block; }
      .top-nav li a:hover {
        color: #000000;
        border-bottom: 2px solid red; }
    .top-nav li:first-child {
      margin-left: 0px;
      font-weight: 600; }

#who-we-are {
  padding: 50px 0px; }
  #who-we-are p {
    font-size: 19px !important;
    font-weight: 200;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: #000000;
    line-height: 35px !important;
    text-align: left; }
  #who-we-are .video-cus {
    display: block;
    margin: 0 auto;
    margin-top: 0px; }

.heading {
  text-align: center;
  color: #EA3A2E !important;
  font-size: 65px;
  font-weight: 200; }

section.story-sec {
  background-color: #EEF0F2;
  padding: 0px 0px;
  border-radius: 250px 250px 0px 0px; }
  section.story-sec p {
    font-size: 19px !important;
    font-weight: 200;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: #000000;
    line-height: 35px !important;
    text-align: left; }

#impact-glance {
  padding: 0px 0px;
  background-image: url("../img/spiral-bg.jpg");
  background-position: center; }
  #impact-glance p {
    font-size: 19px !important;
    font-weight: 200;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: #000000;
    line-height: 35px !important;
    text-align: left; }
  #impact-glance ul {
    padding: 0px;
    margin: 45px 0px 0px 0px;
    background-color: #EEF0F2; }
    #impact-glance ul li {
      display: inline-block;
      list-style: none;
      margin-left: 50px; }
      #impact-glance ul li:first-child {
        font-weight: 600;
        color: #000000; }
      #impact-glance ul li span {
        display: inline-block;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        margin-right: 4px; }
  #impact-glance .impact-div p {
    margin: 0px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px; }
  #impact-glance .impact-div h3 {
    color: #000;
    font-weight: 700;
    margin-bottom: 0px; }
  #impact-glance .impact-div-1 {
    border-radius: 0px 0px 20px 0px;
    border-color: #EA3A2E; }
  #impact-glance .impact-div-2 {
    border-radius: 0px 20px 0px 0px;
    border-color: #F77C0C; }
  #impact-glance .impact-div-3 {
    border-radius: 20px 0px 0px 0px;
    border-color: #35ACE5; }
  #impact-glance .impact-div-4 {
    border-radius: 0px 0px 0px 25px;
    border-color: #846BAD; }
  #impact-glance .impact-div-8 {
    border-radius: 25px 0px 0px 0px;
    border-color: #846BAD; }
  #impact-glance .impact-div-9 {
    border-radius: 0px 25px 0px 0px;
    border-color: #846BAD; }
  #impact-glance .impact-div-5 {
    border-radius: 0px 0px 25px 0px;
    border-color: #F77C0C; }
  #impact-glance .impact-div-6 {
    border-radius: 0px 25px 0px 0px;
    border-color: #F77C0C; }
  #impact-glance .impact-div-7 {
    border-radius: 0px 25px 0px 0px;
    border-color: #35ACE5; }
  #impact-glance .impact-div-10 {
    border-radius: 0px 25px 0px 0px;
    border-color: #EA3A2E; }
  #impact-glance .impact-div-11 {
    border-radius: 25px 0px 0px 0px;
    border-color: #F77C0C; }
  #impact-glance .impact-div-12 {
    border-radius: 0px 0px 0px 25px;
    border-color: #35ACE5; }

#culture {
  background-color: #EEF0F2;
  padding: 0px 0px;
  border-radius: 250px 250px 0px 0px; }
  #culture p {
    font-size: 19px !important;
    font-weight: 200;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: #000000;
    line-height: 35px !important;
    text-align: left; }
  #culture img {
    margin: 0 auto;
    display: block;
    margin-top: 40px; }

#leadership {
  background-color: #EEF0F2;
  padding: 0px 0px;
  border-radius: 250px 250px 0px 0px; }
  #leadership p {
    font-size: 19px !important;
    font-weight: 200;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: #000000;
    line-height: 35px !important;
    text-align: left; }
  #leadership .leadership-inner p {
    margin: 5px 0px 0px 0px;
    font-size: 16px;
    line-height: 21px; }
  #leadership .obi-inner p {
    margin: 0px;
    font-size: 16px;
    padding: 0px 15px; }

section#impact-glance div#Impact img {
  margin-bottom: 0px; }

#Culture blockquote {
  font-size: 21px !important;
  margin-top: 15px;
  text-align: center;
  color: #2C2A29 !important;
  text-align: left; }

#Culture p {
  font-size: 21px !important;
  margin-top: 15px;
  text-align: center;
  color: #2C2A29 !important;
  text-align: left; }

#Culture .intro li {
  font-size: 21px !important;
  margin-top: 15px;
  text-align: center;
  color: #2C2A29 !important; }

#Culture .intro .restyled p strong {
  color: #2C2A29 !important; }

#Culture .culture-slider {
  margin-top: 0px !important; }

.restyled .c-btn {
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #EA3A2E;
  border-radius: 0px 0px 25px 0px;
  font-size: 18px;
  padding: 8px 30px !important;
  background-color: transparent !important;
  color: #2C2A29 !important; }
  .restyled .c-btn:hover {
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #EA3A2E;
    border-radius: 0px 0px 25px 0px;
    font-size: 18px;
    padding: 8px 30px !important;
    background-color: transparent !important;
    color: #2C2A29 !important; }

.restyled .ar-row.colour-red {
  border-top: 20px solid #EA3A2E;
  padding-top: 30px; }
  .restyled .ar-row.colour-red:nth-child(odd) {
    border-top-right-radius: 20px; }
  .restyled .ar-row.colour-red:nth-child(even) {
    border-top-left-radius: 20px; }

.restyled .ar-row.colour-blue {
  border-top: 20px solid #62b5e5;
  padding-top: 30px; }
  .restyled .ar-row.colour-blue:nth-child(odd) {
    border-top-right-radius: 20px; }
  .restyled .ar-row.colour-blue:nth-child(even) {
    border-top-left-radius: 20px; }

.restyled .ar-row.colour-orange {
  border-top: 20px solid #ed8b00;
  padding-top: 30px; }
  .restyled .ar-row.colour-orange:nth-child(odd) {
    border-top-right-radius: 20px; }
  .restyled .ar-row.colour-orange:nth-child(even) {
    border-top-left-radius: 20px; }

.restyled .main-content {
  padding-bottom: 50px; }

.restyled img.ar-story__image {
  border-top-left-radius: 20px;
  margin-bottom: 10px; }

.restyled .module .c-btn {
  padding: 6px 50px !important;
  text-transform: uppercase;
  font-weight: 400; }
  .restyled .module .c-btn:hover {
    padding: 6px 50px !important;
    text-transform: uppercase;
    font-weight: 400; }

.dawnload-btns {
  text-align: center;
  margin-top: 40px; }
  .dawnload-btns button {
    border: 4px solid #EA3A2E;
    color: #000000;
    font-weight: 300;
    width: 100%;
    max-width: 250px;
    background-color: transparent;
    padding: 5px 5px;
    border-radius: 0px 0px 15px 0px; }
  .dawnload-btns a.c-btn {
    cursor: pointer; }

.story-1 {
  padding: 15px;
  margin-top: 30px; }
  .story-1 a {
    color: #fff;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    border: none;
    margin-top: 15px;
    display: block; }
    .story-1 a:hover {
      color: #fff; }
  .story-1 h3 {
    font-size: 28px;
    font-weight: 300;
    color: #fff; }
  .story-1 img {
    width: 100%;
    max-width: 130px;
    background-color: #fff; }

.breadcrum-container.restyled #reportBreadcrumbs {
  color: #000000; }
  .breadcrum-container.restyled #reportBreadcrumbs a {
    color: #000000; }

.story-bg-1 {
  background-color: rgba(247, 124, 12, 0.8);
  border-radius: 0px 0px 20px 0px; }

.story-bg-2 {
  background-color: #EA3A2E;
  border-radius: 0px 20px 0px 0px; }

.story-bg-3 {
  background-color: #35ACE5;
  border-radius: 0px 0px 20px 0px; }

.story-bg-4 {
  background-color: #846BAD;
  border-radius: 20px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .story-bg-4 h3 {
    -webkit-box-flex: 80%;
        -ms-flex: 80%;
            flex: 80%; }

.story-bg-5 {
  background-color: #35ACE5;
  border-radius: 0px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .story-bg-5 h3 {
    -webkit-box-flex: 80%;
        -ms-flex: 80%;
            flex: 80%; }

.story-1.story-bg-6 {
  background-color: #66a52e;
  overflow: hidden;
  border-radius: 0px 0px 0px 20px; }
  .story-1.story-bg-6 img {
    float: right; }

.stories-inner {
  margin-top: 40px; }

.video-cus iframe {
  margin: 0 auto;
  display: block; }

li.gradient-box-1 {
  color: #EA3A2E; }
  li.gradient-box-1 span {
    background-color: #EA3A2E; }

li.gradient-box-2 {
  color: #F77C0C; }
  li.gradient-box-2 span {
    background-color: #F77C0C; }

li.gradient-box-3 {
  color: #35ACE5; }
  li.gradient-box-3 span {
    background-color: #35ACE5; }

li.gradient-box-4 {
  color: #846BAD; }
  li.gradient-box-4 span {
    background-color: #846BAD; }

.impact-div {
  border: 5px solid;
  padding: 10px 10px 5px 10px;
  margin-top: 30px;
  overflow: hidden;
  height: 185px;
  position: relative; }
  .impact-div img {
    position: absolute;
    bottom: 5px;
    right: 10px; }

.ou-impact .col-md-3 {
  padding-top: 30px; }

.ou-impact h2 {
  text-align: center;
  margin-top: 60px;
  font-weight: 400;
  margin-bottom: 0px; }

#reflection {
  padding: 85px 0px;
  background-image: url("../img/spiral-bg.jpg");
  background-position: center; }

.reflection-img {
  overflow: hidden;
  margin: 0 auto;
  margin-top: 40px; }
  .reflection-img img {
    width: 100%;
    height: 250px; }
  .reflection-img h5 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    padding: 6px 10px;
    margin: 0px; }

.reflections-1 {
  background-color: #EA3A2E;
  border-radius: 25px 0px 0px 0px;
  max-width: 350px; }

.reflections-2 {
  background-color: #F77C0C;
  border-radius: 0px 0px 25px 0px;
  max-width: 350px; }

.reflection-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto; }
  .reflection-inner a {
    color: #000;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 7px;
    border: none; }
  .reflection-inner .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .reflection-inner .row .col-md-6 {
      padding: 0px 15px; }

.leadership-inner h3 {
  text-align: center;
  margin: 50px 0px 20px 0px;
  font-weight: 400; }

.leadership-inner a {
  display: inline-block;
  border: none;
  background-color: #000;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  display: inline-block;
  border: none;
  background-color: #000;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  text-align: center;
  line-height: 20px; }

.leadership-inner svg.icon {
  width: 14px;
  color: #fff;
  text-align: center;
  height: 11px; }

.reflections-3 {
  background-color: #EA3A2E;
  border-radius: 0px 0px 25px 0px; }

.obi {
  background-color: #fff;
  border-radius: 25px 0px 25px 0px;
  overflow: hidden;
  padding: 50px 80px;
  margin-top: 80px; }
  .obi h3 {
    font-size: 35px;
    font-weight: 400;
    text-align: center; }

.obi-inner {
  margin-top: 40px; }
  .obi-inner h4 {
    background-color: #EA3A2E;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 15px;
    margin: 0px;
    border-radius: 0px 0px 25px 0px; }

.module.module--pull-top:first-child {
  margin-top: 0; }

.bg-spiral {
  background-image: url("../img/spiral-bg.jpg");
  background-position: center;
  background-image: url("https://obi.arrivalsdepartures.com/img/spiral-bg.jpg");
  background-position: center; }

ol li {
  color: #000000; }

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

#Stories p {
  font-size: 21px;
  margin-top: 2rem; }

#Stories .story-grid .row a .title-block {
  text-align: left !important;
  display: block !important; }

#Stories .story-grid .layout4 .double .story-wrapper .title-block {
  top: 2em;
  width: 70% !important; }

#Stories .story-grid .layout4 .single .story-wrapper .title-block {
  top: 2em;
  width: 100% !important; }

#Stories .story-grid .layout5 .story-wrapper .title-block {
  width: 100% !important; }

.position {
  width: 100%; }

section#leadership {
  padding: 0px 0px 100px 0px !important; }
  section#leadership .aj-reflection-img img {
    box-shadow: none !important;
    margin-bottom: 0px !important; }
  section#leadership .aj-reflection-img p.memberName {
    margin: 0px !important;
    background-color: #EA3A2E;
    color: #fff;
    text-align: left !important;
    padding-left: 20px; }
  section#leadership .aj-reflection-img .position p {
    margin: 0px 0px 0px 0px !important;
    font-size: 18px !important;
    line-height: 27px !important;
    text-align: left !important;
    padding-left: 21px; }
  section#leadership .aj-reflection-img:nth-child(odd) img {
    border-top-left-radius: 15px; }
  section#leadership .aj-reflection-img:nth-child(even) p.memberName {
    border-bottom-right-radius: 15px; }
  section#leadership div#Acknowledgments .boardOfDirectors.ar-row {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left; }

#accordion p.memberName {
  background-color: #EA3A2E;
  color: #fff;
  border-bottom-right-radius: 15px;
  text-align: left;
  padding-left: 20px; }

#accordion p.description {
  margin-top: 8px !important;
  text-align: left !important;
  padding-left: 15px; }

#Acknowledgments #accordion {
  background-color: #fff;
  padding: 35px 50px 0px 50px;
  border-radius: 20px 0px 20px 0px;
  overflow: hidden; }
  #Acknowledgments #accordion .member {
    width: 30% !important; }
  #Acknowledgments #accordion .card {
    background-color: #fff !important; }
    #Acknowledgments #accordion .card .card-body .member .description {
      font-size: 18px !important;
      line-height: 21px;
      text-align: left !important;
      padding-left: 15px; }
  #Acknowledgments #accordion h3 {
    font-size: 32px;
    margin-bottom: 0px; }
  #Acknowledgments #accordion .card-body {
    border-top: 0px !important;
    -webkit-box-pack: left !important;
        -ms-flex-pack: left !important;
            justify-content: left !important; }

.module.m-annual-report {
  margin-bottom: 0px; }

.quoteContainer {
  border-radius: 250px 0 0px 0px;
  color: #fff;
  padding: 70px; }

.module--purple .c-btn {
  border-color: #A77BCA !important;
  border-color: #846BAD !important; }

.module .module__sub--purple .c-btn {
  border-color: #A77BCA !important;
  border-color: #846BAD !important; }

.module .module__sub--colour-blue .c-btn {
  border-color: #62b5e5 !important; }

.module .module__sub--green .c-btn {
  border-color: #6ba539 !important; }

.module .module__sub--orange .c-btn {
  border-color: #ed8b00 !important; }

.module .module__sub--red .c-btn {
  border-color: #f9423a !important; }

.breadcrum-container {
  background-color: #EEF0F2; }
  .breadcrum-container #reportBreadcrumbs {
    margin-top: 0 !important;
    padding: 15px; }

.single:nth-child(odd) {
  border-top-left-radius: 15px;
  overflow: hidden; }

.single:nth-child(even) a {
  border-bottom-right-radius: 15px;
  overflow: hidden; }

.double:nth-child(odd) {
  border-top-left-radius: 15px;
  overflow: hidden; }

.double:nth-child(even) a {
  border-bottom-right-radius: 15px;
  overflow: hidden; }

.quoteContainer.colour-red {
  background-color: #ed3f37; }

.quoteContainer.colour-purple {
  background-color: #a77ccb; }

.quoteContainer.colour-blue {
  background-color: #62b5e5; }

.quoteContainer.colour-green {
  background-color: #6ba539; }

.quoteContainer.colour-orange {
  background-color: #ed8b00; }

.social-share-links.colour-purple svg path {
  fill: #846BAD; }

.social-share-links.colour-purple span {
  color: #846BAD; }

.social-share-links.colour-red svg path {
  fill: #f9423a; }

.social-share-links.colour-red span {
  color: #f9423a; }

.social-share-links.colour-blue svg path {
  fill: #62b5e5; }

.social-share-links.colour-blue span {
  color: #62b5e5; }

.social-share-links.colour-green svg path {
  fill: #6ba539; }

.social-share-links.colour-green span {
  color: #6ba539; }

.social-share-links.colour-orange svg path {
  fill: #ed8b00; }

.social-share-links.colour-orange span {
  color: #ed8b00; }

.module--colour-blue .c-btn {
  border-color: #62b5e5 !important; }

.module--green .c-btn {
  border-color: #6ba539 !important; }

.module--orange .c-btn {
  border-color: #ed8b00 !important; }

.module--red .c-btn {
  border-color: #f9423a !important; }

.bottom-nav-module {
  background-color: #EEF0F2;
  margin: 0;
  padding: 7rem 0; }

.main-header.story-header {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-position: bottom center; }

img.culture-image {
  width: 100%; }

.no-margin-top {
  margin-top: 0 !important; }

.js .slider-single > div:nth-child(1n+2) {
  display: none; }

.js .slider-single.slick-initialized > div:nth-child(1n+2) {
  display: block; }

.slider-nav .slick-slide {
  cursor: pointer; }

.slider-nav img {
  padding: 10px;
  border-radius: 20px; }

.slick-next:before {
  content: '>' !important;
  color: #EA3A2E !important; }

.slick-prev:before {
  content: '<' !important;
  color: #EA3A2E !important; }

.letter-restyled .social-share-links svg path {
  fill: #35ACE5; }

.letter-restyled .social-share-links span {
  color: #35ACE5; }

.letter-restyled .border-top {
  border-top-left-radius: 15px;
  border-top: 20px solid #35ACE5;
  padding-top: 30px; }

.letter-restyled .ar-letter__image {
  border-bottom-right-radius: 15px; }

.letter-restyled blockquote {
  margin: 20px 20px 0px 0px;
  font-size: 20px;
  color: #35ACE5; }

.new-letter-nav-module .c-btn {
  margin: 0 30px; }

.new-letter-nav-module a.c-btn {
  border-color: #55acee; }

.new-ss-nav-module .c-btn {
  margin: 0 30px; }

.new-ss-nav-module a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 45px; }

.new-ss-nav-module a.c-btn.c-btn--entry {
  border-bottom-right-radius: 25px; }

.c-btn.c-btn--externalUrl {
  border-radius: 25px 0px 0px 0px; }

.m-ar-story.success-story.module--red .restyled .ar-col:first-child {
  border: 0 !important; }

.m-ar-story.success-story.module--blue .restyled .ar-col:first-child {
  border: 0 !important; }

.m-ar-story.success-story.module--orange .restyled .ar-col:first-child {
  border: 0 !important; }

.director.aj-reflection-img {
  display: block !important; }
  .director.aj-reflection-img .linkedin img {
    padding-left: 20px;
    padding-left: 20px;
    height: 20px !important; }

.linkedin {
  width: auto; }
  .linkedin a:not([class]) {
    border-bottom: none !important; }

.story-wrapper .story-sub-title {
  width: 100%;
  float: left; }

section#who-we-are .Intro p {
  font-size: 19px !important;
  font-weight: 200 !important;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px !important;
  color: #000000;
  line-height: 35px !important;
  text-align: left !important; }

span.image-name {
  width: 100%;
  background: red;
  display: block;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px !important; }

.entry-annual-report-restyled div#Intro {
  font-weight: 200;
  margin: 0 auto;
  margin-top: 10px !important;
  color: #000000;
  line-height: 35px !important;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  font-size: 21px !important;
  text-align: center; }

.entry-annual-report-restyled #Intro {
  text-align: left !important; }
  .entry-annual-report-restyled #Intro p {
    text-align: left !important; }

.ar-navbar-wrapper #ar-navbar .nav-item-reflection.active {
  color: #EA3A2E; }

.ar-navbar-wrapper #ar-navbar .nav-item-reflection:hover {
  color: #EA3A2E; }

.ar-navbar-wrapper #ar-navbar .nav-item-reflection::before {
  background-color: #EA3A2E; }

.new-letter-nav-module.module a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 45px; }

.new-letter-nav-module.module a.c-btn.c-btn--entry {
  border-bottom-right-radius: 25px; }

.new-ls-nav-module a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 45px; }

.new-ls-nav-module a.c-btn.c-btn--entry {
  border-bottom-right-radius: 25px; }

a.c-btn.c-btn--slim {
  margin-top: 80px; }

.story-header-restyled {
  padding-bottom: 15rem !important; }

@media only screen and (max-width: 767px) {
  .heading {
    font-size: 45px; }
  #who-we-are {
    padding: 100px 0px; }
    #who-we-are .video-cus {
      width: 100%;
      margin-top: 0px; }
    #who-we-are p {
      font-size: 19px;
      font-weight: 200;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      margin-top: 20px;
      color: #000000;
      line-height: 35px; }
  #culture {
    background-color: #EEF0F2;
    padding: 0px 0px 100px 0px;
    border-radius: 100px 100px 0px 0px; }
    #culture img {
      width: 100%; }
    #culture p {
      font-size: 19px;
      font-weight: 200;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      margin-top: 20px;
      color: #000000;
      line-height: 35px; }
  section.story-sec {
    border-radius: 100px 100px 0px 0px;
    padding: 60px 0px; }
    section.story-sec p {
      font-size: 19px;
      font-weight: 200;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      margin-top: 20px;
      color: #000000;
      line-height: 35px; }
  #impact-glance {
    padding: 60px 0px; }
    #impact-glance p {
      font-size: 19px;
      font-weight: 200;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      margin-top: 20px;
      color: #000000;
      line-height: 35px; }
    #impact-glance ul li {
      display: block;
      margin-left: 82px; }
      #impact-glance ul li:first-child {
        display: inline-block;
        margin-left: 15px; }
  #leadership {
    background-color: #EEF0F2;
    padding: 0px 0px 100px 0px;
    border-radius: 100px 100px 0px 0px; }
    #leadership p {
      font-size: 19px;
      font-weight: 200;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      margin-top: 20px;
      color: #000000;
      line-height: 35px; }
    #leadership .leadership-inner p {
      padding: 0px 20px; }
  .story-bg-4 {
    display: block; }
  .story-bg-5 {
    display: block; }
  .story-1 {
    overflow: hidden;
    margin-top: 15px; }
    .story-1 h3 {
      font-size: 25px; }
    .story-1 img {
      max-width: 110px;
      float: right; }
  .stories-inner {
    margin-top: 15px; }
  li.gradient-box-1 {
    display: inline-block !important;
    margin-left: 5px !important; }
  .impact-div {
    margin-top: 0px; }
  #reflection {
    padding: 60px 0px; }
  .leadership-inner h3 {
    text-align: center;
    margin: 35px 0px 10px 0px; }
  .leadership-inner a {
    margin-left: 20px; }
  .obi {
    background-color: #fff;
    border-radius: 25px 0px 25px 0px;
    overflow: hidden;
    padding: 40px 30px;
    margin-top: 60px; }
    .obi h3 {
      font-size: 29px;
      margin-bottom: 20px; }
  .obi-inner {
    margin-top: 25px; }
  .top-nav {
    display: none; }
  .video-cus iframe {
    width: 100%; }
  div#Impact {
    padding-top: 50px;
    padding-bottom: 50px; }
  .reflection-inner .row {
    display: block; }
  #Acknowledgments {
    padding-top: 6rem; }
    #Acknowledgments #accordion {
      padding: 35px 20px 0px 20px; }
      #Acknowledgments #accordion .member {
        width: 100% !important; }
  div#Culture {
    padding-bottom: 30px; }
  #Stories {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    #Stories p {
      margin-top: 2em; }
    #Stories .story-grid .layout4 .double a img {
      object-fit: unset; }
  #Intro {
    padding-top: 2rem; }
  .new-letter-nav-module .c-btn {
    margin: 20px 30px; }
  .new-ss-nav-module .c-btn {
    margin: 20px 30px; }
  .linkedin {
    width: auto; } }

.memberName sup {
  font-size: 50%;
  top: -0.9em; }

.legend-bar {
  height: 30px;
  margin: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EEF0F2;
  width: 100%; }

.legend-option {
  display: inherit;
  height: 30px; }

.legend-block {
  width: 30px;
  height: auto; }
  .legend-block.red {
    background-color: #EA3A2E; }
  .legend-block.orange {
    background-color: #F77C0C; }
  .legend-block.blue {
    background-color: #35ACE5; }
  .legend-block.purple {
    background-color: #846BAD; }

.legend-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85em;
  margin-left: 10px; }
  .legend-title.red {
    color: #EA3A2E; }
  .legend-title.orange {
    color: #F77C0C; }
  .legend-title.blue {
    color: #35ACE5; }
  .legend-title.purple {
    color: #846BAD; }

.legend-icons-bar {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.legend-icons {
  font-weight: 200;
  margin-right: 20px; }

.infographicTile {
  height: 230px;
  border: 8px solid;
  padding: 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.tileIcon {
  width: 80px; }

.infographicDisplay1.ar-row, .infographicDisplay2.ar-row, .infographicDisplay3.ar-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.ar-col4 {
  width: calc(25% - 20px);
  margin: 10px;
  padding: 10px; }

.aj-info-img {
  border: 7px solid;
  overflow: hidden;
  height: 260px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .aj-info-img img {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 80px !important;
    width: 80px !important; }
  .aj-info-img p {
    font-size: 52px !important; }
  .aj-info-img.colour-red {
    border-color: #EF453E; }
  .aj-info-img.colour-blue {
    border-color: #35ACE5; }
  .aj-info-img.colour-orange {
    border-color: #F77C0C; }
  .aj-info-img.colour-purple {
    border-color: #846BAD; }
  .aj-info-img:nth-child(even) {
    border-bottom-right-radius: 20px !important; }
  .aj-info-img:nth-child(odd) {
    border-top-right-radius: 20px !important; }

body #content #impact-glance .aj-info-img p {
  padding: 3px !important;
  font-size: 20px !important;
  font-weight: 500;
  padding: 0 !important;
  margin: 0 !important; }
  body #content #impact-glance .aj-info-img p.tileNumber {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 80px !important; }
  body #content #impact-glance .aj-info-img p.tileTitle {
    line-height: 1.3 !important;
    margin-bottom: 10px !important; }

h4.infographic-heading {
  width: 100%;
  text-align: center;
  font-size: 40px;
  padding: 20px;
  font-weight: 400; }

@media screen and (max-width: 767px) {
  .ar-col4 {
    width: 47% !important; } }

@media screen and (max-width: 390px) {
  .ar-col4 {
    width: 100% !important; } }

/* --------------------------------- *
 * GLOBALS                           *
 * --------------------------------- */
/* --------------------------------- *
 * HEADER                            *
 * --------------------------------- */
.site-header {
  z-index: 20;
  background-color: #FFF;
  width: 100%;
  border-bottom: 1px solid #f0f2f4; }

.logo {
  padding-top: 1.25rem;
  font-size: 1.5rem;
  color: #FFF;
  text-decoration: none;
  margin: 0 0 1rem;
  max-width: 150px; }
  @media screen and (min-width: 26.5625em) {
    .logo {
      max-width: 200px; } }
  @media screen and (min-width: 48em) {
    .logo {
      max-width: none;
      font-size: 2.5rem;
      padding-top: 0.75rem; } }

.site-header__nav-row {
  display: block;
  position: relative; }
  @media screen and (min-width: 48em) {
    .site-header__nav-row {
      bottom: -1px; } }

.nav--secondary {
  float: right;
  margin-top: 1.5rem; }
  @media screen and (min-width: 26.5625em) {
    .nav--secondary {
      margin-top: 2rem; } }
  .nav--secondary .nav__item {
    vertical-align: middle;
    display: none; }
    @media screen and (min-width: 48em) {
      .nav--secondary .nav__item {
        display: inline-block; } }
    .nav--secondary .nav__item:nth-of-type(5n+1) .nav__link:focus, .nav--secondary .nav__item:nth-of-type(5n+1) .nav__link:hover, .nav--secondary .nav__item:nth-of-type(5n+1) .nav__link:active {
      background-color: #62B5E5; }
    .nav--secondary .nav__item:nth-of-type(5n+2) .nav__link:focus, .nav--secondary .nav__item:nth-of-type(5n+2) .nav__link:hover, .nav--secondary .nav__item:nth-of-type(5n+2) .nav__link:active {
      background-color: #6BA539; }
    .nav--secondary .nav__item:nth-of-type(5n+3) .nav__link:focus, .nav--secondary .nav__item:nth-of-type(5n+3) .nav__link:hover, .nav--secondary .nav__item:nth-of-type(5n+3) .nav__link:active {
      background-color: #A77BCA; }
    .nav--secondary .nav__item:nth-of-type(5n+4) .nav__link:focus, .nav--secondary .nav__item:nth-of-type(5n+4) .nav__link:hover, .nav--secondary .nav__item:nth-of-type(5n+4) .nav__link:active {
      background-color: #ED8B00; }
    .nav--secondary .nav__item:nth-of-type(5n+5) .nav__link:focus, .nav--secondary .nav__item:nth-of-type(5n+5) .nav__link:hover, .nav--secondary .nav__item:nth-of-type(5n+5) .nav__link:active {
      background-color: #F9423A; }
  .nav--secondary .nav__item--mobile {
    display: inline-block; }
  .nav--secondary .nav__link {
    text-decoration: none;
    color: #2C2A29;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    border-radius: 0.125rem;
    font-size: 0.875rem;
    border: 0.125rem solid transparent;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color; }
    .nav--secondary .nav__link:focus, .nav--secondary .nav__link:hover, .nav--secondary .nav__link:active {
      background-color: #2C2A29;
      color: #FFF; }
    .nav--secondary .nav__link .icon {
      margin-top: -0.125rem;
      width: 1.25rem;
      height: 1.25rem; }
  @media screen and (min-width: 48em) {
    .nav--secondary .js-nav-toggle {
      display: none; }
    .nav--secondary .js-lang-toggle {
      border: 0.125rem solid #818385;
      color: #2C2A29;
      -webkit-transition: all 0.1s ease-in-out;
      transition: all 0.1s ease-in-out;
      -webkit-transition-property: background-color, color, border-color;
      transition-property: background-color, color, border-color; }
      .nav--secondary .js-lang-toggle:focus, .nav--secondary .js-lang-toggle:hover, .nav--secondary .js-lang-toggle:active {
        border-color: #2C2A29;
        background-color: #2C2A29 !important; }
    .nav--secondary .donate-button {
      border: 0.125rem solid #F9423A;
      color: #2C2A29;
      -webkit-transition: all 0.1s ease-in-out;
      transition: all 0.1s ease-in-out;
      -webkit-transition-property: background-color, color, border-color;
      transition-property: background-color, color, border-color; }
      .nav--secondary .donate-button:focus, .nav--secondary .donate-button:hover, .nav--secondary .donate-button:active {
        border-color: #F9423A;
        background-color: #F9423A !important; } }

.nav--primary {
  display: none; }
  @media screen and (min-width: 48em) {
    .nav--primary {
      display: block; } }

.nav--primary .nav__item {
  display: block;
  position: relative;
  border-bottom: 1px solid #2C2A29; }
  @media screen and (min-width: 48em) {
    .nav--primary .nav__item {
      display: inline-block;
      margin-right: 1rem;
      border-bottom: none; }
      .nav--primary .nav__item .nav__list--subnav {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        background-color: rgba(55, 62, 72, 0.98);
        z-index: 50;
        width: auto;
        min-width: 15rem;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-transition-property: opacity,visibility;
        transition-property: opacity,visibility; }
      .nav--primary .nav__item:last-child .nav__list--subnav {
        right: 0; }
      .nav--primary .nav__item:focus > .nav__link::before, .nav--primary .nav__item:hover > .nav__link::before, .nav--primary .nav__item:active > .nav__link::before {
        width: 100%; }
      .nav--primary .nav__item:focus .nav__list--subnav, .nav--primary .nav__item:hover .nav__list--subnav, .nav--primary .nav__item:active .nav__list--subnav {
        visibility: visible;
        opacity: 1; } }
  @media screen and (min-width: 64em) {
    .nav--primary .nav__item {
      margin-right: 2.5rem; } }
  @media screen and (min-width: 75em) {
    .nav--primary .nav__item {
      margin-right: 4rem; } }
  @media screen and (min-width: 90em) {
    .nav--primary .nav__item:last-child .nav__list--subnav {
      right: auto; } }
  .nav--primary .nav__item:last-of-type {
    margin-right: 0; }
  .nav--primary .nav__item.nav__item--blue .nav__link .icon {
    color: #62B5E5; }
  .nav--primary .nav__item.nav__item--blue .nav__link::before {
    background-color: #62B5E5; }
  .nav--primary .nav__item.nav__item--blue .nav__link:focus, .nav--primary .nav__item.nav__item--blue .nav__link:hover, .nav--primary .nav__item.nav__item--blue .nav__link:active {
    color: #62B5E5; }
  .nav--primary .nav__item.nav__item--green .nav__link .icon {
    color: #6BA539; }
  .nav--primary .nav__item.nav__item--green .nav__link::before {
    background-color: #6BA539; }
  .nav--primary .nav__item.nav__item--green .nav__link:focus, .nav--primary .nav__item.nav__item--green .nav__link:hover, .nav--primary .nav__item.nav__item--green .nav__link:active {
    color: #6BA539; }
  .nav--primary .nav__item.nav__item--purple .nav__link .icon {
    color: #A77BCA; }
  .nav--primary .nav__item.nav__item--purple .nav__link::before {
    background-color: #A77BCA; }
  .nav--primary .nav__item.nav__item--purple .nav__link:focus, .nav--primary .nav__item.nav__item--purple .nav__link:hover, .nav--primary .nav__item.nav__item--purple .nav__link:active {
    color: #A77BCA; }
  .nav--primary .nav__item.nav__item--red .nav__link .icon {
    color: #F9423A; }
  .nav--primary .nav__item.nav__item--red .nav__link::before {
    background-color: #F9423A; }
  .nav--primary .nav__item.nav__item--red .nav__link:focus, .nav--primary .nav__item.nav__item--red .nav__link:hover, .nav--primary .nav__item.nav__item--red .nav__link:active {
    color: #F9423A; }
  .nav--primary .nav__item.nav__item--orange .nav__link .icon {
    color: #ED8B00; }
  .nav--primary .nav__item.nav__item--orange .nav__link::before {
    background-color: #ED8B00; }
  .nav--primary .nav__item.nav__item--orange .nav__link:focus, .nav--primary .nav__item.nav__item--orange .nav__link:hover, .nav--primary .nav__item.nav__item--orange .nav__link:active {
    color: #ED8B00; }
  .nav--primary .nav__item.nav__item--blue.nav__item--current > .nav__link {
    color: #62B5E5; }
    .nav--primary .nav__item.nav__item--blue.nav__item--current > .nav__link::before {
      width: 100%; }
  .nav--primary .nav__item.nav__item--green.nav__item--current > .nav__link {
    color: #6BA539; }
    .nav--primary .nav__item.nav__item--green.nav__item--current > .nav__link::before {
      width: 100%; }
  .nav--primary .nav__item.nav__item--purple.nav__item--current > .nav__link {
    color: #A77BCA; }
    .nav--primary .nav__item.nav__item--purple.nav__item--current > .nav__link::before {
      width: 100%; }
  .nav--primary .nav__item.nav__item--red.nav__item--current > .nav__link {
    color: #F9423A; }
    .nav--primary .nav__item.nav__item--red.nav__item--current > .nav__link::before {
      width: 100%; }
  .nav--primary .nav__item.nav__item--orange.nav__item--current > .nav__link {
    color: #ED8B00; }
    .nav--primary .nav__item.nav__item--orange.nav__item--current > .nav__link::before {
      width: 100%; }

.nav--primary .nav__item--home {
  display: none; }

.nav--primary .nav__link {
  display: block;
  color: #2C2A29;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0.5rem;
  padding: 1.5rem 0 1rem; }
  .nav--primary .nav__link .icon {
    position: absolute;
    right: 0;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform; }
  @media screen and (min-width: 48em) {
    .nav--primary .nav__link {
      font-size: 0.875rem;
      padding: 1.4rem 0;
      margin-bottom: 0; }
      .nav--primary .nav__link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 0.25rem;
        background-color: transparent;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transition-property: width;
        transition-property: width; }
      .nav--primary .nav__link .icon {
        display: none; }
      .nav--primary .nav__link:focus::before, .nav--primary .nav__link:hover::before, .nav--primary .nav__link:active::before {
        width: 100%; }
      .nav--primary .nav__link:focus + .nav__list--subnav, .nav--primary .nav__link:hover + .nav__list--subnav, .nav--primary .nav__link:active + .nav__list--subnav {
        visibility: visible;
        opacity: 1; } }
  @media screen and (min-width: 64em) {
    .nav--primary .nav__link {
      font-size: 0.875rem; } }
  @media screen and (min-width: 75em) {
    .nav--primary .nav__link {
      font-size: 1rem;
      padding: 2.3333333333rem 0; } }
  .nav--primary .nav__link:focus, .nav--primary .nav__link:hover, .nav--primary .nav__link:active {
    color: #62B5E5;
    border-bottom-color: #62B5E5; }

.nav--primary .nav__list--subnav {
  /*.nav__item--overview {
		@include mq(tab) { display:none; }
	}*/ }
  .nav--primary .nav__list--subnav .nav__item {
    border-bottom: none;
    display: block;
    margin: 0; }
    @media screen and (min-width: 48em) {
      .nav--primary .nav__list--subnav .nav__item {
        border-bottom: 1px solid #2C2A29; }
        .nav--primary .nav__list--subnav .nav__item:last-child {
          border-bottom: none; } }
  .nav--primary .nav__list--subnav .nav__link {
    text-transform: none;
    color: #FFF;
    padding: 0.25rem 0; }
    .nav--primary .nav__list--subnav .nav__link::before {
      height: 0.125rem;
      bottom: -1px; }
    @media screen and (min-width: 48em) {
      .nav--primary .nav__list--subnav .nav__link {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        border-bottom: none; } }

@media screen and (min-width: 64em) {
  .sticky-header .site-header {
    position: fixed;
    top: -100px; }
  .sticky-header .site-header__nav-row:nth-of-type(1) {
    width: 6.25rem;
    float: right; }
  .sticky-header .site-header__nav-row:nth-of-type(2) {
    width: calc(100% - 6.25rem); }
  .sticky-header .logo--header {
    display: none; }
  .sticky-header .nav--secondary {
    margin-top: 0.3125rem; }
    .sticky-header .nav--secondary .js-lang-toggle, .sticky-header .nav--secondary .js-search-toggle {
      padding: 0.25rem 0.75rem; }
    .sticky-header .nav--secondary .nav__item {
      display: none; }
    .sticky-header .nav--secondary .nav__item--lang, .sticky-header .nav--secondary .nav__item--search {
      display: inline-block; }
  .sticky-header .nav--primary > .nav__list > .nav__item > .nav__link {
    padding: 0.5rem 0; }
  .sticky-header .nav--primary .nav__item--home {
    display: inline-block;
    margin-right: 2.5rem !important; }
    .sticky-header .nav--primary .nav__item--home img {
      display: inline-block;
      width: 1.5rem;
      height: 1.5rem;
      margin-top: -0.25rem;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform; }
    .sticky-header .nav--primary .nav__item--home .nav__link:focus img, .sticky-header .nav--primary .nav__item--home .nav__link:hover img, .sticky-header .nav--primary .nav__item--home .nav__link:active img {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); } }

@media screen and (min-width: 75em) {
  .sticky-header .nav--secondary {
    margin-top: 0.375rem; } }

@media screen and (min-width: 64em) {
  .sticky-header--open .site-header {
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-property: top;
    transition-property: top; } }

@media screen and (min-width: 64em) {
  .sticky-header .nav--primary > .nav__list > .nav__item {
    margin-right: 1rem; } }

@media screen and (min-width: 75em) {
  .sticky-header .nav--primary > .nav__list > .nav__item {
    margin-right: 2rem; } }

@media screen and (min-width: 90em) {
  .sticky-header .nav--primary > .nav__list > .nav__item {
    margin-right: 4rem; } }

.js-nav-toggle--open {
  display: inline-block; }

.js-nav-toggle--close {
  display: none; }

@media screen and (max-width: 47.9375em) {
  .site-header.menu-open {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #373e48;
    border-bottom: none; }
    .site-header.menu-open .js-nav-toggle--open {
      display: none; }
    .site-header.menu-open .js-nav-toggle--close {
      display: inline-block; }
    .site-header.menu-open .logo--header {
      opacity: 0; }
    .site-header.menu-open .icon, .site-header.menu-open .nav__link {
      color: #FFF; }
    .site-header.menu-open .nav--primary {
      display: block; }
    .site-header.menu-open .nav--primary .nav__list--subnav {
      display: none; }
    .site-header.menu-open .nav--primary .nav__item--has-subnav.subnav-open .icon {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
    .site-header.menu-open .nav--primary .nav__item--has-subnav.subnav-open .nav__list--subnav {
      display: block; }
    .site-header.menu-open .site-header__nav-row:first-of-type {
      position: static; }
    .site-header.menu-open .site-header__nav .container {
      padding-bottom: 11rem; }
    .site-header.menu-open .nav__item--lesser {
      position: absolute;
      display: block;
      bottom: 0;
      left: 0.875rem; }
      .site-header.menu-open .nav__item--lesser .nav__link {
        padding-left: 0;
        padding-right: 0;
        color: #B7B7B7; }
        .site-header.menu-open .nav__item--lesser .nav__link:focus, .site-header.menu-open .nav__item--lesser .nav__link:hover, .site-header.menu-open .nav__item--lesser .nav__link:active {
          color: #FFF;
          background-color: transparent; }
      .site-header.menu-open .nav__item--lesser:nth-of-type(1) {
        bottom: 7.5rem; }
      .site-header.menu-open .nav__item--lesser:nth-of-type(2) {
        bottom: 5rem; }
      .site-header.menu-open .nav__item--lesser:nth-of-type(3) {
        bottom: 2.5rem; }
      .site-header.menu-open .nav__item--lesser:nth-of-type(4) {
        bottom: -2.5rem; } }

/* --------------------------------- *
 * FOOTER                            *
 * --------------------------------- */
.site-footer {
  background-color: #373e48;
  padding: 4rem 0 2rem; }
  .site-footer .grid {
    margin-bottom: 0; }
  .site-footer h2 {
    color: #FFF;
    font-size: 1.25rem;
    margin-bottom: 1rem; }
  .site-footer p, .site-footer a {
    margin: 0;
    font-family: "Relato Sans", "Helvetica", sans-serif;
    font-size: 0.875rem; }

.site-footer__logo {
  display: block;
  margin-top: 1rem;
  max-width: 100%;
  height: auto; }

.site-footer__copy {
  color: #FFF;
  padding: 0.25rem 0; }
  @media screen and (min-width: 48em) {
    .site-footer__copy {
      text-align: right; } }
  .site-footer__copy strong {
    font-weight: bold;
    color: #FFF; }
  .site-footer__copy a {
    display: block;
    margin: 0.5rem 0;
    font-style: normal;
    text-decoration: none;
    color: #FFF;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-property: color;
    transition-property: color; }
    .site-footer__copy a:focus, .site-footer__copy a:hover, .site-footer__copy a:active {
      color: #e5f3fb; }
    @media screen and (min-width: 48em) {
      .site-footer__copy a {
        display: inline;
        margin: 0; } }

.site-footer__nav {
  padding: 1rem 0; }
  @media screen and (min-width: 48em) {
    .site-footer__nav {
      padding: 0; } }

.nav--tertiary .nav__item {
  line-height: 1.25;
  margin-bottom: 0.25rem; }

.site-footer__social {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  @media screen and (min-width: 48em) {
    .site-footer__social {
      width: 10rem; } }
  .site-footer__social li {
    display: inline-block;
    margin: 0 0.75rem 0.75rem 0; }

a.site-footer__social-link {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: background-color,color;
  transition-property: background-color,color; }
  a.site-footer__social-link:focus, a.site-footer__social-link:hover, a.site-footer__social-link:active {
    color: #2C2A29; }
  a.site-footer__social-link .icon {
    width: 1.75rem;
    height: 1.75rem; }
  a.site-footer__social-link.site-footer__social-link--twitter {
    background-color: #55acee; }
    a.site-footer__social-link.site-footer__social-link--twitter:focus, a.site-footer__social-link.site-footer__social-link--twitter:hover, a.site-footer__social-link.site-footer__social-link--twitter:active {
      color: #55acee;
      background-color: #FFF; }
  a.site-footer__social-link.site-footer__social-link--youtube {
    background-color: #bb0000; }
    a.site-footer__social-link.site-footer__social-link--youtube:focus, a.site-footer__social-link.site-footer__social-link--youtube:hover, a.site-footer__social-link.site-footer__social-link--youtube:active {
      color: #bb0000;
      background-color: #FFF; }
  a.site-footer__social-link.site-footer__social-link--instagram {
    background-color: #8a3ab9; }
    a.site-footer__social-link.site-footer__social-link--instagram:focus, a.site-footer__social-link.site-footer__social-link--instagram:hover, a.site-footer__social-link.site-footer__social-link--instagram:active {
      color: #8a3ab9;
      background-color: #FFF; }
  a.site-footer__social-link.site-footer__social-link--facebook {
    background-color: #3b5998; }
    a.site-footer__social-link.site-footer__social-link--facebook:focus, a.site-footer__social-link.site-footer__social-link--facebook:hover, a.site-footer__social-link.site-footer__social-link--facebook:active {
      color: #3b5998;
      background-color: #FFF; }
  a.site-footer__social-link.site-footer__social-link--linkedin {
    background-color: #007bb5;
    padding: 0.75rem; }
    a.site-footer__social-link.site-footer__social-link--linkedin .icon {
      margin-top: -0.125rem;
      width: 1.5rem;
      height: 1.5rem; }
    a.site-footer__social-link.site-footer__social-link--linkedin:focus, a.site-footer__social-link.site-footer__social-link--linkedin:hover, a.site-footer__social-link.site-footer__social-link--linkedin:active {
      color: #007bb5;
      background-color: #FFF; }
  a.site-footer__social-link.site-footer__social-link--blog {
    background-color: #62B5E5; }
    a.site-footer__social-link.site-footer__social-link--blog:focus, a.site-footer__social-link.site-footer__social-link--blog:hover, a.site-footer__social-link.site-footer__social-link--blog:active {
      color: #62B5E5;
      background-color: #FFF; }

/* --------------------------------- *
 * MISC                              *
 * --------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: auto;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0); }
  .slick-prev:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 15.84 23.97'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none%3B%7D.cls-2%7Bfill:%23fff%3B%7D.cls-3%7Bfill:url(%23linear-gradient)%3B%7D.cls-4%7Bclip-path:url(%23clip-path)%3B%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='-1059.61' y1='765.86' x2='10.53' y2='765.86' gradientTransform='matrix(1  0  0  -1  0  777.85)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f7921e'/%3E%3Cstop offset='0.25' stop-color='%23f0533f'/%3E%3Cstop offset='0.51' stop-color='%239e7fba'/%3E%3Cstop offset='0.75' stop-color='%2352b9e9'/%3E%3Cstop offset='1' stop-color='%2369b342'/%3E%3C/linearGradient%3E%3CclipPath id='clip-path' transform='translate(0 0.01)'%3E%3Cpolygon class='cls-1' points='3.86 23.96 15.84 11.98 3.86 0 3.86 23.96'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-2' d='M0 12A4 4 0 0 1 6.81 9.16a4 4 0 0 1-5.2 6.08 3.66 3.66 0 0 1-.44-.44A4 4 0 0 1 0 12' transform='translate(0 0.01)'/%3E%3Cpolygon class='cls-3' points='3.86 23.97 15.84 11.99 3.86 0.01 3.86 23.97'/%3E%3Cg class='cls-4'%3E%3Crect class='cls-2' x='3.86' width='11.98' height='23.96'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    [dir="rtl"] .slick-prev:before {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 15.84 23.97'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none%3B%7D.cls-2%7Bfill:%23fff%3B%7D.cls-3%7Bfill:url(%23linear-gradient)%3B%7D.cls-4%7Bclip-path:url(%23clip-path)%3B%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='-1059.61' y1='765.86' x2='10.53' y2='765.86' gradientTransform='matrix(1  0  0  -1  0  777.85)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f7921e'/%3E%3Cstop offset='0.25' stop-color='%23f0533f'/%3E%3Cstop offset='0.51' stop-color='%239e7fba'/%3E%3Cstop offset='0.75' stop-color='%2352b9e9'/%3E%3Cstop offset='1' stop-color='%2369b342'/%3E%3C/linearGradient%3E%3CclipPath id='clip-path' transform='translate(0 0.01)'%3E%3Cpolygon class='cls-1' points='3.86 23.96 15.84 11.98 3.86 0 3.86 23.96'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-2' d='M0 12A4 4 0 0 1 6.81 9.16a4 4 0 0 1-5.2 6.08 3.66 3.66 0 0 1-.44-.44A4 4 0 0 1 0 12' transform='translate(0 0.01)'/%3E%3Cpolygon class='cls-3' points='3.86 23.97 15.84 11.99 3.86 0.01 3.86 23.97'/%3E%3Cg class='cls-4'%3E%3Crect class='cls-2' x='3.86' width='11.98' height='23.96'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .slick-next:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 15.84 23.97'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none%3B%7D.cls-2%7Bfill:%23fff%3B%7D.cls-3%7Bfill:url(%23linear-gradient)%3B%7D.cls-4%7Bclip-path:url(%23clip-path)%3B%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='-1059.61' y1='765.86' x2='10.53' y2='765.86' gradientTransform='matrix(1  0  0  -1  0  777.85)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f7921e'/%3E%3Cstop offset='0.25' stop-color='%23f0533f'/%3E%3Cstop offset='0.51' stop-color='%239e7fba'/%3E%3Cstop offset='0.75' stop-color='%2352b9e9'/%3E%3Cstop offset='1' stop-color='%2369b342'/%3E%3C/linearGradient%3E%3CclipPath id='clip-path' transform='translate(0 0.01)'%3E%3Cpolygon class='cls-1' points='3.86 23.96 15.84 11.98 3.86 0 3.86 23.96'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-2' d='M0 12A4 4 0 0 1 6.81 9.16a4 4 0 0 1-5.2 6.08 3.66 3.66 0 0 1-.44-.44A4 4 0 0 1 0 12' transform='translate(0 0.01)'/%3E%3Cpolygon class='cls-3' points='3.86 23.97 15.84 11.99 3.86 0.01 3.86 23.97'/%3E%3Cg class='cls-4'%3E%3Crect class='cls-2' x='3.86' width='11.98' height='23.96'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    [dir="rtl"] .slick-next:before {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 15.84 23.97'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none%3B%7D.cls-2%7Bfill:%23fff%3B%7D.cls-3%7Bfill:url(%23linear-gradient)%3B%7D.cls-4%7Bclip-path:url(%23clip-path)%3B%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='-1059.61' y1='765.86' x2='10.53' y2='765.86' gradientTransform='matrix(1  0  0  -1  0  777.85)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f7921e'/%3E%3Cstop offset='0.25' stop-color='%23f0533f'/%3E%3Cstop offset='0.51' stop-color='%239e7fba'/%3E%3Cstop offset='0.75' stop-color='%2352b9e9'/%3E%3Cstop offset='1' stop-color='%2369b342'/%3E%3C/linearGradient%3E%3CclipPath id='clip-path' transform='translate(0 0.01)'%3E%3Cpolygon class='cls-1' points='3.86 23.96 15.84 11.98 3.86 0 3.86 23.96'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-2' d='M0 12A4 4 0 0 1 6.81 9.16a4 4 0 0 1-5.2 6.08 3.66 3.66 0 0 1-.44-.44A4 4 0 0 1 0 12' transform='translate(0 0.01)'/%3E%3Cpolygon class='cls-3' points='3.86 23.97 15.84 11.99 3.86 0.01 3.86 23.97'/%3E%3Cg class='cls-4'%3E%3Crect class='cls-2' x='3.86' width='11.98' height='23.96'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.lang-fr .nav--secondary .nav__item--lesser .nav__link {
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem; }

@media screen and (min-width: 48em) {
  .lang-fr .nav--primary > .nav__list > .nav__item {
    margin-right: 0.6875rem; }
    .lang-fr .nav--primary > .nav__list > .nav__item > .nav__link {
      font-size: 0.6875rem; } }

@media screen and (min-width: 64em) {
  .lang-fr .nav--secondary .nav__item--lesser .nav__link {
    padding: 0.5rem;
    font-size: 0.875rem; }
  .lang-fr .nav--primary > .nav__list > .nav__item {
    margin-right: 1rem; }
    .lang-fr .nav--primary > .nav__list > .nav__item > .nav__link {
      font-size: 0.75rem; }
  .lang-fr.sticky-header .nav--primary .nav__item--home {
    margin-right: 1.5rem !important; }
  .lang-fr.sticky-header .nav--primary > .nav__list > .nav__item {
    margin-right: 0.75rem; } }

@media screen and (min-width: 75em) {
  .lang-fr .nav--secondary .nav__link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem; }
  .lang-fr .nav--primary > .nav__list > .nav__item {
    margin-right: 2rem; }
    .lang-fr .nav--primary > .nav__list > .nav__item > .nav__link {
      font-size: 0.875rem; } }

@media screen and (min-width: 90em) {
  .lang-fr .nav--primary > .nav__list > .nav__item {
    margin-right: 2rem; }
    .lang-fr .nav--primary > .nav__list > .nav__item > .nav__link {
      font-size: 1rem; } }

.no-cssgradients .m-hero-banner__image {
  left: 50%;
  width: 50%; }

.no-cssgradients .m-featured-content .c-ribbons,
.no-cssgradients .m-media .c-ribbons {
  display: none; }

/* --------------------------------- *
 * PRINT.SCSS                        *
 * --------------------------------- */
/**
 * Print specific styles.
 *
 * Based on the HTML5Boilerplate defaults.
 */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                               http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: 1rem !important; }
  a,
  a::visited {
    text-decoration: underline; }
  /*a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }*/
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .icon {
    fill: #000 !important; } }

/*new-fix*/
/* --------------------------------- *
 * common                         *
 * --------------------------------- */
#Culture .slider .culture-image, #Culture .culture-slider .culture-image {
  margin-top: 0 !important; }

#Culture .slider-single {
  margin: 20px 0 !important; }
  #Culture .slider-single .image.slick-slide .culture-image {
    height: 530px;
    width: auto !important; }

#Culture .slider-nav {
  margin: 20px 0 !important; }
  #Culture .slider-nav .culture-image {
    height: 114px !important;
    width: auto !important; }

.bottom-nav-module .c-btn-row {
  margin-top: 0; }

.bottom-nav-module a.c-btn.c-btn--slim {
  margin-top: 0.5rem; }

#Stories .story-grid .layout4.inner .double a {
  height: 32.5% !important;
  position: relative;
  min-height: 130px; }

#Stories .story-grid .layout4.inner .double {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

#Stories .story-grid .row.inner a .title-block .story-title {
  top: 1.5em !important;
  font-size: 22px !important;
  line-height: 25px !important; }

#Stories .story-grid .layout4.inner .double a:first-child {
  background-image: url(/img/story-short-1.png);
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 0 10px !important;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0; }

#Stories .story-grid .layout4.inner .double a:nth-child(2) {
  background-image: url(/img/story-short-44.png);
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 0 10px !important;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

#Stories .story-grid .layout4.inner .double a:nth-child(3) {
  background-image: url(/img/story-short-3.png);
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 0 10px !important;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

#Stories .story-grid .layout4.inner .single a:first-child {
  background-image: url(/img/story-short-2.png);
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 0 10px !important; }
  #Stories .story-grid .layout4.inner .single a:first-child .img {
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 155px;
    height: 120px !important; }
  #Stories .story-grid .layout4.inner .single a:first-child .title-block {
    position: absolute; }

#Stories .story-grid .row.inner a .title-block {
  z-index: 2;
  top: 0 !important;
  position: relative !important; }

#Stories .story-grid .layout4.inner a .img {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 30%;
  max-width: 155px;
  height: 92px; }
  #Stories .story-grid .layout4.inner a .img .grid-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%; }

.wrap-class-2022-2023 #reflection .row .col-md-6:first-child .reflection-img img {
  object-position: center top; }

.wrap-class-2022-2023 #reflection .reflection-img {
  position: relative;
  height: 250px; }
  .wrap-class-2022-2023 #reflection .reflection-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute; }

#culture .slider-nav .slick-slide,
#culture .slider-single .slick-slide {
  text-align: center; }

#culture .slider-nav .slick-slide video {
  pointer-events: none; }

@media only screen and (max-width: 1023px) {
  #Culture .slider-single .image.slick-slide .culture-image {
    height: 62vw;
    object-fit: contain;
    object-position: center; }
  .slick-prev {
    left: 0 !important; }
  .slick-next {
    right: 0 !important; }
  #Stories .story-grid .row.inner a .title-block .story-title {
    top: 1em !important;
    font-size: 18px !important;
    line-height: 22px !important; }
  #Stories .story-grid .layout4.inner a .img {
    width: 25%;
    max-width: 130px; } }

@media only screen and (max-width: 767px) {
  #Stories {
    padding: 0 !important; }
  #who-we-are {
    padding: 50px 0px; }
  #Intro {
    padding: 2rem 0 0 !important; }
  div#Culture {
    padding: 50px 0 30px; }
  #impact-glance {
    padding: 0 0 40px; }
  #culture {
    padding: 0 !important; }
  .bottom-nav-module {
    padding: 3rem 0 !important; }
  #Stories .story-grid .layout4.inner .double a:nth-child(2) {
    margin: 0 0 10px !important; }
  #Stories .story-grid .row.inner a .title-block {
    padding: 15px 20px; }
  .legend-bar {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px; } }

@media only screen and (max-width: 667px) {
  #Stories .story-grid .layout4.inner .single a {
    height: auto !important;
    min-height: 160px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  #Stories .story-grid .layout4.inner .single a .title-block {
    width: 70% !important; }
  #Stories .story-grid .layout4.inner .single a .img {
    width: 25% !important;
    max-width: 130px !important; } }

.wrap-class-2023-2024 .main-header.story-header.new-style {
  background-position: 40% 50%;
  min-height: 300px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 .main-header.story-header.new-style {
      min-height: 562px; } }
  .wrap-class-2023-2024 .main-header.story-header.new-style .container {
    max-width: 85rem;
    margin: 0 auto; }
  .wrap-class-2023-2024 .main-header.story-header.new-style h1 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Relato Sans';
    text-align: left;
    padding: 0 25px;
    max-width: 260px; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 .main-header.story-header.new-style h1 {
        max-width: 42%;
        font-size: 44px; } }
    .wrap-class-2023-2024 .main-header.story-header.new-style h1 span {
      font: inherit; }

.wrap-class-2023-2024 .container {
  max-width: 66rem; }

.wrap-class-2023-2024 .ar-navbar-wrapper {
  background: #f7f7f7;
  box-shadow: none; }
  .wrap-class-2023-2024 .ar-navbar-wrapper #ar-navbar a {
    font-weight: 500;
    font-size: 16px;
    padding-top: 28px;
    padding-bottom: 23px; }

.wrap-class-2023-2024 #who-we-are {
  padding: 40px 0; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #who-we-are {
      padding: 95px 0 98px; } }
  .wrap-class-2023-2024 #who-we-are .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #who-we-are .heading {
        font-size: 44px; } }
    .wrap-class-2023-2024 #who-we-are .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .wrap-class-2023-2024 #who-we-are #Intro {
    padding-top: 1.65rem;
    text-align: left;
    font: 400 18px/1.777 'Relato Sans';
    padding-bottom: 20px !important; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #who-we-are #Intro {
        padding-bottom: 66px !important; } }
  .wrap-class-2023-2024 #who-we-are .blockqoute {
    margin-bottom: 72px;
    padding-left: 18px;
    font: 400 18px/1.777 'Relato Sans';
    border-left: 2px solid #F9423A; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #who-we-are .blockqoute {
        padding-left: 38px; } }
  .wrap-class-2023-2024 #who-we-are .bottom-text {
    padding: 36px 0;
    max-width: 842px;
    text-align: left;
    margin: 0 auto; }
    .wrap-class-2023-2024 #who-we-are .bottom-text p {
      font: 400 18px/1.777 'Relato Sans' !important;
      margin: 0;
      max-width: none; }
    .wrap-class-2023-2024 #who-we-are .bottom-text h3 {
      font: 500 20px/1.25 'Relato Sans'; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #who-we-are .bottom-text h3 {
          font-size: 24px; } }

.wrap-class-2023-2024 #story-sec {
  border-radius: 0;
  background: #fffaf3; }
  .wrap-class-2023-2024 #story-sec .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    margin: 0 0 20px;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #story-sec .heading {
        font-size: 44px;
        margin: 0 0 34px; } }
    .wrap-class-2023-2024 #story-sec .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .wrap-class-2023-2024 #story-sec #Stories {
    padding-top: 3.5rem; }
  .wrap-class-2023-2024 #story-sec .stories-text p {
    font: 400 18px/1.777 'Relato Sans' !important;
    margin: 0;
    max-width: none; }

.wrap-class-2023-2024 #reflection {
  padding: 40px 0;
  background: none; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #reflection {
      padding: 118px 0 70px; } }
  .wrap-class-2023-2024 #reflection .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    margin: 0 0 16px;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #reflection .heading {
        font-size: 44px; } }
    .wrap-class-2023-2024 #reflection .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .wrap-class-2023-2024 #reflection .reflection-inner {
    max-width: none; }
    .wrap-class-2023-2024 #reflection .reflection-inner .row {
      width: auto;
      margin: 0 -10px;
      max-width: none; }
      .wrap-class-2023-2024 #reflection .reflection-inner .row .col {
        width: 100%;
        padding: 0 10px; }
        @media screen and (min-width: 48em) {
          .wrap-class-2023-2024 #reflection .reflection-inner .row .col {
            width: 50%; } }
    .wrap-class-2023-2024 #reflection .reflection-inner .reflection-img {
      width: 100%;
      border-radius: 10px;
      max-width: none;
      background: none;
      margin-bottom: 24px; }
      .wrap-class-2023-2024 #reflection .reflection-inner .reflection-img img {
        width: 100%;
        height: auto; }
    .wrap-class-2023-2024 #reflection .reflection-inner .txt {
      text-align: left; }
      .wrap-class-2023-2024 #reflection .reflection-inner .txt a {
        display: inline-block;
        vertical-align: top;
        min-width: 145px;
        padding: 11px 15px;
        border: 2px solid #62B5E5;
        font: 500 14px/1 'Relato Sans'; }
    .wrap-class-2023-2024 #reflection .reflection-inner h4 {
      font: 500 20px/1.25 'Relato Sans';
      margin-bottom: 21px; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #reflection .reflection-inner h4 {
          font-size: 24px; } }
      .wrap-class-2023-2024 #reflection .reflection-inner h4 p {
        font: inherit; }

.wrap-class-2023-2024 #leadership {
  border-radius: 0;
  background: #fffaf3; }
  .wrap-class-2023-2024 #leadership #Acknowledgments {
    padding-top: 6.55rem; }
  .wrap-class-2023-2024 #leadership .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    margin: 0 0 20px;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #leadership .heading {
        font-size: 44px;
        margin: 0 0 58px; } }
    .wrap-class-2023-2024 #leadership .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .wrap-class-2023-2024 #leadership .subtitle {
    text-align: left;
    font: 500 32px/1.2 'Relato Sans';
    margin-bottom: 17px; }
  .wrap-class-2023-2024 #leadership .intro p {
    font: 400 18px/1.777 'Relato Sans' !important; }
  .wrap-class-2023-2024 #leadership .board-directors {
    padding-top: 58px;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin: 0 -10px; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #leadership .board-directors {
        margin: 0 -20px; } }
    @media screen and (min-width: 64em) {
      .wrap-class-2023-2024 #leadership .board-directors {
        margin: 0 -36px; } }
    .wrap-class-2023-2024 #leadership .board-directors .ar-col {
      padding: 15px 10px;
      margin: 0;
      width: 100%; }
      @media screen and (min-width: 26.5625em) {
        .wrap-class-2023-2024 #leadership .board-directors .ar-col {
          width: 50%; } }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #leadership .board-directors .ar-col {
          width: 33.333%;
          padding: 15px 20px; } }
      @media screen and (min-width: 64em) {
        .wrap-class-2023-2024 #leadership .board-directors .ar-col {
          padding: 15px 36px; } }
      .wrap-class-2023-2024 #leadership .board-directors .ar-col:nth-child(5n+1) .img-holder:after {
        background: #ED8B00; }
      .wrap-class-2023-2024 #leadership .board-directors .ar-col:nth-child(5n+2) .img-holder:after {
        background: #F9423A; }
      .wrap-class-2023-2024 #leadership .board-directors .ar-col:nth-child(5n+3) .img-holder:after {
        background: #62B5E5; }
      .wrap-class-2023-2024 #leadership .board-directors .ar-col:nth-child(5n+4) .img-holder:after {
        background: #A77BCA; }
      .wrap-class-2023-2024 #leadership .board-directors .ar-col:nth-child(5n+5) .img-holder:after {
        background: #6BA539; }
  .wrap-class-2023-2024 #leadership .img-holder {
    position: relative;
    border-radius: 10px;
    overflow: hidden; }
    .wrap-class-2023-2024 #leadership .img-holder:after {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 14px;
      content: "";
      background: transparent; }
  .wrap-class-2023-2024 #leadership .txt-holder {
    padding: 13px 0; }
    .wrap-class-2023-2024 #leadership .txt-holder .name {
      font: 700 20px/1.6 'Helvetica' !important; }
    .wrap-class-2023-2024 #leadership .txt-holder .position p {
      padding: 0;
      font: 400 18px/1.777 'Relato Sans' !important; }
    .wrap-class-2023-2024 #leadership .txt-holder .linkedin {
      margin-top: 46px;
      padding-left: 3px; }
      .wrap-class-2023-2024 #leadership .txt-holder .linkedin a {
        display: inline-block; }
      .wrap-class-2023-2024 #leadership .txt-holder .linkedin img {
        padding: 0;
        margin: 0;
        width: 29px !important;
        height: 29px !important; }
  .wrap-class-2023-2024 #leadership .director img {
    width: 100%;
    border-radius: 0 !important; }

.wrap-class-2023-2024 .slider-holder {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.wrap-class-2023-2024 #culture {
  background: #FFFAF3;
  border-radius: 0; }
  .wrap-class-2023-2024 #culture #Culture {
    padding: 40px 0; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #culture #Culture {
        padding-top: 90px;
        padding-bottom: 40px; } }
  .wrap-class-2023-2024 #culture .intro {
    margin-top: 42px;
    overflow: hidden; }
  .wrap-class-2023-2024 #culture .intro p {
    margin: 0 0 33px;
    font: 400 18px/1.777 'Relato Sans' !important; }
    .wrap-class-2023-2024 #culture .intro p:last-child {
      margin: 0; }
  .wrap-class-2023-2024 #culture .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #culture .heading {
        font-size: 44px; } }
    .wrap-class-2023-2024 #culture .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .wrap-class-2023-2024 #culture .new-culture-slider {
    padding: 50px 44px;
    margin: 0 auto;
    max-width: calc(66rem + 200px); }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #culture .new-culture-slider {
        padding: 50px 100px 50px; } }
    .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      border-radius: 10px;
      overflow: hidden; }
      .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col {
        width: 100%; }
        @media screen and (min-width: 48em) {
          .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col {
            width: 50%; } }
        .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col.text-holder {
          padding: 50px 34px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
        .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col.image-holder {
          min-height: 250px;
          position: relative; }
          @media screen and (min-width: 48em) {
            .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col.image-holder {
              min-height: 390px; } }
          .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .block .col.image-holder img {
            object-fit: cover;
            object-position: 50% 50%;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0 !important; }
    .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .text p {
      font: 14px/1.777  'Relato Sans' !important; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #culture .new-culture-slider .item-slide .text p {
          font-size: 18px !important; } }
    .wrap-class-2023-2024 #culture .new-culture-slider .item-slide h3 {
      font: 500 20px/1.25  'Relato Sans' !important;
      margin: 0 0 25px; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #culture .new-culture-slider .item-slide h3 {
          font-size: 24px !important; } }
    .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow {
      margin: 0;
      background: #fff;
      color: #000;
      display: block;
      width: 30px;
      height: 30px;
      border: 2px solid #62B5E5; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow {
          width: 44px; } }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow.slick-next {
        right: 5px !important; }
        @media screen and (min-width: 48em) {
          .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow.slick-next {
            right: 0 !important; } }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow.slick-prev {
        left: 5px !important; }
        @media screen and (min-width: 48em) {
          .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow.slick-prev {
            left: 0 !important; } }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow:hover {
        background: #62B5E5; }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow:before {
        display: none; }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-arrow .icon {
        font-size: 17px; }
    .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots {
      font-size: 0px;
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      padding: 0;
      margin: 0;
      list-style-type: none; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots {
          bottom: -33px; } }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots li {
        margin: 0 2px;
        padding: 0;
        width: auto;
        height: auto; }
        .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots li.slick-active button {
          opacity: 1; }
      .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots button {
        padding: 0;
        height: 5px;
        width: 32px;
        opacity: 0.6; }
        .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots button:hover {
          opacity: 1; }
        .wrap-class-2023-2024 #culture .new-culture-slider .slick-dots button:before {
          display: none; }

.wrap-class-2023-2024 #impact-glance {
  padding: 0;
  background-image: none; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #impact-glance {
      padding: 0; } }
  .wrap-class-2023-2024 #impact-glance .heading {
    padding-bottom: 22px;
    position: relative;
    text-align: left;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans';
    margin: 0 0 17px; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #impact-glance .heading {
        font-size: 44px; } }
    .wrap-class-2023-2024 #impact-glance .heading:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }

.wrap-class-2023-2024 #Impact {
  padding: 30px 0;
  display: block; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #Impact {
      padding: 60px 0 130px; } }
  .wrap-class-2023-2024 #Impact .infographic-heading {
    text-align: left;
    font: 500 32px/1 'Relato Sans';
    display: block;
    padding: 0 0 25px;
    margin: 0 0 50px;
    border-bottom: 2px solid #b3b3b3; }
  .wrap-class-2023-2024 #Impact .top-text {
    margin: 0 0 21px; }
    .wrap-class-2023-2024 #Impact .top-text p {
      font: 400 18px/1.777 'Relato Sans' !important;
      margin: 0; }
  .wrap-class-2023-2024 #Impact .legend-icons-bar {
    margin: 0 0 42px; }
  .wrap-class-2023-2024 #Impact .infographic-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -8px 24px; }
    .wrap-class-2023-2024 #Impact .infographic-row .col {
      width: 100%;
      padding: 0 8px;
      margin: 0 0 30px; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #Impact .infographic-row .col {
          width: 50%; } }
      @media screen and (min-width: 64em) {
        .wrap-class-2023-2024 #Impact .infographic-row .col {
          width: 25%; } }
  .wrap-class-2023-2024 #Impact .box {
    padding: 25px 10px 34px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    color: #fff; }
    .wrap-class-2023-2024 #Impact .box.colour-red {
      background: #DF2921; }
    .wrap-class-2023-2024 #Impact .box.colour-orange {
      background: #BA5800; }
    .wrap-class-2023-2024 #Impact .box.colour-blue {
      background: #0070B1; }
    .wrap-class-2023-2024 #Impact .box.colour-purple {
      background: #8D62B0; }
    .wrap-class-2023-2024 #Impact .box .list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .wrap-class-2023-2024 #Impact .box .blockTitle {
      padding: 0 5px;
      width: 100%;
      color: #FFF;
      text-align: center;
      margin: 0 0 15px;
      font: 500 24px/1.25 'Relato Sans'; }
    .wrap-class-2023-2024 #Impact .box .itemTile {
      width: 50%;
      padding: 0 12px;
      margin: 0 0 16px; }
    .wrap-class-2023-2024 #Impact .box .tileNumber {
      color: #fff;
      margin: 0 0 5px !important;
      font: 500 26px/1 'Relato Sans' !important; }
    .wrap-class-2023-2024 #Impact .box .tileTitle {
      color: #fff;
      margin: 0 !important;
      font: 400 14px/1.428 'Relato Sans' !important; }
      .wrap-class-2023-2024 #Impact .box .tileTitle span:nth-last-child(1) {
        font-size: 18px !important;
        font-family: Helvetica !important; }
    .wrap-class-2023-2024 #Impact .box .tileIcon {
      width: 42px;
      height: 42px;
      position: relative;
      margin: 0 0 5px; }
      .wrap-class-2023-2024 #Impact .box .tileIcon img {
        display: block !important;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }

.wrap-class-2023-2024 #Stories .stories-text {
  margin: 0 0 46px; }

.wrap-class-2023-2024 #Stories .stories-row {
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.wrap-class-2023-2024 #Stories .col {
  width: 100%;
  padding: 0 10px; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #Stories .col {
      width: 50%; } }

.wrap-class-2023-2024 #Stories .col-list .story-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 30px; }
  .wrap-class-2023-2024 #Stories .col-list .story-item .img-holder {
    width: 100%;
    position: relative; }
    @media screen and (min-width: 48em) {
      .wrap-class-2023-2024 #Stories .col-list .story-item .img-holder {
        height: 173px; } }
    @media screen and (min-width: 64em) {
      .wrap-class-2023-2024 #Stories .col-list .story-item .img-holder {
        width: 48%; } }
    .wrap-class-2023-2024 #Stories .col-list .story-item .img-holder img {
      width: 100%; }
      @media screen and (min-width: 48em) {
        .wrap-class-2023-2024 #Stories .col-list .story-item .img-holder img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: 50% 50%; } }
  .wrap-class-2023-2024 #Stories .col-list .story-item .text-holder {
    width: 100%; }
    @media screen and (min-width: 64em) {
      .wrap-class-2023-2024 #Stories .col-list .story-item .text-holder {
        width: 52%; } }

.wrap-class-2023-2024 #Stories .col-list .text-holder {
  padding: 25px 0; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #Stories .col-list .text-holder {
      padding: 8px 20px; } }
  @media screen and (min-width: 64em) {
    .wrap-class-2023-2024 #Stories .col-list .text-holder {
      padding: 8px 0 8px 20px; } }

.wrap-class-2023-2024 #Stories .col-list span {
  display: block; }

.wrap-class-2023-2024 #Stories .col-list .story-title {
  color: #000;
  margin: 0 0 3px;
  font: 500 24px/1.25 'Relato Sans' !important; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #Stories .col-list .story-title {
      font: 600 20px/1.5 'Relato Sans' !important; } }

.wrap-class-2023-2024 #Stories .col-list .txt {
  margin: 0 0 21px;
  font: 400 16px/1.25 'Relato Sans' !important;
  color: #000; }

.wrap-class-2023-2024 #Stories .col-list .btn {
  background: #fff;
  color: #000;
  border: 2px solid #62B5E5;
  min-width: 145px;
  display: inline-block;
  text-align: center;
  padding: 8px 10px;
  font: 500 14px/1.428 'Relato Sans' !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (min-width: 48em) {
    .wrap-class-2023-2024 #Stories .col-list .btn {
      min-width: 106px;
      padding: 2px 10px;
      font-size: 12px;
      line-height: 1.666; } }
  .wrap-class-2023-2024 #Stories .col-list .btn:hover {
    color: #fff;
    background: #62B5E5; }

.wrap-class-2023-2024 #Stories .col-single .story-item {
  display: block; }

.wrap-class-2023-2024 #Stories .col-single .text-holder {
  padding: 25px 0; }

.wrap-class-2023-2024 #Stories .col-single span {
  display: block; }

.wrap-class-2023-2024 #Stories .col-single .story-sub-title {
  font: 500 18px/1 'Relato Sans' !important;
  color: #ED8B00;
  margin: 0 0 5px; }

.wrap-class-2023-2024 #Stories .col-single .story-title {
  color: #000;
  margin: 0 0 6px;
  font: 500 24px/1.25 'Relato Sans' !important; }

.wrap-class-2023-2024 #Stories .col-single .txt {
  margin: 0 0 17px;
  font: 400 16px/1.25 'Relato Sans' !important;
  color: #000; }

.wrap-class-2023-2024 #Stories .col-single .btn {
  background: #fff;
  color: #000;
  border: 2px solid #62B5E5;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 145px;
  padding: 8px 10px;
  font: 500 14px/1.428 'Relato Sans' !important; }
  .wrap-class-2023-2024 #Stories .col-single .btn:hover {
    color: #fff;
    background: #62B5E5; }

.wrap-class-2023-2024 .img-holder {
  border-radius: 10px;
  overflow: hidden; }
  .wrap-class-2023-2024 .img-holder img {
    padding: 0;
    margin: 0; }

.stories-advancing {
  padding: 16px 0px;
  background: #f7f7f7;
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .stories-advancing {
      padding: 16px 0 50px; } }
  @media screen and (min-width: 64em) {
    .stories-advancing {
      padding: 16px 0 164px; } }
  .stories-advancing .container {
    max-width: 68.5rem;
    padding: 0 20px; }
  .stories-advancing .breadcrum-container {
    background: none;
    margin-bottom: 57px; }
    .stories-advancing .breadcrum-container #reportBreadcrumbs {
      padding: 15px 20px;
      font-size: 18px; }
  .stories-advancing.m-ar-story.success-story h1 {
    padding-bottom: 20px;
    position: relative;
    text-align: left;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .stories-advancing.m-ar-story.success-story h1 {
        font-size: 44px;
        margin: 0 0 28px; } }
    .stories-advancing.m-ar-story.success-story h1:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
	  display: none;
      background-image: url("../img/lines.png"); }
  .stories-advancing .main-content {
    padding-bottom: 38px; }
    .stories-advancing .main-content p {
      max-width: none;
      font: 400 18px/1.777 'Relato Sans'; }
  .stories-advancing .stories-advancing-list {
    margin: 0 -22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .stories-advancing .stories-advancing-list .col {
      width: 100%;
      padding: 32px 22px; }
      @media screen and (min-width: 48em) {
        .stories-advancing .stories-advancing-list .col {
          width: 50%; } }
      @media screen and (min-width: 64em) {
        .stories-advancing .stories-advancing-list .col {
          width: 33.333%; } }
  .stories-advancing .block-item {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); }
    .stories-advancing .block-item.colour-orange .link {
      background: #BA5800; }
    .stories-advancing .block-item.colour-red .link {
      background: #e02920; }
    .stories-advancing .block-item.colour-blue .link {
      background: #0070B1; }
    .stories-advancing .block-item.colour-purple .link {
      background: #8D62B0; }
    .stories-advancing .block-item .img-holder {
      height: 232px;
      position: relative; }
      .stories-advancing .block-item .img-holder img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        border-radius: 0; }
    .stories-advancing .block-item .text-holder {
      padding: 23px; }
    .stories-advancing .block-item h2 {
      font: 500 24px/1.25 'Relato Sans';
      margin: 0 0 5px; }
    .stories-advancing .block-item .txt {
      font: 400 18px/1.777 'Relato Sans';
      margin: 0 0 47px; }
      .stories-advancing .block-item .txt p {
        margin: 0;
        max-width: none;
        font: inherit; }
    .stories-advancing .block-item .link {
      font: 500 16px/1.777 'Relato Sans';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      text-align: left;
      color: #fff;
      padding: 5px 25px;
      text-decoration: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      .stories-advancing .block-item .link:hover {
        opacity: 0.8; }

.long-story-2024 {
  background: #fff;
  margin: 0; }
  .long-story-2024 .breadcrum-container {
    background: #fff;
    background: none;
    margin: 0 0 41px; }
    .long-story-2024 .breadcrum-container #reportBreadcrumbs {
      padding: 15px 20px;
      font-size: 18px;
      max-width: 68.5rem; }
  .long-story-2024 .container {
    max-width: 68.5rem;
    padding: 0 20px; }
  .long-story-2024 .m-news-entry__title {
    padding-bottom: 19px;
    position: relative;
    text-align: left;
    color: #2c2a29 !important;
    font: 500 30px/1.2 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .long-story-2024 .m-news-entry__title {
        font-size: 44px;
        margin-bottom: 27px; } }
    .long-story-2024 .m-news-entry__title:after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 96px;
      height: 5px;
      content: "";
		display: none;
      background-image: url("../img/lines.png"); }
  .long-story-2024 .time {
    font: 600 20px/1.5 'Relato Sans';
    margin-bottom: 43px; }
  .long-story-2024 #heading {
    position: relative;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 200px; }
    @media screen and (min-width: 48em) {
      .long-story-2024 #heading {
        height: 250px; } }
    @media screen and (min-width: 64em) {
      .long-story-2024 #heading {
        height: 493px; } }
    .long-story-2024 #heading img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 50% 50%; }
  .long-story-2024 .main-content {
    padding: 30px 0 20px;
    font: 400 18px/1.777 'Relato Sans'; }
    @media screen and (min-width: 48em) {
      .long-story-2024 .main-content {
        padding: 67px 0 32px; } }
    .long-story-2024 .main-content p {
      font: inherit;
      max-width: none;
      margin: 0 0 35px; }
      .long-story-2024 .main-content p br {
        display: none; }
    .long-story-2024 .main-content h2 {
      border-top: 1px solid #B9BBBD;
      font: 500 24px/1.25 'Relato Sans';
      padding-top: 15px; }
      @media screen and (min-width: 48em) {
        .long-story-2024 .main-content h2 {
          font-size: 28px; } }
      @media screen and (min-width: 64em) {
        .long-story-2024 .main-content h2 {
          font-size: 32px; } }
    .long-story-2024 .main-content .text {
      margin: 0 0 52px; }
    .long-story-2024 .main-content ul {
      list-style-type: none;
      padding: 0;
      margin: -3px 0 52px 0; }
      .long-story-2024 .main-content ul li {
        position: relative;
        font: 400 18px/1.777 'Relato Sans';
        max-width: none;
        padding-left: 24px;
        margin: 0 0 10px; }
        .long-story-2024 .main-content ul li:before {
          position: absolute;
          left: 10px;
          top: -4px;
          content: "•";
          font-size: 20px; }
        .long-story-2024 .main-content ul li br {
          margin: 0 0 13px; }
      .long-story-2024 .main-content ul a {
        display: inline-block;
        border: 0;
        text-decoration: underline; }
        .long-story-2024 .main-content ul a:hover {
          text-decoration: none; }
  .long-story-2024 .block-qoute {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin: 0 0 55px; }
    .long-story-2024 .block-qoute .col.quote-text {
      background: rgba(98, 181, 229, 0.05);
      padding: 40px 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%; }
      @media screen and (min-width: 48em) {
        .long-story-2024 .block-qoute .col.quote-text {
          width: 49%; } }
      .long-story-2024 .block-qoute .col.quote-text .blockquote {
        margin: 0;
        padding: 90px 0 30px;
        position: relative; }
        .long-story-2024 .block-qoute .col.quote-text .blockquote:before {
          position: absolute;
          top: 0;
          left: -17px;
          width: 75px;
          height: 57px;
          content: "";
          background-image: url("../img/quote.png");
          background-size: 100%;
          background-repeat: no-repeat; }
        .long-story-2024 .block-qoute .col.quote-text .blockquote p {
          margin: 0 0 13px; }
      .long-story-2024 .block-qoute .col.quote-text cite {
        display: block;
        text-align: right;
        font-weight: 500;
        font-style: normal;
        padding-right: 5px; }
    .long-story-2024 .block-qoute .col.quote-img {
      width: 100%; }
      @media screen and (min-width: 48em) {
        .long-story-2024 .block-qoute .col.quote-img {
          width: 51%; } }

.new-ls-nav-module-2024 {
  padding: 0 0 50px !important;
  background: none; }
  @media screen and (min-width: 48em) {
    .new-ls-nav-module-2024 {
      padding: 0 0 128px !important; } }
  .new-ls-nav-module-2024 .c-btn-row a {
    padding: 0.48rem 2rem;
    font-size: 14px;
    margin: 0 16px;
    text-transform: capitalize;
    border-radius: 0; }
    .new-ls-nav-module-2024 .c-btn-row a:first-child {
      border-color: #62B5E5 !important; }
      .new-ls-nav-module-2024 .c-btn-row a:first-child:active, .new-ls-nav-module-2024 .c-btn-row a:first-child:focus, .new-ls-nav-module-2024 .c-btn-row a:first-child:hover {
        border-color: #62B5E5 !important;
        background: #62B5E5;
        color: #fff; }
    .new-ls-nav-module-2024 .c-btn-row a:nth-child(2) {
      border-color: #f9423a !important; }
      .new-ls-nav-module-2024 .c-btn-row a:nth-child(2):active, .new-ls-nav-module-2024 .c-btn-row a:nth-child(2):focus, .new-ls-nav-module-2024 .c-btn-row a:nth-child(2):hover {
        border-color: #f9423a !important;
        background: #f9423a;
        color: #fff; }

.social-share-block {
  padding: 0 0 31px; }
  .social-share-block .container {
    border-top: 1px solid #B9BBBD; }
  .social-share-block .social-share-links {
    margin: 0;
    padding: 20px 14px; }
    @media screen and (min-width: 48em) {
      .social-share-block .social-share-links {
        padding: 20px 14px 83px; } }
    .social-share-block .social-share-links span {
      margin: 10px 20px 0 0;
      color: #2C2A29;
      text-transform: uppercase;
      font: 500 14px/1.777 'Relato Sans'; }
      @media screen and (min-width: 48em) {
        .social-share-block .social-share-links span {
          font-size: 18px; } }
    .social-share-block .social-share-links a {
      width: 50px;
      height: 50px;
      border: 1px solid #B9BBBD !important;
      border-radius: 50%;
      color: #000;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .social-share-block .social-share-links a svg path {
        fill: #000; }
      .social-share-block .social-share-links a.twitter:hover svg path {
        fill: #1877f2; }


.wrap-class-2023-2024 #Impact .btn-holder {
	 text-align: center;
}

.wrap-class-2023-2024 #Impact .btn-holder .btn{
	   background: #fff;
	  color: #000;
	  border: 2px solid #62B5E5;
	  display: inline-block;
	  text-align: center;
	  -webkit-transition: all 0.3s;
	  transition: all 0.3s;
	  min-width: 145px;
	  padding: 8px 10px;
	  font: 500 14px/1.428 'Relato Sans' !important;
}

.wrap-class-2023-2024 #Impact .btn-holder .btn:hover{
	color: #fff;
 	background: #62B5E5;
}

.legend-icons-bar .legend-icons:first-child {
	margin: 0;
}

.legend-icons-bar .legend-icons {
	margin: 0 20px 0 0;
}

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