/* http://meyerweb.com/eric/tools/css/reset/
   v2.0b1 | 201101
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

img {
  -ms-interpolation-mode: bicubic;
}

/* normalize.css v2.0.1 | MIT License | git.io/normalize
   Modified to remove duplications when using Meyer reset
*/
audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

svg:not(:root) {
  overflow: hidden;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

/* SCSS Variables
---------------------------------------------------------------------------------- */
/* Styles for HtmlEditorFields
---------------------------------------------------------------------------------- */
/* Mixins
---------------------------------------------------------------------------------- */
/* Media queries
---------------------------------------------------------------------------------- */
/* High-DPI displays
---------------------------------------------------------------------------------- */
/* Fluid font-size mixin
 *
 * Usage example: @include fluid-font-size( (1.2rem, 320px), (3rem, 960px) );
 *
 * Will result in font size of 1.2rem @ 320px, which will grow in sync with the
 * viewport width. It will reach 3rem @ 960px.
 *
 * Also dds a media query to stop the font size growing once it hits the max
 * size. This can be disabled - sometimes the media query merging logic gets
 * messed up, so it may be necessary to cap it manually
---------------------------------------------------------------------------------- */
/* Strip 'px', 'rem' etc units from a number
---------------------------------------------------------------------------------- */
/* Set base font size / family
---------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #656565;
  background-color: #EDEDED;
}

/* Typography
---------------------------------------------------------------------------------- */
/* The following is used by both style.scss (front-end) and editor.scss (CMS)
---------------------------------------------------------------------------------- */
.typography {
  font-size: 1.4rem;
  line-height: 1.5;
  /* Modifiers
  ---------------------------------------------------------------------------------- */
  /* TinyMCE alignment
  ---------------------------------------------------------------------------------- */
  /* Images
  ---------------------------------------------------------------------------------- */
  /* Image captions
  ---------------------------------------------------------------------------------- */
}
.typography p {
  margin-bottom: 2em;
}
.typography strong {
  font-weight: bold;
}
.typography em {
  font-style: italic;
}
.typography h1,
.typography .h1 {
  color: #0093C7;
  font-size: 2.4rem;
  line-height: 3rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 17px;
  font-weight: 700;
}
.typography h2,
.typography .h2 {
  color: #0093C7;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
.typography h3,
.typography .h3 {
  color: #0093C7;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
.typography ul {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  list-style-type: disc;
}
.typography ol {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  list-style-type: decimal;
}
.typography blockquote {
  margin: 0 0 1em;
  font-style: italic;
}
.typography blockquote p {
  margin: 0;
}
.typography blockquote cite {
  display: block;
  font-style: normal;
}
.typography sup,
.typography sub {
  position: relative;
  top: -0.4em;
  font-size: 80%;
  vertical-align: baseline;
}
.typography sub {
  top: 0.4em;
}
.typography a {
  color: inherit;
}
.typography a:link, .typography a:visited {
  text-decoration: underline;
}
.typography a:hover, .typography a:active {
  text-decoration: none;
}
.typography .quote {
  font-size: 3rem;
  line-height: 3rem;
  color: #0093C7;
  font-weight: 700;
  display: block;
  max-width: 316px;
  width: 100%;
  margin: 0 0 39px 39px;
  float: right;
  clear: both;
}
.typography--large-grey-header {
  font-size: 24px !important;
  line-height: 28px !important;
  margin-bottom: 0 !important;
  color: #656565 !important;
}
.typography--large-blue-text {
  font-size: 18px;
  line-height: 23px;
  color: #0093C7;
}
.typography .left,
.typography .text-left {
  text-align: left;
}
.typography .center,
.typography .text-center {
  text-align: center;
}
.typography .right,
.typography .text-right {
  text-align: right;
}
.typography img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.typography img.left, .typography img.right, .typography img.leftAlone, .typography img.center {
  display: block;
  float: none;
  margin: 0 auto 1em;
}
.typography img.rightAlone {
  display: inline-block;
  float: right;
  margin: 0 0 1em 100%;
}
.typography .captionImage {
  max-width: 100%;
  display: inline-block;
  margin: 0 5px 1em;
}
.typography .captionImage img {
  margin-bottom: 0;
}
.typography .captionImage p {
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  background-color: #EDEDED;
  padding: 5px 10px;
}
/* Mixins
---------------------------------------------------------------------------------- */
/* Media queries
---------------------------------------------------------------------------------- */
/* High-DPI displays
---------------------------------------------------------------------------------- */
/* Fluid font-size mixin
 *
 * Usage example: @include fluid-font-size( (1.2rem, 320px), (3rem, 960px) );
 *
 * Will result in font size of 1.2rem @ 320px, which will grow in sync with the
 * viewport width. It will reach 3rem @ 960px.
 *
 * Also dds a media query to stop the font size growing once it hits the max
 * size. This can be disabled - sometimes the media query merging logic gets
 * messed up, so it may be necessary to cap it manually
---------------------------------------------------------------------------------- */
/* Strip 'px', 'rem' etc units from a number
---------------------------------------------------------------------------------- */
/* Utility Classes
---------------------------------------------------------------------------------- */
/* Occasionally handly class for forcing stuff to hide
---------------------------------------------------------------------------------- */
.h {
  display: none !important;
}

/* Visually hide things, but leave them accessible to screenreaders
---------------------------------------------------------------------------------- */
.h-hide-visually {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
          clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  white-space: nowrap;
}

/* Clearfix - Assign class to element to self clear children
---------------------------------------------------------------------------------- */
.group {
  zoom: 1;
}
.group:before, .group:after {
  display: table;
  content: "";
}
.group:after {
  clear: both;
}

/* Utility class for replacing text with a background-image
---------------------------------------------------------------------------------- */
.replace {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}

/* Layout
---------------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

/* Component: background
---------------------------------------------------------------------------------- */
.bg--white {
  background-color: #fff;
}

/* Component: breadcrumbs
---------------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: 140%;
}
.breadcrumbs a {
  color: #000;
}
.breadcrumbs a:link, .breadcrumbs a:visited {
  text-decoration: none;
}
.breadcrumbs a:active, .breadcrumbs a:hover {
  text-decoration: underline;
}

/* Component: chapter graphic
---------------------------------------------------------------------------------- */
.chapter-graphic {
  padding-bottom: 24px;
}

.chapter-graphic__wrapper {
  position: relative;
}

.chapter-graphic__button {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.chapter-graphic__button img {
  width: 36px !important;
  -webkit-animation: scale 2s infinite;
          animation: scale 2s infinite;
  transition: 400ms ease-in-out all;
}
.chapter-graphic__button--1 {
  top: 33%;
  left: 11%;
}
.chapter-graphic__button--1 img {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.chapter-graphic__button--2 {
  top: 49%;
  left: 36%;
}
.chapter-graphic__button--2 img {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.chapter-graphic__button--3 {
  top: 47%;
  left: 54%;
}
.chapter-graphic__button--3 img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.chapter-graphic__button--4 {
  top: 67%;
  left: 66%;
}
.chapter-graphic__button--4 img {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.chapter-graphic__button--5 {
  top: 33%;
  left: 83%;
}
.chapter-graphic__button--5 img {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
@-webkit-keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/*------------------------------------
	chapter graphic modal
------------------------------------*/
.chapter-graphic__modal-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 400ms ease-in-out all;
}
.chapter-graphic__modal-outer--active {
  opacity: 1;
  visibility: visible;
}

.chapter-graphic__modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #353948;
  padding: 24px;
  max-width: 250px;
  min-height: 200px;
  width: 100%;
  color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 65%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 65%, 75% 100%, 0% 100%);
}

.chapter-graphic__modal-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  fill: #fff;
}
.chapter-graphic__modal-close:hover {
  fill: #e6e6e6;
}

.chapter-graphic__modal-content {
  display: none;
}

.chapter-graphic__modal-content h3,
.chapter-graphic__hover-box-inner h3 {
  margin-bottom: 0 !important;
  color: #fff !important;
  text-transform: none;
  font-size: 18px;
  width: 100%;
}
.chapter-graphic__modal-content p,
.chapter-graphic__hover-box-inner p {
  margin-bottom: 1em !important;
  font-size: 18px;
  width: 100%;
}
.chapter-graphic__modal-content a,
.chapter-graphic__hover-box-inner a {
  margin: auto auto 0 0;
  display: block;
  width: 100%;
}
.chapter-graphic__modal-content--active,
.chapter-graphic__hover-box-inner--active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.chapter-graphic__hover-box {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  text-decoration: none !important;
  display: none;
}
.chapter-graphic__hover-box:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #353948;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.chapter-graphic__button:nth-child(5) .chapter-graphic__hover-box {
  bottom: calc(100% + 10px);
  top: auto;
}
.chapter-graphic__button:nth-child(5) .chapter-graphic__hover-box:before {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #353948;
  border-bottom: none;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.chapter-graphic__hover-box-inner {
  background-color: #353948;
  padding: 24px;
  width: 250px;
  min-height: 200px;
  color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 65%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 65%, 75% 100%, 0% 100%);
}

/* Component: container
---------------------------------------------------------------------------------- */
.container {
  max-width: 1220px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.container--sidebar {
  display: -ms-flexbox;
  display: flex;
}

/* Component: content
---------------------------------------------------------------------------------- */
.content {
  max-width: 752px;
  width: 100%;
  margin: 0 auto;
  border-left: 15px solid #0093C7;
  padding-left: 24px;
}

/* Component: feature box
---------------------------------------------------------------------------------- */
.feature-box__holder {
  position: relative;
}

.feature-box__image {
  display: block;
}
a.feature-box__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #0093C7;
  color: #fff;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  transition: 400ms ease-in-out all;
  padding: 10px 16px;
}
a.feature-box__link:hover {
  background-color: #006d94;
}
.feature-box__chevron {
  margin-left: 16px;
}
/* Layout: footer
---------------------------------------------------------------------------------- */
.footer {
  background: #353948;
  border-top: #0093C7 3px solid;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 20px 0;
}

.footer__column {
  width: 100%;
  padding-right: 24px;
  color: #C1C1C1;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer__column a {
  color: #f2eee4 !important;
}
.footer__column-title {
  font-size: 18px;
  line-height: 18px;
  color: #f2eee4;
  margin: 0 0 20px;
}

.footer__link {
  line-height: 24px;
  text-decoration: none;
  color: #f2eee4;
}
.footer__link:hover {
  text-decoration: underline;
}

.footer__to-top {
  display: block;
  width: 48px;
  height: 48px;
  position: relative;
  background: #0093C7;
  border-radius: 50%;
  overflow: hidden;
  margin: 24px 0 24px auto;
  text-decoration: none !important;
}
.footer__to-top:hover {
  background-color: #006d94;
}
.footer__to-top svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Component: further reading
---------------------------------------------------------------------------------- */
/*------------------------------------
	Further reading title
------------------------------------*/
.further-reading__title {
  background-color: #0093C7;
  height: 17px;
  position: relative;
  text-align: center;
  margin-bottom: 30px !important;
}

.further-reading__title-text {
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  font-size: 27px !important;
  margin-top: -20px;
  text-transform: none;
}
.further-reading__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 10px 26px;
}
.further-reading__link {
  width: 100%;
  background-color: #C1C1C1;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px 10px;
  text-decoration: none !important;
  transition: 400ms ease-in-out all;
  overflow: hidden;
}
.further-reading__link:hover {
  background-color: #a8a8a8;
}
.further-reading__link-content {
  padding: 10px 10px 10px 24px;
}
.further-reading__link-title {
  font-size: 22px !important;
  line-height: 32px !important;
  margin-bottom: 10px !important;
  text-transform: none !important;
  width: 100%;
  padding: 0 1px;
}
.further-reading__link-description {
  font-size: 16px;
  line-height: 25px !important;
  margin-bottom: 16px !important;
  width: 100%;
}
.further-reading__link-button {
  text-align: center;
  background-color: #0093C7;
  padding: 4px 16px;
  height: 100%;
  margin: 0 0 0 auto;
}
.further-reading__link-button svg {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* Layout: header
---------------------------------------------------------------------------------- */
.header {
  padding: 18px 18px 18px 35px;
  background-color: #fff;
  z-index: 9999;
  height: 182px;
}
.header.js-is-stuck {
  border-bottom: 1px solid #0093C7;
}
.header__logo {
  display: block;
  margin: 0 auto;
  width: 155px;
}
.header__socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 10px;
}
p.header__socials-text {
  font-weight: 700;
  margin-right: 16px;
  margin-bottom: 0 !important;
  font-size: 12px;
}
.header__social-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.header__social-link {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: 400ms ease-in-out all;
}
.header__social-link:not(:first-child) {
  margin-left: 10px;
}
.header__social-link--twitter {
  background-color: #1da1f2;
}
.header__social-link--twitter:hover {
  background-color: #0c85d0;
}
.header__social-link--facebook {
  background-color: #1778f2;
}
.header__social-link--facebook:hover {
  background-color: #0b60cb;
}
.header__social-link--linkedin {
  background-color: #0077b5;
}
.header__social-link--linkedin:hover {
  background-color: #005582;
}
.header__social-link--email {
  background-color: #EDEDED;
}
.header__social-link--email:hover {
  background-color: #d4d4d4;
}
.header__social-link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px !important;
}
/* Component: hero
---------------------------------------------------------------------------------- */
.hero__home {
  height: 350px;
  background-color: #656565;
  position: relative;
  overflow: hidden;
}
.hero__page {
  overflow: hidden;
  margin: 0 -32px;
}
/*------------------------------------
	Hero image
------------------------------------*/
img.hero__home-image {
  height: 350px;
}
img.hero__page-image {
  height: 227px;
  margin-bottom: 10px;
}

img.hero__home-image,
img.hero__page-image {
  width: auto !important;
  max-width: none !important;
  display: block;
}

img.hero__page-image {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*------------------------------------
	Hero text
------------------------------------*/
.hero__text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px;
}

.hero__text-large {
  max-width: 785px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  text-shadow: 2px 2px 4px #000;
  margin-bottom: 48px;
}
/*------------------------------------
	Hero post text
------------------------------------*/
.hero__post-text {
  max-width: 721px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.9rem;
}
/* Component: nav
---------------------------------------------------------------------------------- */
.nav {
  height: calc(100% - 182px);
  background-color: #fff;
  padding-right: 10px;
  overflow-y: auto;
}
.nav__overflow {
  height: 100%;
}

.nav__line {
  height: 100%;
  border-left: 3px solid #656565;
  position: relative;
  margin-left: 36px;
}

ul.nav__menu {
  list-style: none;
  padding: 21px 0 0 0 !important;
  margin-bottom: 0 !important;
}

.nav__item {
  margin: 0 0 36px -11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

a.nav__link {
  color: #0093C7;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6rem !important;
  text-decoration: none !important;
  display: block;
}

.nav__link-circle {
  height: 19px;
  width: 19px;
  border: 1px solid #656565;
  display: block;
  position: relative;
  border-radius: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 11px;
  background-color: #fff;
}
.nav__link-circle:after {
  content: "";
  height: 13px;
  width: 13px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #0093C7;
  border-radius: 50%;
  opacity: 0;
  transition: 400ms ease-in-out all;
}
.nav__item--current .nav__link-circle:after, .nav__item--section .nav__link-circle:after, .nav__link:hover ~ .nav__link-circle:after {
  opacity: 1;
}

.nav__menu-button {
  display: block;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
  font-weight: 700;
  background-color: #0093C7;
  color: #fff;
  padding: 10px 16px;
  -ms-flex-item-align: center;
      align-self: center;
  position: fixed;
  top: 216px;
  right: 0;
  transition: right 0.2s ease-in-out;
  z-index: 1000;
}
.menu-active .nav__menu-button {
  right: calc(100% - 70px);
}
.nav__menu-burger {
  display: inline-block;
  width: 20px;
  height: 3px;
  background: #fff;
  vertical-align: middle;
  outline-color: transparent !important;
  transition: background-color 0.2s linear;
  will-change: background-color;
  margin-top: -3px;
  border-radius: 1px;
}
.nav__menu-burger:before, .nav__menu-burger:after {
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  content: "";
  background: #fff;
  transition: margin 0.2s ease 0.1s, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, margin 0.2s ease 0.1s;
  transition: transform 0.2s ease, margin 0.2s ease 0.1s, -webkit-transform 0.2s ease;
  border-radius: 1px;
}
.nav__menu-burger:before {
  margin-top: -6px;
}
.nav__menu-burger:after {
  margin-top: 6px;
}
.menu-active .nav__menu-burger {
  background-color: transparent;
}
.menu-active .nav__menu-burger:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-active .nav__menu-burger:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* off canvas menu setup
---------------------------------------------------------------------------------- */
/*------------------------------------
    Viewport
------------------------------------*/
.viewport {
  position: relative;
  width: 100%;
}
/*------------------------------------
    Navigation
------------------------------------*/
.nav {
  position: fixed;
  top: 182px;
  bottom: 0;
  left: 100%;
  z-index: 500;
  transition: left 0.2s ease-in-out;
  will-change: left;
  width: calc(100% - 80px);
}
.menu-active .nav {
  left: 70px;
}
.nojs .nav {
  position: relative;
  right: 0;
  width: auto;
}
/* Component: page
---------------------------------------------------------------------------------- */
.page__container {
  padding: 32px 32px 23px;
}
/*------------------------------------
	Pre content
------------------------------------*/
.page__pre-content {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.page__scroll-to-content {
  display: block;
  margin: 0 auto 67px auto;
  width: 25px;
}

/*------------------------------------
	Sidebar
------------------------------------*/
.page__sidebar {
  margin-left: 38px;
  width: 331px;
}

/*------------------------------------
	Chapter links
------------------------------------*/
.page__chapter-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page__chapter-link {
  background-color: #656565;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 5px 20px;
  display: block;
  width: 224px;
  transition: 400ms ease-in-out all;
}
.page__chapter-link:hover {
  background-color: #4c4c4c;
}
.page__chapter-link--prev {
  padding: 20px 39px 20px 5px;
  margin: 0 auto auto -32px;
  text-align: right;
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}
.page__chapter-link--next {
  padding: 20px 5px 20px 39px;
  margin: 20px -38px 0 auto;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
}

/* Component: system approach
---------------------------------------------------------------------------------- */
/*------------------------------------
	system approach
------------------------------------*/
.system-approach {
  padding: 10px;
  position: relative;
}

/*------------------------------------
	system approach image
------------------------------------*/
.system-approach__image {
  width: 100%;
}

.system-approach__image-desktop {
  display: none;
  margin-bottom: 24px;
}
.system-approach__image-mobile {
  width: 100%;
  max-width: 410px;
  margin: 0 auto 24px;
  display: block;
}
/*------------------------------------
	system approach image pulse
------------------------------------*/
.system-approach__pulse {
  -webkit-transform-origin: 37.5px 37.5px;
          transform-origin: 37.5px 37.5px;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.system-approach__pulse--1 {
  -webkit-animation: mobile-pulse-1 2s infinite;
          animation: mobile-pulse-1 2s infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.system-approach__pulse--2 {
  -webkit-animation: mobile-pulse-2 2s infinite;
          animation: mobile-pulse-2 2s infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.system-approach__pulse--3 {
  -webkit-animation: mobile-pulse-3 2s infinite;
          animation: mobile-pulse-3 2s infinite;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.system-approach__pulse--4 {
  -webkit-animation: mobile-pulse-4 2s infinite;
          animation: mobile-pulse-4 2s infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@-webkit-keyframes mobile-pulse-1 {
  50% {
    -webkit-transform: scale(1.1) translate(-22px, -29px);
            transform: scale(1.1) translate(-22px, -29px);
  }
}
@keyframes mobile-pulse-1 {
  50% {
    -webkit-transform: scale(1.1) translate(-22px, -29px);
            transform: scale(1.1) translate(-22px, -29px);
  }
}
@-webkit-keyframes mobile-pulse-2 {
  50% {
    -webkit-transform: scale(1.1) translate(-11px, -29px);
            transform: scale(1.1) translate(-11px, -29px);
  }
}
@keyframes mobile-pulse-2 {
  50% {
    -webkit-transform: scale(1.1) translate(-11px, -29px);
            transform: scale(1.1) translate(-11px, -29px);
  }
}
@-webkit-keyframes mobile-pulse-3 {
  50% {
    -webkit-transform: scale(1.1) translate(-12px, -20px);
            transform: scale(1.1) translate(-12px, -20px);
  }
}
@keyframes mobile-pulse-3 {
  50% {
    -webkit-transform: scale(1.1) translate(-12px, -20px);
            transform: scale(1.1) translate(-12px, -20px);
  }
}
@-webkit-keyframes mobile-pulse-4 {
  50% {
    -webkit-transform: scale(1.1) translate(-2px, -20px);
            transform: scale(1.1) translate(-2px, -20px);
  }
}
@keyframes mobile-pulse-4 {
  50% {
    -webkit-transform: scale(1.1) translate(-2px, -20px);
            transform: scale(1.1) translate(-2px, -20px);
  }
}
@-webkit-keyframes pulse-1 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 619.612px), calc((1 - 1.1) * 235.132px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 619.612px), calc((1 - 1.1) * 235.132px)) scale(1.1);
  }
}
@keyframes pulse-1 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 619.612px), calc((1 - 1.1) * 235.132px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 619.612px), calc((1 - 1.1) * 235.132px)) scale(1.1);
  }
}
@-webkit-keyframes pulse-2 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 619.983px), calc((1 - 1.1) * 375.677px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 619.983px), calc((1 - 1.1) * 375.677px)) scale(1.1);
  }
}
@keyframes pulse-2 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 619.983px), calc((1 - 1.1) * 375.677px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 619.983px), calc((1 - 1.1) * 375.677px)) scale(1.1);
  }
}
@-webkit-keyframes pulse-3 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 478.546px), calc((1 - 1.1) * 375.802px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 478.546px), calc((1 - 1.1) * 375.802px)) scale(1.1);
  }
}
@keyframes pulse-3 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 478.546px), calc((1 - 1.1) * 375.802px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 478.546px), calc((1 - 1.1) * 375.802px)) scale(1.1);
  }
}
@-webkit-keyframes pulse-4 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 479.079px), calc((1 - 1.1) * 516.742px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 479.079px), calc((1 - 1.1) * 516.742px)) scale(1.1);
  }
}
@keyframes pulse-4 {
  50% {
    -webkit-transform: translate(calc((1 - 1.1) * 479.079px), calc((1 - 1.1) * 516.742px)) scale(1.1);
            transform: translate(calc((1 - 1.1) * 479.079px), calc((1 - 1.1) * 516.742px)) scale(1.1);
  }
}
/*------------------------------------
	system approach modal
------------------------------------*/
.system-approach__modal-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 400ms ease-in-out all;
}
.system-approach__modal-outer--active {
  opacity: 1;
  visibility: visible;
}

