@font-face {
  font-family: Qafientola;
  src: url(/src/fonts/Qafientola.otf); }
@font-face {
  font-family: Proxima Nova;
  src: url(/src/fonts/ProximaNova-Regular.otf); }
@font-face {
  font-family: Proxima Nova;
  src: url(/src/fonts/ProximaNova-AltThin.otf);
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: Proxima Nova;
  src: url(/src/fonts/ProximaNova-Semibold.otf);
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: Proxima Nova;
  src: url(/src/fonts/ProximaNova-Bold.otf);
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: Proxima Nova;
  src: url(/src/fonts/ProximaNova-Black.otf);
  font-weight: 900;
  font-style: normal; }
:root {
  --main-colour: red;
  --text-colour: #000;
  --text-colour-invert: #fff;
  --link-colour: #0c3662;
  --background-colour: #fff;
  --background-colour-secondary: #ccc;
  --font-size: 16px;
  --gutter: 25px;
  --container: 1050px;
  --mobile: 510px;
  --sage: #96B192;
  --forest: #223C35;
  --stone: #EFEFE5;
  --hemlock: #C8D5CD; }

/* ------------------------------ Custom */
p {
  color: var(--forest);
  font-family: Proxima Nova;
  font-size: clamp(1rem, 4vw, 1.3rem);
  margin: 0 0 1.5rem;
  line-height: 1.5; }
  p a {
    color: var(--sage); }

h1 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
  font-size: clamp(1.8rem, 5vw, 2.2rem); }

h2 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem; }

h3 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem; }

h4 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem; }

h5 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem; }

h6 {
  color: var(--forest);
  font-family: Proxima Nova;
  margin-bottom: 1.5rem;
  margin-top: 0rem; }

:not(nav) > ul li {
  margin-bottom: 1rem; }
  :not(nav) > ul li ul li {
    margin-bottom: .5rem; }

a.btn {
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  text-decoration: none; }

a.btn.white {
  background-color: var(--stone);
  color: var(--forest); }

.txt-centred {
  text-align: center; }
  .txt-centred * {
    text-align: center; }

.intro-quote {
  margin-bottom: 3rem;
  font-family: Qafientola; }

.txt-stone * {
  color: var(--stone); }

/* ------------------------------ LAYOUT */
@keyframes spinner {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
#loading-screen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center; }

header {
  flex-grow: 0;
  flex-shrink: 0;
  background: var(--forest);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px -10px 10px 9px rgba(0, 0, 0, 0.5); }

.scroll-to-top {
  position: fixed;
  z-index: 1000;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--forest);
  color: var(--stone);
  border: 2px solid var(--stone);
  border-radius: 5px;
  padding: .5rem 1rem;
  opacity: 0.7;
  transition: transform .25s ease, opacity .25s ease; }

.scroll-to-top:hover {
  transform: scale(1.1);
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease; }

.search-wrapper-full p {
  color: white; }
.search-wrapper-full #___gcse_0 {
  width: 35%;
  min-width: 250px; }
.search-wrapper-full button {
  background-color: var(--hemlock); }
.search-wrapper-full form.gsc-search-box {
  margin: 0; }
  .search-wrapper-full form.gsc-search-box table.gsc-search-box {
    margin: 0; }
  .search-wrapper-full form.gsc-search-box *:not(input, button) {
    padding: 0px; }
  .search-wrapper-full form.gsc-search-box input.gsc-input {
    height: 30px !important; }
  .search-wrapper-full form.gsc-search-box svg {
    color: var(--forest);
    fill: var(--forest); }

#breadcrumbs {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: fit-content;
  top: -34px;
  border-radius: 6px;
  z-index: 99;
  background-color: var(--hemlock); }
  #breadcrumbs li:not(:last-child):not(:first-child):after {
    content: ">";
    position: relative;
    left: 0.5rem; }
  #breadcrumbs li {
    display: flex;
    margin: 0;
    align-items: center;
    padding: .5rem;
    background-color: var(--hemlock); }
    #breadcrumbs li, #breadcrumbs li a {
      text-transform: capitalize;
      color: var(--forest);
      font-size: clamp(0.7rem, 3vw, 1rem); }
  #breadcrumbs li:first-child {
    background-color: var(--forest);
    color: var(--stone);
    border-radius: 6px 0 0 6px;
    margin-right: .5rem; }
  #breadcrumbs li:last-child {
    border-radius: 0 6px 6px 0; }
  #breadcrumbs a {
    box-sizing: border-box;
    display: block;
    border-radius: 3px;
    opacity: 1;
    text-decoration: underline; }

