@charset "UTF-8";
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* GLOBAL CSS *************************/
* {
  outline: 0;
}

html {
  overflow: hidden;
  overflow-y: scroll;
}

body {
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #231F20;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  min-width: 320px;
  padding-left: 0;
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-text-size-adjust: 100%;
}

a, i, button, label {
  color: inherit;
  outline: none !important;
  text-decoration: none;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

/************************* IMAGERY *************************/
img {
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

img {
  border: 0;
}

figure,
picture {
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
}

figure:not(.uncropped):not(.wp-caption) img:not(.fix-left-right-image) {
  height: calc(100% + 4px) !important;
  width: calc(100% + 4px) !important;
  image-rendering: auto;
  opacity: 1;
  object-position: center;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

figure.uncropped img {
  display: block;
  height: auto !important;
  width: 100%;
}

figure.no-gallery-embed.wp-block-image:not(.uncropped):not(.wp-caption) img {
  height: auto !important;
  width: auto !important;
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  transform: unset;
}

.wp-caption {
  width: 100% !important;
}

.wp-caption img {
  display: block;
  height: auto !important;
  width: 100%;
}

figure.fallback {
  background-size: cover !important;
  background-position: center !important;
}

figure.fallback img {
  display: none !important;
}

figure figcaption {
  color: #231F20;
  display: block;
  font-size: 0.813rem;
  line-height: 160%;
  margin-top: 1rem;
}

.pointer {
  cursor: pointer;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* BUTTON STYLING *************************/
/***** BUTTONS *****/
.btn {
  border: 0;
  border-radius: 0.125rem;
  box-sizing: border-box;
  cursor: pointer;
  display: table;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  transform: translateZ(0);
}

.btn span {
  display: block;
  position: relative;
  z-index: 2;
}

/*** FILL STYLE ***/
.btn.fill {
  font-size: 0.875rem;
  line-height: 150%;
  overflow: hidden;
  padding: 0.938rem 2.5rem 0.875rem 2.5rem;
  transition: border 125ms ease 0ms;
}

@media (max-width: 400px) {
  .btn.fill {
    padding: 0 1.5rem;
  }
}
.btn.fill:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.625);
  transition: opacity 350ms ease, transform 350ms ease;
  z-index: 1;
}

.btn.fill:hover {
  transition: border 125ms ease 225ms;
}

.btn.fill.blue {
  background-color: #04284A;
  border: 1px solid #04284A;
}

.btn.fill.blue:before {
  background-color: #184181;
}

.btn.fill.blue span {
  color: #FFFFFF;
}

.btn.fill.blue:hover {
  border: 1px solid #184181;
}

.btn.fill.white {
  background-color: #EEE;
  border: 1px solid #EEE;
}

.btn.fill.white:before {
  background-color: #FFFFFF;
}

.btn.fill.white span {
  color: #04284A;
}

.btn.fill.white:hover {
  border: 1px solid #FFFFFF;
}

.btn.fill.gold {
  background-color: #EC973A;
  border: 1px solid #EC973A;
}

.btn.fill.gold:before {
  background-color: #E9A526;
}

.btn.fill.gold span {
  color: #04284A;
}

.btn.fill.gold:hover {
  border: 1px solid #E9A526;
  background-color: #E9A526;
}

/** OUTLINE STYLE **/
.btn.outline {
  font-size: 0.875rem;
  line-height: 150%;
  padding: 0.938rem 2.5em 0.875rem 2.5em;
}

@media (max-width: 400px) {
  .btn.outline {
    padding: 0 1.5rem;
  }
}
.btn.outline.white span {
  transition: color 350ms ease;
}

.btn.outline:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.625);
  transition: opacity 350ms ease, transform 350ms ease;
  z-index: 1;
}

.btn.outline:hover:before {
  opacity: 1;
  transform: scale(1);
}

.btn.outline.white {
  border: 1px solid #FFFFFF;
}

.btn.outline.white span {
  color: #FFFFFF;
}

.btn.outline.white:before {
  background-color: #FFFFFF;
}

.btn.outline.white:hover span {
  color: #04284A;
}

.btn.outline.blue {
  border: 1px solid #04284A;
}

.btn.outline.blue span {
  color: #04284A;
}

.btn.outline.blue:before {
  background-color: #04284A;
}

.btn.outline.blue:hover span {
  color: #FFFFFF;
}

.btn.outline.gold {
  border: 1px solid #EC973A;
}

.btn.outline.gold span {
  color: #EC973A;
}

.btn.outline.gold:before {
  background-color: #EC973A;
}

.btn.outline.gold:hover span {
  color: #FFFFFF;
}

/** ARROW STYLE **/
.btn.arrow {
  color: #231F20;
  letter-spacing: 1px;
  padding: 0 4.375rem 0 0;
  line-height: 2rem;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition: all 300ms ease;
  white-space: nowrap;
}

.btn.arrow:before {
  background-color: #231F20;
  content: "";
  height: 0.094rem;
  position: absolute;
  top: calc(50% - 0.031rem);
  left: calc(100% - 3.375rem);
  right: 4px;
  transition: all 300ms ease;
}

.btn.arrow:after {
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #231F20;
  content: "";
  height: 0;
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 0;
  transition: all 300ms ease;
}

.btn.arrow.right {
  margin: 0 0 0 auto;
}

.btn.arrow:hover,
.hover .btn.arrow {
  padding: 0 7rem 0 0;
}

.btn.arrow:hover:before,
.hover .btn.arrow:before {
  left: calc(100% - 6rem);
}

/************************* BASIC GRID *************************/
g-container,
g-row,
g-col {
  box-sizing: border-box;
}

g-container {
  display: block;
  padding: 0 2.375rem;
}

g-container,
.on-grid {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 115.688rem;
  width: 100%;
}

g-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

g-col {
  background-clip: padding-box !important;
  box-sizing: border-box;
  display: block;
  padding: 0 1.188rem;
  position: relative;
  width: 100%;
}

g-container img {
  box-sizing: border-box;
  display: block;
  height: auto !important;
  width: 100%;
}

@media (max-width: 768px) {
  g-container,
  g-col {
    padding: 0 0.938rem;
  }
}
/** COLSPAN REFERENCE

.col-0 { display: none !important; }
.col-1 { width: 6.6666666667%; }
.col-2 { width: 13.3333333333%; }
.col-3 { width: 20%; }
.col-4 { width: 26.6666666667%; }
.col-5 { width: 33.3333333333%; }
.col-6 { width: 40%; }
.col-7 { width: 46.6666666667%; }
.col-8 { width: 53.3333333333%; }
.col-9 { width: 60%; }
.col-10 { width: 66.6666666667%; }
.col-11 { width: 73.3333333333%; }
.col-12 { width: 80%; }
.col-13 { width: 86.6666666667%; }
.col-14 { width: 93.3333333333%; }

**/
/** BREAKPOINT REFERENCE **/
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* GENERAL SECTION STYLING *************************/
main {
  display: block;
  padding: 0;
  position: relative;
}

section.flex,
section-group {
  display: block;
  position: relative;
  width: 100%;
}

section-group.white {
  background-color: #FFFFFF;
}

section-group.navy {
  background-color: #04284A;
}

section-group.blue {
  background-color: #C3E2FF;
}

section-group > figure {
  background-position: center !important;
  background-size: cover !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
  z-index: 1;
}

section-group.blue > figure {
  opacity: 0.15;
  filter: grayscale(50%);
}