.system-approach__modal {
  background-color: #fff;
  border-radius: 7px;
  padding: 24px;
  position: relative;
  max-width: 400px;
  width: 100%;
}

.system-approach__modal-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  fill: #0093C7;
}
.system-approach__modal-close:hover {
  fill: #006d94;
}

.system-approach__modal-content {
  display: none;
}
.system-approach__modal-content--active {
  display: block;
}

/* Component: Vertical rule
---------------------------------------------------------------------------------- */
.vr {
  height: 30px;
  width: 3px;
  display: block;
  margin: 9px auto;
  background-color: #656565;
}
@media screen and (min-width: 435px) {
  p.header__socials-text {
    font-size: 14px;
  }
  .header__social-link {
    width: 46px;
    height: 46px;
  }
  .header__social-link:not(:first-child) {
    margin-left: 8px;
  }
  .header__social-link svg {
    width: 20px !important;
  }
}
@media screen and (min-width: 455px) {
  a.feature-box__link {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (min-width: 480px) {
  .typography img.left, .typography img.right, .typography img.leftAlone {
    display: inline-block;
  }
  .typography img.left {
    float: left;
    margin: 0 1em 0 0;
  }
  .typography img.right {
    float: right;
    margin: 0 0 0 1em;
  }
  .typography img.leftAlone {
    float: left;
    margin: 0 100% 1em 0;
  }
  .typography .captionImage.left {
    float: left;
    margin: 0 1em 1em 0;
  }
  .typography .captionImage.right {
    float: right;
    margin: 0 0 1em 1em;
  }
  .typography .captionImage.center {
    margin: 0 auto 1em;
  }
  .typography .captionImage img {
    float: none;
    margin: 0;
  }
}
@media screen and (min-width: 540px) {
  .footer__column {
    width: 50%;
  }
}
@media screen and (min-width: 560px) {
  .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    height: 150px;
  }
  .header__logo {
    margin: 0;
    width: 197px;
  }
  .header__socials {
    display: block;
    padding-top: 7px;
    margin-bottom: 0;
  }
  p.header__socials-text {
    margin-bottom: 1em !important;
    margin-right: 16px;
  }
  .nav {
    top: 180px;
    height: calc(100% - 150px);
  }
  .nav__menu-button {
    top: 180px;
  }
  .menu-active .nav__menu-button {
    right: calc(70% + 10px);
  }
  .nav {
    top: 150px;
  }
}
@media screen and (min-width: 600px) {
  .typography {
    font-size: 1.6rem;
  }
  .typography h1,
.typography .h1 {
    font-size: 3.8rem;
    line-height: 4.4rem;
  }
  .typography--large-grey-header {
    font-size: 36px !important;
    line-height: 40px !important;
  }
  .typography--large-blue-text {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 16px !important;
  }
  .chapter-graphic__button img {
    width: 48px !important;
  }
  .feature-box__image {
    max-width: 525px !important;
  }
  .feature-box__holder--even .feature-box__image {
    margin: 0 0 0 auto;
  }
  a.feature-box__link {
    display: block;
    width: 350px;
    min-height: 236px;
    position: absolute;
    top: 36px;
    right: 0;
    text-align: right;
    padding: 32px 20px 0 105px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
    transition: 400ms ease-in-out all;
  }
  a.feature-box__link:hover {
    background-color: #006d94;
  }
  .feature-box__holder--even a.feature-box__link {
    right: auto;
    left: 0;
    padding: 32px 86px 60px 50px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  }
  .feature-box__chevron {
    margin-left: 0;
    position: absolute;
    bottom: 20px;
    right: 50px;
  }
  .feature-box__holder--even .feature-box__chevron {
    right: 106px;
  }
  .hero__page {
    margin: 0;
  }
  .hero__post-text {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }
  .menu-active .nav__menu-button {
    right: calc(70% + 10px);
  }
  .nav {
    width: 70%;
  }
  .menu-active .nav {
    left: calc(30% - 10px);
  }
  .vr {
    height: 60px;
  }
}
@media screen and (min-width: 750px) {
  .further-reading__link {
    max-width: calc(50% - 10px);
  }
}
@media screen and (min-width: 800px) and (-ms-high-contrast: none), screen and (min-width: 800px) and (-ms-high-contrast: active) {
  .system-approach__image-desktop {
    height: 445px;
    width: auto;
  }
}
@media screen and (min-width: 800px) {
  .feature-box__image {
    max-width: 699px !important;
  }
  a.feature-box__link {
    width: 445px;
    min-height: 318px;
    font-size: 32px;
    line-height: 36px;
    padding: 64px 20px 0 105px;
  }
  .feature-box__holder--even a.feature-box__link {
    right: auto;
    left: 0;
    padding: 64px 86px 60px 50px;
  }
  .further-reading__title-text {
    position: absolute;
    bottom: -7px;
    right: 260px;
  }
  .system-approach__image-desktop {
    width: 100%;
    display: block;
  }
  .system-approach__image-mobile {
    display: none;
  }
  .system-approach__pulse {
    -webkit-transform-origin: 46px 46px;
            transform-origin: 46px 46px;
  }
  .system-approach__pulse--1 {
    -webkit-animation: pulse-1 2s infinite;
            animation: pulse-1 2s infinite;
  }
  .system-approach__pulse--2 {
    -webkit-animation: pulse-2 2s infinite;
            animation: pulse-2 2s infinite;
  }
  .system-approach__pulse--3 {
    -webkit-animation: pulse-3 2s infinite;
            animation: pulse-3 2s infinite;
  }
  .system-approach__pulse--4 {
    -webkit-animation: pulse-4 2s infinite;
            animation: pulse-4 2s infinite;
  }
}
@media screen and (min-width: 825px) {
  .nav {
    padding-left: 0;
    padding-right: 0;
    height: 100%;
  }
  ul.nav__menu.js-is-stuck-bottom {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .nav__menu-button {
    display: none;
  }
  .nav {
    position: static;
    top: auto;
    bottom: auto;
    right: auto;
    width: auto;
  }
  .nojs .nav {
    position: relative;
  }
  .page__container {
    display: -ms-flexbox;
    display: flex;
    padding: 73px 32px 23px;
  }
  .page__main {
    width: calc(100% - 331px - 38px);
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media screen and (min-width: 900px) {
  .typography--large-grey-header {
    font-size: 52px !important;
    line-height: 61px !important;
  }
  .hero__home {
    height: 554px;
  }
  img.hero__home-image {
    height: 554px;
  }
  .hero__text-large {
    font-size: 88px;
    line-height: 100px;
  }
}
@media screen and (min-width: 950px) {
  .chapter-graphic__button:hover .chapter-graphic__hover-box {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .footer__column {
    width: 25%;
  }
}
@media screen and (min-width: 1000px) {
  a.feature-box__link {
    width: 667px;
    font-size: 40px;
    line-height: 55px;
  }
}
@media screen and (min-width: 1066px) {
  .further-reading__link {
    width: 100%;
    max-width: calc(20% - 10px);
    min-height: 230px;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 49px 10px 0;
    -ms-flex-align: center;
        align-items: center;
    border-radius: 40px;
  }
  .further-reading__link-content {
    padding: 0;
    width: 100%;
  }
  .further-reading__link-title {
    text-align: center;
  }
  .further-reading__link-description {
    text-align: center;
  }
  .further-reading__link-button {
    margin: auto auto 0;
    padding: 14px 8px;
    height: unset;
    max-height: 53px;
  }
  .further-reading__link-button svg {
    position: static;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1200px) {
  .further-reading__links {
    padding: 0 17.5px 26px;
  }
}
@media screen and (max-width: 825px) {
  ul.nav__menu {
    position: static !important;
  }
}