@media screen and (min-width: 1040px) {
  #page-body {
    margin-top: 125px; }
    #page-body > section.wrapper:first-of-type {
      padding-top: 5rem; }

  .scrolltop #page-body {
    padding-top: 0px;
    margin-top: 0px; }

  header {
    transform: translateY(-75px);
    padding: 0; }
    header .header-wrapper {
      padding-top: 1rem;
      padding-bottom: 1rem;
      box-sizing: border-box;
      height: 75px; }

  .search-wrapper-full {
    display: flex;
    position: relative; }
    .search-wrapper-full table {
      max-height: 30px;
      overflow-y: hidden; }
    .search-wrapper-full input {
      background-color: var(--stone) !important;
      height: 30px !important;
      padding: 0px .5rem !important;
      box-sizing: border-box;
      width: 200px; }
    .search-wrapper-full button {
      height: 34px !important;
      width: 34px !important;
      padding: 0px !important; }
      .search-wrapper-full button:hover {
        background-color: var(--sage); }

  .search-wrapper-mobile {
    display: none; }

  .scrolltop header {
    transform: translateY(0px);
    position: relative; }

  #nav-wrapper {
    height: 50px; }

  nav#main-navigation {
    height: 50px; }
    nav#main-navigation #resp-menu-toggle {
      display: none; }
    nav#main-navigation > ul {
      display: flex;
      flex-grow: 1;
      list-style: none;
      align-items: center;
      justify-content: space-between;
      padding: 0;
      width: 100%;
      margin: 0;
      height: 100%;
      gap: 0.5em; }
      nav#main-navigation > ul > li {
        position: relative; }
        nav#main-navigation > ul > li > a {
          color: var(--forest);
          display: block;
          flex-grow: 0;
          padding: 0 .5rem;
          height: 50px;
          text-decoration: none;
          position: relative;
          transition: scale .05s;
          line-height: 0;
          display: flex;
          align-items: center; }
          nav#main-navigation > ul > li > a:hover {
            scale: 1.1;
            transition: scale .05s; }
          nav#main-navigation > ul > li > a:active {
            opacity: 0.7;
            color: var(--forest); }
        nav#main-navigation > ul > li:hover > ul {
          display: block; }
        nav#main-navigation > ul > li > ul {
          display: none;
          list-style: none;
          padding: 0;
          background-color: var(--stone);
          position: absolute;
          bottom: 0;
          transform: translateY(100%);
          left: -15px;
          z-index: 100;
          width: calc(100% + 30px);
          box-sizing: border-box; }
      nav#main-navigation > ul > .sub-menu > a {
        padding: 0 1.5rem 0 0; }
      nav#main-navigation > ul > .sub-menu::after {
        content: "";
        position: absolute;
        top: calc(50% - .4rem);
        right: .1rem;
        width: .4rem;
        height: .4rem;
        border-right: 3px solid var(--forest);
        border-bottom: 3px solid var(--forest);
        transform: rotate(45deg); }
      nav#main-navigation > ul > .sub-menu button {
        display: none; }
      nav#main-navigation > ul > .sub-menu > ul {
        background-color: var(--stone);
        height: auto !important;
        overflow: visible; }
        nav#main-navigation > ul > .sub-menu > ul > li {
          margin: 0;
          position: relative; }
          nav#main-navigation > ul > .sub-menu > ul > li > a {
            color: var(--forest);
            display: block;
            text-decoration: none;
            width: 100%;
            box-sizing: border-box;
            padding: 1rem;
            text-align: center; }
          nav#main-navigation > ul > .sub-menu > ul > li:hover > a {
            background-color: var(--forest);
            color: var(--stone); }
          nav#main-navigation > ul > .sub-menu > ul > li:hover > ul {
            display: block; }
          nav#main-navigation > ul > .sub-menu > ul > li > ul {
            display: none;
            list-style: none;
            padding: 0;
            background-color: var(--hemlock);
            position: absolute;
            top: 0;
            transform: translateX(-100%);
            left: 0;
            z-index: 100;
            width: 180px;
            width: 180px;
            box-sizing: border-box; }
        nav#main-navigation > ul > .sub-menu > ul > .sub-menu::after {
          content: "";
          position: absolute;
          top: calc(50% - 3px);
          left: .5rem;
          width: 6px;
          height: 6px;
          border-right: 3px solid var(--forest);
          border-bottom: 3px solid var(--forest);
          transform: rotate(135deg); }
        nav#main-navigation > ul > .sub-menu > ul > .sub-menu:hover::after {
          border-right: 3px solid var(--stone);
          border-bottom: 3px solid var(--stone); }
        nav#main-navigation > ul > .sub-menu > ul > .sub-menu > ul {
          margin: 0; }
          nav#main-navigation > ul > .sub-menu > ul > .sub-menu > ul > li > a {
            color: var(--forest);
            display: block;
            text-decoration: none;
            width: 100%;
            box-sizing: border-box;
            padding: 1rem;
            text-align: center; }
            nav#main-navigation > ul > .sub-menu > ul > .sub-menu > ul > li > a:hover {
              background-color: var(--forest);
              color: var(--forest); }
    nav#main-navigation h2 {
      display: none; } }