section.flex {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

@media (max-width: 479px) {
  section.flex {
    padding: 4rem 0;
  }
}
@media (min-width: 480px) {
  section.flex {
    padding: calc(4rem + (1vw - 0.3rem) * 5.2459) 0;
  }
}
@media (min-width: 1701px) {
  section.flex {
    padding: 8rem 0;
  }
}
section.flex:not(.has-background) + section.flex:not(.has-background) {
  padding-top: 0;
}

section-group.white + section-group.white > section:not(.has-background):first-child,
section-group.navy + section-group.navy > section:not(.has-background):first-child,
section-group.blue + section-group.blue > section:not(.has-background):first-child {
  padding-top: 0 !important;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************ COMMON TYPOGRAPHY ************************/
/********** HEADINGS **********/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: #231F20;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 125%;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

/***** SPACING BEFORE IN GENERAL USAGE *****/
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 3rem;
}

/***** SPACING BEFORE IN WYSIWYG CONTENT *****/
.wysiwyg * + h1,
.wysiwyg * + h2,
.wysiwyg * + h3,
.wysiwyg * + h4,
.wysiwyg * + h5,
.wysiwyg * + h6 {
  margin-top: 1.75em;
}

@media (max-width: 479px) {
  .wysiwyg h1 + *, .wysiwyg h2 + *, .wysiwyg h3 + *, .wysiwyg h4 + *, .wysiwyg h5 + *, .wysiwyg h6 + * {
    margin-top: 1.5rem;
  }
}
@media (min-width: 480px) {
  .wysiwyg h1 + *, .wysiwyg h2 + *, .wysiwyg h3 + *, .wysiwyg h4 + *, .wysiwyg h5 + *, .wysiwyg h6 + * {
    margin-top: calc(1.5rem + (1vw - 0.3rem) * 1.3115);
  }
}
@media (min-width: 1701px) {
  .wysiwyg h1 + *, .wysiwyg h2 + *, .wysiwyg h3 + *, .wysiwyg h4 + *, .wysiwyg h5 + *, .wysiwyg h6 + * {
    margin-top: 2.5rem;
  }
}
/** H1 **/
@media (max-width: 479px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 480px) {
  h1, .h1 {
    font-size: calc(2.5rem + (1vw - 0.3rem) * 1.6393);
  }
}
@media (min-width: 1701px) {
  h1, .h1 {
    font-size: 3.75rem;
  }
}
/** H2 **/
@media (max-width: 479px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 480px) {
  h2, .h2 {
    font-size: calc(1.75rem + (1vw - 0.3rem) * 0.9836);
  }
}
@media (min-width: 1701px) {
  h2, .h2 {
    font-size: 2.5rem;
  }
}
/** H3 **/
@media (max-width: 479px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 480px) {
  h3, .h3 {
    font-size: calc(1.5rem + (1vw - 0.3rem) * 0.6557);
  }
}
@media (min-width: 1701px) {
  h3, .h3 {
    font-size: 2rem;
  }
}
/** H4 **/
@media (max-width: 479px) {
  h4, .h4 {
    font-size: 1.375rem;
  }
}
@media (min-width: 480px) {
  h4, .h4 {
    font-size: calc(1.375rem + (1vw - 0.3rem) * 0.3279);
  }
}
@media (min-width: 1701px) {
  h4, .h4 {
    font-size: 1.625rem;
  }
}
/** H5 **/
@media (max-width: 479px) {
  h5, .h5 {
    font-size: 1.125rem;
  }
}
@media (min-width: 480px) {
  h5, .h5 {
    font-size: calc(1.125rem + (1vw - 0.3rem) * 0.3279);
  }
}
@media (min-width: 1701px) {
  h5, .h5 {
    font-size: 1.375rem;
  }
}
/** H6 **/
@media (max-width: 479px) {
  h6, .h6 {
    font-size: 1.063rem;
  }
}
@media (min-width: 480px) {
  h6, .h6 {
    font-size: calc(1.063rem + (1vw - 0.3rem) * 0.2452);
  }
}
@media (min-width: 1701px) {
  h6, .h6 {
    font-size: 1.25rem;
  }
}
/********** LONGFORM **********/
p, ul, ol {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  font-style: normal;
  line-height: 175%;
  margin: 1.25rem 0 0 0;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

p:first-child,
ul:first-child,
ol:first-child {
  margin-top: 0;
}

p.black,
ul.black,
ol.black {
  color: #231F20;
}

p.grey,
ul.grey,
ol.grey {
  color: #A7A9AD;
}

p.white,
ul.white,
ol.white {
  color: #FFFFFF;
}

p.medium {
  font-size: 1.375rem;
  line-height: 2.625rem;
}

p.large {
  font-size: 1.75rem;
  line-height: 3.125rem;
}

@media (max-width: 568px) {
  p.medium {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  p.large {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
section-group.navy *:not(a):not(.btn):not(button) {
  color: #FFFFFF;
}

/********** LINKS **********/
.wysiwyg * a:not(.btn) {
  color: #006C7D;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

.wysiwyg * a:not(.btn):before {
  background-color: #006C7D;
  content: "";
  height: 1px;
  opacity: 0.5;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  right: 50%;
  transition: background-color 350ms ease, left 350ms ease, right 350ms ease;
}

.wysiwyg * a:not(.btn):hover:before {
  left: 0;
  right: 0;
}

/********** BLOCKQUOTE **********/
.wysiwyg blockquote {
  margin: 4rem 0;
  padding: 0;
  position: relative;
}

.wysiwyg blockquote:first-child {
  margin-top: 0;
}

.wysiwyg blockquote:last-child {
  margin-bottom: 0;
}

.wysiwyg blockquote:first-child {
  margin: 0 !important;
}

.wysiwyg blockquote p,
.wysiwyg blockquote ul,
.wysiwyg blockquote ol {
  font-style: italic;
}

/**** UNORDERED LIST STYLING ****/
.wysiwyg ul {
  list-style-type: none;
  padding: 0;
}

.wysiwyg ul li {
  display: block;
  line-height: 162.5%;
  padding: 0 0 0 2rem;
  position: relative;
}

.wysiwyg ul li + li {
  margin-top: 1.25rem;
}

.wysiwyg ul li:before {
  background-color: #006C7D;
  border-radius: 50%;
  content: "";
  height: 0.438rem;
  left: 0.625rem;
  position: absolute;
  top: 0.688rem;
  width: 0.438rem;
}

.wysiwyg ul ol,
.wysiwyg ul ul {
  margin-top: 0.625rem;
}

/**** ORDERED LIST STYLING ****/
.wysiwyg ol {
  counter-reset: count;
  list-style-type: none;
  padding: 0;
}

.wysiwyg ol[start="1"] {
  counter-reset: count 0;
}

.wysiwyg ol[start="2"] {
  counter-reset: count 1;
}

.wysiwyg ol[start="3"] {
  counter-reset: count 2;
}

.wysiwyg ol[start="4"] {
  counter-reset: count 3;
}

.wysiwyg ol[start="5"] {
  counter-reset: count 4;
}

.wysiwyg ol[start="6"] {
  counter-reset: count 5;
}

.wysiwyg ol[start="7"] {
  counter-reset: count 6;
}

.wysiwyg ol[start="8"] {
  counter-reset: count 7;
}

.wysiwyg ol[start="9"] {
  counter-reset: count 8;
}

.wysiwyg ol[start="10"] {
  counter-reset: count 9;
}

.wysiwyg ol[start="11"] {
  counter-reset: count 10;
}

.wysiwyg ol[start="12"] {
  counter-reset: count 11;
}

.wysiwyg ol[start="13"] {
  counter-reset: count 12;
}

.wysiwyg ol[start="14"] {
  counter-reset: count 13;
}

.wysiwyg ol[start="15"] {
  counter-reset: count 14;
}

.wysiwyg ol[start="16"] {
  counter-reset: count 15;
}

.wysiwyg ol[start="17"] {
  counter-reset: count 16;
}

.wysiwyg ol[start="18"] {
  counter-reset: count 17;
}

.wysiwyg ol[start="19"] {
  counter-reset: count 18;
}

.wysiwyg ol[start="20"] {
  counter-reset: count 19;
}

.wysiwyg ol[start="21"] {
  counter-reset: count 20;
}

.wysiwyg ol[start="22"] {
  counter-reset: count 21;
}

.wysiwyg ol[start="23"] {
  counter-reset: count 22;
}

.wysiwyg ol[start="24"] {
  counter-reset: count 23;
}

.wysiwyg ol[start="25"] {
  counter-reset: count 24;
}

.wysiwyg ol[start="26"] {
  counter-reset: count 25;
}

.wysiwyg ol[start="27"] {
  counter-reset: count 26;
}

.wysiwyg ol[start="28"] {
  counter-reset: count 27;
}

.wysiwyg ol[start="29"] {
  counter-reset: count 28;
}

.wysiwyg ol[start="30"] {
  counter-reset: count 29;
}

.wysiwyg ol[start="31"] {
  counter-reset: count 30;
}

.wysiwyg ol[start="32"] {
  counter-reset: count 31;
}

.wysiwyg ol[start="33"] {
  counter-reset: count 32;
}

.wysiwyg ol[start="34"] {
  counter-reset: count 33;
}

.wysiwyg ol[start="35"] {
  counter-reset: count 34;
}

.wysiwyg ol[start="36"] {
  counter-reset: count 35;
}

.wysiwyg ol[start="37"] {
  counter-reset: count 36;
}

.wysiwyg ol[start="38"] {
  counter-reset: count 37;
}

.wysiwyg ol[start="39"] {
  counter-reset: count 38;
}

.wysiwyg ol[start="40"] {
  counter-reset: count 39;
}

.wysiwyg ol[start="41"] {
  counter-reset: count 40;
}

.wysiwyg ol[start="42"] {
  counter-reset: count 41;
}

.wysiwyg ol[start="43"] {
  counter-reset: count 42;
}

.wysiwyg ol[start="44"] {
  counter-reset: count 43;
}

.wysiwyg ol[start="45"] {
  counter-reset: count 44;
}

.wysiwyg ol[start="46"] {
  counter-reset: count 45;
}

.wysiwyg ol[start="47"] {
  counter-reset: count 46;
}

.wysiwyg ol[start="48"] {
  counter-reset: count 47;
}

.wysiwyg ol[start="49"] {
  counter-reset: count 48;
}

.wysiwyg ol[start="50"] {
  counter-reset: count 49;
}

.wysiwyg ol[start="51"] {
  counter-reset: count 50;
}

.wysiwyg ol[start="52"] {
  counter-reset: count 51;
}

.wysiwyg ol[start="53"] {
  counter-reset: count 52;
}

.wysiwyg ol[start="54"] {
  counter-reset: count 53;
}

.wysiwyg ol[start="55"] {
  counter-reset: count 54;
}

.wysiwyg ol[start="56"] {
  counter-reset: count 55;
}

.wysiwyg ol[start="57"] {
  counter-reset: count 56;
}

.wysiwyg ol[start="58"] {
  counter-reset: count 57;
}

.wysiwyg ol[start="59"] {
  counter-reset: count 58;
}

.wysiwyg ol[start="60"] {
  counter-reset: count 59;
}

.wysiwyg ol[start="61"] {
  counter-reset: count 60;
}

.wysiwyg ol[start="62"] {
  counter-reset: count 61;
}

.wysiwyg ol[start="63"] {
  counter-reset: count 62;
}

.wysiwyg ol[start="64"] {
  counter-reset: count 63;
}

.wysiwyg ol[start="65"] {
  counter-reset: count 64;
}

.wysiwyg ol[start="66"] {
  counter-reset: count 65;
}

.wysiwyg ol[start="67"] {
  counter-reset: count 66;
}

.wysiwyg ol[start="68"] {
  counter-reset: count 67;
}

.wysiwyg ol[start="69"] {
  counter-reset: count 68;
}

.wysiwyg ol[start="70"] {
  counter-reset: count 69;
}

.wysiwyg ol[start="71"] {
  counter-reset: count 70;
}

.wysiwyg ol[start="72"] {
  counter-reset: count 71;
}

.wysiwyg ol[start="73"] {
  counter-reset: count 72;
}

.wysiwyg ol[start="74"] {
  counter-reset: count 73;
}

.wysiwyg ol[start="75"] {
  counter-reset: count 74;
}

.wysiwyg ol[start="76"] {
  counter-reset: count 75;
}

.wysiwyg ol[start="77"] {
  counter-reset: count 76;
}

.wysiwyg ol[start="78"] {
  counter-reset: count 77;
}

.wysiwyg ol[start="79"] {
  counter-reset: count 78;
}

.wysiwyg ol[start="80"] {
  counter-reset: count 79;
}

.wysiwyg ol[start="81"] {
  counter-reset: count 80;
}

.wysiwyg ol[start="82"] {
  counter-reset: count 81;
}

.wysiwyg ol[start="83"] {
  counter-reset: count 82;
}

.wysiwyg ol[start="84"] {
  counter-reset: count 83;
}

.wysiwyg ol[start="85"] {
  counter-reset: count 84;
}

.wysiwyg ol[start="86"] {
  counter-reset: count 85;
}

.wysiwyg ol[start="87"] {
  counter-reset: count 86;
}

.wysiwyg ol[start="88"] {
  counter-reset: count 87;
}

.wysiwyg ol[start="89"] {
  counter-reset: count 88;
}

.wysiwyg ol[start="90"] {
  counter-reset: count 89;
}

.wysiwyg ol[start="91"] {
  counter-reset: count 90;
}

.wysiwyg ol[start="92"] {
  counter-reset: count 91;
}

.wysiwyg ol[start="93"] {
  counter-reset: count 92;
}

.wysiwyg ol[start="94"] {
  counter-reset: count 93;
}

.wysiwyg ol[start="95"] {
  counter-reset: count 94;
}

.wysiwyg ol[start="96"] {
  counter-reset: count 95;
}

.wysiwyg ol[start="97"] {
  counter-reset: count 96;
}

.wysiwyg ol[start="98"] {
  counter-reset: count 97;
}

.wysiwyg ol[start="99"] {
  counter-reset: count 98;
}

.wysiwyg ol[start="100"] {
  counter-reset: count 99;
}

.wysiwyg ol li {
  counter-increment: count;
  display: block;
  line-height: 160%;
  padding: 0 0 0 2.5rem;
  position: relative;
}

.wysiwyg ol li + li {
  margin-top: 1.25rem;
}

.wysiwyg ol > li:before {
  color: #006C7D;
  content: counter(count) ".";
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-align: right;
  top: 0;
  right: calc(100% - 1.5rem);
}

.wysiwyg ol ul,
.wysiwyg ol ol {
  margin-top: 0.625rem;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* FOOTER CSS *************************/
footer {
  background-color: #042849;
  color: #FFF;
}

footer .btn.fill {
  padding: 0;
  width: 100%;
}

@media (min-width: 1331px) {
  footer {
    padding: 7rem 0 3.125rem 0;
  }
  footer.no_newsletter {
    padding: 3.125rem 0;
  }
}
@media (max-width: 1330px) {
  footer {
    padding: 4.25rem 0 2.5rem 0;
  }
  footer.no_newsletter {
    padding: 2.25rem 0;
  }
  footer g-col {
    width: 100% !important;
  }
}
@media (max-width: 475px) {
  footer {
    padding: 2.5rem 0;
  }
  footer g-col {
    width: 100% !important;
  }
}
/** LINKS **/
footer-links {
  display: block;
  margin-top: 3.75rem;
  position: relative;
}

footer-links > a {
  position: absolute;
  right: 0;
  top: 0;
}

footer-links > a svg {
  display: block;
  height: 2rem;
}

@media (max-width: 1050px) {
  footer-links {
    margin-top: 2.5rem !important;
  }
}
@media (max-width: 860px) {
  footer-links > a {
    display: none;
  }
}
@media (max-width: 550px) {
  footer-links {
    margin-top: 1.875rem !important;
  }
  footer-links > nav > ul {
    margin: 0 auto !important;
  }
}
/** LINKS **/
footer nav > ul {
  display: table;
  list-style-type: none;
  margin: 5.125rem 0 7rem auto;
  padding: 0;
  position: relative;
}

footer nav > ul li {
  display: block;
  float: left;
}

footer nav > ul li a {
  color: #FFF;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.875rem;
  position: relative;
  transition: color 350ms ease;
  white-space: nowrap;
}

footer nav > ul li a:hover {
  color: #ED973B;
}

footer nav > ul li ~ li a {
  padding-left: 2.063rem;
}

footer nav > ul li ~ li a:before {
  background-color: #ED973B;
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  height: 1.875rem;
  width: 1px;
}

@media (max-width: 468px) {
  footer-links {
    display: table !important;
    margin: 0;
  }
  footer-links nav > ul {
    width: 100%;
  }
}
@media (max-width: 420px) {
  footer nav > ul li {
    display: block;
    float: none;
  }
  footer nav > ul li a {
    padding: 0 !important;
  }
  footer nav > ul li:nth-child(3n) a:before {
    display: none;
  }
  footer nav > ul li ~ li a:before {
    display: none;
  }
}
/** SOCIAL **/
footer social-links strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: right;
}

footer .social {
  display: table;
  list-style-type: none;
  padding: 0;
  position: relative;
}

footer .social li {
  display: block;
  float: left;
}

footer .social li + li {
  margin-left: 2rem;
}

footer .social a {
  text-decoration: none;
}

footer .social svg {
  display: block;
  fill: #FFF;
  height: 2rem;
  width: 2rem;
  transform: scale(1);
  transition: transform 350ms ease;
}

footer .social a:hover svg {
  transform: scale(1.25);
}

@media (min-width: 551px) {
  footer.no_newsletter nav > ul {
    margin: 0 !important;
  }
  footer .social {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 550px) {
  footer social-links strong {
    text-align: left !important;
  }
  footer .social {
    margin: 0 !important;
  }
}
@media (min-width: 1051px) {
  footer social-links {
    position: absolute;
    top: 0;
    right: 1.188rem;
    z-index: 1;
  }
}
@media (max-width: 1050px) {
  footer social-links ul {
    display: block;
    margin: 0 !important;
    position: relative;
  }
  footer social-links strong {
    margin-top: 1.875rem !important;
    text-align: left;
  }
  footer social-links {
    margin: 0 !important;
  }
}
@media (max-width: 465px) {
  footer social-links strong {
    margin-top: 0 !important;
  }
}
/** COPYRIGHT **/
footer .copyright {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

footer .copyright span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.125px;
  opacity: 0.7;
}

footer .copyright:before {
  background-color: #ED973B;
  content: "";
  display: block;
  position: relative;
  height: 2px;
  margin: 1.875rem 0 1rem 0;
  width: 100%;
}

@media (max-width: 970px) {
  footer .copyright {
    justify-content: flex-start;
  }
  footer .copyright span {
    width: 100%;
  }
}
@media (max-width: 475px) {
  footer .copyright span {
    width: calc(100% - 6rem);
  }
}
/** FORM **/
footer form {
  display: block;
  margin-top: 3.063rem;
  margin-left: -0.938rem;
  width: calc(100% + 1.875rem);
}

footer form input-wrap,
footer form button-wrap {
  display: block;
  float: left;
  overflow: hidden;
  position: relative;
  padding: 0 0.938rem;
  box-sizing: border-box;
}

footer form input-wrap input {
  background-color: #FFF;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.09);
  color: #231E20;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 0.938rem;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 0.938rem;
  width: 100%;
}

footer form input-wrap label {
  color: #979797;
  cursor: text;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  height: 3.125rem;
  letter-spacing: 0.3px;
  line-height: 3.125rem;
  opacity: 1;
  padding: 0 0.938rem;
  position: absolute;
  top: 0;
  left: 0.938rem;
  right: 0.938rem;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 350ms ease, left 350ms ease;
}

footer form input-wrap input:focus + label,
footer form input-wrap.filled input + label {
  left: 1.875rem;
  opacity: 0;
}

footer form button {
  color: #042849;
  font-family: "Ubuntu", sans-serif;
  height: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

@media (min-width: 921px) {
  footer form input-wrap {
    width: calc(33.333% - 4.1666666667rem);
  }
  footer form button-wrap {
    width: 12.45rem;
  }
}
@media (min-width: 921px) and (max-width: 1330px) {
  footer form {
    margin: 3.063rem auto 0 auto;
    max-width: 800px;
  }
}
@media (min-width: 600px) and (max-width: 920px) {
  footer form input-wrap:last-of-type,
  footer form button-wrap {
    margin-top: 0.938rem;
  }
  footer form input-wrap,
  footer form button-wrap {
    width: 50%;
  }
  footer form input-wrap:first-of-type {
    padding-right: 0.438rem;
  }
  footer form input-wrap:first-of-type + input-wrap {
    padding-left: 0.438rem;
  }
  footer form input-wrap:first-of-type + input-wrap + input-wrap {
    padding-right: 0.438rem;
  }
  footer form button-wrap {
    padding-left: 0.438rem;
  }
}
@media (min-width: 361px) and (max-width: 599px) {
  footer form input-wrap,
  footer form button-wrap {
    margin-top: 0.626rem;
  }
  footer form input-wrap:first-of-type footer form input-wrap:first-of-type + input-wrap {
    margin-top: 0;
  }
  footer form input-wrap,
  footer form button-wrap {
    width: 100%;
  }
  footer form input-wrap:first-of-type,
  footer form input-wrap:first-of-type + input-wrap {
    width: 50%;
  }
  footer form input-wrap:first-of-type {
    padding-right: 0.313rem;
  }
  footer form input-wrap:first-of-type + input-wrap {
    padding-left: 0.313rem;
  }
}
@media (max-width: 360px) {
  footer form input-wrap:not(:first-of-type),
  footer form button-wrap {
    margin-top: 0.626rem;
  }
  footer form input-wrap,
  footer form button-wrap {
    width: 100%;
  }
}
@media (max-width: 475px) {
  footer form {
    margin-top: 2.063rem;
  }
}
/** BLUE STAG **/
footer .wpriders {
  display: block;
  font-size: 0.75rem;
  transition: color 250ms ease;
}

footer .wpriders:hover {
  color: #EC973A;
}

@media (max-width: 970px) {
  footer .wpriders {
    margin: 0.75rem 0 0 0;
  }
}
/********** PARTNERS - SMALL LIST **********/
.partners.list a.item figure {
  overflow: visible;
}

body.partners .partners.list {
  padding-bottom: 0 !important;
}

.partners.list a.item {
  display: block;
  position: relative;
  box-sizing: border-box;
}

.partners.list .items h2 {
  float: left;
  text-align: center;
  width: 100%;
}

@media (min-width: 1621px) {
  .partners.list .items h2 {
    padding-top: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .partners.list .items h2 {
    padding-top: 4.25rem;
  }
}
@media (max-width: 768px) {
  .partners.list .items h2 {
    padding-top: 3.5rem;
  }
}
.partners.list previous-list,
.partners.list current-list {
  display: table;
  float: left;
  padding-top: 3.5rem;
  width: 100%;
}

.partners.list a.item figure {
  background-size: cover !important;
  background-position: center !important;
  display: block;
  height: 0;
  margin: 0;
  position: relative;
  transition: padding-bottom 350ms ease;
}

.partners.list a.item img {
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
}

.partners.list a.item h3 {
  display: block;
  font-size: 1.625rem;
  margin: 0 !important;
  text-align: center;
  box-sizing: border-box;
  transition: color 350ms ease, padding-bottom 350ms ease;
}

@media (min-width: 1621px) {
  .partners.list .items grid-column {
    width: 25%;
  }
  .partners.list grid-row:first-of-type {
    margin-bottom: 5.625rem;
  }
  .partners.list .items grid-column:nth-child(4n) ~ grid-column {
    margin-top: 2rem;
  }
}
@media (min-width: 1201px) and (max-width: 1620px) {
  .partners.list .items grid-column {
    width: 33.333%;
  }
  .partners.list .items grid-column:nth-child(3n) ~ grid-column {
    margin-top: 2.5rem;
  }
  .partners.list.module .items grid-column:nth-child(4n),
  .partners.list.module .items grid-column:nth-child(4n) ~ grid-column {
    display: none;
  }
}
@media (min-width: 1069px) and (max-width: 1200px) {
  .partners.list .items grid-column {
    width: 46.6666666667%;
  }
  .partners.list .items grid-column {
    margin-left: 3.3333333333%;
  }
  .partners.list .items grid-column:nth-child(2n) ~ grid-column {
    margin-top: 1rem;
  }
  .partners.list.module .items grid-column:nth-child(3n),
  .partners.list.module .items grid-column:nth-child(3n) ~ grid-column {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1068px) {
  .partners.list .items grid-column {
    width: 50%;
  }
  .partners.list .items grid-column:nth-child(2n) ~ grid-column {
    margin-top: 1rem;
  }
  .partners.list.module .items grid-column:nth-child(3n),
  .partners.list.module .items grid-column:nth-child(3n) ~ grid-column {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .partners.list grid-row:first-of-type {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 769px) {
  .partners.list a.item:hover h3 {
    color: #01A7B8;
    padding-bottom: 0;
  }
  .partners.list a.item:hover figure {
    padding-bottom: calc(45% + 1.75rem);
  }
}
@media (max-width: 768px) {
  .partners.list a.item:hover h3 {
    color: #01A7B8;
  }
  .partners.list.module .items grid-column:nth-child(3n),
  .partners.list.module .items grid-column:nth-child(3n) ~ grid-column {
    display: none;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .partners.list grid-row:first-of-type {
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 469px) {
  .partners.list a.item {
    padding-top: 3.906rem;
  }
  .partners.list a.item img {
    top: 0;
    width: 7.813rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  .partners.list a.item h3 {
    padding: 1.75rem 0;
  }
  .partners.list a.item figure {
    padding-bottom: 45%;
    width: 100%;
  }
}
@media (max-width: 468px) {
  .partners.list grid-row:first-of-type {
    margin-bottom: 3.5rem;
  }
  .partners.list a.item {
    padding-top: 0;
  }
  .partners.list a.item h3 {
    padding: 2rem 0 1rem 0;
    text-align: left;
    padding-left: 5rem;
  }
  .partners.list a.item figure {
    padding-bottom: 45%;
    width: 100%;
  }
  .partners.list a.item img {
    top: calc(100% + 1rem);
    width: 4rem;
  }
  .partners.list .items grid-column ~ grid-column {
    margin-top: 2rem;
  }
  .partners.list .loading_more {
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 431px) {
  .partners.list.module h2 {
    padding-right: 12rem;
  }
  .partners.list.module h2 + a {
    position: absolute;
    top: 50%;
    right: 1.125rem;
    transform: translateY(-50%);
  }
}
@media (max-width: 430px) {
  .partners.list.module h2 + a {
    margin-top: 1rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.filters {
  background-color: #012F60;
  display: block;
  padding: 0.75rem 0;
  /*position: sticky;*/
  /*top: 6.688rem;*/
  width: 100%;
  z-index: 5;
}

/*@media (max-width: 970px) {
	.flex.filters { top: 0; }
}*/
/*** NON-STACKED VERSION ***/
@media (min-width: 1300px) {
  .flex.filters:not(.stacked) g-col {
    margin: 0 6.6666666667%;
    width: 86.6666666667%;
  }
}
.flex.filters:not(.stacked) nav {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.flex.filters:not(.stacked) a {
  background-color: transparent;
  border-radius: 3rem;
  box-sizing: border-box;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  line-height: 3rem;
  padding: 0 2rem;
  text-align: center;
  transition: background-color 250ms ease, color 250ms ease;
  min-width: 8rem;
}

.flex.filters:not(.stacked) a ~ a {
  margin-left: 0.75rem;
}

.flex.filters:not(.stacked) a.upcoming {
  margin-left: auto;
}

.flex.filters:not(.stacked) a:hover,
.flex.filters:not(.stacked) a.current {
  border-color: #269FB0;
  background-color: #269FB0;
  color: #FFFFFF;
}

.flex.filters:not(.stacked) button {
  display: none;
}

/*** STACKED VERSION ***/
.flex.filters.stacked {
  overflow: visible;
}

.flex.filters.stacked nav {
  display: none;
  padding-top: 0.75rem;
  width: 100%;
  row-gap: 10px;
}

.flex.filters.stacked a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0.75rem 0.75rem 0;
  padding: 0.75rem 1.375rem;
  text-align: left;
  transition: background-color 250ms ease, color 250ms ease;
}

@media (max-width: 640px) {
  .flex.filters.stacked a {
    width: calc(50% - 0.376rem);
    text-align: center;
  }
  .flex.filters.stacked a:nth-child(even) {
    margin-right: 0;
  }
}
.flex.filters.stacked a:hover {
  background-color: #FFFFFF;
  color: #012F60;
}

.flex.filters.stacked a.current {
  background-color: #269FB0;
}

.flex.filters.stacked button {
  background-color: transparent;
  border-radius: 3rem;
  box-sizing: border-box;
  border: 1px solid #269FB0;
  color: #269FB0;
  cursor: pointer;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 3rem;
  padding: 0 4.5rem 0 1.5rem;
  position: relative;
  text-align: left;
  transition: background-color 250ms ease, color 250ms ease;
  width: 100%;
}

.flex.filters.stacked button svg {
  position: absolute;
  stroke: #269FB0;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%) rotate(0deg);
  transition: stroke 250ms ease, transform 250ms ease;
}

.flex.filters.stacked button.active {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #012F60;
}

.flex.filters.stacked button.active svg {
  stroke: #012F60;
  transform: translateY(-50%) rotate(180deg);
}

.flex.filters.stacked button.active + nav {
  display: flex;
  flex-wrap: wrap;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* HEADER CSS *************************/
/** HEADER BASE **/
header {
  background-color: rgba(4, 40, 74, 0);
  display: block;
  padding: 3.063rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  transition: background-color 350ms ease, padding 350ms ease;
}

.scale-header header,
header.scaled {
  background-color: #04284A;
  padding: 2.125rem 0 0 0;
}

header.scaled {
  width: 100% !important;
}

@media (max-width: 970px) {
  header {
    padding: 1.875rem 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  header {
    width: 180px;
  }
}
/** LOGO **/
header a.logo {
  display: block;
  height: 4.625rem;
  padding: 0 0.75rem 0 0;
  position: absolute;
  width: 14.688rem;
  transform: translate3d(0, 0, 0);
  transition: all 350ms ease;
}

header a.logo:hover {
  padding: 0 0 0 0.75rem;
}

header a.logo img {
  display: block;
  transition: height 350ms ease, width 350ms ease;
}

.scale-header header a.logo,
header.scaled a.logo {
  height: 3.125rem;
  width: 9.938rem;
}

.scale-header header a.logo img,
header.scaled a.logo img {
  height: 3.125rem;
  width: 9.938rem;
}

@media (min-width: 971px) {
  header a.logo {
    height: 4.625rem;
    width: 14.688rem;
  }
}
@media (max-width: 970px) {
  header a.logo {
    height: 3.125rem;
    width: 9.938rem;
  }
}
/** SEARCH **/
header search-trigger {
  cursor: pointer;
  height: 0.875rem;
  padding: 0.5rem;
  position: absolute;
  right: 1.188rem;
  top: -0.375rem;
  transform: translateY(0);
  transition: transform 350ms ease, opacity 350ms ease;
  width: 0.875rem;
  z-index: 2;
}

.scale-header header search-trigger,
header.scaled search-trigger {
  transform: translateY(-2rem);
  opacity: 0;
}

header search-trigger:before {
  background-color: #C2CD23;
  border-radius: 50%;
  content: "";
  height: 1.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  transition: transform 250ms ease;
  width: 1.875rem;
}

header search-trigger svg {
  fill: #FFF;
  height: 0.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  transform: translateX(-50%) translateY(-50%);
  transition: fill 250ms ease;
}

header search-trigger:hover:before,
header search-trigger.visible:before {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

header form {
  cursor: pointer;
  display: table;
  height: 2.5rem;
  padding: 0;
  opacity: 0;
  position: absolute;
  right: 4.313rem;
  transform: translateY(0) translateX(5000px);
  transition: opacity 250ms ease 0ms, transform 0ms linear 250ms;
  top: -0.625rem;
  width: 260px;
  z-index: 2;
}

header form label {
  display: block;
  float: left;
}

header form label span {
  display: none;
}

header form input[type=search] {
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  background-color: #FFF;
  border: 1px solid #E4E4E4;
  border-right: 0;
  color: #231E20;
  display: block;
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.938rem;
  font-weight: 300;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 0.625rem;
  position: relative;
  resize: none;
  transition: box-shadow 250ms ease;
  width: 180px;
  -webkit-appearance: none;
}

header form button {
  background-color: #C2CD23;
  border: 0;
  cursor: pointer;
  color: #FFF;
  display: block;
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.938rem;
  font-weight: 300;
  line-height: 2.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  text-align: center;
  transition: background-color 250ms ease;
  width: 80px;
}

header form button:hover {
  background-color: #EC973A;
}

/** HIDE SECONDARY MENU WHEN SEARCHING **/
.menu-secondary-container {
  opacity: 1;
  transition: opacity 250ms ease;
}

header search-trigger.visible ~ .community,
header search-trigger.visible ~ .social {
  opacity: 0;
}

/** REVEAL SEACH FORM **/
header search-trigger.visible ~ form {
  opacity: 1;
  transition: opacity 250ms ease 250ms, transform 0ms linear 0ms;
  transform: translateY(0) translateX(0);
}

.scale-header header search-trigger.visible ~ form,
header.scaled search-trigger.visible ~ form {
  transform: translateY(-2rem) translateX(5000px) !important;
  opacity: 0 !important;
}

@media (max-width: 970px) {
  header search-trigger,
  header form {
    display: none;
  }
}
/** COMMUNITY LINK **/
header .community {
  display: block;
  opacity: 1;
  position: absolute;
  transform: translateY(0);
  transition: transform 350ms ease, opacity 350ms ease;
}

header .community img {
  display: block;
  height: 1.063rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
}

header .community span {
  color: #FFF;
  display: block;
  font-size: 0.938rem;
  padding-left: 1.375rem;
  transition: color 350ms ease;
}

header .community:hover span {
  color: #C1CD23;
}

@media (min-width: 971px) {
  header .community {
    right: 16.875rem;
  }
}
.scale-header header .community,
header.scaled .community {
  transform: translateY(-2rem);
  opacity: 0;
}

/** SOCIAL **/
header .social {
  display: table;
  list-style-type: none;
  opacity: 1;
  padding: 0;
  position: relative;
  transform: translateY(0);
  transition: transform 350ms ease, opacity 350ms ease;
}

header .social li {
  display: block;
  float: left;
}

header .social li + li {
  margin-left: 1rem;
}

header .social a {
  text-decoration: none;
}

header .social svg {
  display: block;
  fill: #FFF;
  height: 1.063rem;
  width: 1.063rem;
  transform: scale(1);
  transition: transform 350ms ease;
}

header .social a:hover svg {
  transform: scale(1.25);
}

header .social {
  margin: 0 4.875rem 0 auto;
}

.scale-header header .social,
header.scaled .social {
  transform: translateY(-2rem);
  opacity: 0;
}

@media (max-width: 970px) {
  header .community,
  header .social,
  header nav {
    display: none;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* NAV CSS *************************/
/** NAV **/
header nav {
  display: block;
  margin-top: 0.75rem;
  transition: margin-top 250ms ease;
}

.scale-header header nav,
header.scaled nav {
  margin-top: 0;
}

header nav > ul {
  display: table;
  list-style-type: none;
  margin: 0.75rem 0 0 auto;
  padding: 0;
  transition: margin 350ms ease;
}

header nav > ul > li {
  display: block;
  float: left;
  position: relative;
}

@media (min-width: 1281px) {
  header nav > ul > li + li {
    margin-left: 3.875rem;
  }
}
@media (min-width: 1121px) and (max-width: 1280px) {
  header nav > ul > li + li {
    margin-left: 2.875rem;
  }
}
@media (min-width: 1031px) and (max-width: 1120px) {
  header nav > ul > li + li {
    margin-left: 1.875rem;
  }
}
@media (min-width: 971px) and (max-width: 1030px) {
  header nav > ul > li + li {
    margin-left: 1.25rem;
  }
}
@media (max-width: 970px) {
  header nav {
    display: none;
  }
}
header nav > ul > li > a {
  color: #FFFFFF;
  cursor: default;
  display: block;
  font-size: 0.938rem;
  line-height: 3rem;
  transition: color 350ms ease;
}

header nav > ul > li:hover > a[href] {
  color: #EC973A;
  cursor: pointer;
}

header nav > ul > li.highlight a {
  background-color: #EC973A;
  box-sizing: border-box;
  color: #FFFFFF !important;
  display: block;
  line-height: 2rem;
  padding: 0 1rem;
  position: relative;
  top: 0.5rem;
}

/*.scale-header header nav > ul > li.highlight > a,
header.scaled nav > ul > li.highlight > a {
	line-height: 2rem !important;
	top: 2.5rem !important;
}*/
@media (min-width: 1281px) {
  header nav.donate > ul > li + li {
    margin-left: 3.875rem;
  }
}
@media (min-width: 1121px) and (max-width: 1280px) {
  header nav.donate > ul > li + li {
    margin-left: 2.875rem;
  }
}
@media (min-width: 1031px) and (max-width: 1120px) {
  header nav.donate > ul > li + li {
    margin-left: 1.875rem;
  }
}
@media (min-width: 971px) and (max-width: 1030px) {
  header nav.donate > ul > li + li {
    margin-left: 1.25rem;
  }
}
.scale-header header nav > ul,
header.scaled nav > ul {
  margin: -3.188rem 0 0 auto;
}

/** SUBNAV **/
header nav > ul ul {
  background-color: #C1CD23;
  left: -9999px;
  list-style-type: none;
  margin: 0;
  opacity: 0;
  padding: 0.938rem 0;
  position: absolute;
  top: 100%;
  width: 15.625rem;
  transform: translateX(-50%);
  transition: background-color 350ms ease, left 0ms linear 350ms, opacity 350ms ease;
  box-sizing: border-box;
}

header nav > ul ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #C1CD23 transparent;
  position: absolute;
  left: 50%;
  top: -10px;
  transition: background-color 350ms ease;
  transform: translateX(-50%);
}

header nav > ul ul a {
  background-color: rgba(255, 255, 255, 0);
  color: #012F60;
  display: block;
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 3.125rem;
  opacity: 1;
  padding: 0 1.875rem;
  text-align: center;
  transition: background-color 350ms ease, color 350ms ease;
}

header nav > ul ul li {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 350ms ease 0ms, transform 350ms ease 0ms;
}

/** HOVER **/
header nav > ul ul a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #012F60;
}

header nav > ul li:hover ul a {
  opacity: 1;
}

header nav > ul li:hover ul {
  left: 50%;
  opacity: 1;
  transition: left 0ms linear 0ms, opacity 350ms ease;
}

header nav > ul li:hover ul li {
  position: relative;
  opacity: 1;
  transform: translateY(0rem);
  transition: opacity 425ms ease 125ms, transform 425ms ease 125ms;
}

header nav > ul li ul.sub-menu ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  background-color: rgb(180.69625, 191.93125, 32.76875);
  top: 0;
  left: calc(-50% + 1px);
}

header nav > ul li ul.sub-menu li:hover ul.sub-menu {
  display: block;
}

header nav > ul li ul.sub-menu li.menu-item-has-children::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #012F5F transparent;
  position: absolute;
  left: -5px;
  top: 20px;
  right: auto;
  transition: background-color 350ms ease;
  transform: rotate(90deg);
}

header nav > ul li ul.sub-menu ul.sub-menu::before {
  display: none;
}

.scale-header header nav > ul > li > a,
header.scaled nav > ul > li > a {
  line-height: 6.75rem;
}

.scale-header header nav > ul ul:before,
header.scaled nav > ul ul:before {
  display: none;
}

.scale-header header nav > ul > li.highlight > a,
header.scaled nav > ul > li.highlight > a {
  line-height: 2rem !important;
  top: 2.5rem !important;
}

/** TRIGGER **/
nav-trigger {
  display: block;
  height: 4.5rem;
  padding: 2.5rem 1.875rem 1.875rem 2.5rem;
  width: 4.5rem;
  transition: all 500ms ease;
  z-index: 1200;
}

nav-trigger:before {
  background-color: #ED973B;
  border-radius: 50%;
  content: "";
  display: block;
  height: 4.5rem;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 4.5rem;
  transition: all 500ms ease;
}

nav-trigger trigger-line {
  background-color: #FFF;
  height: 2px;
  position: absolute;
  width: 2.5rem;
  top: 50%;
  left: 50%;
  transition: all 300ms ease 200ms;
}

nav-trigger trigger-line:first-of-type {
  margin-top: -0.625rem;
  transform: translateX(-50%) translateY(-50%) rotate(0);
}

nav-trigger trigger-line:first-of-type + trigger-line {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}

nav-trigger trigger-line:last-of-type {
  margin-top: 0.625rem;
  transform: translateX(-50%) translateY(-50%) rotate(0);
}

@media (min-width: 971px) {
  nav-trigger {
    display: none;
  }
}
/** MOBILE NAV **/
mobile-nav {
  background-color: #012F5F;
  overflow: hidden;
  overflow-y: scroll;
  opacity: 0;
  height: 100vh;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 500ms ease, opacity 500ms ease;
  z-index: 1150;
}

.mobile_nav_visible mobile-nav {
  opacity: 1;
  transform: translateX(0);
}

/* TOP LEVEL */
mobile-nav nav > ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

mobile-nav nav > ul > li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

mobile-nav nav > ul > li > a {
  color: #FFF;
  display: block;
  line-height: 3.5rem;
  font-size: 0.938rem;
  font-weight: 500;
  padding-left: 1.875rem;
  position: relative;
  text-transform: uppercase;
}

mobile-nav nav ul li.menu-item-has-children > a span {
  display: table;
  padding-right: 1.875rem;
  position: relative;
}

mobile-nav nav ul li.menu-item-has-children > a svg {
  fill: #FFF;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 350ms ease;
  width: 13px;
}

mobile-nav nav > ul > li > a.active svg {
  transform: translateY(-50%) rotate(180deg);
}

/** SUB MENU **/
mobile-nav nav > ul ul {
  background-color: rgba(0, 0, 0, 0.25);
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

mobile-nav nav > ul ul > li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

mobile-nav nav > ul ul > li > a {
  color: #FFF;
  display: block;
  line-height: 3.5rem;
  font-size: 0.938rem;
  font-weight: 300;
  padding: 0 1.875rem 0 2.814rem;
  text-transform: uppercase;
}

mobile-nav .social {
  display: table;
  list-style-type: none;
  padding: 0 0 2.5rem 1.875rem;
  position: relative;
}

mobile-nav .social li {
  display: block;
  float: left;
}

mobile-nav .social li + li {
  margin-left: 2rem;
}

mobile-nav .social a {
  text-decoration: none;
}

mobile-nav .social svg {
  display: block;
  fill: #FFF;
  height: 1.75rem;
  width: 1.75rem;
  transform: scale(1);
  transition: transform 350ms ease;
}

/** OPEN NAV **/
.mobile_nav_visible nav-trigger trigger-line:first-of-type {
  margin-top: 0rem;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.mobile_nav_visible nav-trigger trigger-line:first-of-type + trigger-line {
  opacity: 0;
}

.mobile_nav_visible nav-trigger trigger-line:last-of-type {
  margin-top: 0rem;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@media (min-width: 769px) {
  mobile-nav {
    top: 5.688rem;
  }
}
@media (min-width: 468px) and (max-width: 768px) {
  mobile-nav {
    top: 6.067rem;
  }
}
@media (max-width: 467px) {
  mobile-nav {
    top: 6.5rem;
  }
}
@media (max-width: 970px) {
  nav-trigger {
    position: fixed;
    bottom: 0;
    right: 0;
  }
}
mobile-nav form {
  box-sizing: border-box;
  cursor: pointer;
  display: table;
  height: 2.5rem;
  padding: 0 2rem 2rem 2rem;
  position: relative;
  transition: opacity 250ms ease 0ms;
  width: 100%;
  z-index: 2;
}

mobile-nav form label {
  display: block;
  float: left;
}

mobile-nav form label span {
  display: none;
}

mobile-nav form input[type=search] {
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  background-color: #FFF;
  border: 1px solid #E4E4E4;
  border-right: 0;
  color: #231E20;
  display: block;
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.938rem;
  font-weight: 300;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 0.625rem;
  position: relative;
  resize: none;
  transition: box-shadow 250ms ease;
  width: calc(100% - 120px);
}

mobile-nav form button {
  background-color: #C2CD23;
  border: 0;
  cursor: pointer;
  color: #FFF;
  display: block;
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.938rem;
  font-weight: 300;
  line-height: 3.125rem;
  padding: 0 1rem;
  height: 3.125rem;
  text-align: center;
  transition: background-color 250ms ease;
  width: 120px;
}

mobile-nav form button:hover {
  background-color: #EC973A;
}

@media (max-width: 970px) {
  a.mobile_logo {
    box-sizing: border-box;
    background-color: #012F5F;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 1.875rem;
    height: 6.5rem;
    width: 100%;
    transform: translateX(-100%);
    transition: opacity 500ms ease, transform 500ms ease;
    z-index: 1150;
  }
  a.mobile_logo img {
    height: 3.125rem;
    width: 9.938rem;
  }
  .mobile_nav_visible a.mobile_logo {
    transform: translateX(0%);
    opacity: 1;
  }
}
@media (min-width: 971px) {
  a.mobile_logo,
  mobile-nav {
    display: none !important;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* PAGINATION CSS *************************/
nav.pagination {
  margin-top: 4.5rem;
}

nav.pagination,
nav.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

nav.pagination .nav-links a,
nav.pagination .nav-links span {
  background-color: #D8D8D8;
  border-radius: 100%;
  color: #04284A;
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  height: 4.875rem;
  line-height: 4.875rem;
  padding: 0;
  text-align: center;
  transition: background-color 250ms ease, color 250ms ease;
  width: 4.875rem;
}

nav.pagination .nav-links a.prev,
nav.pagination .nav-links a.next {
  background-color: #C1CD23;
  color: #04284A;
}

nav.pagination .nav-links a {
  cursor: pointer;
}

nav.pagination .nav-links a:hover,
nav.pagination .nav-links span.current {
  background-color: #04284A;
  color: #D8D8D8;
}

nav.pagination .nav-links a ~ a,
nav.pagination .nav-links span ~ a,
nav.pagination .nav-links a ~ span {
  margin-left: 1.25rem;
}

@media (max-width: 479px) {
  .blog.archive nav.pagination {
    margin-top: 4rem;
  }
}
@media (min-width: 480px) {
  .blog.archive nav.pagination {
    margin-top: calc(4rem + (1vw - 0.3rem) * 6.2295);
  }
}
@media (min-width: 1701px) {
  .blog.archive nav.pagination {
    margin-top: 8.75rem;
  }
}
@media (max-width: 479px) {
  nav.pagination .nav-links a,
  nav.pagination .nav-links span {
    font-size: 1rem;
    height: 2.5rem;
    line-height: 2.5rem;
    width: 2.5rem;
  }
  nav.pagination .nav-links a ~ a,
  nav.pagination .nav-links span ~ a,
  nav.pagination .nav-links a ~ span {
    margin-left: 0.75rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  height: 100%;
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui ::after,
.plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  outline-color: #00b3ff;
  outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after,
a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding-bottom: 4.6666666667px;
  padding-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5);
  padding-left: 10.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  padding-right: 10.5px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  padding-top: 4.6666666667px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,
.plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back::before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,
.plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after,
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  margin-right: calc((var(--plyr-control-spacing, 10px) * 0.7 - 2px) * -1);
  overflow: hidden;
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: #EEE;
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #EEE)));
  display: block;
  height: 19px;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor 0, transparent 0);
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
  margin-top: -4px;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline-color: #00b3ff;
  outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline-color: #00b3ff;
  outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline-color: #00b3ff;
  outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  background: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: 3px;
  border-radius: var(--plyr-tooltip-radius, 3px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type=range],
.plyr__progress__buffer {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 40, 47, 0.6) 50%, rgba(35, 40, 47, 0.6) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: #4a5464;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  left: 0;
  position: absolute;
  top: 0;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #00b3ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: rgba(255, 255, 255, 0.25);
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: #23282f;
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin: -var(--plyr-range-track-height, 5px)/2 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  padding: var(--plyr-tooltip-radius, 3px);
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: 2px;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

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

.plyr [hidden] {
  display: none !important;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* SLICK SLIDER CSS *************************/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  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 *****/
button.arrow {
  background: #C1CD23;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 4.875rem;
  padding: 0;
  position: absolute;
  top: calc(50% - 2.4375rem);
  transition: background 250ms ease;
  width: 4.875rem;
  z-index: 3;
}

button.arrow:hover {
  background: #FFFFFF;
}

button.arrow svg {
  display: block;
  height: 2.25rem !important;
  position: absolute;
  top: calc(50% - 1.125rem);
  left: calc(50% - 1.125rem);
  stroke: #FFFFFF;
  transition: stroke 250ms ease;
  width: 2.25rem !important;
}

button.arrow:hover svg {
  stroke: #04284A;
}

button.arrow span {
  visibility: hidden;
}

@media (max-width: 768px) {
  button.arrow {
    height: 2.5rem;
    top: calc(50% - 1.125rem);
    width: 2.5rem;
  }
  button.arrow svg {
    height: 1.5rem !important;
    top: calc(50% - 0.75rem);
    left: calc(50% - 0.75rem);
    width: 1.5rem !important;
  }
}
/***** DOTS *****/
.slick-dots {
  display: flex;
  flex-wrap: nowrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.slick-dots li {
  display: block;
}

.slick-dots li + li {
  margin-left: 0.5rem;
}

.slick-dots button {
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background: #231F20;
  color: transparent;
  font-size: 0.1px;
}

.slick-dots li.slick-active button {
  background: #FFFFFF;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.quicklinks {
  background-color: #FFFFFF;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.05);
  display: block;
  padding: 0.75rem 0;
  position: sticky;
  top: 6.688rem;
  width: 100%;
  z-index: 5;
}

@media (max-width: 970px) {
  .flex.quicklinks {
    top: 0;
  }
}
/*** NON-STACKED VERSION ***/
@media (min-width: 1300px) {
  .flex.quicklinks:not(.stacked) g-col {
    margin: 0 13.3333333333%;
    width: 73.3333333333%;
  }
}
.flex.quicklinks:not(.stacked) nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.flex.quicklinks:not(.stacked) a {
  background-color: transparent;
  border-radius: 3rem;
  box-sizing: border-box;
  border: 1px solid #269FB0;
  color: #269FB0;
  cursor: pointer;
  display: block;
  line-height: 3rem;
  padding: 0 2rem;
  text-align: center;
  transition: background-color 250ms ease, color 250ms ease;
  min-width: 8rem;
}

.flex.quicklinks:not(.stacked) a ~ a {
  margin-left: 0.75rem;
}

.flex.quicklinks:not(.stacked) a:hover,
.flex.quicklinks:not(.stacked) a.current {
  background-color: #269FB0;
  color: #FFFFFF;
}

.flex.quicklinks:not(.stacked) button {
  display: none;
}

/*** STACKED VERSION ***/
.flex.quicklinks.stacked {
  overflow: visible;
}

.flex.quicklinks.stacked nav {
  background-color: #FFFFFF;
  border: 1px solid #269FB0;
  border-top: 0;
  box-sizing: border-box;
  display: none;
  padding: 0.25rem;
  width: 100%;
}

.flex.quicklinks.stacked a {
  background-color: transparent;
  border-radius: 0;
  box-sizing: border-box;
  color: #269FB0;
  cursor: pointer;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 100%;
  padding: 0.75rem 1.25rem;
  text-align: left;
  transition: background-color 250ms ease, color 250ms ease;
  width: 100%;
}

.flex.quicklinks.stacked a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.flex.quicklinks.stacked a ~ a {
  margin-top: 0.25rem;
}

.flex.quicklinks.stacked button {
  background-color: transparent;
  border-radius: 0.25rem;
  box-sizing: border-box;
  border: 1px solid #269FB0;
  color: #269FB0;
  cursor: pointer;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 3rem;
  padding: 0 2.25rem 0 1.5rem;
  position: relative;
  text-align: left;
  transition: background-color 250ms ease, color 250ms ease;
  width: 100%;
}

.flex.quicklinks.stacked button svg {
  position: absolute;
  stroke: #269FB0;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%) rotate(0deg);
  transition: stroke 250ms ease, transform 250ms ease;
}

.flex.quicklinks.stacked button.active {
  background-color: #269FB0;
  border-radius: 0.25rem 0.25rem 0 0;
  color: #FFFFFF;
}

.flex.quicklinks.stacked button.active svg {
  stroke: #FFFFFF;
  transform: translateY(-50%) rotate(180deg);
}

.flex.quicklinks.stacked button.active + nav {
  display: block;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************ VIDEO EMBED ************************/
embed-object {
  background: #231F20;
  border-radius: 0.25rem;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

embed-inner {
  display: block;
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

embed-inner iframe,
embed-inner object,
embed-inner embed {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 400ms ease 50ms;
  height: 100%;
}

embed-inner iframe.loaded,
embed-inner object.loaded,
embed-inner embed.loaded {
  opacity: 1;
}

/*** CUSTOM PLAY BUTTON ***/
.plyr__control:hover {
  background-color: #C1CD23 !important;
}

.plyr__control--overlaid[data-plyr=play] {
  border: 2px solid #FFFFFF;
  background: transparent;
  opacity: 1;
  min-height: 3rem;
  min-width: 3rem;
  height: 15vw;
  max-height: 6.25rem;
  max-width: 6.25rem;
  width: 15vw;
}

.plyr__control--overlaid[data-plyr=play]:hover {
  background: #C1CD23 !important;
  border-color: #C1CD23;
}

.plyr__control--overlaid[data-plyr=play] svg {
  fill: #FFFFFF;
  margin: 0 auto;
  min-height: 1.5rem;
  min-width: 1.5rem;
  height: 5vw;
  max-height: 2.5rem;
  max-width: 2.5rem;
  width: 5vw;
}

.plyr__control--overlaid[data-plyr=play]:hover svg {
  fill: #FFFFFF;
}

.plyr__controls {
  transition: opacity 1s ease;
}

.plyr--playing .plyr__controls,
.plyr--paused .plyr__controls {
  opacity: 1;
}

.plyr--stopped .plyr__controls {
  opacity: 0;
}

floating-sidebar {
  display: block;
  max-width: 25.625rem;
  width: 100%;
}

floating-sidebar.fixed {
  position: fixed;
  top: 9.875rem;
}

floating-sidebar.fixed ~ * {
  opacity: 0;
}

floating-sidebar h4 {
  font-size: 1.375rem;
  font-weight: 300 !important;
}

floating-sidebar ul {
  list-style-type: none;
  margin: 2.75rem 0 0 0;
  padding: 0;
}

floating-sidebar li {
  display: block;
  padding-left: 3.75rem;
  position: relative;
  line-height: 1.75rem;
}

floating-sidebar li img {
  display: block;
  height: 1.75rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
}

floating-sidebar li + li {
  margin-top: 1.5rem;
}

floating-sidebar a.btn {
  border-radius: 0;
  display: block;
  margin: 3rem 0 -3rem -3rem !important;
  max-width: none !important;
  width: calc(100% + 6rem) !important;
}

deadline-date {
  display: block;
  margin: 2rem 0;
  position: relative;
}

deadline-date img {
  height: 1.75rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.75rem;
}

deadline-date span {
  color: #9C9C9C;
  display: block;
  line-height: 1.25rem;
  padding-left: 2.938rem;
  padding-top: 0.25rem;
}

@media (max-width: 970px) {
  floating-sidebar {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
  }
}
shadow-box {
  background-color: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
  display: block;
  padding: 3rem;
  position: relative;
  box-sizing: border-box;
}

shadow-box > map-wrapper {
  background-color: #DDD;
  display: block;
  height: 10.625rem;
  margin: -3rem 0 3rem -3rem;
  position: relative;
  width: calc(100% + 6rem);
  box-sizing: border-box;
}

shadow-box > map-wrapper > map-embed {
  cursor: default;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

shadow-box > map-wrapper > map-marker {
  z-index: 2;
}

shadow-box + h4,
floating-sidebar + h4 {
  margin: 4.5rem 0 2rem 0;
}

shadow-box > span {
  color: #231E20;
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 175%;
  margin: 0;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

shadow-box.contact_details ul {
  margin: 0 !important;
}

shadow-box a:not(.btn) {
  color: #01A7B8;
  display: table;
  line-height: 175%;
  margin-top: 2rem;
  position: relative;
  transition: color 350ms ease;
}

shadow-box a:not(.btn):before {
  background-color: #01A7B8;
  content: "";
  height: 1px;
  opacity: 0.5;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  right: 50%;
  transition: background-color 350ms ease, left 350ms ease, right 350ms ease;
}

shadow-box a:not(.btn):hover:before {
  left: 0;
  right: 0;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.agenda g-col {
  margin: 0 auto;
  max-width: 68.75rem;
}

/***** TAB NAV *****/
.flex.agenda nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: -1.25rem 0 0 0;
  width: 100%;
}

@media (max-width: 479px) {
  .flex.agenda nav {
    margin-bottom: 2rem;
  }
}
@media (min-width: 480px) {
  .flex.agenda nav {
    margin-bottom: calc(2rem + (1vw - 0.3rem) * 2.2951);
  }
}
@media (min-width: 1701px) {
  .flex.agenda nav {
    margin-bottom: 3.75rem;
  }
}
.flex.agenda nav button {
  background-color: #C3E2FF;
  border: 0;
  border-radius: 100%;
  align-items: center;
  color: #012F60;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  justify-content: center;
  position: relative;
  transition: background-color 250ms ease, color 250ms ease;
}

@media (max-width: 479px) {
  .flex.agenda nav button {
    font-size: 0.938rem;
    height: 6.5rem;
    width: 6.5rem;
  }
}
@media (min-width: 480px) {
  .flex.agenda nav button {
    font-size: calc(0.938rem + (1vw - 0.3rem) * 0.2452);
    height: calc(6.5rem + (1vw - 0.3rem) * 4.5902);
    width: calc(6.5rem + (1vw - 0.3rem) * 4.5902);
  }
}
@media (min-width: 1701px) {
  .flex.agenda nav button {
    font-size: 1.125rem;
    height: 10rem;
    width: 10rem;
  }
}
.flex.agenda nav button:after {
  background-color: #C3E2FF;
  border-radius: 0.75rem;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, -80%, 0) rotate(45deg);
  transition: background-color 250ms ease;
  z-index: 1;
}

@media (max-width: 479px) {
  .flex.agenda nav button:after {
    border-radius: 0.375rem;
    height: 2rem;
    width: 2rem;
  }
}
@media (min-width: 480px) {
  .flex.agenda nav button:after {
    border-radius: calc(0.375rem + (1vw - 0.3rem) * 0.4918);
    height: calc(2rem + (1vw - 0.3rem) * 1.3115);
    width: calc(2rem + (1vw - 0.3rem) * 1.3115);
  }
}
@media (min-width: 1701px) {
  .flex.agenda nav button:after {
    border-radius: 0.75rem;
    height: 3rem;
    width: 3rem;
  }
}
.flex.agenda nav button.active,
.flex.agenda nav button.active:after {
  background: #012F60;
  color: #FFFFFF;
}

.flex.agenda nav button:not(.active):hover,
.flex.agenda nav button:not(.active):hover:after {
  background: #012F60;
  color: #FFFFFF;
}

.flex.agenda nav button.active,
.flex.agenda nav button.active:after {
  background: #012F60;
  color: #FFFFFF;
}

.flex.agenda nav button:not(.active):hover,
.flex.agenda nav button:not(.active):hover:after {
  background: #012F60;
  color: #FFFFFF;
}

section-group.blue .flex.agenda nav button:not(.active):not(:hover),
section-group.blue .flex.agenda nav button:not(.active):not(:hover):after {
  background-color: #FFFFFF;
  color: #012F60;
}

section-group.navy .flex.agenda nav button:not(.active):not(:hover),
section-group.navy .flex.agenda nav button:not(.active):not(:hover):after {
  background-color: #C3E2FF;
}

section-group.navy .flex.agenda nav button:not(.active):not(:hover) * {
  color: #012F60 !important;
}

section-group.navy .flex.agenda nav button.active,
section-group.navy .flex.agenda nav button.active:after,
section-group.navy .flex.agenda nav button:not(.active):hover,
section-group.navy .flex.agenda nav button:not(.active):hover:after {
  background: #FFFFFF;
}

section-group.navy .flex.agenda nav button.active *,
section-group.navy .flex.agenda nav button:not(.active):hover * {
  color: #012F60 !important;
}

.flex.agenda nav button > span {
  display: block;
  position: relative;
  z-index: 2;
}

@media (max-width: 479px) {
  .flex.agenda nav button {
    margin: 1.25rem 0.438rem 0.75rem 0.438rem;
  }
}
@media (min-width: 480px) {
  .flex.agenda nav button {
    margin: 1.25rem calc(0.438rem + (1vw - 0.3rem) * 0.2452) calc(0.75rem + (1vw - 0.3rem) * 0.3279) calc(0.438rem + (1vw - 0.3rem) * 0.2452);
  }
}
@media (min-width: 1701px) {
  .flex.agenda nav button {
    margin: 1.25rem 0.625rem 0.625rem 0.625rem;
  }
}
.flex.agenda nav button strong {
  display: block;
  font-weight: 500;
}

@media (max-width: 479px) {
  .flex.agenda nav button strong {
    font-size: 1rem;
  }
}
@media (min-width: 480px) {
  .flex.agenda nav button strong {
    font-size: calc(1rem + (1vw - 0.3rem) * 0.3279);
  }
}
@media (min-width: 1701px) {
  .flex.agenda nav button strong {
    font-size: 1.25rem;
  }
}
@media (max-width: 540px) {
  .flex.agenda nav button span span {
    display: block;
  }
}
/***** TAB ITEMS *****/
.flex.agenda tab-item {
  display: block;
}

.flex.agenda dl {
  display: block;
  margin: 0 auto;
}

.flex.agenda dl dt,
.flex.agenda dl dd {
  display: block;
  margin: 0;
  width: 100%;
}

.flex.agenda dl > dt ~ dt {
  margin-top: 1px !important;
}

.flex.agenda dl button {
  align-items: center;
  background-color: #184181;
  border: 0;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  border: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: background-color 250ms ease, color 250ms ease, border-radius 250ms ease;
  width: 100%;
}

.flex.agenda dl dt:first-child button {
  border-radius: 0.5rem 0.5rem 0 0;
}

.flex.agenda dl dt:last-of-type button {
  border-radius: 0 0 0.5rem 0.5rem;
}

.flex.agenda dl button span {
  box-sizing: border-box;
  display: block;
  font-size: 0.938rem;
  font-weight: 500;
  padding: 1.5rem;
  text-align: left;
  transition: background-color 250ms ease, color 250ms ease;
}

.flex.agenda dl button svg {
  margin: 0 1.5rem;
  stroke: #FFFFFF;
  transform: rotate(0deg);
  transition: stroke 250ms ease, transform 250ms ease;
  width: 1.5rem;
}

@media (min-width: 971px) {
  .flex.agenda dt.expanded:not(:last-of-type) button {
    border-radius: 0 0 0 0.5rem !important;
  }
  .flex.agenda dt.expanded:first-child button {
    border-radius: 0.5rem 0.5rem 0 0.5rem !important;
  }
  .flex.agenda dt.expanded:last-of-type button {
    border-radius: 0.5rem 0.5rem 0 0.5rem !important;
  }
}
@media (max-width: 970px) {
  .flex.agenda dt.expanded:not(:last-of-type) button {
    border-radius: 0 !important;
  }
  .flex.agenda dt.expanded:first-child button {
    border-radius: 0.5rem 0.5rem 0 0 !important;
  }
  .flex.agenda dt.expanded:last-of-type button {
    border-radius: 0.5rem 0.5rem 0 0 !important;
  }
}
@media (min-width: 601px) {
  .flex.agenda dl button .time {
    background-color: #012F60;
    width: 15rem;
  }
  .flex.agenda dl button .name {
    width: calc(100% - 19.5rem);
  }
}
@media (min-width: 480px) and (max-width: 600px) {
  .flex.agenda dl button .time {
    width: 12rem;
  }
  .flex.agenda dl button .name {
    padding-left: 0;
    width: calc(100% - 16.5rem);
  }
  .flex.agenda dl button svg {
    margin-left: auto;
  }
}
@media (max-width: 479px) {
  .flex.agenda dl button {
    display: block;
  }
  .flex.agenda dl button .time {
    background: transparent !important;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 1rem 4.5rem 0.625rem 1rem;
    width: 100%;
  }
  .flex.agenda dl button .name {
    font-size: 1.063rem;
    padding: 0 4.5rem 1rem 1rem;
    width: 100%;
  }
  .flex.agenda dl button svg {
    position: absolute;
    top: calc(50% - 0.75rem);
    right: 0;
  }
}
.flex.agenda dt.expanded button,
.flex.agenda dt.expanded button .time {
  background: #C3E2FF;
}

.flex.agenda dt.expanded button span {
  color: #012F60;
}

.flex.agenda dt.expanded button svg {
  stroke: #012F60;
  transform: rotate(180deg);
}

section-group.blue .flex.agenda dt.expanded button,
section-group.blue .flex.agenda dt.expanded button .time {
  background: #FFFFFF;
}

section-group.blue .flex.agenda dt.expanded button span {
  color: #012F60;
}

section-group.blue .flex.agenda dt.expanded button svg {
  stroke: #012F60;
  transform: rotate(180deg);
}

section-group.navy .flex.agenda dt:not(.expanded) button,
section-group.navy .flex.agenda dt:not(.expanded) button .name {
  background: #C3E2FF;
}

section-group.navy .flex.agenda dt:not(.expanded) button .time {
  background: rgba(255, 255, 255, 0.3);
}

section-group.navy .flex.agenda dt:not(.expanded) button span {
  color: #012F60;
}

section-group.navy .flex.agenda dt:not(.expanded) button svg {
  stroke: #012F60;
  transform: rotate(180deg);
}

section-group.navy .flex.agenda dt.expanded button,
section-group.navy .flex.agenda dt.expanded button .time {
  background: #FFFFFF;
}

section-group.navy .flex.agenda dt.expanded button span {
  color: #012F60;
}

section-group.navy .flex.agenda dt.expanded button svg {
  stroke: #012F60;
  transform: rotate(180deg);
}

.flex.agenda timeslot-content {
  background-color: #C3E2FF;
  border-radius: 0 0 0.5rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-left: 15rem;
  padding: 1.5rem;
  width: calc(100% - 15rem);
}

section-group.blue .flex.agenda timeslot-content {
  background: #FFFFFF;
}

section-group.navy .flex.agenda timeslot-content {
  background: #FFFFFF;
}

.flex.agenda timeslot-content figure {
  border-radius: 0.25rem;
  display: block;
  height: 0;
  padding-bottom: 37%;
  width: 33%;
}

.flex.agenda timeslot-content ts-text {
  display: block;
  width: 100%;
}

.flex.agenda timeslot-content ts-text p {
  color: #012F60;
  font-size: 0.938rem;
  font-weight: 400;
}

.flex.agenda timeslot-content figure + ts-text {
  margin-left: 1.5rem;
  width: calc(66% - 1.5rem);
}

@media (max-width: 970px) {
  .flex.agenda timeslot-content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 540px) {
  .flex.agenda timeslot-content figure {
    width: 100%;
    padding-bottom: 62.5%;
  }
  .flex.agenda timeslot-content figure + ts-text {
    margin: 1.5rem 0 0 0;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .flex.agenda timeslot-content figure {
    padding-bottom: 75%;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.cta g-col {
  margin: 0 auto;
  max-width: 68.75rem;
  width: 100%;
}

.flex.cta cta-wrap {
  background-color: #269FB0;
  border-radius: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.flex.cta *:not(a) {
  color: #FFFFFF;
}

/***** WITHOUT IMAGE *****/
.flex.cta cta-wrap text-content:first-child {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.flex.cta text-content:first-child content-inner {
  box-sizing: border-box;
  display: block;
  width: 55%;
}

@media (max-width: 479px) {
  .flex.cta text-content:first-child content-inner {
    padding: 1.875rem 1.875rem 0 1.875rem;
  }
}
@media (min-width: 480px) and (max-width: 970px) {
  .flex.cta text-content:first-child content-inner {
    padding: calc(2.5rem + (1vw - 0.3rem) * 3.2787) calc(2.5rem + (1vw - 0.3rem) * 3.2787) 0 calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 971px) {
  .flex.cta text-content:first-child content-inner {
    padding: calc(2.5rem + (1vw - 0.3rem) * 3.2787) 0 calc(2.5rem + (1vw - 0.3rem) * 3.2787) calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 1701px) {
  .flex.cta text-content:first-child content-inner {
    padding: 5rem 0 5rem 5rem;
  }
}
.flex.cta text-content:first-child button-wrap {
  box-sizing: border-box;
  display: block;
  width: 45%;
}

@media (max-width: 479px) {
  .flex.cta:not(.has-dates) text-content:first-child button-wrap {
    padding: 1.875rem;
  }
}
@media (min-width: 480px) and (max-width: 970px) {
  .flex.cta:not(.has-dates) text-content:first-child button-wrap {
    padding: calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 971px) {
  .flex.cta:not(.has-dates) text-content:first-child button-wrap {
    padding: 0 calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 1701px) {
  .flex.cta:not(.has-dates) text-content:first-child button-wrap {
    padding: 0 5rem;
  }
}
.flex.cta text-content:first-child button-wrap a:not(.button) {
  display: table;
  position: relative;
}

@media (min-width: 971px) {
  .flex.cta text-content:first-child button-wrap a:not(.button) {
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .flex.cta text-content:first-child button-wrap a:not(.button) {
    font-size: 1.125rem;
  }
}
@media (min-width: 480px) {
  .flex.cta text-content:first-child button-wrap a:not(.button) {
    font-size: calc(1.125rem + (1vw - 0.3rem) * 0.4918);
  }
}
@media (min-width: 1701px) {
  .flex.cta text-content:first-child button-wrap a:not(.button) {
    font-size: 1.5rem;
  }
}
.flex.cta text-content:first-child button-wrap a:not(.button):before {
  background-color: #006C7D;
  content: "";
  height: 2px;
  opacity: 0.5;
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  right: 50%;
  transition: background-color 350ms ease, left 350ms ease, right 350ms ease;
}

.flex.cta text-content:first-child button-wrap a:not(.button):hover:before {
  left: 0;
  right: 0;
}

@media (max-width: 970px) {
  .flex.cta text-content:first-child {
    display: block !important;
  }
  .flex.cta text-content:first-child content-inner,
  .flex.cta text-content:first-child button-wrap {
    width: 100%;
  }
}
/***** WITH IMAGE *****/
.flex.cta cta-wrap figure {
  order: 2;
  width: 20rem;
}

.flex.cta cta-wrap figure + text-content {
  box-sizing: border-box;
  display: block;
  order: 1;
  width: calc(100% - 20rem);
}

@media (max-width: 479px) {
  .flex.cta figure + text-content {
    padding: 1.875rem;
  }
}
@media (min-width: 480px) {
  .flex.cta figure + text-content {
    padding: calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 1701px) {
  .flex.cta figure + text-content {
    padding: 5rem;
  }
}
.flex.cta cta-wrap figure + text-content a.btn {
  margin-top: 2rem;
}

@media (max-width: 820px) {
  .flex.cta cta-wrap {
    display: block;
  }
  .flex.cta cta-wrap figure {
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
  }
  .flex.cta cta-wrap figure + text-content {
    width: 100% !important;
  }
}
@media (max-width: 400px) {
  .flex.cta cta-wrap figure {
    padding-bottom: 100%;
  }
}
/***** WITH DATES *****/
.flex.cta.has-dates text-content:first-child content-inner {
  padding: 5rem 5rem 3.125rem 5rem;
  width: 100%;
}

@media (max-width: 479px) {
  .flex.cta.has-dates text-content:first-child content-inner {
    padding: 1.875rem 1.875rem 1.5rem 1.875rem;
  }
}
@media (min-width: 480px) {
  .flex.cta.has-dates text-content:first-child content-inner {
    padding: calc(1.875rem + (1vw - 0.3rem) * 4.0984) calc(1.875rem + (1vw - 0.3rem) * 4.0984) calc(1.5rem + (1vw - 0.3rem) * 2.1311) calc(1.875rem + (1vw - 0.3rem) * 4.0984);
  }
}
@media (min-width: 1701px) {
  .flex.cta.has-dates text-content:first-child content-inner {
    padding: 5rem 5rem 3.125rem 5rem;
  }
}
@media (max-width: 479px) {
  .flex.cta.has-dates button-wrap {
    padding: 0 1.875rem 1.875rem 1.875rem;
  }
}
@media (min-width: 480px) {
  .flex.cta.has-dates button-wrap {
    padding: 0 calc(1.875rem + (1vw - 0.3rem) * 4.0984) calc(1.875rem + (1vw - 0.3rem) * 4.0984) calc(1.875rem + (1vw - 0.3rem) * 4.0984);
  }
}
@media (min-width: 1701px) {
  .flex.cta.has-dates button-wrap {
    padding: 0 5rem 5rem 5rem;
  }
}
.flex.cta.has-dates button-wrap strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.flex.cta.has-dates button-wrap {
  width: 100% !important;
}

.flex.cta.has-dates button-wrap ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 991px) {
  .flex.cta.has-dates button-wrap ul li {
    display: block;
    margin-left: 2rem;
    width: calc((100% - 4.01rem) / 3);
  }
  .flex.cta.has-dates button-wrap ul li:nth-child(3n+1) {
    margin-left: 0;
  }
  .flex.cta.has-dates button-wrap ul li:nth-child(3n) ~ li {
    margin-top: 2rem;
  }
}
@media (max-width: 990px) {
  .flex.cta.has-dates button-wrap ul li {
    display: block;
    margin-left: 2rem;
    width: calc((100% - 2.01rem) / 2);
  }
  .flex.cta.has-dates button-wrap ul li:nth-child(odd) {
    margin-left: 0;
  }
  .flex.cta.has-dates button-wrap ul li:nth-child(2n) ~ li {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .flex.cta.has-dates button-wrap ul {
    display: block;
  }
  .flex.cta.has-dates button-wrap ul li {
    display: block;
    margin-left: 0;
    width: 100%;
    max-width: 20rem;
  }
  .flex.cta.has-dates button-wrap ul li ~ li {
    margin-top: 2rem;
  }
}
.flex.cta.has-dates a.button {
  align-items: center;
  background-color: #FFFFFF;
  color: #04284A;
  display: flex;
  flex-wrap: wrap;
  min-height: 4rem;
  position: relative;
  transition: background 250ms ease;
}

.flex.cta.has-dates a.button span {
  box-sizing: border-box;
  color: #04284A;
  display: block;
  font-size: 0.938rem;
  font-weight: 500;
  line-height: 130%;
  padding: 0.75rem;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.flex.cta.has-dates a.button icon-wrap {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
}

.flex.cta.has-dates a.button svg {
  display: block;
  height: 1.875rem;
  fill: #04284A;
  transition: fill 250ms ease;
  width: 1.875rem;
}

.flex.cta.has-dates a.button:hover {
  background-color: #ED973B;
}

.flex.cta.has-dates a.button:hover span {
  color: #FFFFFF;
}

.flex.cta.has-dates a.button:hover svg {
  fill: #FFFFFF;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.embed {
  overflow: hidden;
  position: relative;
}

.flex.embed g-row:last-child g-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

.flex.embed.other g-col > strong {
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.flex.embed .plyr {
  width: 100%;
}

.flex.embed.video .plyr--full-ui > strong {
  box-sizing: border-box;
  color: #FFFFFF;
  display: block;
  opacity: 1;
  padding: 0 2rem;
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  text-align: center;
  transition: opacity 250ms ease;
  width: 100%;
  z-index: 5;
}

.flex.embed.video .plyr__video-wrapper {
  opacity: 0.5;
  transition: opacity 250ms ease;
}

.flex.embed.video .plyr--playing .plyr__video-wrapper {
  opacity: 1;
}

.flex.embed.video .plyr--playing > strong {
  opacity: 0;
}

@media (max-width: 479px) {
  .flex.embed.video .plyr--full-ui > strong {
    display: none;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.faq g-col {
  margin: 0 auto;
  max-width: 62.5rem;
}

.flex.faq faq-list {
  border-bottom: 1px solid #929292;
  display: block;
  margin: 2rem 0 0 0;
  width: 100%;
}

.flex.faq faq-item {
  border-top: 1px solid #929292;
  display: block;
  padding: 1.25rem 0;
  position: relative;
  width: 100%;
}

.flex.faq the-question {
  box-sizing: border-box;
  display: block;
  padding: 0 3rem 0 0;
  line-height: 150%;
  position: relative;
  transition: padding-bottom 175ms ease;
  width: 100%;
}

.flex.faq faq-item.expanded the-question {
  padding-bottom: 1rem;
}

@media (max-width: 479px) {
  .flex.faq the-question {
    font-size: 1.125rem;
  }
}
@media (min-width: 480px) {
  .flex.faq the-question {
    font-size: calc(1.125rem + (1vw - 0.3rem) * 0.4918);
  }
}
@media (min-width: 1701px) {
  .flex.faq the-question {
    font-size: 1.5rem;
  }
}
.flex.faq faq-item button {
  align-items: center;
  background-color: #D8D8D8;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 0.125rem;
  right: 0;
  bottom: 0.125rem;
  transition: background-color 175ms ease;
  width: 1.5rem;
}

.flex.faq faq-item.expanded button {
  background: #C1CD23;
}

.flex.faq faq-item button span {
  display: none;
}

.flex.faq faq-item button svg {
  display: block;
  height: 1.25rem;
  opacity: 0.33;
  stroke: #231F20;
  transform: rotate(0deg);
  transition: transform 175ms ease;
  width: 1.25rem;
}

.flex.faq faq-item.expanded button svg {
  transform: rotate(180deg);
}

.flex.faq the-answer {
  display: block;
  margin: 0;
  width: calc(100% - 3rem);
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.image-grid g-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 82rem;
  width: 100%;
}

.flex.image-grid image-item {
  display: block;
  position: relative;
}

.flex.image-grid image-item figure {
  height: 0;
  padding-bottom: 62.5%;
}

.flex.image-grid image-item img {
  height: 100% !important;
  width: 100% !important;
  top: 0;
  left: 0;
  transform: none;
}

.flex.image-grid.crop image-item img {
  object-fit: cover !important;
}

.flex.image-grid.contain image-item img {
  object-fit: contain !important;
}

@media (min-width: 1101px) {
  .flex.image-grid image-item {
    margin-left: 5vw;
    width: calc((100% - 20.01vw) / 3);
  }
  .flex.image-grid image-item:nth-child(3n) ~ image-item {
    margin-top: 5vw;
  }
}
@media (min-width: 800px) and (max-width: 1100px) {
  .flex.image-grid image-item {
    margin-left: 5vw;
    width: calc((100% - 5.01vw) / 2);
  }
  .flex.image-grid image-item:nth-child(odd) {
    margin-left: 0;
  }
  .flex.image-grid image-item:nth-child(2n) ~ image-item {
    margin-top: calc(2.5rem + 5vw);
  }
}
@media (max-width: 799px) {
  .flex.image-grid image-item {
    margin-top: 5rem !important;
    margin-left: 0 !important;
    max-width: 24rem;
    margin-left: 5vw;
    width: 100%;
  }
  .flex.image-grid image-item ~ image-item {
    margin-top: 1.5rem !important;
  }
}
@media (max-width: 479px) {
  .flex.image-grid image-item {
    margin-top: 4rem !important;
  }
  .flex.image-grid image-item ~ image-item {
    margin-top: 1.5rem !important;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.icons g-col:nth-child(odd) {
  margin-left: 13.3333333333%;
  width: 33.3333333333%;
}

.flex.icons g-col:nth-child(even) {
  margin-left: 6.6666666667%;
  width: 33.3333333333%;
}

@media (max-width: 1024px) {
  .flex.icons g-col {
    margin-left: 6.6666666667% !important;
    width: 40% !important;
  }
}
@media (max-width: 768px) {
  .flex.icons g-col {
    margin-left: 6.6666666667% !important;
    width: 86.6666666667% !important;
  }
}
@media (max-width: 479px) {
  .flex.icons g-col {
    margin-left: 0% !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .flex.icons g-col:nth-child(2n) ~ g-col {
    padding-top: 2.5rem;
  }
}
@media (min-width: 480px) {
  .flex.icons g-col:nth-child(2n) ~ g-col {
    padding-top: calc(2.5rem + (1vw - 0.3rem) * 3.2787);
  }
}
@media (min-width: 1701px) {
  .flex.icons g-col:nth-child(2n) ~ g-col {
    padding-top: 5rem;
  }
}
.flex.icons icon-wrap {
  background-color: #012F60;
  align-items: center;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 6rem;
  justify-content: center;
  width: 6rem;
}

.flex.icons icon-wrap svg {
  display: block;
  height: 3rem;
  width: 3rem;
}

.flex.icons icon-wrap svg *[fill],
.flex.icons icon-wrap svg[fill]:not([fill=none]) * {
  fill: #FFFFFF !important;
}

.flex.icons icon-wrap svg path[class] {
  fill: #FFFFFF !important;
}

.flex.icons icon-wrap svg *[stroke],
.flex.icons icon-wrap svg[stroke]:not([stroke=none]) * {
  stroke: #FFFFFF !important;
}

.flex.icons h3 {
  margin-top: 1.5rem;
}

.flex.icons h3 + p {
  margin-top: 1rem;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.image-single g-col {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
@media (max-width: 479px) {
  .flex.statement {
    padding: 6rem 0;
  }
}
@media (min-width: 480px) {
  .flex.statement {
    padding: calc(6rem + (1vw - 0.3rem) * 13.1148) 0;
  }
}
@media (min-width: 1701px) {
  .flex.statement {
    padding: 16rem 0;
  }
}
.flex.statement blockquote {
  box-sizing: border-box;
  display: block;
  margin: 0 0 0 13.3333333333%;
  max-width: 61.25rem;
  padding-left: 3.125rem;
  position: relative;
  width: 73.3333333333%;
}

.flex.statement blockquote:before {
  background-color: #C1CD23;
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  bottom: 0.25rem;
  width: 0.375rem;
}

.flex.statement p {
  color: #FFFFFF;
  line-height: 150%;
}

section-group.blue .flex.statement p,
section-group.white .flex.statement p {
  color: #012F60;
}

section-group.blue .flex.statement blockquote:before,
section-group.white .flex.statement blockquote:before {
  background-color: #ED973B;
}

@media (max-width: 540px) {
  .flex.statement p {
    font-size: 1.5rem;
  }
}
@media (min-width: 541px) {
  .flex.statement p {
    font-size: calc(2rem + (1vw - 0.3rem) * 0.6557);
  }
}
@media (min-width: 1701px) {
  .flex.statement p {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .flex.statement blockquote {
    margin: 0 0 0 6.6666666667%;
    width: 86.6666666667%;
  }
}
@media (max-width: 468px) {
  .flex.statement blockquote {
    margin: 0;
    padding-left: 1.875rem;
    width: 100%;
  }
  .flex.statement blockquote:before {
    width: 0.25rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.testimonials {
  padding: 0 !important;
}

section-group.white .flex.testimonials {
  background-color: #FFFFFF;
}

section-group.navy .flex.testimonials {
  background-color: #04284A;
}

section-group.blue .flex.testimonials {
  background-color: #C3E2FF;
}

/** LAYOUT **/
@media (max-width: 479px) {
  .flex.testimonials .slick-slide g-container {
    padding: 6.125rem 0.938rem;
  }
}
@media (min-width: 480px) {
  .flex.testimonials .slick-slide g-container {
    padding: calc(6.125rem + (1vw - 0.3rem) * 8.0328) 1.188rem;
  }
}
@media (min-width: 1701px) {
  .flex.testimonials .slick-slide g-container {
    padding: 12.25rem 1.188rem;
  }
}
.flex.testimonials .slick-slide g-container {
  position: relative;
  z-index: 2;
}

.flex.testimonials .slick-slide g-col {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 81rem;
}

@media (min-width: 1201px) {
  .flex.testimonials .slick-slide g-col {
    width: calc(100% - 27.25rem);
  }
}
@media (max-width: 1200px) {
  .flex.testimonials .slick-slide g-col {
    width: calc(100% - 13.75rem);
  }
}
@media (max-width: 768px) {
  .flex.testimonials .slick-slide g-col {
    width: calc(100% - 9rem);
  }
}
@media (max-width: 539px) {
  .flex.testimonials .slick-slide g-col {
    display: block;
    width: 100%;
  }
}
/** BACKGROUND IMAGE **/
.flex.testimonials .slick-slide > figure {
  margin: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/** AUTHOR **/
.flex.testimonials quote-author {
  display: block;
  line-height: 1.875rem;
  order: 1;
  width: 12.25rem;
}

.flex.testimonials quote-author figure {
  border-radius: 100%;
  display: block;
  height: 0;
  padding-bottom: 100%;
}

.flex.testimonials quote-author strong,
.flex.testimonials quote-author span {
  display: block;
  line-height: 120%;
  text-align: center;
}

.flex.testimonials quote-author strong {
  font-size: 1.125rem;
  margin-top: 2.125rem;
}

.flex.testimonials quote-author span {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

@media (max-width: 539px) {
  .flex.testimonials quote-author {
    box-sizing: border-box;
    margin: 2.5rem 0;
    padding-left: 6.5rem;
    position: relative;
    text-align: left;
    width: 100%;
  }
  .flex.testimonials quote-author figure {
    position: absolute;
    padding-bottom: 5rem;
    top: 50%;
    left: 0;
    width: 5rem;
    transform: translateY(-50%);
  }
  .flex.testimonials quote-author strong,
  .flex.testimonials quote-author span {
    text-align: left;
  }
}
/** QUOTE TEXT **/
.flex.testimonials blockquote {
  order: 2;
}

@media (max-width: 539px) {
  .flex.testimonials blockquote {
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 540px) {
  .flex.testimonials blockquote {
    margin: 0 0 0 calc(2.5rem + (1vw - 0.3rem) * 8.3607);
    width: calc(100% - (2.5rem + (1vw - 0.3rem) * 8.3607 - (6.125rem + (1vw - 0.3rem) * 8.0328)));
  }
}
@media (min-width: 1701px) {
  .flex.testimonials blockquote {
    margin: 0 0 0 8.875rem;
    width: calc(100% - 8.875rem - 12.25rem);
  }
}
.flex.testimonials blockquote p:first-child {
  text-indent: -0.5ch;
}

.flex.testimonials blockquote p:first-child:before {
  content: "“";
  display: inline-block;
  margin-right: 0.25rem;
}

.flex.testimonials blockquote p:last-child:after {
  content: "”";
  display: inline-block;
  margin-left: 0.5rem;
}

/* HUGE */
@media (min-width: 640px) {
  .flex.testimonials blockquote.huge p {
    font-size: calc(1.5rem + (1vw - 0.3rem) * 0.6557);
  }
}
@media (min-width: 1701px) {
  .flex.testimonials blockquote.huge p {
    font-size: 2rem;
  }
}
/* LARGE */
@media (min-width: 640px) {
  .flex.testimonials blockquote.large p {
    font-size: calc(1.375rem + (1vw - 0.3rem) * 0.3279);
  }
}
@media (min-width: 1701px) {
  .flex.testimonials blockquote.large p {
    font-size: 1.625rem;
  }
}
/* MEDIUM */
@media (min-width: 640px) {
  .flex.testimonials blockquote.medium p {
    font-size: calc(1.125rem + (1vw - 0.3rem) * 0.3279);
  }
}
@media (min-width: 1701px) {
  .flex.testimonials blockquote.medium p {
    font-size: 1.375rem;
  }
}
/* SMALL */
@media (min-width: 640px) {
  .flex.testimonials blockquote.small p {
    font-size: calc(1.063rem + (1vw - 0.3rem) * 0.2452);
  }
}
@media (min-width: 1701px) {
  .flex.testimonials blockquote.small p {
    font-size: 1.25rem;
  }
}
/* RESPONSIVE */
@media (max-width: 639px) {
  .flex.testimonials blockquote p {
    font-size: 1.125rem;
  }
}
/** BUTTONS + DOTS **/
.flex.testimonials .slick-dots button {
  background-color: #FFFFFF;
}

.flex.testimonials .slick-dots .slick-active button {
  background-color: #C1CD23;
}

.flex.testimonials .slick-dots > li:only-child {
  display: none;
}

@media (min-width: 1201px) {
  .flex.testimonials button.arrow.prev {
    left: 4.875rem;
  }
  .flex.testimonials button.arrow.next {
    right: 4.875rem;
  }
}
@media (max-width: 1200px) {
  .flex.testimonials button.arrow.prev {
    left: 1.5rem;
  }
  .flex.testimonials button.arrow.next {
    right: 1.5rem;
  }
}
@media (min-width: 540px) {
  .flex.testimonials .slick-dots {
    position: absolute;
    bottom: 2.376rem;
    right: 2.376rem;
  }
}
@media (max-width: 539px) {
  .flex.testimonials button.arrow.prev,
  .flex.testimonials button.arrow.next {
    top: auto;
    bottom: 1.875rem;
    transform: none;
  }
  .flex.testimonials button.arrow.prev {
    left: auto;
    right: 4.875rem;
  }
  .flex.testimonials button.arrow.next {
    right: 1.875rem;
  }
  .flex.testimonials .slick-dots {
    position: absolute;
    bottom: 1.875rem;
    left: 1.875rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.text g-col {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

.flex.text g-col text-content {
  display: block;
}

.flex.text.narrow text-content {
  max-width: 32rem;
}

.flex.text button-wrap {
  display: block;
  margin-top: 2.25rem;
}

.flex.text p[style*="text-align: center;"] + button-wrap a:not(.btn) {
  margin: 0 auto;
}

section-group.navy .flex.text a:not(.btn) {
  color: #FFFFFF;
  display: inline-block;
  transition: color 125ms ease;
}

section-group.navy .flex.text a:not(.btn):hover {
  color: #EC973A;
}

section-group.navy .flex.text a:not(.btn):before {
  background-color: #EC973A;
}

.flex.text a.btn {
  margin-top: 2.75rem;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/******************** BLOCK: TEXT WITH MEDIA - SQUARE IMAGES ********************/
.text-multiple-images.square {
  display: block;
}

.text-multiple-images.square g-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.text-multiple-images.square .button {
  display: none;
}

.text-multiple-images.square g-col {
  display: block;
}

.text-multiple-images.square gallery-inner {
  display: block;
  position: relative;
  width: 100%;
}

.text-multiple-images.square image-collage {
  display: block;
  height: 0;
  opacity: 0;
  padding-bottom: 75%;
  position: relative;
  transition: opacity 850ms ease 150ms;
  width: 100%;
}

.text-multiple-images.square.in-viewport image-collage {
  opacity: 1;
}

.text-multiple-images.square figure {
  display: block;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.text-multiple-images.square image-gallery {
  border-radius: 0.375rem;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  position: absolute;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 1s ease;
}

.text-multiple-images.square .g1 {
  transition-delay: 0s;
}

.text-multiple-images.square .g2 {
  transition-delay: 0.3s;
}

.text-multiple-images.square .g3 {
  transition-delay: 0.6s;
}

.text-multiple-images.square .g4 {
  transition-delay: 0.9s;
}

.text-multiple-images.square .g5 {
  transition-delay: 1.2s;
}

.text-multiple-images.square.in-viewport image-gallery {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.text-multiple-images.square a.btn {
  margin-top: 2.25rem;
}

.text-multiple-images.square gallery-inner {
  height: 0;
  padding-bottom: 100%;
}

.text-multiple-images.square .g1 {
  top: 16%;
  left: 12%;
  width: 21%;
}

.text-multiple-images.square .g2 {
  top: 31%;
  left: 86%;
  width: 26%;
}

.text-multiple-images.square .g3 {
  top: 50%;
  left: 47%;
  width: 44%;
}

.text-multiple-images.square .g4 {
  top: 80%;
  left: 21%;
  width: 22%;
}

.text-multiple-images.square .g5 {
  top: 80%;
  left: 77%;
  width: 31%;
}

@media (min-width: 1000px) {
  .text-multiple-images.square.right .wysiwyg {
    order: 1;
    margin-left: 13.3333333333%;
    width: 33.3333333333%;
  }
  .text-multiple-images.square.right .images {
    order: 2;
    margin-left: 6.6666666667%;
    width: 33.3333333333%;
  }
  .text-multiple-images.square.left .wysiwyg {
    order: 2;
    margin-left: 6.6666666667%;
    width: 33.3333333333%;
  }
  .text-multiple-images.square.left .images {
    order: 1;
    margin-left: 13.3333333333%;
    width: 33.3333333333%;
  }
}
@media (min-width: 769px) and (max-width: 999px) {
  .text-multiple-images.square .images,
  .text-multiple-images.square .wysiwyg {
    margin: 0 auto;
    max-width: 34rem;
    width: 75%;
  }
  .text-multiple-images.square .wysiwyg {
    margin-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .text-multiple-images.square .button {
    display: block;
  }
  .text-multiple-images.square .images,
  .text-multiple-images.square .wysiwyg {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .text-multiple-images.square .wysiwyg a.btn {
    display: none;
  }
  .text-multiple-images.square g-row {
    display: block;
  }
  .text-multiple-images.square g-col {
    display: block;
    float: none;
  }
  .text-multiple-images.square .images {
    padding: 0 0.75rem;
  }
  .text-multiple-images.square .wysiwyg {
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .text-multiple-images.square .images,
  .text-multiple-images.square .wysiwyg {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .text-multiple-images.square .wysiwyg {
    margin-bottom: 1.5rem;
  }
}
/******************** BLOCK: TEXT WITH MEDIA - ROUND IMAGES ********************/
.text-multiple-images.round {
  display: block;
}

.text-multiple-images.round g-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.text-multiple-images.round .button {
  display: none;
}

.text-multiple-images.round g-col {
  display: block;
}

.text-multiple-images.round gallery-inner {
  display: block;
  position: relative;
  width: 100%;
}

.text-multiple-images.round image-collage {
  display: block;
  height: 0;
  opacity: 0;
  padding-bottom: 100%;
  position: relative;
  transition: opacity 850ms ease 150ms;
  width: 100%;
}

.text-multiple-images.round.in-viewport image-collage {
  opacity: 1;
}

.text-multiple-images.round figure {
  display: block;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.text-multiple-images.round image-gallery {
  border-radius: 100%;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 1s ease;
}

.text-multiple-images.round .g1 {
  transition-delay: 0s;
}

.text-multiple-images.round .g2 {
  transition-delay: 0.3s;
}

.text-multiple-images.round .g3 {
  transition-delay: 0.6s;
}

.text-multiple-images.round .g4 {
  transition-delay: 0.9s;
}

.text-multiple-images.round .g5 {
  transition-delay: 1.2s;
}

.text-multiple-images.round.in-viewport image-gallery {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.text-multiple-images.round a.btn {
  margin-top: 2.25rem;
}

.text-multiple-images.round gallery-inner {
  height: 0;
  padding-bottom: 100%;
}

.text-multiple-images.round .g1 {
  top: 50%;
  left: 50%;
  width: 40%;
}

.text-multiple-images.round .g2 {
  top: 17%;
  left: 16%;
  width: 23%;
}

.text-multiple-images.round .g3 {
  top: 5%;
  left: 48%;
  width: 24%;
}

.text-multiple-images.round .g4 {
  top: 23%;
  left: 83%;
  width: 28%;
}

.text-multiple-images.round .g5 {
  top: 57%;
  left: 90%;
  width: 25%;
}

.text-multiple-images.round .g6 {
  top: 87%;
  left: 66%;
  width: 30%;
}

.text-multiple-images.round .g7 {
  top: 85%;
  left: 24%;
  width: 27%;
}

.text-multiple-images.round .g8 {
  top: 49%;
  left: 9%;
  width: 24%;
}

@media (min-width: 1000px) {
  .text-multiple-images.round.right .wysiwyg {
    order: 1;
    margin-left: 13.3333333333%;
    width: 33.3333333333%;
  }
  .text-multiple-images.round.right .images {
    order: 2;
    margin-left: 6.6666666667%;
    width: 33.3333333333%;
  }
  .text-multiple-images.round.left .wysiwyg {
    order: 2;
    margin-left: 6.6666666667%;
    width: 33.3333333333%;
  }
  .text-multiple-images.round.left .images {
    order: 1;
    margin-left: 13.3333333333%;
    width: 33.3333333333%;
  }
}
@media (min-width: 769px) and (max-width: 999px) {
  .text-multiple-images.round .images,
  .text-multiple-images.round .wysiwyg {
    margin: 0 auto;
    max-width: 34rem;
    width: 75%;
  }
  .text-multiple-images.round .wysiwyg {
    margin-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .text-multiple-images.round image-collage {
    margin-left: 5%;
    width: 90%;
    padding-bottom: 90%;
  }
  .text-multiple-images.round .button {
    display: block;
  }
  .text-multiple-images.round .images,
  .text-multiple-images.round .wysiwyg {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .text-multiple-images.round .wysiwyg a.btn {
    display: none;
  }
  .text-multiple-images.round g-row {
    display: block;
  }
  .text-multiple-images.round g-col {
    display: block;
    float: none;
  }
  .text-multiple-images.round .images {
    padding: 0 0.75rem;
  }
  .text-multiple-images.round .wysiwyg {
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .text-multiple-images.round .images,
  .text-multiple-images.round .wysiwyg {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .text-multiple-images.round .wysiwyg {
    margin-bottom: 1.5rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/******************** BLOCK: TEXT MEDIA ********************/
.flex.text + .flex.text-media,
.flex.text-media + .flex.text-media {
  margin-top: calc((1rem + 1vw) * -1);
}

.flex.text-media g-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex.text-media g-row {
  margin: 0 auto;
  max-width: 85rem;
}

.flex.text-media g-col {
  display: block;
}

.flex.text-media.left .image {
  order: 1;
}

.flex.text-media.left .wysiwyg {
  order: 2;
}

.flex.text-media.right .image {
  order: 2;
}

.flex.text-media.right .wysiwyg {
  order: 1;
}

.flex.text-media a.btn {
  margin-top: 1.75rem;
}

.flex.text-media figure {
  height: 0;
  padding-bottom: 75%;
}

@media (min-width: 1000px) {
  .flex.text-media .image,
  .flex.text-media .wysiwyg {
    width: 46.6666666667%;
  }
  .flex.text-media .image {
    max-width: 42rem;
  }
  .flex.text-media .wysiwyg {
    max-width: 36rem;
  }
  .flex.text-media.left .wysiwyg {
    margin-left: 6.6666666667%;
  }
  .flex.text-media.right .wysiwyg {
    margin-right: 6.6666666667%;
  }
}
@media (max-width: 970px) {
  .flex.text-media .image,
  .flex.text-media .wysiwyg {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .flex.text-media g-row {
    display: block;
  }
  .flex.text-media g-col {
    display: block;
    float: none;
    max-width: 36rem;
  }
  .flex.text-media .wysiwyg {
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .flex.text-media .image,
  .flex.text-media .wysiwyg {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.check-list ul li {
  padding-left: 2.875rem;
}

.check-list ul li:before {
  background-color: #184181;
  height: 1.875rem;
  left: 0;
  top: 0;
  width: 1.875rem;
}

.check-list ul li:after {
  background-image: url(../img/check.svg);
  background-size: 1.125rem auto;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  height: 1.875rem;
  position: absolute;
  left: 0;
  top: 0.063rem;
  width: 1.875rem;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.flex.code * {
  text-align: center;
}

.flex.code iframe {
  border: 1px solid #929292;
  max-width: 70rem;
  margin: 2rem auto 0 auto;
  width: 100%;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/***** SPEAKERS VERSION *****/
.flex.text + .tiles.speakers {
  margin-top: calc((1.5rem + 2vw) * -1);
}

.tiles.speakers g-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.tiles.speakers tile-item {
  background-color: #04284A;
  border-radius: 0.5rem;
  box-sizing: border-box;
  display: block;
  margin-top: 6.125rem;
  position: relative;
}

section-group.navy .tiles.speakers tile-item {
  background: #C3E2FF;
}

.tiles.speakers tile-item h3 {
  margin-top: 0;
}

.tiles.speakers tile-item * {
  color: #FFFFFF;
}

section-group.navy .tiles.speakers tile-item * {
  color: #04284A;
}

.tiles.speakers tile-item figure {
  border-radius: 100%;
  display: block;
  height: 12.25rem;
  position: absolute;
  top: 0;
  left: 3.4vw;
  transform: translateY(-50%);
  width: 12.25rem;
}

.tiles.speakers .social {
  display: flex;
  flex-wrap: wrap;
  line-height: normal;
  margin: 1rem 0 0 0;
  padding: 0;
}

.tiles.speakers .social li {
  display: block;
}

.tiles.speakers .social li + li {
  margin-left: 0.75rem;
}

.tiles.speakers .social a {
  cursor: pointer;
  display: block;
  height: 1.375rem;
  opacity: 0.5;
  transition: opacity 250ms ease;
  width: 1.375rem;
}

.tiles.speakers .social a:hover {
  opacity: 1;
}

.tiles.speakers .social svg {
  display: block;
  fill: #FFFFFF;
  height: 1.375rem;
  width: 1.375rem;
}

section-group.navy .tiles.speakers .social svg {
  fill: #04284A;
}

@media (min-width: 1301px) {
  .tiles.speakers tile-item {
    padding: calc(6.125rem + 2.8vw) 2.8vw 2.8vw 2.8vw;
    margin-left: 5vw;
    width: calc((100% - 20.01vw) / 3);
  }
  .tiles.speakers tile-item:nth-child(3n) ~ tile-item {
    margin-top: calc(6.125rem + 5vw);
  }
}
@media (min-width: 800px) and (max-width: 1300px) {
  .tiles.speakers tile-item {
    padding: calc(6.125rem + 3.4vw) 3.4vw 3.4vw 3.4vw;
    margin-left: 5vw;
    width: calc((100% - 5.01vw) / 2);
  }
  .tiles.speakers tile-item:nth-child(odd) {
    margin-left: 0;
  }
  .tiles.speakers tile-item:nth-child(2n) ~ tile-item {
    margin-top: calc(6.125rem + 5vw);
  }
}
@media (max-width: 799px) {
  .tiles.speakers tile-item {
    margin-top: 5rem !important;
    padding: 6.875rem 1.875rem 1.875rem 1.875rem;
    margin-left: 0 !important;
    max-width: 24rem;
    margin-left: 5vw;
    width: 100%;
  }
  .tiles.speakers tile-item ~ tile-item {
    margin-top: 7.5rem !important;
  }
  .tiles.speakers tile-item figure {
    height: 10rem;
    left: 1.875rem;
    width: 10rem;
  }
}
@media (max-width: 479px) {
  .tiles.speakers tile-item {
    margin-top: 4rem !important;
    padding: 5.875rem 1.875rem 1.875rem 1.875rem;
  }
  .tiles.speakers tile-item ~ tile-item {
    margin-top: 6.5rem !important;
  }
  .tiles.speakers tile-item figure {
    height: 8rem;
    left: 1.875rem;
    width: 8rem;
  }
}
/***** IMAGES VERSION *****/
.flex.text + .tiles.images {
  margin-top: calc((1.5rem + 2vw) * -1);
}

.tiles.images g-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.tiles.images tile-item {
  display: block;
  position: relative;
}

.tiles.images tile-item h3 {
  margin-top: 2rem;
}

.tiles.images tile-item figure {
  border-radius: 0.25rem;
  display: block;
  height: 0;
  padding-bottom: 50%;
  width: 100%;
}

@media (min-width: 1301px) {
  .tiles.images tile-item {
    margin-left: 5vw;
    width: calc((100% - 20.01vw) / 3);
  }
  .tiles.images tile-item:nth-child(3n) ~ tile-item {
    margin-top: calc(6.125rem + 5vw);
  }
}
@media (min-width: 800px) and (max-width: 1300px) {
  .tiles.images tile-item {
    margin-left: 5vw;
    width: calc((100% - 5.01vw) / 2);
  }
  .tiles.images tile-item:nth-child(odd) {
    margin-left: 0;
  }
  .tiles.images tile-item:nth-child(2n) ~ tile-item {
    margin-top: calc(2.5rem + 5vw);
  }
}
@media (max-width: 799px) {
  .tiles.images tile-item {
    margin-top: 5rem !important;
    margin-left: 0 !important;
    max-width: 24rem;
    margin-left: 5vw;
    width: 100%;
  }
  .tiles.images tile-item ~ tile-item {
    margin-top: calc(2.5rem + 5vw) !important;
  }
}
@media (max-width: 479px) {
  .tiles.images tile-item {
    margin-top: 4rem !important;
  }
  .tiles.images tile-item ~ tile-item {
    margin-top: calc(2.5rem + 5vw) !important;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************ ERROR 404 PAGE ************************/
.e404 g-col {
  margin: 0 auto;
  max-width: 88.875rem;
  width: 100%;
}

.e404 g-col > * {
  max-width: 46.25rem;
}

.e404 a.btn {
  margin-top: 2rem;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.archive.event .posts {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1401px) {
  .archive.event .posts {
    margin-left: 6.6666666667%;
    width: calc(86.6666666667% - 24rem);
  }
  .archive.event .aside {
    margin-left: 6.6666666667%;
    max-width: 24rem;
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .archive.event .posts {
    width: calc(100% - 24rem);
  }
  .archive.event .aside {
    max-width: 24rem;
    width: 100%;
  }
}
@media (max-width: 935px) {
  .archive.event .posts,
  .archive.event .aside {
    max-width: none;
    width: 100%;
  }
  .archive.event .aside {
    display: flex;
    flex-wrap: wrap;
    margin-top: 4.5rem;
    width: 100%;
  }
}
/** TILE **/
.post-tile.event {
  display: block;
}

@media (min-width: 1100px) {
  .archive .post-tile.event {
    width: calc(50% - 0.76rem);
  }
  .archive .post-tile.event:nth-child(even) {
    margin-left: 1.5rem;
  }
  .archive .post-tile.event:nth-child(2n) ~ .post-tile.event {
    margin-top: 4.5rem;
  }
}
@media (max-width: 1099px) {
  .archive .post-tile.event {
    width: 100%;
  }
  .post-tile.event + .post-tile.event {
    margin-top: 4.5rem;
  }
}
.post-tile.event figure {
  height: 0;
  padding-bottom: 52.5%;
}

.post-tile.event figure span {
  background-color: #C1CD23;
  color: #04284A;
  font-weight: 500;
  line-height: 2.625rem;
  padding: 0 1rem;
  opacity: 0;
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 2;
}

.post-tile.event figure span:after {
  border-style: solid;
  border-width: 21px 0 21px 16px;
  border-color: transparent transparent transparent #C1CD23;
  content: "";
  height: 0;
  left: 100%;
  position: absolute;
  top: 0;
  width: 0;
}

.post-tile.event figure img {
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: transform 1s ease;
}

.post-tile.event:hover figure img {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
}

.post-tile.event figure span.events,
.post-tile.event figure span.webinars,
.post-tile.event figure span.trainings {
  opacity: 1;
}

.post-tile.event figure span.webinars {
  background-color: #269FB0;
  color: #FFFFFF;
}

.post-tile.event figure span.webinars:after {
  border-color: transparent transparent transparent #269FB0;
}

.post-tile.event figure span.trainings {
  background-color: #ED973B;
  color: #FFFFFF;
}

.post-tile.event figure span.trainings:after {
  border-color: transparent transparent transparent #ED973B;
}

.post-tile.event h2 {
  color: #354653;
  margin-top: 1.5rem;
  transition: color 250ms ease;
}

.post-tile.event:hover h2 {
  color: #269FB0;
}

.post-tile.event ul {
  display: block;
  list-style-type: none;
  margin: 1.375rem 0 0 0;
  padding: 0;
}

.post-tile.event li {
  display: block;
  min-height: 1.875rem;
}

.post-tile.event li + li {
  margin-top: 1.25rem;
}

.post-tile.event date {
  align-items: center;
  color: #354653;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 150%;
  min-height: 1.875rem;
  padding-left: 2.875rem;
  position: relative;
  text-transform: uppercase;
}

.post-tile.event date:before {
  background-image: url(../img/calendar.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  content: "";
  display: block;
  height: 1.875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
}

.post-tile.event time {
  color: #354653;
  display: block;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding-left: 2.875rem;
  position: relative;
}

.post-tile.event time:before {
  background-image: url(../img/clock.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  content: "";
  display: block;
  height: 1.875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
}

@media (max-width: 479px) {
  .post-tile.event ul,
  .post-tile.event ul li + li {
    margin-top: 1rem;
  }
  .post-tile.event + .post-tile.event {
    margin-top: 2.5rem;
  }
  .post-tile.event figure {
    padding-bottom: 62.5%;
  }
  .post-tile.event figure span {
    top: 1.875rem;
  }
}
/***** SIDEBAR CTA *****/
.archive.event cta-wrap {
  border-radius: 0.25rem;
  display: block;
  overflow: hidden;
  position: relative;
}

.archive.event cta-wrap figure {
  display: block;
  height: 0;
  padding-bottom: 45%;
}

.archive.event cta-wrap.button {
  background-color: #C1CD23;
}

.archive.event cta-wrap.button *:not(.btn):not(.btn > span) {
  color: #04284A;
}

.archive.event cta-wrap.click *:not(.btn):not(.btn > span) {
  color: #FFFFFF;
}

.archive.event cta-wrap text-content {
  display: block;
  padding: 1.875rem 2rem;
  position: relative;
}

.archive.event cta-wrap p {
  font-size: 1rem;
}

.archive.event cta-wrap.click text-content {
  padding: 1.875rem 5.375rem 1.875rem 2rem;
}

.archive.event cta-wrap .btn {
  margin-top: 1.5rem;
}

.archive.event cta-wrap strong {
  font-weight: 500;
}

.archive.event cta-wrap.click a {
  display: block;
  background-color: #04284A;
  transition: background-color 250ms ease;
}

.archive.event cta-wrap.click a:hover {
  background-color: #12356B;
}

.archive.event cta-wrap.click text-content span {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: background 250ms ease;
  width: 3.375rem;
}

.archive.event cta-wrap.click text-content span svg {
  stroke: #FFFFFF;
  transition: stroke 250ms ease;
}

.archive.event cta-wrap.click a:hover text-content span {
  background-color: #C1CD23;
}

.archive.event cta-wrap.click a:hover text-content span svg {
  stroke: #04284A;
}

@media (min-width: 936px) {
  .archive.event cta-wrap + cta-wrap {
    margin-top: 3.125rem;
  }
}
@media (min-width: 708px) and (max-width: 935px) {
  .archive.event cta-wrap {
    width: calc((100% - 1.876rem) / 2);
  }
  .archive.event cta-wrap:nth-child(even) {
    margin-left: 1.875rem;
  }
  .archive.event cta-wrap:nth-child(2n) ~ cta-wrap {
    margin-top: 1.875rem;
  }
  .archive.event cta-wrap.click text-content {
    padding: 1.875rem 5.25rem 1.875rem 1.875rem;
  }
  .archive.event cta-wrap.button text-content {
    padding: 1.875rem;
  }
  .archive.event cta-wrap a.btn {
    padding: 0 1.875rem;
  }
}
@media (max-width: 707px) {
  .archive.event cta-wrap {
    width: 100%;
  }
  .archive.event cta-wrap ~ cta-wrap {
    margin-top: 1.875rem;
  }
  .archive.event cta-wrap.click text-content {
    padding: 1.875rem 5.25rem 1.875rem 1.875rem;
  }
  .archive.event cta-wrap.button text-content {
    padding: 1.875rem;
  }
  .archive.event cta-wrap a.btn {
    padding: 0 1.875rem;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
.cta-bar {
  background-color: #04284A;
  display: block;
  padding: 0;
  position: sticky;
  top: 6.688rem;
  width: 100%;
  z-index: 5;
}

.cta-bar g-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .cta-bar g-col {
    margin: 0 13.3333333333%;
    width: 73.3333333333%;
  }
}
@media (max-width: 970px) {
  .cta-bar {
    top: 0;
  }
}
.cta-bar count-down {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  padding: 0.5rem 0;
  transition: opacity 1s ease;
}

.cta-bar count-down.visible {
  opacity: 1;
}

.cta-bar count-down ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cta-bar count-down li {
  color: #FFFFFF;
  display: block;
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 160%;
  padding: 0 1.5rem 0 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.cta-bar count-down li + li {
  padding: 0 1.5rem 0 1.625rem;
}

.cta-bar count-down li + li:before {
  background-color: #FFFFFF;
  content: "";
  opacity: 0.35;
  position: absolute;
  top: 0.125rem;
  left: 0;
  bottom: 0.125rem;
  width: 2px;
}

.cta-bar count-down li span {
  display: block;
  font-size: 1.5rem;
}

.cta-bar button {
  border: 0;
  background-color: #ED973B;
  color: #012F60;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.938rem;
  font-weight: 500;
  height: 100%;
  padding: 0 4.875rem 0 2.5rem;
  position: relative;
  text-transform: uppercase;
  transition: background-color 250ms ease, color 250ms ease;
}

.cta-bar button svg {
  fill: #012F60;
  height: 1.563rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 1.875rem;
}

.cta-bar button:hover {
  background-color: #C3E2FF;
  color: #012F60;
}

@media (max-width: 720px) {
  .cta-bar count-down {
    margin: 0 auto;
  }
  .cta-bar count-down li {
    font-size: 0.625rem;
  }
  .cta-bar count-down li span {
    font-size: 1rem;
  }
  .cta-bar count-down li + li {
    padding: 0 1rem 0 1.125rem;
  }
  .cta-bar button {
    border-radius: 0.25rem;
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    line-height: 4rem;
    height: auto;
  }
}
.single-event nav-trigger {
  bottom: 4rem;
}

.news.list .items a {
  background-color: #F1F1F1;
  display: block;
  position: relative;
}

.news.list a figure {
  background-size: cover !important;
  background-position: center !important;
  display: block;
  height: 0;
  margin: 0;
  width: 100%;
  transition: padding-bottom 350ms ease;
}

.news.list a date {
  background-color: #F1F1F1;
  color: #231E20;
  display: block;
  font-size: 1.125rem;
  padding: 12% 12% 0 12%;
}

.news.list a h3 {
  display: block;
  margin: 0;
  padding: 4% 12% 22% 12%;
  transition: color 350ms ease, padding-bottom 350ms ease;
}

.news.list a h3:before {
  bottom: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #E0E0E0 transparent;
  content: "";
  position: absolute;
  width: 0;
  right: 0;
  height: 0;
}

/* HOVER */
.news.list a:hover h3 {
  color: #01A7B8;
}

/*** RESPONSIVE ***/
@media (min-width: 1251px) {
  .news.list .items grid-column {
    width: 33.333%;
  }
  .news.list a figure {
    padding-bottom: 48%;
  }
  .news.list a:hover figure {
    padding-bottom: calc(48% + 1.25rem);
  }
  .news.list a:hover h3 {
    padding-bottom: 3.75rem;
  }
  /*.news.list .items grid-column:nth-child(7n) { width: 100%; }
  .news.list .items grid-column:nth-child(7n) figure { padding-bottom: 32%; }
  .news.list .items grid-column:nth-child(7n) a:hover figure { padding-bottom: calc(32% + 1.25rem); }*/
}
@media (min-width: 768px) and (max-width: 1250px) {
  .news.list .items grid-column {
    width: 50%;
  }
  .news.list a figure {
    padding-bottom: 48%;
  }
  .news.list a:hover figure {
    padding-bottom: calc(48% + 1.25rem);
  }
  .news.list a:hover h3 {
    padding-bottom: 3.75rem;
  }
  /*.news.list .items grid-column:nth-child(5n) { width: 100%; }
  .news.list .items grid-column:nth-child(5n) figure { padding-bottom: 32%; }
  .news.list .items grid-column:nth-child(5n) a:hover figure { padding-bottom: calc(32% + 1.25rem); }*/
}
@media (min-width: 971px) and (max-width: 1250px) {
  .news.list a:hover figure {
    padding-bottom: 53%;
  }
}
@media (min-width: 841px) {
  .news.list a date {
    padding: 3.5rem 3.75rem 0 3.75rem;
  }
  .news.list a h3 {
    font-size: 1.5rem;
    line-height: 150%;
    padding: 1.5rem 3.75rem 5rem 3.75rem;
  }
}
@media (max-width: 840px) {
  .news.list a h3 {
    font-size: 1.5rem;
    padding: 1rem 2.25rem 1.875rem 2.25rem;
  }
  .news.list a date {
    font-size: 1.25rem;
    padding: 2.25rem 2.25rem 0 2.25rem;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .news.list a figure {
    padding-bottom: 58%;
  }
  .news.list a:hover figure {
    padding-bottom: 63%;
  }
}
@media (min-width: 469px) and (max-width: 767px) {
  .news.list .items grid-column {
    width: 100%;
  }
  .news.list a figure {
    padding-bottom: 48%;
  }
  .news.list .items grid-column ~ grid-column {
    margin-top: 2.376rem;
  }
}
@media (max-width: 468px) {
  .news.list .items grid-column {
    width: 100%;
  }
  .news.list .items grid-column ~ grid-column {
    margin-top: 2.376rem;
  }
  .news.list a h3 {
    font-size: 1.425rem;
    padding: 1rem 1.875rem 1.625rem 1.875rem;
  }
  .news.list a date {
    font-size: 1.125rem;
    padding: 1.875rem 1.875rem 0 1.875rem;
  }
  .news.list a figure {
    padding-bottom: 62.5%;
  }
}
@media (min-width: 1621px) {
  .news.list.main grid-row.items {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .news.list.main grid-row.items {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .news.list.main grid-row.items {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .news.list.main grid-row.items {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 431px) {
  .news.list h2 {
    padding-right: 12rem;
  }
  .news.list h2 + a {
    position: absolute;
    top: 50%;
    right: 1.125rem;
    transform: translateY(-50%);
  }
}
@media (max-width: 430px) {
  .news.list h2 + a {
    display: table;
    margin: 1rem 0 0 0;
  }
}
@media (min-width: 1621px) {
  .news.list.latest grid-row:first-of-type {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .news.list.latest grid-row:first-of-type {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .news.list.latest grid-row:first-of-type {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .news.list.latest grid-row:first-of-type {
    margin-bottom: 2.5rem;
  }
}
/********** GENERAL - CONTENT INTRO **********/
@media (min-width: 1621px) {
  .content_intro {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .content_intro {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .content_intro {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .content_intro {
    margin-bottom: 2.5rem;
  }
}
.loading_more {
  display: block;
  height: 8rem;
  opacity: 1;
  overflow: hidden;
  padding-bottom: 2px;
  transition: height 350ms ease, opacity 350ms ease;
}

.loading_more.hidden {
  opacity: 0;
  height: 0;
}

loading-animation {
  display: table;
  height: 10px;
  margin: 0 auto 3.75rem auto;
  opacity: 0;
  position: relative;
  width: 72px;
}

loading-animation.visible {
  opacity: 1;
}

a.btn.loadmore {
  opacity: 0;
}

a.btn.loadmore.visible {
  opacity: 1;
}

loading-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #012F5F;
  border-radius: 50%;
  float: left;
  margin: 0 5px;
  transform: scale(0);
  animation: loading_dot 1000ms ease infinite 0ms;
}

loading-dot:nth-child(2) {
  animation: loading_dot 1000ms ease infinite 300ms;
}

loading-dot:nth-child(3) {
  animation: loading_dot 1000ms ease infinite 600ms;
}

@-webkit-keyframes loading_dot {
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading_dot {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 468px) {
  loading-animation {
    margin-bottom: 1.875rem;
  }
}
/********** PAGE LAYOUT **********/
.news no-results {
  text-align: center;
}

.news no-results h2 {
  padding-right: 0 !important;
}

.news .loadmore {
  display: table;
  margin: 0 auto;
}

body.news .partners {
  padding-top: 0 !important;
}

body.news .news.list.small {
  padding-top: 0 !important;
}

/***** NEWS MAIN LIST *****/
@media (min-width: 1251px) {
  .news.list.main .items grid-column:nth-child(3n) ~ grid-column {
    margin-top: 2.356rem;
  }
}
@media (min-width: 769px) and (max-width: 1250px) {
  .news.list.main .items grid-column:nth-child(2n) ~ grid-column {
    margin-top: 2.356rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .news.list.main .items grid-column ~ grid-column {
    margin-top: 2.356rem;
  }
}
@media (max-width: 468px) {
  .news.list.main .items grid-column ~ grid-column {
    margin-top: 2.356rem;
  }
}
/***** NEWS STORY DETAIL *****/
.news.story_title {
  background-color: #000;
  display: block;
  position: relative;
}

.news.story_title > figure {
  background-size: cover !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0.5;
  z-index: 1;
}

.news.story_title grid-container {
  position: absolute;
  bottom: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.news.story_title grid-column {
  visibility: hidden;
}

.news.story_title date {
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 300;
}

.news.story_title h1 {
  color: #FFF;
  font-size: 2.125rem;
  line-height: 3.188rem;
}

/***** AUTHOR *****/
post-author {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  min-height: 5.125rem;
  padding-left: 7.125rem;
  position: relative;
  width: 100%;
  z-index: 10;
}

post-author > figure {
  border-radius: 50%;
  display: block;
  float: left;
  height: 5.125rem;
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: translate3d(0, 0, 0);
  top: 0;
  left: 0;
  width: 5.125rem;
}

post-author img {
  display: block;
  width: 101%;
}

post-author text-content {
  color: #FFF;
  display: block;
  position: relative;
}

post-author text-content strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 100%;
  white-space: nowrap;
}

post-author text-content strong ~ span {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

post-author text-content strong + span {
  font-weight: 500;
}

/***** POST CONTENT *****/
.news.story_content grid-row {
  position: relative;
}

.news.story_content grid-row:after {
  background-color: #ED973B;
  content: "";
  position: absolute;
  left: 1.188rem;
  right: 1.188rem;
  bottom: 0;
  height: 2px;
}

figure:not(.uncropped):not(.wp-caption) img.fix-left-right-image {
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.wrapped-container {
  display: flex;
}
.wrapped-container .wp-block-image .alignleft,
.wrapped-container .wp-block-image .alignright {
  flex-direction: column;
}
.wrapped-container .wp-block-image .alignleft img,
.wrapped-container .wp-block-image .alignright img {
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
  margin: 0;
}
.wrapped-container > p {
  margin-top: 0;
}

@media (max-width: 768px) {
  .news.story_content grid-row:after {
    left: 0.938rem;
    right: 0.938rem;
  }
}
@media (min-width: 1621px) {
  .news.story_content grid-column > * {
    margin-left: 11.08% !important;
    width: 88.92%;
  }
  .news.story_content grid-column > ul:not(.social) {
    margin-left: 11.08% !important;
  }
  .news.story_content grid-column > blockquote,
  .news.story_content grid-column > content-embed {
    margin-left: 0%;
    width: 100%;
  }
}
@media (min-width: 1121px) and (max-width: 1620px) {
  .news.story_content grid-column > * {
    margin-left: 9.37%;
    width: 90.63%;
  }
  .news.story_content grid-column > ul:not(.social) {
    margin-left: 9.37%;
  }
  .news.story_content grid-column > blockquote,
  .news.story_content grid-column > content-embed {
    margin-left: 0%;
    width: 100%;
  }
}
@media (min-width: 1621px) {
  .news.story_content grid-row {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .news.story_content grid-row {
    padding-bottom: 7.4%;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .news.story_content grid-row {
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .news.story_content grid-row {
    padding-bottom: 2.5rem;
  }
}
.news.story_content + .news.list.smaller {
  padding-top: 0;
}

@media (min-width: 971px) {
  .news.story_title {
    height: 100vh;
  }
}
content-embed {
  visibility: hidden;
}

/***** SOCIAL WIDGET *****/
social-widget {
  position: absolute;
  bottom: 2.376rem;
  right: 2.376rem;
  z-index: 100;
}

social-widget svg {
  fill: #FFF;
}

social-widget widget-icon {
  background-color: rgba(194, 205, 35, 0);
  border: 1px solid #FFF;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 3.125rem;
  position: relative;
  transition: background-color 350ms ease, border 350ms ease;
  width: 3.125rem;
  z-index: 1;
}

social-widget widget-icon svg {
  height: 1.5rem;
  left: calc(50% - 2px);
  position: absolute;
  top: 50%;
  transition: fill 350ms ease;
  transform: translateX(-50%) translateY(-50%);
  width: 1.5rem;
}

social-widget.active widget-icon {
  background-color: #c2cd23;
  border: 1px solid #C2CD23;
}

social-widget ul {
  height: 3.125rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 3.125rem;
  z-index: -1;
}

social-widget ul li {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 350ms ease, opacity 350ms ease;
}

social-widget ul svg {
  display: block;
  height: 1.75rem;
  transform: scale(1);
  transition: transform 350ms ease;
  width: 1.75rem;
}

social-widget ul li {
  transform: translateX(-50%) translateY(-50%);
}

social-widget.active ul li {
  opacity: 1;
}

social-widget.active widget-icon svg {
  fill: #012F5F;
}

social-widget ul li:hover svg {
  transform: scale(1.2);
}

.single .story_content a {
  display: inline;
}

@media (min-width: 769px) {
  social-widget.active ul li:first-child {
    transform: translateX(-50%) translateY(-250%);
  }
  social-widget.active ul li:first-child + li {
    transform: translateX(-210%) translateY(-210%);
  }
  social-widget.active ul li:first-child + li + li {
    transform: translateX(-250%) translateY(-50%);
  }
}
@media (max-width: 768px) {
  social-widget {
    bottom: auto;
    top: 1.875rem;
    right: 1.875rem;
  }
  social-widget.active ul li:first-child {
    transform: translateX(-50%) translateY(160%);
  }
  social-widget.active ul li:first-child + li {
    transform: translateX(-210%) translateY(120%);
  }
  social-widget.active ul li:first-child + li + li {
    transform: translateX(-250%) translateY(-50%);
  }
}
.story_content grid-column > *:first-child {
  margin-top: 0;
}

.story_content img {
  height: auto !important;
}

.story_content blockquote * {
  color: #01A7B8;
}

.story_content blockquote {
  margin: 5.5rem 0;
}

.story_content content-embed {
  display: block;
  width: 100%;
}

.story_content content-embed > img,
.story_content twitter-embed {
  display: block;
  margin: 0 auto;
  position: relative;
}

.story_content content-embed.image {
  height: auto !important;
  padding: 0 !important;
}

.story_content .twitter-tweet {
  margin: 0 auto;
  min-width: 200px !important;
  max-width: 500px !important;
  width: 100% !important;
}

.story_content blockquote a:before {
  bottom: 2px;
  height: 2px;
  left: 0;
  right: 0;
}

.story_content blockquote a:hover {
  color: #012F5F;
}

.story_content blockquote a:hover:before {
  background-color: #012F5F;
}

.story_content content-embed {
  display: block;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}

.story_content content-embed > *:not(kpi-item) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story_content a {
  color: #01A7B8;
  display: inline-block;
  position: relative;
  transition: color 350ms ease;
}

.story_content a:before {
  background-color: #01A7B8;
  content: "";
  height: 1px;
  opacity: 0.5;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  right: 50%;
  transition: background-color 350ms ease, left 350ms ease, right 350ms ease;
}

.story_content a:hover:before {
  left: 0;
  right: 0;
}

@media (min-width: 769px) {
  .story_content h1 {
    font-size: 2.5rem;
  }
  .story_content h2 {
    font-size: 2.063rem;
  }
  .story_content h3 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .story_content h1 {
    font-size: 2rem;
  }
  .story_content h2 {
    font-size: 1.75rem;
  }
  .story_content h3 {
    font-size: 1.5rem;
  }
}
.story_content h4,
.story_content h5,
.story_content h6 {
  font-weight: 500;
}

.story_content * + h1,
.story_content * + h2,
.story_content * + h3,
.story_content * + h4,
.story_content * + h5,
.story_content * + h6 {
  margin-top: 3rem;
}

.story_content h1 a:before,
.story_content h2 a:before,
.story_content h3 a:before,
.story_content h4 a:before,
.story_content h5 a:before,
.story_content h6 a:before {
  bottom: 2px;
  height: 2px;
}

.story_content ul:not(.social) {
  list-style-type: none;
  margin: 1.875rem 0 0 0;
  padding: 0;
}

.story_content ul:not(.social) li {
  display: block;
  padding-left: 1.5rem;
  position: relative;
}

.story_content ul:not(.social) li + li {
  margin-top: 0.938rem;
}

.story_content ul:not(.social) li:before {
  content: "•";
  color: #C2CD23;
  font-size: 175%;
  position: absolute;
  top: 0;
  left: 0;
}

.story_content blockquote,
.story_content content-embed,
.story_content twitter-embed {
  margin: 3rem 0;
}

.story_content content-embed.kpi {
  display: table;
  height: auto;
  padding: 0;
  width: 100%;
}

.story_content content-embed.kpi kpi-item {
  display: block;
  float: left;
  width: calc(50% - 1.188rem);
  text-align: center;
}

.story_content content-embed.kpi kpi-item svg {
  display: block;
  margin: 0 auto 1.25rem auto;
  height: 6rem;
  width: 6rem;
}

.story_content content-embed.kpi kpi-item {
  color: #A7A9AD;
  font-weight: 500;
  text-transform: uppercase;
}

.story_content content-embed.kpi kpi-item {
  font-size: 1.375rem;
}

@media (min-width: 1621px) {
  .story_content content-embed.kpi kpi-item:nth-child(even) {
    margin-left: 2.236rem;
  }
  .story_content content-embed.kpi kpi-item:nth-child(2n) ~ kpi-item {
    margin-top: 5.5rem;
  }
}
@media (min-width: 1121px) and (max-width: 1620px) {
  .story_content content-embed.kpi kpi-item:nth-child(2n) ~ kpi-item {
    margin-top: 4.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1120px) {
  .story_content content-embed.kpi kpi-item:nth-child(even) {
    margin-left: 2.236rem;
  }
  .story_content content-embed.kpi kpi-item:nth-child(2n) ~ kpi-item {
    margin-top: 4rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .story_content content-embed.kpi kpi-item:nth-child(even) {
    margin-left: 2.236rem;
  }
  .story_content content-embed.kpi kpi-item:nth-child(2n) ~ kpi-item {
    margin-top: 3.5rem;
  }
}
@media (max-width: 590px) {
  .story_content content-embed.kpi kpi-item {
    float: none;
    margin: 0 auto 0 auto !important;
    max-width: 25rem;
    width: 100%;
  }
  .story_content content-embed.kpi kpi-item + kpi-item {
    margin: 3.5rem auto 0 auto !important;
  }
}
@media (max-width: 468px) {
  .story_content twitter-embed {
    max-width: 260px;
  }
  .story_content content-embed.kpi kpi-item:nth-child(2n) ~ kpi-item {
    margin-top: 2.5rem;
  }
  .story_content content-embed.kpi kpi-item {
    margin: 0 auto 0 auto !important;
  }
  .story_content content-embed.kpi kpi-item + kpi-item {
    margin: 2.5rem auto 0 auto !important;
  }
}
/********** PAGE LAYOUT **********/
.partners.list.main a.btn.arrow strong {
  font-weight: normal;
}

@media (min-width: 1121px) {
  .partners.list.main a.btn.arrow {
    display: table;
    margin: 0 0 0 auto;
    opacity: 0.5;
  }
}
@media (max-width: 1120px) {
  .partners.list.main a.btn.arrow {
    display: table;
    margin: 2rem 0 0 0;
    opacity: 0.5;
  }
}
@media (max-width: 480px) {
  .partners.list.main a.btn.arrow strong {
    display: none;
  }
}
/********** LIST VIEW **********/
.partners .loadmore {
  display: table;
  margin: 0 auto;
}

.partners no-results {
  text-align: center;
}

.partners no-results h2 {
  padding-right: 0 !important;
}

/********** DETAIL VIEW **********/
.partners.title {
  background-color: #000;
  display: block;
  overflow: hidden;
  position: relative;
}

.partners.title figure {
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0.5;
  z-index: 1;
}

.partners.title grid-container {
  position: relative;
  z-index: 10;
}

.partners.title grid-column {
  position: static;
}

.partners.title h1 {
  color: #FFF;
  margin: 0 !important;
}

.partners.title img {
  border-radius: 50%;
  left: 3.563rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

@media (min-width: 1621px) {
  .partners.title {
    padding: 25.25rem 0 6.688rem 0;
  }
  .partners.title img {
    max-width: 8.875rem;
  }
}
@media (min-width: 1221px) and (max-width: 1620px) {
  .partners.title {
    padding: 25% 0 8.25% 0;
  }
  .partners.title img {
    max-width: 7.75rem;
  }
}
@media (min-width: 971px) and (max-width: 1220px) {
  .partners.title {
    padding: 20rem 0 5.063rem 0;
  }
  .partners.title img {
    max-width: 6rem;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .partners.title {
    padding: 17rem 0 4rem 0;
  }
  .partners.title img {
    max-width: 5rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .partners.title {
    padding: 12rem 0 3.5rem 0;
  }
  .partners.title img {
    left: 1.875rem;
    max-width: 6rem;
  }
  .partners.title h1 {
    padding-left: 7.875rem;
  }
}
@media (max-width: 468px) {
  .partners.title {
    padding: 11rem 0 3rem 0;
  }
  .partners.title img {
    left: 1.875rem;
    max-width: 4.5rem;
  }
  .partners.title h1 {
    padding-left: 6rem;
  }
}
@media (min-width: 1621px) {
  .partners.detail .story_content {
    width: calc(80% - 25.625rem);
    margin-left: 6.6666666667%;
  }
  .partners.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
  .partners.detail .story_content > * {
    margin-left: 11.08%;
    width: 88.92%;
  }
  .partners.detail .story_content > blockquote,
  .partners.detail .story_content > content-embed {
    margin-left: 0%;
    width: 100%;
  }
}
@media (min-width: 1321px) and (max-width: 1620px) {
  .partners.detail .story_content {
    width: calc(80% - 25.625rem);
    margin-left: 6.6666666667%;
  }
  .partners.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
}
@media (min-width: 971px) and (max-width: 1320px) {
  .partners.detail .story_content {
    width: calc(93.3333333333% - 25.625rem);
  }
  .partners.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
}
@media (max-width: 970px) {
  .partners.detail .story_content a.btn {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .partners.detail .story_content,
  .partners.detail .sidebar {
    width: 86.6666666667%;
    margin-left: 6.6666666667%;
  }
}
/* */
/***** SIDEBAR *****/
shadow-box.contact_details ul {
  margin-top: 1.5rem !important;
}

shadow-box.contact_details ul.no-margin {
  margin-top: 0 !important;
}

shadow-box.contact_details ul li {
  padding-left: 0;
  line-height: 150%;
  margin-top: 0 !important;
}

shadow-box.contact_details ul li a {
  color: #231E20;
  font-size: 0.938rem;
  margin-top: 0;
}
shadow-box.contact_details ul li a.highlight {
  color: #01A7B8;
  display: table;
  line-height: 175%;
  margin-top: 2rem;
  position: relative;
  transition: color 350ms ease;
}

shadow-box.contact_details ul li a:before {
  background-color: #231E20;
}

@media (min-width: 971px) {
  floating-sidebar {
    width: 23.25rem;
  }
}
@media (max-width: 970px) {
  floating-sidebar {
    margin-left: auto;
    margin-right: auto;
  }
}
/********** PAGE LAYOUT **********/
body.careers .partners {
  padding-top: 0 !important;
}

body.careers .story_content {
  padding-bottom: 0 !important;
}

/********** LIST VIEW **********/
@media (min-width: 1621px) {
  .careers .filter {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 971px) and (max-width: 1620px) {
  .careers .filter {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .careers .filter {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .careers .filter {
    margin: 1.875rem 0 0 0;
  }
}
@media (max-width: 468px) {
  .careers .filter {
    margin: 0;
  }
}
.careers .filter a[data-filter="*"]:before {
  background-color: #979797;
}

.careers .filter a[data-filter=".fulltime"]:before {
  background-color: #ED973B;
}

.careers .filter a[data-filter=".consultancy"]:before {
  background-color: #C2CD23;
}

career-list {
  display: block;
  margin: 0 auto;
  position: relative;
}

job-listing {
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 0 1.188rem;
  width: 50%;
}

job-listing listing-inner {
  background-color: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  display: block;
  padding: 3.125rem 5rem;
  position: relative;
}

job-listing listing-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  z-index: 1;
}

job-listing.fulltime listing-inner:before {
  background-color: #ED973B;
}

job-listing.consultancy listing-inner:before {
  background-color: #C2CD23;
}

job-listing h2,
job-listing h3 {
  font-size: 2.063rem;
  line-height: 135%;
  margin-bottom: 5.625rem;
}

job-listing h2 a,
job-listing h3 a {
  color: #231E20;
  transition: color 350ms ease;
}

job-listing h2 a:hover,
job-listing h3 a:hover {
  color: #01A7B8;
}

job-listing ul {
  list-style-type: none;
  margin: 0 0 3.75rem 0;
  padding: 0;
}

job-listing li {
  display: block;
  padding-left: 3.75rem;
  position: relative;
  line-height: 1.75rem;
}

job-listing li img {
  display: block;
  height: 1.75rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
}

job-listing li + li {
  margin-top: 1.5rem;
}

job-listing a.btn {
  display: table;
  margin: 0 0 0 auto;
}

@media (min-width: 1321px) {
  career-list {
    width: 73.3333333333%;
  }
}
@media (min-width: 1200px) and (max-width: 1320px) {
  career-list {
    width: 85%;
  }
}
@media (max-width: 1199px) {
  career-list {
    width: 100%;
  }
}
@media (min-width: 850px) and (max-width: 1000px) {
  job-listing listing-inner {
    padding: 2.25rem 2.5rem 2.5rem 2.75rem;
  }
}
@media (min-width: 850px) {
  job-listing {
    margin-top: 3.75rem;
  }
}
@media (max-width: 849px) {
  job-listing {
    margin-top: 2.356rem;
  }
  job-listing {
    width: 100%;
  }
  job-listing listing-inner {
    padding: 2.25rem 1.875rem 2.25rem 2.75rem;
  }
}
@media (min-width: 500px) and (max-width: 999px) {
  job-listing h2,
  job-listing h3 {
    margin-bottom: 4.125rem;
  }
  job-listing ul {
    margin: 0 0 2.25rem 0;
  }
  job-listing a.btn {
    margin: 0 !important;
  }
}
@media (min-width: 500px) {
  job-listing a.btn span {
    display: inline;
  }
}
@media (max-width: 499px) {
  job-listing h2,
  job-listing h3 {
    font-size: 1.75rem;
    margin-bottom: 2.75rem;
  }
  job-listing ul {
    margin: 0 0 2.75rem 0;
  }
  job-listing li + li {
    margin-top: 1rem;
  }
  job-listing a.btn {
    margin: 0 !important;
  }
  job-listing a.btn span {
    display: none;
  }
}
/********** CAREERS DETAIL **********/
.careers.detail strong.details {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 2.313rem;
  margin: 2.375rem 0 2rem 0;
}

.careers.detail strong.details + * {
  margin-top: 0 !important;
}

.careers.detail strong.details + .btn {
  margin-top: 0.5rem !important;
}

@media (max-width: 970px) {
  .careers.detail strong.details + .btn {
    display: table !important;
  }
}
.careers.detail a.btn.fill.blue {
  line-height: 4.375rem;
  height: 4.375rem;
  margin-top: 5.688rem;
  max-width: 25rem;
  padding: 0;
  width: 100%;
}

.careers.detail a.btn.fill.blue span {
  line-height: 4.375rem;
  height: 4.375rem;
  text-align: center;
}

@media (min-width: 1621px) {
  .careers.detail .story_content {
    width: calc(73.3333333334% - 25.625rem);
    margin-left: 13.3333333333%;
  }
  .careers.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
}
@media (min-width: 1321px) and (max-width: 1620px) {
  .careers.detail .story_content {
    width: calc(80% - 25.625rem);
    margin-left: 6.6666666667%;
  }
  .careers.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
}
@media (min-width: 971px) and (max-width: 1320px) {
  .careers.detail .story_content {
    width: calc(93.3333333333% - 25.625rem);
  }
  .careers.detail .sidebar {
    width: 25.625rem;
    margin-left: 6.6666666667%;
  }
}
@media (max-width: 970px) {
  .careers.detail .story_content a.btn {
    display: none;
  }
  .careers.detail .sidebar {
    margin-top: 5rem;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .careers.detail .story_content,
  .careers.detail .sidebar {
    width: 86.6666666667%;
    margin-left: 6.6666666667%;
  }
}
@media (max-width: 468px) {
  .careers.detail .sidebar {
    margin-top: 2.5rem;
  }
}
/********** OTHER CAREERS **********/
.careers.list.other grid-column h2 {
  text-align: center;
}

@media (min-width: 1621px) {
  .careers.list.other grid-row:first-of-type {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .careers.list.other grid-row:first-of-type {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .careers.list.other grid-row:first-of-type {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .careers.list.other grid-row:first-of-type {
    margin-bottom: 2.5rem;
  }
}
/********** SIDEBAR **********/
@media (min-width: 971px) {
  floating-sidebar {
    width: 23.25rem;
  }
}
@media (max-width: 970px) {
  floating-sidebar {
    margin-left: auto;
    margin-right: auto;
  }
}
/********** REVEAL **********/
/********** NO RESULTS **********/
no-results {
  display: none;
  margin-top: 3.75rem;
  text-align: center;
}

no-results a.btn {
  display: table;
  margin: 2.5rem auto 0 auto;
}

/********** PAGE LAYOUT **********/
.success-stories no-results {
  text-align: center;
}

.success-stories no-results h2 {
  padding-right: 0 !important;
}

.success-stories .loadmore {
  display: table;
  margin: 0 auto;
}

/********** SEARCH / FILTER **********/
.success-stories.search_filter {
  z-index: 2;
}

/*** SEARCH / FILTER ***/
search-filter {
  display: table;
  height: 4.375rem;
  margin: 0 0 0 auto;
  max-width: 26.25rem;
  position: relative;
  width: 100%;
}

@media (min-width: 769px) and (max-width: 1120px) {
  search-filter {
    margin: 2.5rem 0 0 0;
  }
}
@media (min-width: 1621px) {
  .search_filter grid-row:last-of-type {
    margin-bottom: -2rem;
    padding-top: 5.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .search_filter grid-row:last-of-type {
    margin-bottom: -1.5rem;
    padding-top: 7.4%;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  search-filter {
    margin: 2.5rem 0 0 0;
  }
  .search_filter grid-row:last-of-type {
    margin-bottom: -1rem;
    padding-top: 3rem;
  }
}
@media (max-width: 468px) {
  search-filter {
    margin: 2.5rem 0 0 0;
  }
  .search_filter grid-row:last-of-type {
    margin-bottom: 0;
    padding-top: 2rem;
  }
}
/* SEARCH */
search-field {
  height: 4.375rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 4.375rem;
  transition: width 350ms ease;
  z-index: 2;
}

search-field.search {
  width: 100%;
}

search-field.search #search_btn {
  right: 4.25rem;
}

search-field.search #reset_btn {
  opacity: 1;
  transition: opacity 350ms ease 350ms;
}

search-field #search_btn:hover svg,
search-field #reset_btn:hover svg {
  opacity: 0.8;
}

search-field input {
  cursor: text;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

search-field #search_btn {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  transition: right 350ms ease;
  z-index: 2;
}

search-field #search_btn svg {
  fill: #042849;
  height: 1.375rem;
  width: 1.375rem;
  opacity: 0.35;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: opacity 350ms ease;
}

search-field #reset_btn {
  cursor: pointer;
  display: block;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity 350ms ease;
  z-index: 1;
}

search-field #reset_btn:before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.5rem;
  transform: translateY(-50%);
}

search-field #reset_btn svg {
  fill: #042849;
  height: 1.125rem;
  width: 1.125rem;
  opacity: 0.35;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: opacity 350ms ease;
}

search-field svg {
  opacity: 0.35;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  transition: opacity 350ms ease;
}

@media (min-width: 1025px) {
  search-field input {
    border-radius: 2.1875rem;
    box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.15);
    height: 4.375rem;
    line-height: 4.375rem;
    padding: 0 2.1875rem;
  }
  search-field label {
    height: 4.375rem;
    line-height: 4.375rem;
    width: 4.375rem;
  }
  search-field svg {
    height: 2.063rem;
    width: 2.063rem;
  }
}
@media (max-width: 1024px) {
  search-field.search #search_btn {
    right: 3.5rem;
  }
  search-field {
    margin: 0.25rem 0 0 0;
    height: 3.5rem;
    width: 3.5rem;
  }
  search-field + filter-options {
    opacity: 1;
    transition: opacity 350ms ease;
  }
  search-field.search + filter-options {
    opacity: 0;
  }
  search-field input {
    border-radius: 2.1875rem;
    box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.15);
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 1.75rem;
  }
  search-field label {
    height: 3.5rem;
    line-height: 3.5rem;
    width: 3.5rem;
  }
  search-field svg {
    height: 2.063rem;
    width: 2.063rem;
  }
}
/** FILTER **/
filter-options {
  display: block;
  padding-left: 5.125rem;
  position: relative;
  z-index: 1;
}

filter-options select-wrapper {
  display: block;
  float: none;
  margin-top: 0.625rem;
  padding: 0 0.75rem;
  box-sizing: border-box;
  width: 100%;
}

filter-options psuedo-select {
  width: 100% !important;
}

@media (max-width: 1024px) {
  filter-options select-wrapper psuedo-select {
    display: none;
  }
  filter-options select-wrapper select {
    border-radius: 0.25rem;
    border: 1px solid #CCC;
    display: block !important;
    height: 3.125rem;
    line-height: 3.125rem;
    padding: 0 1rem;
    width: 100%;
  }
}
/********** LIST VIEW **********/
@media (min-width: 1121px) {
  .success-stories.list content-list {
    display: table;
    width: 86.6666666667%;
    margin: 0 auto;
  }
}
.success-stories.list .items a {
  box-sizing: border-box;
  display: block;
  position: relative;
  transition: padding 350ms ease;
}

.success-stories.list .items a figure {
  background-size: cover !important;
  background-position: center !important;
  display: block;
  height: 0;
  margin: 0;
  position: relative;
  transition: padding 350ms ease;
}

.success-stories.list .items a h3 {
  font-size: 2.313rem;
  margin-top: 2.5rem;
  transition: color 350ms ease;
}

.success-stories.list .items a h3 + span {
  color: #231E20;
  display: block;
  font-size: 1.75rem;
  margin: 1.5rem 0 0 0;
}

.success-stories.list .items a text-content p:first-of-type {
  margin-top: 2.125rem;
}

.success-stories.list .items a figure {
  padding-bottom: 50%;
}

.success-stories.list .items a h3 {
  color: #231E20;
}

/** HOVER **/
.success-stories.list .items a:hover {
  padding-bottom: 4.438rem;
}

.success-stories.list .items a:hover figure {
  padding-bottom: calc(50% + 1.5rem);
}

.success-stories.list .items a:hover h3 {
  color: #01A7B8;
}

/** RESPONSIVE **/
@media (min-width: 1621px) {
  .success-stories.list .items a {
    padding-bottom: 5.938rem;
  }
  .success-stories.list .items grid-column {
    width: 50%;
  }
  .success-stories.list .items grid-column:nth-child(5n) {
    width: 100%;
  }
  .success-stories.list .items grid-column:nth-child(5n) figure {
    padding-bottom: 32.5%;
  }
  .success-stories.list .items grid-column:nth-child(5n) a:hover figure {
    padding-bottom: calc(32.5% + 1.5rem);
  }
  .success-stories.list .items grid-column:nth-child(5n) item-content {
    display: table;
    width: 100%;
  }
  .success-stories.list .items grid-column:nth-child(5n) title-content {
    display: block;
    float: left;
    margin-left: 6.6666666667%;
    width: 40%;
  }
  .success-stories.list .items grid-column:nth-child(5n) text-content {
    display: block;
    float: left;
    margin-left: 6.6666666667%;
    width: 40%;
    padding-top: 0.375rem;
  }
}
@media (min-width: 971px) and (max-width: 1620px) {
  .success-stories.list .items a {
    padding-bottom: 4.5rem;
  }
  .success-stories.list .items a h3 {
    font-size: 1.938rem;
  }
  .success-stories.list .items a h3 + span {
    font-size: 1.625rem;
  }
  .success-stories.list .items grid-column {
    width: 50%;
  }
  .success-stories.list .items grid-column:nth-child(5n) {
    width: 100%;
  }
  .success-stories.list .items grid-column:nth-child(5n) item-content {
    display: table;
    width: 100%;
  }
  .success-stories.list .items grid-column:nth-child(5n) title-content {
    display: block;
    float: left;
    width: 40%;
    padding-right: 1.875rem;
    box-sizing: border-box;
  }
  .success-stories.list .items grid-column:nth-child(5n) text-content {
    display: block;
    float: left;
    width: 53.3333333333%;
    padding-top: 0.375rem;
  }
}
@media (max-width: 970px) {
  .success-stories.list .items a {
    padding-bottom: 3.25rem;
  }
  .success-stories.list .items a h3 {
    font-size: 1.625rem;
  }
  .success-stories.list .items a h3 + span {
    font-size: 1.375rem;
  }
}
@media (min-width: 1621px) {
  .success-stories.list.main grid-row:first-of-type {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .success-stories.list.main grid-row:first-of-type {
    padding-bottom: 7.4%;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .success-stories.list.main grid-row:first-of-type {
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .success-stories.list.main grid-row:first-of-type {
    padding-bottom: 2.5rem;
  }
}
/********** DETAIL VIEW **********/
.success-stories.title {
  background-color: #000;
  display: block;
  height: 100%;
  max-height: 1440px;
  position: relative;
  box-sizing: border-box;
}

.success-stories.title figure {
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0.5;
  z-index: 1;
}

.success-stories.title grid-container {
  position: absolute;
  bottom: 6.25rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

.success-stories.title h1 {
  color: #FFF;
  font-size: 2.75rem;
  line-height: 3.188rem;
  margin: 0 !important;
}

.success-stories.title span {
  color: #FFF;
  display: block;
  font-size: 1.75rem;
  line-height: 3.125rem;
  margin: 1.625rem 0 0 0 !important;
}

@media (min-width: 1621px) {
  .success-stories.title {
    padding: 21.25rem 0 6.688rem 0;
  }
}
@media (min-width: 1221px) and (max-width: 1620px) {
  .success-stories.title {
    padding: 21% 0 8.25% 0;
  }
}
@media (min-width: 971px) and (max-width: 1220px) {
  .success-stories.title {
    padding: 16rem 0 5.063rem 0;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  .success-stories.title {
    padding: 70% 0 0 0;
  }
}
@media (max-width: 768px) {
  .success-stories.title span {
    font-size: 1.375rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .success-stories.title {
    max-height: 550px;
    padding: 12rem 0 3.5rem 0;
  }
  .success-stories.title grid-container {
    bottom: 3.75rem;
  }
  .success-stories.title h1 {
    font-size: 2rem;
    line-height: 2.625rem;
  }
  .success-stories.title span {
    font-size: 1.5rem;
  }
}
@media (max-width: 468px) {
  .success-stories.title grid-container {
    bottom: 2.5rem;
  }
  .success-stories.title {
    max-height: 450px;
    padding: 11rem 0 2.5rem 0;
  }
  .success-stories.title h1 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .success-stories.title span {
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding-right: 6.25rem;
  }
}
/********** OTHER STORIES **********/
@media (min-width: 1621px) {
  .success-stories.list.small .items grid-column {
    width: 43.3333333333%;
  }
  .success-stories.list.small .items grid-column:first-of-type {
    margin-left: 6.6666666667%;
  }
}
@media (min-width: 971px) and (max-width: 1620px) {
  .success-stories.list.small .items grid-column {
    width: 43.3333333333%;
  }
  .success-stories.list.small .items grid-column:first-of-type {
    margin-left: 6.6666666667%;
  }
}
@media (max-width: 970px) {
  .success-stories.list.small .items a h3 {
    font-size: 1.625rem;
  }
  .success-stories.list.small .items a h3 + span {
    font-size: 1.375rem;
  }
  .success-stories.list.small .items a p {
    font-size: 1rem;
    line-height: 175%;
  }
}
@media (min-width: 1621px) {
  .success-stories.list.small grid-row:first-of-type {
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 769px) and (max-width: 1620px) {
  .success-stories.list.small grid-row:first-of-type {
    margin-bottom: 4.25rem;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .success-stories.list.small grid-row:first-of-type {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 468px) {
  .success-stories.list.small grid-row:first-of-type {
    margin-bottom: 2.5rem;
  }
}
.success-stories.title grid-column,
content-embed,
testimonial-slideshow {
  visibility: hidden;
}

select-wrapper {
  display: table;
  float: left;
  position: relative;
  z-index: 800;
  width: 33.333%;
}

select-wrapper label {
  color: #231E20;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  height: 3.125rem;
  letter-spacing: 1.1px;
  line-height: 3.125rem;
  text-transform: uppercase;
  float: left;
}

psuedo-select {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1;
}

select-wrapper.active {
  z-index: 850;
}

psuedo-select psuedo-selected-value {
  box-shadow: inset 0 0.125rem 0.325rem 0 rgba(0, 0, 0, 0.125);
  color: #9C9C9C;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  height: 3.125rem;
  line-height: 3.125rem;
  overflow: hidden;
  padding: 0 1.25rem;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 0 0.5rem rgba(76, 123, 202, 0);
  width: 100%;
  z-index: 1;
  transition: all 350ms ease;
  box-sizing: border-box;
}

psuedo-select psuedo-selected-value:after {
  content: "";
  opacity: 1;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  bottom: 0.625rem;
  width: 2.625rem;
  transition: opacity 125ms ease 225ms;
  z-index: 1;
}

psuedo-select psuedo-selected-value svg {
  fill: #9C9C9C;
  height: 12px;
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 1.063rem;
  width: 20px;
  filter: drop-shadow(0 0 0.2rem rgba(76, 123, 202, 0));
  transform: translateY(-50%) rotate(0deg);
  transition: all 350ms ease;
  z-index: 2;
}

input-options {
  opacity: 0;
  position: absolute;
  transform: translateX(-9999px);
  transition: opacity 350ms ease 0ms, transform 0ms linear 350ms;
  min-width: 100%;
  z-index: 800;
}

input-options input-option {
  box-shadow: 0 0.125rem 0.325rem 0 rgba(0, 0, 0, 0.125);
  background-color: #FFF;
  color: #231E20;
  display: block;
  border: 0;
  font-size: 0.75rem;
  font-weight: 500;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 1.25rem;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 100%;
  z-index: 1;
  transition: all 350ms ease;
  box-sizing: border-box;
}

/*** HOVER ***/
select-wrapper:not(.disabled) psuedo-select:hover psuedo-selected-value {
  background-color: #F4F4F4;
}

select-wrapper:not(.disabled) input-options input-option:hover {
  background-color: #F4F4F4;
}

/*** DISABLED ***/
select-wrapper.disabled psuedo-select psuedo-selected-value {
  cursor: default !important;
}

/*** ACTIVE ***/
select-wrapper.active psuedo-select psuedo-selected-value {
  background-color: #F0F0F0;
  border: 1px solid rgba(40, 122, 172, 0);
  color: #231E20;
  text-shadow: 0 0 0.5rem rgba(76, 123, 202, 0);
  box-shadow: 0 0 0.5rem 0 rgba(76, 123, 202, 0), inset 0 0 0.5rem 0 rgba(76, 123, 202, 0);
}

select-wrapper.active psuedo-select psuedo-selected-value svg {
  fill: #231E20;
  transform: translateY(-50%) rotate(180deg);
  filter: drop-shadow(0 0 0.2rem rgba(76, 123, 202, 0));
}

select-wrapper.active psuedo-select input-options {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 350ms ease 0ms, transform 0ms linear 0ms;
}

select-wrapper.active psuedo-select psuedo-selected-value:after {
  opacity: 0;
  transition: opacity 125ms ease 0ms;
}

/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* COMMON HERO CSS *************************/
/********** PAGE TITLE **********/
.hero.page {
  background-color: #231F20;
  display: block;
  position: relative;
}

.hero.page.no-img {
  background: #04284A;
}

.hero.page figure {
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  transition: opacity 750ms ease;
  z-index: 0;
}

.hero.page figure img {
  opacity: 0.5;
}

.hero.page g-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero.page g-col {
    margin: 0 13.3333333333%;
    width: 73.3333333333%;
  }
}
.hero.page h1 {
  color: #FFF;
}

.hero.page.visible figure {
  opacity: 1;
}

@media (max-width: 479px) {
  .hero.page {
    padding: 11rem 0 3rem 0;
  }
}
@media (min-width: 480px) {
  .hero.page {
    padding: calc(11rem + (1vw - 0.3rem) * 14.4262) 0 calc(3rem + (1vw - 0.3rem) * 3.9344) 0;
  }
}
@media (min-width: 1701px) {
  .hero.page {
    padding: 22rem 0 6rem 0;
  }
}
/******
* Hero Menu
******/
sub-nav {
  background-color: #012F5F;
  display: table;
  margin: -2.188rem 0;
  overflow: hidden;
  position: relative;
  z-index: 30;
}

sub-nav active-effect {
  background-color: #01A7B8;
  display: block;
  height: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5rem;
  transition: height 350ms ease, line-height 350ms ease;
  z-index: 1;
}

sub-nav.positioned active-effect {
  height: 4.375rem;
  line-height: 4.375rem;
}

sub-nav ul {
  display: table;
  list-style-type: none;
  margin: 0 -1px 0 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

sub-nav li {
  display: block;
  float: left;
}

sub-nav a {
  color: #FFF;
  display: block;
  height: 4.375rem;
  line-height: 4.375rem;
  padding: 0 2.5rem;
}

sub-nav a {
  visibility: hidden;
}

@media (min-width: 971px) and (max-width: 1015px) {
  sub-nav a {
    padding: 0 1.75rem;
  }
}
@media (min-width: 769px) and (max-width: 970px) {
  sub-nav a {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  sub-nav {
    display: none;
  }
}
/************************* COLOUR PALETTE VARS *************************/
/************************* COLOUR PALLETTE VARS *************************/
/************************* EVENT HERO CSS *************************/
.hero.event {
  background-color: #231F20;
  display: block;
  position: relative;
}
.hero.event a.back {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  color: #FFFFFF;
  font-weight: normal;
  margin-bottom: 0.5rem;
  opacity: 0.5;
  transition: color 175ms ease, opacity 175ms ease;
}

@media (max-width: 479px) {
  .hero.event {
    padding: 11rem 0 3rem 0;
  }
}
@media (min-width: 480px) {
  .hero.event {
    padding: calc(11rem + (1vw - 0.3rem) * 14.4262) 0 calc(3rem + (1vw - 0.3rem) * 3.9344) 0;
  }
}
@media (min-width: 1701px) {
  .hero.event {
    padding: 22rem 0 6rem 0;
  }
}
.hero.event.no-img {
  background: #04284A;
}

.hero.event g-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero.event g-col {
    margin: 0 13.3333333333%;
    width: 73.3333333333%;
  }
}
/** TITLE **/
.hero.event h1 {
  color: #FFF;
  margin-top: 1.875rem;
  margin-top: 0;
}

/** TAG **/
.hero.event span.type {
  background-color: #C1CD23;
  color: #04284A;
  display: none;
  font-weight: 500;
  line-height: 2.625rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.hero.event span.type:after {
  border-style: solid;
  border-width: 21px 0 21px 16px;
  border-color: transparent transparent transparent #C1CD23;
  content: "";
  height: 0;
  left: 100%;
  position: absolute;
  top: 0;
  width: 0;
}
.hero.event span.type.events {
  display: table;
  background-color: #C1CD23;
  color: #FFFFFF;
}
.hero.event span.type.events:after {
  border-color: transparent transparent transparent #C1CD23;
}
.hero.event span.type.trainings {
  display: table;
  background-color: #ED973B;
  color: #FFFFFF;
}
.hero.event span.type.trainings:after {
  border-color: transparent transparent transparent #ED973B;
}
.hero.event span.type.webinars {
  display: table;
  background-color: #269FB0;
  color: #FFFFFF;
}
.hero.event span.type.webinars:after {
  border-color: transparent transparent transparent #269FB0;
}

/** IMAGE **/
.hero.event figure {
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  transition: opacity 750ms ease;
  z-index: 0;
}

.hero.event figure img {
  opacity: 0.35;
}

.hero.event.visible figure {
  opacity: 1;
}

/** DETAILS **/
.hero.event ul {
  display: block;
  list-style-type: none;
  margin: 1.875rem 0 0 0;
  padding: 0;
}

.hero.event li {
  display: block;
}

.hero.event li + li {
  margin-top: 1.25rem;
}

.hero.event date {
  color: #FFFFFF;
  display: block;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding-left: 2.875rem;
  position: relative;
  text-transform: uppercase;
}

.hero.event date:before {
  background-image: url(../img/calendar-white.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  content: "";
  display: block;
  height: 1.875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
}

.hero.event time {
  color: #FFFFFF;
  display: block;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding-left: 2.875rem;
  position: relative;
}

.hero.event time:before {
  background-image: url(../img/clock-white.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  content: "";
  display: block;
  height: 1.875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
}

/************************* COLOUR PALETTE VARS *************************/
/***** BUTTONS *****/
.btn {
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  transform: translateZ(0);
}

.btn span {
  display: block;
  position: relative;
  z-index: 2;
}

.btn.outline {
  font-size: 0.875rem;
  height: 3.25rem;
  line-height: 3.25rem;
  padding: 0 4.375rem;
}

.slideshow.home {
  background-color: #000;
  display: block;
  position: relative;
}
.slideshow.home home-slideshow {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
}
.slideshow.home slideshow-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 38rem;
  box-sizing: border-box;
  transition: opacity 1000ms ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  min-height: 38rem;
}
.slideshow.home slideshow-slide.current {
  opacity: 1;
  position: relative;
}
.slideshow.home slideshow-slide grid-container {
  padding-top: 8rem;
  padding-bottom: 6rem;
  z-index: 2;
}
.slideshow.home slideshow-slide grid-column > * {
  opacity: 0;
  -webkit-transition: opacity 1s ease 0ms, -webkit-transform 0ms linear 500ms;
  transition: opacity 1s ease 0ms, -webkit-transform 0ms linear 500ms;
  transition: opacity 1s ease 0ms, transform 0ms linear 500ms;
  transition: opacity 1s ease 0ms, transform 0ms linear 500ms, -webkit-transform 0ms linear 500ms;
  -webkit-transform: translateX(4rem);
  transform: translateX(4rem);
}
.slideshow.home slideshow-slide.current grid-column > * {
  opacity: 1;
  transform: translateX(0);
  webkit-transition: opacity 700ms ease-in-out 500ms, -webkit-transform 700ms ease-in-out 500ms;
  transition: opacity 700ms ease-in-out 500ms, -webkit-transform 700ms ease-in-out 500ms;
  transition: opacity 700ms ease-in-out 500ms, transform 700ms ease-in-out 500ms;
  transition: opacity 700ms ease-in-out 500ms, transform 700ms ease-in-out 500ms, -webkit-transform 700ms ease-in-out 500ms;
}
.slideshow.home slideshow-slide h2 {
  color: #fff;
  font-size: 1.625rem;
  line-height: 125%;
  font-size: 140%;
}
.slideshow.home slideshow-slide p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 175%;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
  margin: 1.75rem 0 0 0;
  color: #FFF;
}
.slideshow.home slideshow-slide p:first-of-type {
  margin-top: 2.25rem;
}
.slideshow.home slideshow-slide p:last-of-type {
  margin-bottom: 2.5rem;
}
.slideshow.home slideshow-slide a.btn {
  padding: 0 6rem;
}
.slideshow.home slideshow-timer {
  background-color: #ED973B;
  bottom: 0;
  left: 0;
  height: 2px;
  position: absolute;
  z-index: 3;
}
.slideshow.home .controls {
  display: none;
}
.slideshow.home .navigation {
  position: absolute;
  display: table;
  list-style-type: none;
  margin: 0 !important;
  padding: 0;
  width: auto;
  opacity: 0;
  bottom: 1.875rem;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity 750ms ease;
  transition: opacity 750ms ease;
}
.slideshow.home .navigation.positioned {
  opacity: 1;
}
.slideshow.home .navigation li + li {
  margin-left: 0.813rem;
}
.slideshow.home .navigation li {
  background-color: transparent;
  border: 1px solid #ED973B;
  border-radius: 50%;
  padding: 0;
  position: relative;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  display: block;
  float: left;
}
.slideshow.home .navigation li:before {
  background-color: #ED973B;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
}
.slideshow.home .navigation li.current {
  background-color: #ED973B;
}
.slideshow.home .navigation li.current::before {
  transform: scale(1.05);
}
.slideshow.home figure {
  background-size: cover !important;
  background-position: center !important;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.slideshow.home figure:before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slideshow.home scroll-hint {
  display: none;
}

@media (min-width: 469px) and (max-width: 568px) {
  .slideshow.home slideshow-slide grid-container {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }
  .slideshow.home slideshow-slide h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 971px) {
  .slideshow.home home-slideshow {
    height: 100%;
  }
  .slideshow.home grid-container {
    position: absolute;
    top: calc(50% + 2.875rem);
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
  }
  .slideshow.home slideshow-contents {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .slideshow.home slideshow-slide {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
  }
}