@media screen and (max-width: 1039px) {
  #page-body {
    margin-top: calc(45px + 2rem); }

  header {
    padding: 1rem 0;
    height: 45px;
    min-height: 45px;
    max-height: 45px; }

  #breadcrumbs {
    flex-wrap: nowrap;
    position: relative;
    width: fit-content;
    left: -15px;
    top: -1.75rem; }
    #breadcrumbs * {
      flex-shrink: 0; }

  .search-wrapper-full {
    display: none; }

  .search-wrapper-mobile {
    padding: 0 1rem; }

  nav#main-navigation {
    position: fixed;
    top: 0;
    right: -80vw;
    width: 80vw;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    flex-direction: column;
    background-color: var(--stone);
    transition: right .25s; }
    nav#main-navigation ul {
      flex-direction: column;
      justify-content: flex-start;
      list-style: none;
      padding: 0px; }
      nav#main-navigation ul .sub-menu {
        display: flex;
        flex-wrap: wrap;
        position: relative; }
        nav#main-navigation ul .sub-menu > ul {
          width: 100%; }
        nav#main-navigation ul .sub-menu > button {
          position: absolute;
          right: 0;
          top: 0;
          height: 4rem;
          width: 0;
          padding: 0 2rem;
          border: 0px;
          border-left: 1px solid var(--forest);
          cursor: pointer;
          background-color: var(--hemlock); }
          nav#main-navigation ul .sub-menu > button:after {
            content: "";
            position: absolute;
            left: calc(55% - .5rem);
            top: calc(50% - .5rem);
            height: 1rem;
            width: 1rem;
            border-top: 2px solid var(--forest);
            border-left: 2px solid var(--forest);
            transform: rotate(-45deg);
            transition: transform .25s ease; }
        nav#main-navigation ul .sub-menu .sub-menu > button {
          position: absolute;
          right: 0;
          top: 0;
          height: 4rem;
          width: 0;
          padding: 0 2rem;
          border: 0px;
          border-left: 1px solid var(--forest);
          cursor: pointer;
          background-color: var(--forest); }
          nav#main-navigation ul .sub-menu .sub-menu > button:after {
            border-top: 2px solid var(--stone);
            border-left: 2px solid var(--stone); }
      nav#main-navigation ul li a {
        padding: 2rem 1rem;
        display: block;
        box-sizing: border-box;
        color: var(--forest);
        text-decoration: none;
        width: 100%;
        line-height: 0; }
    nav#main-navigation h2 {
      padding: 2rem 1rem 0rem; }
    nav#main-navigation > ul > li a {
      margin: 0px;
      border-bottom: 1px solid var(--forest); }
    nav#main-navigation > ul > li:first-child a {
      border-top: 1px solid var(--forest); }
    nav#main-navigation > ul > .sub-menu > ul[aria-expanded='false'] {
      overflow: hidden;
      height: 0;
      transition: height .25s; }
    nav#main-navigation > ul > .sub-menu > ul[aria-expanded='true'] {
      overflow: hidden;
      background-color: var(--hemlock);
      transition: height .15s; }
      nav#main-navigation > ul > .sub-menu > ul[aria-expanded='true'] + button::after {
        top: calc(50% - .7rem) !important;
        transform: rotate(-135deg) !important;
        transition: transform .25s ease; }
    nav#main-navigation > ul > .sub-menu > ul > li {
      margin: 0px; }
      nav#main-navigation > ul > .sub-menu > ul > li a {
        background-color: var(--forest);
        color: var(--stone);
        border-top: 1px solid var(--stone);
        padding-left: 1rem; }
        nav#main-navigation > ul > .sub-menu > ul > li a::before {
          content: "-";
          padding: 0 .5rem; }

  nav#main-navigation[aria-expanded="true"] {
    right: 0vw; }

  #resp-menu-toggle {
    z-index: 100;
    position: fixed;
    top: 1rem;
    right: var(--gutter);
    transition: right .2s;
    padding: 9px;
    display: block;
    background-color: var(--stone);
    border-radius: .25rem;
    border: 0; }
    #resp-menu-toggle .bars-wrapper {
      position: relative;
      width: 20px;
      height: 20px; }
      #resp-menu-toggle .bars-wrapper > div {
        width: 100%;
        background: var(--forest);
        display: block;
        position: absolute;
        text-indent: -9999999999999px;
        font-size: 0px; }
        #resp-menu-toggle .bars-wrapper > div.bar1 {
          left: 0;
          top: 0;
          height: 4px;
          transform: rotate(0deg);
          transition: transform .2s, top .2s; }
        #resp-menu-toggle .bars-wrapper > div.bar2 {
          left: 0;
          height: 4px;
          top: calc(50% - 2px);
          transition: height .2s; }
        #resp-menu-toggle .bars-wrapper > div.bar3 {
          left: 0;
          bottom: 0;
          height: 4px;
          transform: rotate(0deg);
          transition: transform .2s, bottom .2s; }
    #resp-menu-toggle.opentrue .bars-wrapper > div.bar1 {
      left: 0;
      height: 3px;
      top: 41.5%;
      transform: rotate(45deg);
      transition: transform .2s, top .2s; }
    #resp-menu-toggle.opentrue .bars-wrapper > div.bar2 {
      height: 0;
      transition: height .2s; }
    #resp-menu-toggle.opentrue .bars-wrapper > div.bar3 {
      left: 0;
      height: 3px;
      bottom: 43.5%;
      transform: rotate(-45deg);
      transition: transform .2s, bottom .2s; } }
footer {
  flex-grow: 0;
  flex-shrink: 0;
  background: darkgray;
  background-color: var(--forest);
  padding: 3rem 0 0; }
  footer #top-footer {
    display: flex;
    padding-bottom: 3rem; }
    footer #top-footer > *:first-child {
      flex: 0 0 40%; }
    footer #top-footer > *:nth-child(2) {
      flex: 0 0 40%; }
    footer #top-footer > *:last-child {
      flex: 0 0 20%; }
    footer #top-footer nav ul {
      width: 100%;
      padding: 0;
      margin: 0;
      width: 100%;
      list-style: none;
      display: flex;
      gap: var(--gutter);
      flex-wrap: wrap; }
      footer #top-footer nav ul li {
        display: block; }
        footer #top-footer nav ul li a {
          text-decoration: none; }
  footer #bottom-footer {
    display: flex;
    padding: 2rem 0 3rem; }
    footer #bottom-footer > *:first-child {
      flex: 0 0 40%; }
    footer #bottom-footer > *:nth-child(2) {
      flex: 0 0 40%; }
    footer #bottom-footer > *:last-child {
      flex: 0 0 20%; }

#page-body {
  flex-grow: 1;
  transition: padding-top .5s ease; }

html {
  scrollbar-gutter: stable;
  box-sizing: border-box;
  font-family: Proxima Nova;
  font-size: 16px;
  height: 100%;
  padding: 0;
  margin: 0; }

body {
  box-sizing: border-box;
  font-family: Proxima Nova;
  font-size: 16px;
  height: 100%;
  padding: 0;
  margin: 0; }

div {
  box-sizing: border-box; }

#loading-spinner {
  font-size: 0px;
  display: block;
  width: 200px;
  height: 200px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-top: 10px solid red;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  animation-name: spinner;
  animation-duration: 2s;
  animation-iteration-count: infinite; }

section {
  padding-top: 3em;
  padding-bottom: 3em;
  box-sizing: border-box; }

.container {
  max-width: var(--container);
  margin: auto;
  box-sizing: border-box; }

#body-wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow: hidden; }

.flex-wrapper {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between; }

.flex-2col {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between; }
  .flex-2col > * {
    width: 50%; }

.flex-3col {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between; }
  .flex-3col > * {
    width: 33.3%; }

.flex-2-1 {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between; }
  .flex-2-1 > :first-child {
    width: 66%; }
  .flex-2-1 > :last-child {
    width: 33%; }

.flex-reverse {
  flex-direction: revert; }

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

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gutter); }

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--gutter); }

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.logo-wrapper a:active img {
  transform: scale(0.9);
  scale: 0.9; }
.logo-wrapper a img {
  width: 200px;
  min-width: 200px;
  height: auto;
  fill: #fff; }

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 var(--gutter); } }
@media screen and (max-width: 1050px) {
  .grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "half1 half2" "full full"; }
    .grid3 > *:first-child {
      flex-basis: 50%;
      grid-area: half1; }
    .grid3 > *:nth-child(2) {
      flex-basis: 50%;
      grid-area: half2; }
    .grid3 > *:last-child {
      flex-basis: 100%;
      grid-area: full; }

  footer #top-footer {
    flex-wrap: wrap; }
    footer #top-footer > *:first-child {
      flex: 0 0 50%; }
    footer #top-footer > *:nth-child(2) {
      flex: 0 0 50%; }
    footer #top-footer > *:last-child {
      flex: 0 0 100%;
      margin-top: var(--gutter); }
  footer #bottom-footer {
    flex-wrap: wrap; }
    footer #bottom-footer > *:first-child {
      flex: 0 0 50%; }
    footer #bottom-footer > *:nth-child(2) {
      flex: 0 0 50%; }
    footer #bottom-footer > *:last-child {
      flex: 0 0 100%;
      margin-top: var(--gutter); } }
@media screen and (max-width: 640px) {
  .flex-2col {
    flex-direction: column;
    width: 100%; }
    .flex-2col > * {
      flex: unset;
      width: 100%; }

  .flex-2-1 {
    flex-direction: column;
    width: 100%; }
    .flex-2-1 > * {
      flex: unset;
      width: 100%;
      width: 100%; }

  .grid3 {
    grid-template-columns: 1fr;
    grid-template-areas: "half1" "half2" "full"; }

  .grid2 {
    grid-template-columns: 1fr; }

  .flex-reverse-mobile {
    flex-direction: column-reverse; }

  footer #top-footer {
    padding-bottom: 0;
    flex-wrap: nowrap;
    flex-direction: column; }
    footer #top-footer > * {
      flex: 0 0 100%; }
  footer #bottom-footer {
    flex-wrap: nowrap;
    flex-direction: column; }
    footer #bottom-footer > * {
      flex: 0 0 100%; }
  footer nav ul {
    justify-content: center; }
    footer nav ul li {
      margin-top: 0; }
  footer * {
    text-align: center; } }
/* ------------------------------ COMPONENTS */
.video-wrapper {
  padding-top: 56.25%;
  position: relative; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.full-2col {
  display: flex;
  flex-direction: column; }
  .full-2col > * {
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative; }
    .full-2col > *:first-child {
      display: flex;
      justify-content: center; }
    .full-2col > *:last-child {
      display: flex;
      justify-content: center; }
    .full-2col > * > * {
      width: 100%;
      max-width: 100vw;
      z-index: 1;
      display: block; }
  @media screen and (min-width: 640px) {
    .full-2col {
      display: flex;
      flex-direction: row; }
      .full-2col > * {
        width: 50vw;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        position: relative; }
        .full-2col > *:first-child {
          display: flex;
          justify-content: flex-end; }
        .full-2col > *:last-child {
          display: flex;
          justify-content: flex-start; }
        .full-2col > * > * {
          width: calc(var(--container) / 2);
          max-width: 50vw;
          z-index: 1;
          display: block; } }

.full-3col {
  flex-wrap: wrap; }
  .full-3col > * {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
  @media screen and (min-width: 640px) {
    .full-3col {
      display: flex;
      flex-wrap: nowrap; }
      .full-3col > * {
        height: 100%;
        width: 33vw;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        position: relative; }
        .full-3col > *:first-child {
          display: flex;
          justify-content: flex-end;
          flex-shrink: 1;
          flex-grow: 1; }
        .full-3col > *:nth-child(2) {
          display: flex;
          justify-content: flex-end;
          background-size: 100vw;
          background-position: center;
          flex-shrink: 1;
          flex-grow: 0;
          width: calc((var(--container) / 3) + 50px); }
          .full-3col > *:nth-child(2) > * {
            width: 100%;
            z-index: 1;
            display: block; }
        .full-3col > *:last-child {
          display: flex;
          justify-content: flex-start;
          flex-shrink: 1;
          flex-grow: 1; }
        .full-3col > *:first-child > *, .full-3col > *:last-child > * {
          width: calc(var(--container) / 3);
          max-width: 33vw;
          z-index: 1;
          display: block; } }

.fill-image {
  min-height: 30vh;
  background-size: cover;
  background-position: center; }

.hero-link h2 {
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: normal; }

.hero-link a { text-decoration: none; }

@media screen and (max-width: 640px) {
	.hero-link { padding-bottom: 50px;}
}

.player {
  box-sizing: border-box;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.225);
  padding: 1rem;
  border-radius: 1rem;
  background-color: white;
  display: grid;
  grid-template-columns: 70% 30%;
  grid-auto-flow: row;
  grid-template-areas: "title image" "audio image";
  width: 600px;
  max-width: 100%; }
  .player .player-desc {
    grid-area: title;
    padding-right: 1rem;
    margin-bottom: 1rem; }
    .player .player-desc h3 {
      margin-bottom: .5rem; }
    .player .player-desc h4 {
      margin-bottom: .5rem; }
    @media screen and (max-width: 640px) {
      .player .player-desc {
        padding-right: .5rem; } }
  .player .player-img {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem;
    height: 100%;
    box-sizing: border-box;
    border-radius: .5rem;
    background-color: var(--forest); }
  @media screen and (max-width: 640px) {
    .player {
      grid-template-columns: 70% 30%;
      row-gap: .5rem;
      grid-template-areas: "title image" "audio audio"; } }
  .player .audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 0 24px;
    width: calc(100% - 1rem);
    height: 43px;
    align-items: center;
    border-radius: .5rem;
    background: var(--stone);
    border: 3px solid var(--hemlock);
    margin-right: 1rem;
    align-self: end;
    grid-area: audio; }
    @media screen and (max-width: 640px) {
      .player .audioplayer {
        width: 100%;
        margin-right: 0; } }
  .player .audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
    outline: 2px solid #2F7965; }
  .player .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: var(--stone); }
  .player .audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
    background: var(--sage); }
  .player .audioplayer-playing .audioplayer-playpause {
    background: var(--stone); }
  .player .audioplayer-playing .audioplayer-playpause:hover {
    background: var(--sage); }
  .player .audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-right: none;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #2F7965; }
  .player .audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 12px;
    height: 14px; }
  .player .audioplayer-playing .audioplayer-playpause a::before, .player .audioplayer-playing .audioplayer-playpause a::after {
    content: '';
    width: 4px;
    height: 14px;
    background-color: #2F7965; }
  .player .audioplayer-time {
    display: flex;
    width: 40px;
    justify-content: center;
    font-size: 12px;
    color: rgba(51, 51, 51, 0.6); }
  .player .audioplayer-time-current {
    margin-left: 24px; }
  .player .audioplayer-time-duration {
    margin-right: 24px; }
  .player .audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 12px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer; }
  .player .audioplayer-bar::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 100%;
    height: 2px;
    background-color: #DDE2E6; }
  .player .audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 5px; }
  .player .audioplayer-bar-loaded {
    z-index: 1;
    height: 2px;
    background: #BEC8D2; }
  .player .audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 2px;
    background: -webkit-linear-gradient(left, #2F7965, #09B1FA); }
  .player .audioplayer-bar-played::after {
    display: flex;
    position: absolute;
    content: '';
    box-sizing: border-box;
    top: -5px;
    right: -1px;
    margin-right: -5px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 6px; }
  .player .audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
    border: 2px solid #2F7965; }
  .player .audioplayer-playing .audioplayer-bar-played::after {
    border: 2px solid #2F7965; }
  .player .audioplayer-volume {
    display: flex;
    align-items: center; }
  .player .audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer; }
  .player .audioplayer-volume-button a {
    display: flex;
    width: 6px;
    height: 8px;
    background-color: #9A9FB0;
    position: relative; }
  .player .audioplayer-volume-button a:before, .player .audioplayer-volume-button a:after {
    content: '';
    position: absolute; }
  .player .audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 9px solid #9A9FB0;
    border-bottom: 8px solid transparent;
    border-left: none;
    top: -4px; }
  .player .audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 10px;
    top: -2px;
    width: 6px;
    height: 6px;
    border: 6px double #9A9FB0;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 0 0;
    transform: rotate(45deg); }
  .player .audioplayer-mute .audioplayer-volume-button a {
    background-color: #2F7965; }
  .player .audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #2F7965; }
  .player .audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 8px; }
  .player .audioplayer-volume-adjust > div {
    position: relative;
    display: flex;
    width: 60px;
    height: 2px;
    cursor: pointer;
    background-color: #BEC8D2; }
  .player .audioplayer-volume-adjust div div {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #2F7965; }
  @media screen and (max-width: 679px) {
    .player .audioplayer-volume-adjust {
      display: none; } }

.hero-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 40vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .hero-banner h3 {
    color: var(--stone);
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--container);
    max-width: 100vw;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1; }

.hero-banner.darken::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.5;
  z-index: 0; }

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

.reveal {
  margin-bottom: 1em; }
  .reveal.dark > button {
    color: var(--stone);
    background-color: var(--forest); }
    .reveal.dark > button:after {
      border-color: var(--stone); }
  .reveal[aria-expanded='true'] > button {
    border-bottom: 1px solid var(--sage); }
    .reveal[aria-expanded='true'] > button:after {
      transform: translateY(-65%) rotate(45deg); }
  .reveal > button {
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: .5rem 1rem;
    font-size: 1.3rem;
    color: var(--forest);
    background-color: var(--hemlock);
    border-radius: 0;
    border: none;
    font-weight: bold;
    position: relative; }
    .reveal > button:after {
      content: "";
      position: absolute;
      right: 1em;
      top: 50%;
      width: 15px;
      height: 15px;
      border-color: var(--forest);
      border-style: solid;
      border-width: 0 3px 3px 0;
      transform: translateY(-50%) rotate(-45deg);
      transition: transform 0.25s; }
  .reveal .content {
    width: 100%;
    background-color: var(--stone);
    transition: max-height .25s ease-out;
    max-height: 0;
    overflow: hidden; }
    .reveal .content .answer-wrapper {
      padding: 1rem; }
      .reveal .content .answer-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      .reveal .content .answer-wrapper p {
        margin-bottom: 0;
        text-align: justify; }
      .reveal .content .answer-wrapper img {
        width: 160px;
        height: auto;
        border: 0.5rem solid var(--forest);
        float: left;
        margin-right: 1.5rem; }
      @media screen and (max-width: 640px) {
        .reveal .content .answer-wrapper {
          display: block;
          text-align: center; }
          .reveal .content .answer-wrapper img {
            margin-right: 0rem;
            margin-bottom: 1rem;
            float: none; } }

.card.large {
  width: 100%;
  margin-top: 10rem;
  background: var(--hemlock);
  padding: 3rem 1rem 1rem;
  position: relative;
  box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; }
  .card.large img {
    width: 150px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
    top: 0rem;
    border: 0.5rem solid var(--forest); }
  .card.large h3 {
    font-size: 2rem;
    text-align: center; }
  @media screen and (min-width: 640px) {
    .card.large {
      width: 100%;
      margin-top: 6rem;
      background: var(--hemlock);
      padding: 3rem 1rem 1rem;
      position: relative;
      box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; }
      .card.large:nth-child(odd) img {
        width: 160px;
        height: auto;
        position: absolute;
        right: 1rem;
        transform: translateY(-100%);
        top: 6rem;
        border: 0.5rem solid var(--forest);
        left: unset; }
      .card.large:nth-child(odd) h3 {
        font-size: 2.5rem;
        text-align: right;
        padding-right: calc(160px + 2rem); }
      .card.large:nth-child(even) img {
        width: 160px;
        height: auto;
        position: absolute;
        left: 1rem;
        transform: translateY(-100%);
        top: 6rem;
        border: 0.5rem solid var(--forest); }
      .card.large:nth-child(even) h3 {
        font-size: 2.5rem;
        padding-left: calc(160px + 2rem);
        text-align: left; } }

.card.small {
  width: 100%;
  margin-top: 8rem;
  background: var(--hemlock);
  padding: 3rem 1rem 1rem;
  position: relative;
  box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; }
  .card.small img {
    width: 150px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
    top: 0rem;
    border: 0.5rem solid var(--forest); }
  .card.small h3 {
    font-size: 2rem;
    text-align: center; }

.file-link {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  position: relative;
  margin-bottom: 1rem; }
  .file-link.dark {
    color: var(--forest); }
  .file-link.light {
    color: var(--stone); }
  .file-link.mid {
    color: var(--forest); }
    .file-link.mid:hover {
      color: var(--stone); }
  .file-link:hover {
    color: var(--sage); }
  .file-link span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400; }
  .file-link.pdf {
    padding-left: 4rem; }
    .file-link.pdf:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background-image: url(/src/img/pdf.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      width: 3.5rem;
      height: 3rem; }
  .file-link.docx {
    padding-left: 4rem; }
    .file-link.docx:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background-image: url(/src/img/docx.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      width: 3.5rem;
      height: 3rem; }
  .file-link.zip {
    padding-left: 4rem; }
    .file-link.zip:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background-image: url(/src/img/zip.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      width: 3.5rem;
      height: 3rem; }

.ext-link {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 4rem; }
  .ext-link.dark {
    color: var(--forest); }
  .ext-link.light {
    color: var(--stone); }
  .ext-link:hover {
    color: var(--sage); }
  .ext-link span {
    font-size: 1rem;
    font-weight: 400; }
  .ext-link img {
    position: absolute;
    top: 0;
    left: .5rem;
    width: 2.75rem;
    height: 2.75rem; }

form.feedback .error-notice {
  color: #963b3b; }
form.feedback input, form.feedback textarea {
  width: 600px;
  max-width: 100%;
  display: block;
  padding: .5rem;
  background-color: var(--hemlock);
  border: 0;
  margin-bottom: 1rem;
  box-sizing: border-box; }
  form.feedback input.error, form.feedback textarea.error {
    outline: 3px solid #963b3b; }
form.feedback input[type="submit"] {
  width: 300px;
  max-width: 100%; }

/* ------------------------------ CUSTOM CLASSES */
.mb0 {
  margin-bottom: 0px; }

.mb1 {
  margin-bottom: 1rem; }

.mb2 {
  margin-bottom: 2rem; }

.mb3 {
  margin-bottom: 3rem; }

.mt3 {
  margin-top: 3rem; }

.mr1 {
  margin-right: 1rem; }

.pb3 {
  padding-bottom: 3rem; }

.pt3 {
  padding-top: 3rem; }

.pv0 {
  padding-top: 0rem;
  padding-bottom: 0rem; }

.pv1 {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.pv2 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.pv3 {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.pv6 {
  padding-top: 6rem;
  padding-bottom: 6rem; }

.ph1 {
  padding-left: 1rem;
  padding-right: 1rem; }

.ph2 {
  padding-left: 2rem;
  padding-right: 2rem; }

.ph3 {
  padding-left: 3rem;
  padding-right: 3rem; }

.centred {
  text-align: center; }

.bg-sage {
  background-color: var(--sage); }

.bg-forest {
  background-color: var(--forest); }

.bg-stone {
  background-color: var(--stone); }

.bg-hemlock {
  background-color: var(--hemlock); }

.bg-darken {
  z-index: 1;
  position: relative; }
  .bg-darken * {
    z-index: 1;
    position: relative; }
  .bg-darken:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: .33;
    z-index: 0; }
