@charset "UTF-8";
/* ------------------------------------------------------
**** SCSS Inclusions
------------------------------------------------------ */
/* ---- Global Variables ---- */
/*
Variable Example
*/
/*
Breakpoint Mixins
*/
/*
Joint hover and Breakpoint Mixin
*/
:root {
  --brand-texture-sm: url(../../assets/bg-photo-texture_sm.jpg);
  --brand-texture: url(../../assets/bg-photo-texture.jpg);
}

:root {
  --body-font-size: 1.6rem;
  --h1-font-size: 2.1rem;
  --h1-line-height: 1.12;
  --h2-font-size: 2.1rem;
  --h2-line-height: 1.12;
  --h3-font-size: 1.9rem;
  --h3-line-height: inherit;
  --h4-font-size: 1.6rem;
  --h4-line-height: 1.5;
  --h5-font-size: 1.6rem;
  --h5-line-height: inherit;
  --h6-font-size: 1.6rem;
  --h6-line-height: inherit;
  --milli-font-size: 1.2rem;
  --centi-font-size: 1.4rem;
}

@media screen and (min-width: 23.75em) {
  :root {
    --h1-font-size: 2.4rem;
    --h1-line-height: 1.25;
    --h2-font-size: 2.2rem;
    --h2-line-height: 1.25;
  }
}
@media screen and (min-width: 35em) {
  :root {
    --h1-font-size: 2.6rem;
    --h2-font-size: 2.6rem;
    --h3-font-size: 2rem;
    --h4-font-size: 1.8rem;
  }
}
@media screen and (min-width: 75em) {
  :root {
    --h1-font-size: 3.2rem;
    --h2-font-size: 3.2rem;
    --h3-font-size: 2.2rem;
    --h4-font-size: 1.8rem;
  }
}
/*
Basic system font stacks
*/
/* Weights */
/* Size */
/* -----
* NOTES
* [02]
* A series of classes for setting massive type; for use in heroes, mastheads,
* promos, etc.
* As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
------ */
/* -----------------------------
File Path
-------------------------------- */
/* -----------------------------
Spacing
-------------------------------- */
/* -----------------------------
style variables
-------------------------------- */
/* -----------------------------
Header
-------------------------------- */
/* -----------------------------
Page
-------------------------------- */
/* ---- Mixins ---- */
:root {
  --button-border-width: 2px;
  --button-border-radius: 1px;
}

/* --------------------------------
Text Link
----------------------------------- */
/* --------------------------------
Sizes
----------------------------------- */
/* Width - Inline Padding  */
/* Height - Block Padding */
/* Text Size */
/* -----------------------------
Visibility Utilities
------------------------------*/
/* -----------------------------
Clearfix
------------------------------*/
/* -----------------------------
SVG
------------------------------*/
/* -----------------------------
List Mixins
------------------------------*/
/* -----------------------------
Fallback logo image
------------------------------*/
:root {
  --field-height: 36px;
  --field-border: 2px solid #d4d4d4;
  --field-background: #ffffff;
  --field-padding-vertical: 5px;
  --field-padding-horizontal: 10px;
  --field-padding-vertical-small: 0.4em;
  --field-padding-horizontal-small: 0.8em;
  --field-line-height: 1.2;
  --field-radius: 0;
  --field-vertical-whitespace: var(--paragraph-break);
  --fieldset-input-diameter: calc(var(--body-font-size) * 1.25);
  --fieldset-input-diameter-small: var(--centi-font-size);
}

/* ---- Abstracts ---- */
/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fade in down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
}
/* Fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade in up margin */
@keyframes fadeInUpMargin {
  from {
    opacity: 0;
    margin-bottom: -20px;
  }
  to {
    opacity: 1;
    margin-bottom: 0;
  }
}
/* Grow in fade */
@keyframes growInFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ---- Highlight pulse ---- */
@keyframes highlightPulse {
  40% {
    transform: scale(1.12);
  }
}
/* ---- Highlight pulse with outline ---- */
@keyframes highlightPulseOutline {
  0% {
    outline: 3px solid #FFC57D;
    outline-offset: 4px;
    transform: scale(1);
  }
  13% {
    transform: scale(1.25);
  }
  33% {
    transform: scale(1);
  }
  75% {
    outline: 3px solid #FFC57D;
    outline-offset: 4px;
  }
  100% {
    outline: 3px solid transparent;
    outline-offset: 4px;
  }
}
.animate-fade {
  animation: fadeInDown 400ms ease-in-out;
}

.demo-animate .demo-animate__item {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.demo-animate:hover .demo-animate__item {
  clip: auto;
  height: auto;
  overflow: visible;
  position: relative;
  width: auto;
  padding: 5px;
  animation: fadeInDown 400ms ease-in-out;
  animation-fill-mode: forwards;
}

/* ------------------------------------------------------
**** Blocks
------------------------------------------------------ */
.hero-banner {
  background-color: #385799;
  color: #ffffff;
  text-align: center;
  position: relative;
}
:where(.hero-banner) h2,
:where(.hero-banner) h3,
:where(.hero-banner) h4,
:where(.hero-banner) h5,
:where(.hero-banner) h6 {
  color: #ffffff;
}

:where(.hero-banner) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.hero-banner) a:hover,
:where(.hero-banner) a:focus,
:where(.hero-banner) a:active {
  color: rgba(255, 255, 255, 0.7);
}

.hero-banner__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-texture) no-repeat center center;
  background-size: cover;
}
.hero-banner .text-banner {
  position: relative;
  z-index: 2;
}
.hero-banner__text {
  position: relative;
  padding-top: var(--section);
  padding-bottom: var(--section-small);
}
.hero-banner__text__inner__cta {
  padding-top: var(--section-small);
  padding-bottom: var(--section-small);
}
.hero-banner__title {
  font-family: "Raleway-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  color: #ffffff;
  font-size: 2.2rem;
}
@media screen and (min-width: 30em) {
  .hero-banner__title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 48em) {
  .hero-banner__title {
    font-size: 4rem;
  }
}
.banner__media-col {
  text-align: left;
  padding-bottom: var(--section);
  font-size: 2.2rem;
  line-height: 1.2;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 48em) {
  .banner__media-col {
    grid-template-columns: 1fr 1fr;
    font-size: 2.6rem;
  }
  .banner__media-col p {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 62em) {
  .banner__media-col {
    gap: 64px;
    grid-template-columns: 1fr 1.5fr;
  }
}
.banner__media-col--narrow {
  max-width: 1080px;
  margin: auto;
}
.banner__media-col__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-pack: center;
      justify-content: center;
}
.banner__media-col__text :where(ul) {
  font-size: 1.6rem;
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 0;
}
@media screen and (min-width: 62em) {
  .banner__media-col__text :where(ul) {
    line-height: 2;
  }
}
.banner__media-col__text :where(ul) :where(li) {
  margin-bottom: 16px;
  list-style-type: none;
  background: url(../../assets/icon-system/icon_ticked-tickbox.svg) no-repeat;
  padding-left: 45px;
  padding-top: 2px;
}
@media screen and (min-width: 62em) {
  .banner__media-col__text :where(ul) :where(li) {
    margin-bottom: 32px;
  }
}

.text-banner {
  padding-top: var(--section-small);
  padding-bottom: var(--section-small);
  background-color: #ffffff;
  text-align: center;
}
.text-banner__heading {
  color: #965634;
  font-size: clamp(1.6rem, 5.5vw, 4rem);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-banner__heading {
    background: var(--brand-texture);
    background-size: auto 100vh;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
}
.text-banner__heading__strong {
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 47.9375em) {
  .text-banner__heading__mob-line-2 {
    display: block;
  }
}

.hero-icon-list {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.hero-icon-list__item {
  text-align: center;
}
.hero-icon-list__item .icon {
  margin-bottom: 16px;
}
.hero-icon-list__item__heading {
  font-size: 2.6rem;
}
.hero-icon-list__item__text {
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.9;
  margin-top: 16px;
}

.white-hero-banner {
  background-color: #ffffff;
}
.white-hero-banner .banner__media-col {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 48em) {
  .white-hero-banner .banner__media-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .white-hero-banner .banner__media-col {
    column-gap: 128px;
    grid-template-columns: 2fr 1.5fr;
  }
}
.white-hero-banner .banner__media-col__img {
  display: grid;
  -ms-flex-align: center;
      align-items: center;
}
.white-hero-banner .banner__media-col__img img {
  max-width: 75%;
  margin: auto;
}
.white-hero-banner__cta {
  position: relative;
  z-index: 2;
  text-align: center;
}
.white-hero-banner__cta__button {
  margin: auto auto 8px;
}

.section-break-title {
  overflow: hidden;
  text-align: center;
}
.section-break-title__text {
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (min-width: 48em) {
  .section-break-title__text {
    font-size: 2.2rem;
  }
}
.section-break-title__text::before, .section-break-title__text::after {
  content: "";
  position: absolute;
  height: 2px;
  top: calc(50% - 1px);
  width: 50vw;
  background-color: #ffffff;
}
.section-break-title__text::before {
  right: calc(100% + 16px);
}
.section-break-title__text::after {
  left: calc(100% + 10px);
}

.contact-details__list {
  font-style: normal;
}

.opening-hours__title {
  display: block;
}
.opening-hours__hours {
  display: block;
}
.opening-hours--inline span {
  display: inline;
}

.page-header {
  margin-bottom: var(--section-small);
}
@media screen and (min-width: 62em) {
  .page-header {
    padding-top: 40px;
  }
}
.mainbar--wide .page-header {
  padding-top: 0;
}
@media screen and (min-width: 48em) {
  .page-header__title-bar {
    display: grid;
    grid-auto-flow: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 32px;
  }
}
.page-header__subtitle {
  font-size: var(--body-font-size);
}
.page-header__title {
  display: block;
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  text-transform: none;
  color: inherit;
  margin-bottom: 0;
}

@media screen and (min-width: 62em) {
  .page-header--faq {
    padding-top: 0;
  }
}
@media screen and (min-width: 62em) {
  .page-header--faq .page-header__heading {
    padding-top: 32px;
  }
}

.image-gallery__figure {
  display: block;
  overflow: hidden;
  margin: 0;
}

.image-gallery__slider .splide__slide img {
  -ms-user-select: none;
      -webkit-user-select: none;
      user-select: none;
}
.image-gallery__slider .splide__slide.active img {
  animation: fadeIn 350ms ease-in;
  animation-fill-mode: forwards;
}
.image-gallery__slider.columns-2 .splide__slide {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}
.image-gallery__slider.columns-3 .splide__slide {
  -ms-flex: 0 0 33.333%;
      flex: 0 0 33.333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}
.image-gallery__slider.columns-4 .splide__slide {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}
.image-gallery__slider.columns-5 .splide__slide {
  -ms-flex: 0 0 20%;
      flex: 0 0 20%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}
.image-gallery__slider.columns-6 .splide__slide {
  -ms-flex: 0 0 16.666%;
      flex: 0 0 16.666%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}

.image-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.image-gallery__grid.columns-2, .image-gallery__grid.columns-4 {
  grid-template-columns: repeat(2, 1fr);
}
.image-gallery__grid.columns-3, .image-gallery__grid.columns-5, .image-gallery__grid.columns-6 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 48em) {
  .image-gallery__grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 48em) {
  .image-gallery__grid.columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 48em) {
  .image-gallery__grid.columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.image-gallery__grid figure,
.image-gallery__grid img {
  width: 100%;
}
.image-gallery__grid .image-gallery__figure {
  position: relative;
}
.image-gallery__grid .image-gallery__figure:hover figcaption, .image-gallery__grid .image-gallery__figure:focus figcaption, .image-gallery__grid .image-gallery__figure:active figcaption {
  opacity: 1;
}
.image-gallery__grid .image-gallery__figure figcaption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  left: 10px;
  padding: 10px;
  z-index: 2;
  opacity: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  margin: 0;
  transition: 0.4s all ease;
  line-height: 1.3;
}
@media screen and (min-width: 35em) {
  .image-gallery__grid .image-gallery__figure figcaption {
    font-size: 18px;
    top: 20px;
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 16.6666%;
  }
}
@media screen and (min-width: 48em) {
  .image-gallery__grid .image-gallery__figure figcaption {
    font-size: 24px;
  }
}

.lang-switcher {
  position: relative;
  margin-bottom: 24px;
  height: 32px;
  background-color: #ffffff;
}
@media screen and (min-width: 48em) {
  .lang-switcher {
    margin-left: auto;
  }
}
@media screen and (min-width: 48em) {
  .lang-switcher {
    display: inline-block;
    margin: auto;
  }
}
.lang-switcher__label {
  position: absolute;
  z-index: 0;
  color: #605f5f;
  font-weight: normal;
  text-transform: uppercase;
  padding-left: var(--field-padding-horizontal);
  height: 100%;
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  grid-template-columns: 16px auto;
  gap: 8px;
}
.lang-switcher__select {
  position: relative;
  height: 32px;
  z-index: 2;
  background-color: transparent;
  color: rgba(0, 0, 0, 0);
  background-image: url(../../assets/icon-system/icon_form_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 20px;
  padding-left: 36px;
  padding-right: 48px;
}

:root {
  --sidepadding: 8px;
  --vertpadding: 8px;
}

@media screen and (min-width: 22.5em) {
  :root {
    --sidepadding: 12px;
    --vertpadding: 10px;
  }
}
@media screen and (min-width: 35em) {
  :root {
    --sidepadding: 16px;
    --vertpadding: 12px;
  }
}
@media screen and (min-width: 48em) {
  :root {
    --sidepadding: 24px;
    --vertpadding: 16px;
  }
}
@media screen and (min-width: 87.5em) {
  :root {
    --sidepadding: 44px;
    --vertpadding: 28px;
  }
}
.media-object__img {
  float: left;
  width: 100%;
  height: 100%;
}

.media-object__img img {
  width: 100%;
}

.media-object__content {
  width: 100%;
  float: left;
  margin-top: 20px;
}

.media-object {
  padding: 20px;
  width: 100%;
  float: left;
}

.media-object:after,
.media-object:before {
  clear: both;
}

.media-object__details {
  font-weight: bold;
  color: #7f7f7f;
}

.media-object__date:after {
  content: " | ";
}

@media screen and (min-width: 48em) {
  .media-object {
    padding: 0;
  }
  .media-object__img {
    width: 33%;
  }
  .media-object__content {
    width: 66%;
    margin-top: 0;
    padding-left: 20px;
  }
}
.card {
  --tb-padding: 8px;
  --lr-padding: 8px;
  background: #fff;
  color: #222;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 22.5em) {
  .card {
    --tb-padding: 16px;
    --lr-padding: 16px;
  }
}
@media screen and (min-width: 35em) {
  .card {
    --tb-padding: 32px;
    --lr-padding: 32px;
  }
}
.card a:focus {
  text-decoration: underline;
}
.card:focus-within {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33);
}
.card:focus-within a:focus {
  text-decoration: none;
}
.card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-order: 1;
      order: 1;
}
.card__description {
  margin-bottom: auto;
  padding: var(--tb-padding) var(--lr-padding);
}
.card__img {
  min-height: 200px;
  aspect-ratio: 4/3 auto;
  overflow: hidden;
}
.card__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.card__img--fit {
  height: auto;
  aspect-ratio: unset;
  min-height: 200px;
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.card__img--fit img {
  object-fit: contain;
  height: auto;
  width: auto;
}

/* Hover variation */
.card--hover {
  position: relative;
  cursor: pointer;
}
.card--hover .card__content {
  padding: 0;
}
.card--hover .card__content:last-child {
  margin-top: 0;
}
.card--hover .card__hover {
  display: none;
}
@media screen and (min-width: 75em) {
  .card--hover .card__hover {
    display: block;
    overflow: hidden;
    padding-top: 0;
    padding-left: var(--lr-padding);
    padding-right: var(--lr-padding);
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: height 300ms cubic-bezier(0.38, -0.14, 0.51, 0.99), padding-top 300ms cubic-bezier(0.38, -0.14, 0.51, 0.99);
  }
}
.card--hover:hover .card__hover, .card--hover:focus .card__hover, .card--hover:active .card__hover {
  height: 371px;
  padding-top: var(--tb-padding);
}
.card--hover .card__img {
  -ms-flex-order: 0;
      order: 0;
}
.card--hover .card__description {
  -ms-flex-order: 1;
      order: 1;
}

.promo-card-set--text-align-centered .card {
  text-align: center;
}
.promo-card-set--text-align-left .card {
  text-align: left;
}
.card--promo-set {
  background: transparent;
  color: currentColor;
}
.card__heading {
  padding-top: 12px;
  color: currentColor;
  line-height: 1.25;
}
.card--promo-set .card__content {
  padding-inline: 16px;
}
.card--promo-set .card__heading {
  color: #201f1f;
}
.bg-secondary .card--promo-set .card__heading {
  color: #ffffff;
}

.feature-cards {
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (min-width: 48em) {
  .feature-cards {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-align: start;
        align-items: start;
  }
}

.features-list-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  color: #555454;
  padding-block: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  transition: all 240ms ease-in-out, box-shadow 400ms ease-in-out;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -ms-transform: translateY(0px);
      transform: translateY(0px);
}
.features-list-card:hover {
  -ms-transform: translateY(-2px);
      transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.features-list-card__section-header {
  text-align: center;
}
.features-list-card__title {
  color: #6991cd;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0;
}
.features-list-card__subtitle {
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 16px;
}
.features-list-card__subtitle::after {
  content: " ";
  position: absolute;
  height: 1px;
  left: 28%;
  right: 28%;
  bottom: 0;
  background-color: #ccc;
}
.features-list-card__content {
  text-align: left;
  padding: 8px 32px 16px;
}
.features-list-card__footer {
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}
.features-list-card__footer__btn {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center;
  vertical-align: middle;
  display: inline-grid;
  grid-auto-flow: column;
  column-gap: 0.5em;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  white-space: normal;
  cursor: pointer;
  border-radius: var(--button-border-radius);
  outline: none;
  opacity: 1;
  position: relative;
  margin: 0;
  text-decoration: none;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  line-height: normal;
  color: #ffffff;
  background: #385799;
  border: var(--button-border-width) solid #385799;
  transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out, outline 250ms ease-in-out;
  padding-top: 16px;
  padding-bottom: 15px;
}
.features-list-card__footer__btn svg {
  height: 0.85em;
  width: 0.85em;
}
.features-list-card__footer__btn svg [stroke*="#"] {
  stroke: currentColor;
}
.features-list-card__footer__btn svg [fill*="#"] {
  fill: currentColor;
}
.features-list-card__footer__btn:hover, .features-list-card__footer__btn:focus, .features-list-card__footer__btn:active {
  background-color: #2a4274;
  border-color: #2a4274;
  color: #ffffff;
}
.features-list-card__footer__btn:hover [stroke*="#"], .features-list-card__footer__btn:focus [stroke*="#"], .features-list-card__footer__btn:active [stroke*="#"] {
  stroke: #ffffff;
}
.features-list-card__footer__btn:hover [fill*="#"], .features-list-card__footer__btn:focus [fill*="#"], .features-list-card__footer__btn:active [fill*="#"] {
  fill: #ffffff;
}

.card-bgs-grey .card--promo-set {
  background-color: #EEEFF1;
}
.card-bgs-grey .card__heading {
  padding-top: 20px;
}

.hanging-content__heading {
  margin-block: var(--section-small);
}
.hanging-content__item {
  padding-top: 190px !important;
  display: -ms-flexbox;
  display: flex;
}
.hanging-content .card {
  background: #ffffff;
  color: #605f5f;
  padding: 0 24px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
.hanging-content .card__heading {
  font-size: 2rem;
  color: #385799;
}
.hanging-content .card__img {
  max-width: 190px;
  margin: -160px auto 16px;
}

.tile {
  background: #ffffff;
}

.icon-tile {
  --link-transition: 300ms ease-in-out;
  --entry-title: "test";
  --tb-padding: 8px;
  --lr-padding: 8px;
  background: #fff;
  position: relative;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
@media screen and (min-width: 22.5em) {
  .icon-tile {
    --tb-padding: 16px;
    --lr-padding: 16px;
  }
}
@media screen and (min-width: 35em) {
  .icon-tile {
    --tb-padding: 32px;
    --lr-padding: 32px;
  }
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile {
    min-height: 300px;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
  }
}
.icon-tile__hover {
  min-height: 180px;
  transition: all var(--link-transition);
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  opacity: 1;
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__hover {
    min-height: unset;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile:hover, .icon-tile:focus, .icon-tile:active {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  }
  .icon-tile:hover .icon-tile__hover, .icon-tile:focus .icon-tile__hover, .icon-tile:active .icon-tile__hover {
    bottom: 100%;
    opacity: 0;
  }
}
.icon-tile__icon {
  background: #385799 var(--brand-texture-sm) no-repeat;
  background-size: cover;
  padding: 32px var(--lr-padding) 16px;
  display: grid;
  justify-items: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 300px;
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__icon {
    min-height: unset;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
}
@media screen and (min-width: 48em) {
  .icon-tile__icon {
    background-image: var(--brand-texture-sm);
    background-position: center 49%;
    background-attachment: fixed;
  }
}
.icon-tile__icon svg {
  width: clamp(65px, 33%, 125px);
}
.icon-tile__pseudo-heading {
  background-color: #385799;
  color: #ffffff;
  display: none;
  padding: 8px 8px 8px 24px;
  text-align: center;
  line-height: 1.12;
  font-size: 2.1rem;
  min-height: 70px;
}
.icon-tile__pseudo-heading::before {
  content: var(--entry-title);
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__pseudo-heading {
    display: unset;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    grid-template-columns: auto 32px;
  }
}
.icon-tile__heading {
  line-height: 1.25;
  width: 100%;
}
.icon-tile__heading__link {
  display: grid;
  grid-auto-flow: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  min-height: 70px;
  text-decoration: none;
  background-color: #385799;
  color: #ffffff;
  padding: 8px 16px 8px 24px;
  margin-left: calc(0px - var(--lr-padding));
  margin-right: calc(0px - var(--lr-padding));
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__heading__link {
    padding: unset;
    min-height: unset;
    -ms-flex-align: baseline;
        align-items: baseline;
    background-color: #ffffff;
    color: #385799;
    margin: 0;
  }
}
.icon-tile__heading__link::after {
  content: " >";
  -ms-transform: translate(-0.1em, -0.1em);
      transform: translate(-0.1em, -0.1em);
  display: inline-block;
  transition: transform 250ms ease-in-out, all 250ms ease-in-out;
}
.icon-tile__heading__link:hover, .icon-tile__heading__link:focus, .icon-tile__heading__link:active {
  color: #393939;
}
.icon-tile__heading__link:hover::after, .icon-tile__heading__link:focus::after, .icon-tile__heading__link:active::after {
  -ms-transform: translate(0.2em, -0.1em);
      transform: translate(0.2em, -0.1em);
}
.icon-tile__content {
  padding: 0 var(--lr-padding) var(--tb-padding);
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__content {
    padding-top: var(--tb-padding);
  }
}
.icon-tile__content__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  height: 100%;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media screen and (hover: hover) and (min-width: 48em) {
  .icon-tile__content__wrap {
    opacity: 0;
    -ms-transform: translateY(16px);
        transform: translateY(16px);
    transition: all var(--link-transition);
  }
}
.icon-tile__content__wrap__richtext {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
.icon-tile__content__cta {
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #7090cb;
}
.icon-tile__content__cta::after {
  content: " >";
  -ms-transform: translate(-0.1em, -0.1em);
      transform: translate(-0.1em, -0.1em);
  display: inline-block;
  transition: transform 250ms ease-in-out;
}
.icon-tile__content__cta:hover, .icon-tile__content__cta:focus, .icon-tile__content__cta:active {
  color: #385799;
}
.icon-tile__content__cta:hover::after, .icon-tile__content__cta:focus::after, .icon-tile__content__cta:active::after {
  -ms-transform: translate(0.2em, -0.1em);
      transform: translate(0.2em, -0.1em);
}
.icon-tile:hover .icon-tile__content__wrap, .icon-tile:focus .icon-tile__content__wrap, .icon-tile:active .icon-tile__content__wrap {
  opacity: 1;
  -ms-transform: translateY(0);
      transform: translateY(0);
}
.icon-tile :where(ul) {
  list-style-image: url(../../assets/icon-system/icon-tick.svg);
  padding-left: 3rem;
}
.icon-tile :where(ul) li {
  margin-bottom: 12px;
  line-height: 1.25;
}
.icon-tile :where(ul) a {
  -webkit-text-decoration-color: rgba(56, 87, 153, 0);
          text-decoration-color: rgba(56, 87, 153, 0);
  transition: color 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
  transition: color 250ms ease-in-out, text-decoration 250ms ease-in-out;
  transition: color 250ms ease-in-out, text-decoration 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
}
.icon-tile :where(ul) a:hover, .icon-tile :where(ul) a:focus, .icon-tile :where(ul) a:active {
  -webkit-text-decoration-color: #385799;
          text-decoration-color: #385799;
}

.cta-box {
  padding: 8px 0 0;
}
.cta-box + .cta-box {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(231, 235, 247, 0.25);
}
@media screen and (min-width: 30em) {
  .cta-box {
    padding: 16px 0 0;
  }
}
.cta-box__heading {
  margin-top: 0;
  line-height: normal;
}
.cta-box__subtitle {
  display: block;
  display: block;
  font-size: var(--centi-font-size);
  color: #7f7f7f;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: var(--body-font-size);
}
.cta-box__title {
  font-size: 2.2rem;
}
.cta-box__cta {
  margin: 0;
}
.cta-box__cta a {
  text-align: center;
  vertical-align: middle;
  display: inline-grid;
  grid-auto-flow: column;
  column-gap: 0.5em;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  white-space: normal;
  cursor: pointer;
  border-radius: var(--button-border-radius);
  outline: none;
  opacity: 1;
  position: relative;
  margin: 0;
  text-decoration: none;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  line-height: normal;
  color: #ffffff;
  background: #6991cd;
  border: var(--button-border-width) solid #6991cd;
  transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out, outline 250ms ease-in-out;
  top: 0;
  -ms-transform: scale(1);
      transform: scale(1);
  transition: all 250ms ease-in-out;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
}
.cta-box__cta a svg {
  height: 0.85em;
  width: 0.85em;
}
.cta-box__cta a svg [stroke*="#"] {
  stroke: currentColor;
}
.cta-box__cta a svg [fill*="#"] {
  fill: currentColor;
}
.cta-box__cta a:hover, .cta-box__cta a:focus, .cta-box__cta a:active {
  background-color: #4375c0;
  border-color: #4375c0;
  color: #ffffff;
}
.cta-box__cta a:hover [stroke*="#"], .cta-box__cta a:focus [stroke*="#"], .cta-box__cta a:active [stroke*="#"] {
  stroke: #ffffff;
}
.cta-box__cta a:hover [fill*="#"], .cta-box__cta a:focus [fill*="#"], .cta-box__cta a:active [fill*="#"] {
  fill: #ffffff;
}
.cta-box__cta a:hover, .cta-box__cta a:focus, .cta-box__cta a:active {
  top: -4px;
  -ms-transform: scale(1.025);
      transform: scale(1.025);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.24);
}
.cta-box__content > *:last-child {
  margin-bottom: 0;
}

.sidebar .cta-box {
  text-align: center;
}
.sidebar .cta-box__title {
  color: #ffffff;
  font-family: "compassethin", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.25;
}
.sidebar .cta-box__subtitle {
  color: #7090cb;
}
.sidebar .cta-box__cta a {
  display: block;
  width: 100%;
}

.cta-box.mainbar-widget {
  background-color: #e7ebf7;
  padding: 16px;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .cta-box.mainbar-widget {
    padding: 24px 32px;
  }
}
@media screen and (min-width: 87.5em) {
  .cta-box.mainbar-widget {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.cta-box.mainbar-widget .cta-box__cta a {
  background-color: #385799;
  border-color: #385799;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 16px;
  padding-bottom: 15px;
  font-size: 2rem;
}

.cta-box.bottom-bar-widget {
  background-color: #EEEFF1;
  padding: 16px;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .cta-box.bottom-bar-widget {
    padding: 24px 32px;
  }
}
@media screen and (min-width: 87.5em) {
  .cta-box.bottom-bar-widget {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.cta-box.bottom-bar-widget .cta-box__cta a {
  background-color: #385799;
  border-color: #385799;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 16px;
  padding-bottom: 15px;
  font-size: 2rem;
}

.support-cta {
  padding: 10px 16px;
  background-color: #e3e4e8;
  margin-top: 12px;
  display: grid;
  gap: 16px;
  text-align: center;
  justify-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 22.5em) {
  .support-cta {
    padding: 16px 20px;
  }
}
.support-cta > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 22.5em) {
  .support-cta {
    padding: 24px;
  }
}
.support-cta :where(:last-child) {
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .support-cta {
    text-align: left;
    grid-template-columns: auto auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
@media screen and (min-width: 48em) {
  .support-cta .contact-details__item {
    text-align: right;
  }
}

/* ---- Slide Toggle ---- */
.slide-toggle__trigger {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  position: relative;
  white-space: normal;
  vertical-align: middle;
  outline: none;
  border: none;
  transition: all 250ms ease-in-out;
  background-color: #EEEFF1;
  background-color: transparent;
  padding: 8px 0;
  margin: 0;
  text-align: left;
  color: #7f7f7f;
}
.slide-toggle__trigger:hover, .slide-toggle__trigger:focus {
  color: #201f1f;
}
.slide-toggle__trigger:hover:before, .slide-toggle__trigger:hover:after, .slide-toggle__trigger:focus:before, .slide-toggle__trigger:focus:after {
  background-color: #201f1f;
}
.slide-toggle__trigger:before, .slide-toggle__trigger:after {
  content: " ";
  width: 12px;
  height: 3px;
  display: block;
  position: absolute;
  background-color: #7f7f7f;
  margin: 0 auto;
  right: 20px;
  top: 50%;
  transition: all 400ms ease;
}
.slide-toggle__trigger:before {
  -ms-transform: rotate(45deg) translateX(-5px);
      transform: rotate(45deg) translateX(-5px);
}
.slide-toggle__trigger:after {
  -ms-transform: rotate(-45deg) translateX(5px);
      transform: rotate(-45deg) translateX(5px);
}
.slide-toggle__trigger[aria-pressed=true] {
  color: #6991cd;
}
.slide-toggle__trigger[aria-pressed=true]:before, .slide-toggle__trigger[aria-pressed=true]:after {
  background-color: #6991cd;
  top: calc(50% - 6px);
}
.slide-toggle__trigger[aria-pressed=true]:hover, .slide-toggle__trigger[aria-pressed=true]:focus {
  color: #201f1f;
}
.slide-toggle__trigger[aria-pressed=true]:hover:before, .slide-toggle__trigger[aria-pressed=true]:hover:after, .slide-toggle__trigger[aria-pressed=true]:focus:before, .slide-toggle__trigger[aria-pressed=true]:focus:after {
  background-color: #201f1f;
}
.slide-toggle__trigger[aria-pressed=true]:before {
  -ms-transform: rotate(-45deg) translateX(-5px);
      transform: rotate(-45deg) translateX(-5px);
}
.slide-toggle__trigger[aria-pressed=true]:after {
  -ms-transform: rotate(45deg) translateX(5px);
      transform: rotate(45deg) translateX(5px);
}

.archive-links__list[aria-expanded=false] {
  display: none;
}

.archive-links__list[aria-expanded=true] {
  animation: fadeInDown 200ms ease;
  animation-fill-mode: forwards;
}

.archive-links__list-depth0 .slide-toggle__trigger {
  margin-top: 0.5em;
}
.archive-links__list-depth0 .slide-toggle__trigger:first-child {
  margin-top: 0;
}

.content-block {
  display: grid;
  gap: 4.8888888vw;
}
@media screen and (min-width: 48em) {
  .content-block {
    gap: 5.11111vw;
  }
}
@media screen and (min-width: 62em) {
  .content-block {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 100em) {
  .content-block {
    gap: 80px;
  }
}
@media screen and (min-width: 62em) {
  .content-block.half-media-right {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .content-block.half-media-left {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .content-block.third-media-right {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .content-block.third-media-left {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 62em) {
  .content-block.third-copy-right {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .content-block.third-copy-left {
    grid-template-columns: 1fr 2fr;
  }
}
.content-block--valign-top {
  -ms-flex-align: start;
      align-items: start;
}
.content-block--valign-center {
  -ms-flex-align: center;
      align-items: center;
}
.content-block--valign-bottom {
  -ms-flex-align: end;
      align-items: flex-end;
}
.content-block :where(img) {
  margin-bottom: 16px;
}

@media screen and (min-width: 100em) {
  .faqs :where(.content-block) {
    font-size: 1.9rem;
  }
}

.content-block__copy__toc {
  margin-bottom: 8px;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (min-width: 62em) {
  .content-block__copy__toc {
    width: 30%;
    min-width: 235px;
    float: right;
    margin-left: 32px;
    position: relative;
    z-index: 5;
    background-color: #ffffff;
  }
}
.content-block__copy__toc :where(h4) {
  border-bottom: 1px solid #EEEFF1;
}
.content-block__copy__toc :where(ul) {
  padding-left: 24px;
}
.content-block__copy__toc :where(a) {
  -webkit-text-decoration-color: rgba(56, 87, 153, 0);
          text-decoration-color: rgba(56, 87, 153, 0);
  transition: color 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
  transition: color 250ms ease-in-out, text-decoration 250ms ease-in-out;
  transition: color 250ms ease-in-out, text-decoration 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
}
.content-block__copy__toc :where(a):hover, .content-block__copy__toc :where(a):focus, .content-block__copy__toc :where(a):active {
  color: #555454;
  -webkit-text-decoration-color: #555454;
          text-decoration-color: #555454;
}
.content-block__copy__toc ~ :where(.highlight) {
  background-color: #feecc9;
}
@media screen and (min-width: 62em) {
  .content-block__copy__toc ~ :where(.highlight) {
    clear: unset;
    max-width: 60%;
  }
}

.mainbar > .content-block > .content-block__media > .image-gallery__figure {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .mainbar > .content-block > .content-block__media > .image-gallery__figure {
    margin-top: -128px;
  }
}
@media screen and (min-width: 75em) {
  .mainbar > .content-block > .content-block__media > .image-gallery__figure {
    margin-top: -160px;
  }
}

.entry-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.entry-list.full-width {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 48em) {
  .entry-list.large {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media screen and (min-width: 62em) {
  .entry-list.large {
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  }
}
@media screen and (min-width: 48em) {
  .entry-list.medium {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media screen and (min-width: 62em) {
  .entry-list.medium {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
@media screen and (min-width: 35em) {
  .entry-list.small {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.entry-list.extra-small {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.entry-list.tiny {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.modal-window {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -999;
  transition: background 250ms ease-in-out;
}
.modal-window--visible {
  z-index: 900000;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-window__mainbox {
  background-color: #ffffff;
  width: 100ch;
  max-width: 94%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, 0%) scale(0.75);
      transform: translate(-50%, 0%) scale(0.75);
  opacity: 0;
  padding: 8px 16px;
  transition: all 250ms ease-in-out;
}
@media screen and (min-width: 30em) {
  .modal-window__mainbox {
    padding: 16px 24px;
  }
}
@media screen and (min-width: 48em) {
  .modal-window__mainbox {
    padding: 32px 48px;
  }
}
.modal-window--visible .modal-window__mainbox {
  opacity: 1;
  -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
}
.modal-window__mainbox__closebtn {
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  background-color: #EEEFF1;
  position: absolute;
  right: -8px;
  top: -8px;
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 2px solid #EEEFF1;
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: background 250ms ease-in-out, box-shadow 250ms ease-in-out;
}
@media screen and (min-width: 30em) {
  .modal-window__mainbox__closebtn {
    right: -16px;
    top: -16px;
  }
}
.modal-window__mainbox__closebtn svg {
  width: 16px;
  height: 16px;
  opacity: 0.65;
  transition: opacity 250ms ease-in-out;
  pointer-events: none;
}
.modal-window__mainbox__closebtn:hover, .modal-window__mainbox__closebtn:focus, .modal-window__mainbox__closebtn:active {
  background-color: #d4d4d4;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
}
.modal-window__mainbox__closebtn:hover svg, .modal-window__mainbox__closebtn:focus svg, .modal-window__mainbox__closebtn:active svg {
  opacity: 1;
}

/* content area specific stlyes */
.md-window--centered {
  text-align: center;
}

.button-bar {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 48em) {
  .button-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.button-bar__item .button {
  display: block;
  height: 100%;
  padding: 10px 16px;
  margin-bottom: 0;
  text-transform: unset;
  font-size: 1.4rem;
}
@media screen and (min-width: 30em) {
  .button-bar__item .button {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 48em) {
  .button-bar__item .button {
    line-height: 1.25;
    padding: 20px 20px 18px;
  }
}
.button-bar__item :where(.button--light) {
  color: #555454;
}

/* Nice progressive enhancement button bar */
.enquiry-funnel__heading {
  text-align: center;
}

.enquiry-funnel {
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
  padding-top: 2vh;
}

@media screen and (min-width: 48em) {
  @supports (display: flex) {
    .enquiry-funnel__heading {
      margin-top: 16px;
    }
  }
}
@supports (display: grid) {
  @media screen and (min-width: 48em) {
    /* Columns for the biz enquiry formbuilder form */
    #business-enquiry-form form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-column-gap: 3.5612535613%;
      margin-bottom: 22px;
    }
    #business-enquiry-form legend,
    #business-enquiry-form .submit-bar,
    #business-enquiry-form .field-element--multiline {
      grid-column-start: span 2;
    }
  }
}
.ribbon-alert {
  background-color: #64A6DF;
  color: #ffffff;
  text-align: left;
  padding: 10px 0 12px;
  font-size: 1.3rem;
  line-height: 1.12em;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #9c9c9c;
  position: relative;
}
:where(.ribbon-alert) h2,
:where(.ribbon-alert) h3,
:where(.ribbon-alert) h4,
:where(.ribbon-alert) h5,
:where(.ribbon-alert) h6 {
  color: #ffffff;
}

:where(.ribbon-alert) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.ribbon-alert) a:hover,
:where(.ribbon-alert) a:focus,
:where(.ribbon-alert) a:active {
  color: rgba(255, 255, 255, 0.7);
}

.ribbon-alert > .container {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 47.9375em) {
  .ribbon-alert > .container {
    grid-template-columns: auto auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
.ribbon-alert p {
  margin: 0;
}
.ribbon-alert__text {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  padding-right: 35px;
}
.ribbon-alert__closebtn {
  border: 0;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 35px;
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-transform-origin: center;
      transform-origin: center;
  -ms-transform: rotate(0);
      transform: rotate(0);
  transition: transform 250ms ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 48em) {
  .ribbon-alert__closebtn {
    position: unset;
  }
}
@media screen and (min-width: 87.5em) {
  .ribbon-alert__closebtn {
    width: 46px;
  }
}
.ribbon-alert__closebtn * {
  pointer-events: none;
}
.ribbon-alert__closebtn:hover, .ribbon-alert__closebtn:focus, .ribbon-alert__closebtn:active {
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}
.ribbon-alert--hidden {
  display: none;
}

.pseudo-select-menu {
  --field-padding-vertical: 8px;
  list-style-type: none;
  padding-left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  height: 36px;
  position: relative;
  border-top: var(--field-border);
}
.no-js .pseudo-select-menu {
  height: unset;
}
.pseudo-select-menu__options {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.no-js .pseudo-select-menu__options {
  max-height: unset;
}
.pseudo-select-menu--none-selected .pseudo-select-menu__options {
  max-height: 0;
  top: 100%;
}
.pseudo-select-menu--open .pseudo-select-menu__options {
  max-height: 90vh;
}
.pseudo-select-menu__item {
  background-color: #EEEFF1;
}
.pseudo-select-menu__item__select-btn {
  border: var(--field-border);
  background-color: var(--field-background);
  border-radius: var(--field-radius);
  height: var(--field-height);
  -webkit-appearance: none;
  display: block;
  width: 100%;
  line-height: var(--field-line-height);
  padding: var(--field-padding-vertical) var(--field-padding-horizontal);
  text-align: left;
  background: no-repeat center right 8px;
  background-image: url(../../assets/icon-system/icon_form_arrow-down.svg);
  text-decoration: none;
  display: block;
  color: currentColor;
  border-top: 0;
  cursor: pointer;
}
.pseudo-select-menu__item__link {
  border: var(--field-border);
  background-color: var(--field-background);
  border-radius: var(--field-radius);
  height: var(--field-height);
  -webkit-appearance: none;
  display: block;
  width: 100%;
  line-height: var(--field-line-height);
  padding: var(--field-padding-vertical) var(--field-padding-horizontal);
  background-color: transparent;
  text-decoration: none;
  display: block;
  color: currentColor;
  border-top: 0;
  cursor: pointer;
}
.pseudo-select-menu__item__link:hover, .pseudo-select-menu__item__link:focus, .pseudo-select-menu__item__link:active {
  background-color: #ffffff;
}
.pseudo-select-menu__item--current-item {
  background: no-repeat transparent center right 8px;
  background-image: url(../../assets/icon-system/icon_form_arrow-down.svg);
  -ms-flex-order: -2;
      order: -2;
}
.pseudo-select-menu__item--current-item .pseudo-select-menu__item__link {
  background: transparent !important;
}
.pseudo-select-menu__item--select-btn {
  display: none;
}
.pseudo-select-menu--none-selected .pseudo-select-menu__item--select-btn {
  background-color: transparent;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hanging-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEFF1;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .hanging-header {
    display: grid;
    column-gap: 8px;
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 75em) {
  .hanging-header {
    column-gap: 24px;
  }
}
.hanging-header__heading {
  text-wrap: balance;
  margin-bottom: 12px;
}
@media screen and (min-width: 75em) {
  .hanging-header__heading {
    font-size: 2.2rem;
  }
}
.hanging-header__text {
  padding: 0 0 0 24px;
}

/* ------------------------------------------------------
**** LAYOUTS
------------------------------------------------------ */
/* ---- Global ---- */
.header {
  background-color: #ffffff;
  padding: var(--section-small) 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.header__logo {
  width: 180px;
  height: 57px;
  display: block;
}
@media screen and (min-width: 48em) {
  .header__logo {
    width: 280px;
    height: 80px;
  }
}
.header__nav {
  width: 100%;
}

.section--acic {
  background-color: #e7ebf7;
  color: #605f5f;
}
:where(.section--acic) a {
  color: #6991cd;
}

:where(.section--acic) a:hover,
:where(.section--acic) a:focus,
:where(.section--acic) a:active {
  color: #385799;
}

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

.acic-accredit {
  --acic-accredit-gap: 16px;
  display: grid;
  gap: var(--acic-accredit-gap);
  text-align: center;
  justify-items: center;
}
.acic-accredit__badge {
  max-width: 64px;
}
@media screen and (min-width: 35em) {
  .acic-accredit__badge {
    max-width: 80px;
  }
}
@media screen and (min-width: 62em) {
  .acic-accredit {
    --acic-accredit-gap: 32px;
    grid-template-columns: 80px 610px;
    -ms-flex-pack: center;
        justify-content: center;
    max-width: calc(80px + var(--acic-accredit-gap) + 610px);
    margin: auto;
    text-align: left;
  }
}
@media screen and (min-width: 75em) {
  .acic-accredit {
    --acic-accredit-gap: 64px;
  }
}

.section--footer {
  background: #385799;
  color: #ffffff;
}
:where(.section--footer) h2,
:where(.section--footer) h3,
:where(.section--footer) h4,
:where(.section--footer) h5,
:where(.section--footer) h6 {
  color: #ffffff;
}

:where(.section--footer) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.section--footer) a:hover,
:where(.section--footer) a:focus,
:where(.section--footer) a:active {
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

.footer__disclaimer {
  margin: 0;
  line-height: 1.6;
  color: #6991cd;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .footer__disclaimer {
    text-align: right;
  }
}
.footer__disclaimer a {
  color: currentColor;
}

.footer-nav {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
@media screen and (min-width: 48em) {
  .footer-nav {
    border-top: 0px;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    column-gap: 16px;
    row-gap: 8px;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.hero-footer-nav .footer-nav {
  gap: 16px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 62em) {
  .hero-footer-nav .footer-nav {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
@media screen and (max-width: 48em) {
  .hero-footer-nav .footer-nav .button {
    width: 100%;
  }
}
.footer-nav li {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.lower-footer .footer-nav {
  margin-bottom: 24px;
}
@media screen and (max-width: 48em) {
  .lower-footer .footer-nav {
    border-top: 1px solid rgba(112, 144, 203, 0.25);
  }
}
@media screen and (max-width: 48em) {
  .lower-footer .footer-nav li {
    border-bottom: 1px solid rgba(112, 144, 203, 0.25);
  }
}
.footer-nav__link {
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  transition: color 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out, color 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out, color 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0);
          text-decoration-color: rgba(255, 255, 255, 0);
  display: block;
  padding-top: 10px;
  padding-bottom: 8px;
}
.footer-nav__link:hover, .footer-nav__link:focus, .footer-nav__link:active {
  color: #ffffff;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}

.hero-footer-nav {
  display: grid;
  gap: 12px;
  text-align: center;
}
@media screen and (min-width: 62em) {
  .hero-footer-nav {
    grid-auto-flow: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.hero-footer-nav-buttons {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 48em) {
  .hero-footer-nav-buttons {
    grid-auto-flow: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .hero-footer-nav-buttons__item {
    display: grid;
  }
}

.footer-support-btn {
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  padding-bottom: 8px;
  text-align: center;
  vertical-align: middle;
  display: inline-grid;
  grid-auto-flow: column;
  column-gap: 0.5em;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  white-space: normal;
  text-decoration: none;
  font-size: 2rem;
  margin-left: -13px;
  background-color: transparent;
  transition: all 250ms ease-in-out;
  font-weight: 700;
}
.footer-support-btn:hover, .footer-support-btn:focus, .footer-support-btn:active {
  background-color: #2a4274;
  color: #ffffff;
}

.footer-small-nav {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 8px;
  row-gap: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 48em) {
  .footer-small-nav {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.footer-small-nav li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 8px;
}
.footer-small-nav li::before {
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  width: 1px;
  height: 0.75em;
  background-color: #7997ce;
}
.footer-small-nav li:first-child::before {
  content: unset;
}
.footer-small-nav__link {
  text-decoration: none;
}

.lower-footer {
  border-top: 3px solid #ffffff;
  padding-top: var(--section-small);
  margin-top: var(--section-small);
}
@media screen and (min-width: 48em) {
  .lower-footer {
    display: grid;
    gap: 24px;
    grid-auto-flow: column;
  }
}
.lower-footer .contact-details {
  padding-top: 10px;
  line-height: 1.5;
}

.section--stirling {
  padding: var(--section-small) 0;
  background-color: #333f48;
  color: rgba(255, 255, 255, 0.7);
}
.footer__stirling {
  text-align: center;
}
.footer__stirling a {
  display: block;
}
@media screen and (min-width: 48em) {
  .footer__stirling {
    text-align: left;
    display: grid;
    grid-auto-flow: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .footer__stirling a {
    margin: 0;
  }
}

.inner-scaffold {
  display: grid;
  gap: 4.8888888vw;
}
@media screen and (min-width: 48em) {
  .inner-scaffold {
    gap: 5.11111vw;
  }
}
@media screen and (min-width: 62em) {
  .inner-scaffold {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (min-width: 87.5em) {
  .inner-scaffold {
    gap: 80px;
    grid-template-columns: 340px auto;
  }
}
@media screen and (min-width: 62em) {
  .inner-scaffold .mainbar {
    grid-column: 2;
    grid-row: 1;
  }
}
@media screen and (min-width: 62em) {
  .inner-scaffold .sidebar {
    grid-column: 1;
    grid-row: 1;
  }
}

.inner-banner {
  background-color: #000000;
  position: relative;
}
.inner-banner__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.inner-banner__img img {
  opacity: 0.75;
}
.inner-banner__content {
  position: relative;
}
.inner-banner .page-header {
  padding-top: 5vh;
  padding-bottom: 1vh;
}
@media screen and (min-width: 48em) {
  .inner-banner .page-header {
    padding-top: 12vh;
    padding-bottom: 5vh;
  }
}
.inner-banner .page-header__title {
  color: #ffffff;
}
.inner-banner .breadcrumb {
  border: 0;
  color: #ffffff;
}
.inner-banner .breadcrumb a {
  color: currentColor;
}

.sidebar-content {
  --side-padding: 16px;
  color: #ffffff;
  background-color: #385799;
  padding: 24px var(--side-padding) 16px;
}
:where(.sidebar-content) h2,
:where(.sidebar-content) h3,
:where(.sidebar-content) h4,
:where(.sidebar-content) h5,
:where(.sidebar-content) h6 {
  color: #ffffff;
}

:where(.sidebar-content) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.sidebar-content) a:hover,
:where(.sidebar-content) a:focus,
:where(.sidebar-content) a:active {
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 48em) {
  .sidebar-content {
    --side-padding: 24px;
    padding: 40px var(--side-padding) 32px;
  }
}
.sidebar-content ~ .sidebar-content {
  margin-top: 16px;
}
@media screen and (min-width: 48em) {
  .sidebar-content ~ .sidebar-content {
    margin-top: 32px;
  }
}
.sidebar-content :where(h2),
.sidebar-content :where(h3) {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  text-transform: none;
  color: inherit;
  margin-bottom: 8px;
}
.sidebar-content :where(a) {
  text-decoration: none;
}

.sidebar-content--reverse {
  padding: 0;
  background-color: #EEEFF1;
  color: #605f5f;
}
:where(.sidebar-content--reverse) a {
  color: var(--text-link-colour);
}

:where(.sidebar-content--reverse) a:hover,
:where(.sidebar-content--reverse) a:focus,
:where(.sidebar-content--reverse) a:active {
  color: var(--text-link-hover-colour);
}

.sidebar-content__titlebar {
  color: #ffffff;
  background-color: #385799;
  display: grid;
  gap: 8px;
  grid-auto-flow: column;
  padding: 20px var(--side-padding) 4px;
}
:where(.sidebar-content__titlebar) h2,
:where(.sidebar-content__titlebar) h3,
:where(.sidebar-content__titlebar) h4,
:where(.sidebar-content__titlebar) h5,
:where(.sidebar-content__titlebar) h6 {
  color: #ffffff;
}

:where(.sidebar-content__titlebar) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.sidebar-content__titlebar) a:hover,
:where(.sidebar-content__titlebar) a:focus,
:where(.sidebar-content__titlebar) a:active {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-content__content {
  padding: 16px var(--side-padding);
}
.sidebar-content .linklist__list__item {
  font-size: 1.4rem;
  line-height: 1.25;
}
.sidebar-content .linklist__list__item a {
  padding-left: var(--side-padding);
  padding-right: 20px;
}
.sidebar-content .linklist__list__item:first-child a {
  padding-top: 20px;
}
.sidebar-content .linklist__list__item:last-child a {
  padding-bottom: 20px;
}

.related-links {
  margin-bottom: 1.5em;
  /* - Depth 1 - */
  /* - Depth 2 - */
}
.related-links__title {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media screen and (min-width: 75em) {
  .related-links__title {
    font-size: 2.8rem;
  }
}
.related-links ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.related-links ul a {
  position: relative;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 250ms ease-in-out, padding 250ms ease-in-out, background-color 250ms ease-in-out;
  line-height: normal;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0;
  padding-right: 32px;
}
.related-links ul a:hover, .related-links ul a:focus, .related-links ul a:active {
  color: white;
  background-color: #314c86;
  padding-left: 16px;
  padding-right: 16px;
}
.related-links .depth1 {
  border-bottom: 1px solid rgba(231, 235, 247, 0.25);
}
.related-links .depth1 li {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  border-top: 1px solid rgba(231, 235, 247, 0.25);
}
.related-links .depth1 .current-item > a {
  color: #ffffff;
  padding-right: 0;
  background-color: unset;
}
.related-links .depth1 .current-item > a:hover, .related-links .depth1 .current-item > a:focus, .related-links .depth1 .current-item > a:active {
  padding-left: 0;
}
.related-links .depth1 :where(li:first-child) > :where(a) {
  color: #7090cb;
}
.related-links .depth2 li {
  font-weight: normal;
  text-transform: uppercase;
}
.related-links .depth2 li a {
  color: #ffffff;
}
.related-links .depth2 .current-item > a {
  background-color: #314c86;
  color: #ffffff;
  padding-left: 16px;
  padding-right: 32px;
}
.related-links .depth2 .current-item > a:hover, .related-links .depth2 .current-item > a:focus, .related-links .depth2 .current-item > a:active {
  padding-left: 32px;
  padding-right: 32px;
}
.related-links .depth2 .depth2 {
  border-top: 1px solid rgba(231, 235, 247, 0.25);
  padding-left: 16px;
}
.related-links .depth2 .depth2 li:first-child {
  text-transform: none;
  border: none;
}
.related-links .depth2 .current-item > .depth2 {
  padding-left: 32px;
}

.tile-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.icon-tile-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 32px;
}
.icon-tile-list--narrow {
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  .icon-tile-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 75em) {
  .icon-tile-list {
    display: inline-grid;
    min-width: 50%;
    grid-template-columns: unset;
    grid-auto-columns: 1fr;
  }
  .icon-tile-list > :nth-child(2) {
    grid-column: 2;
  }
  .icon-tile-list > :last-child:nth-child(3),
  .icon-tile-list > :nth-last-child(n+5) ~ :nth-child(3) {
    grid-column: 3;
  }
}

/* ---- top-heavy-list ---- */
/* To display a list of products nicely */
.top-heavy-list {
  width: 100%;
  list-style: none;
  padding: 20px 0 30px;
  margin: 0 -10px;
}
.top-heavy-list:before, .top-heavy-list:after {
  content: " ";
  display: table;
}
.top-heavy-list:after {
  clear: both;
}
.top-heavy-list > .top-heavy-list {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.top-heavy-list + .top-heavy-list {
  padding-top: 0;
}
.top-heavy-list__item {
  padding: 10px;
}

@media screen and (min-width: 35em) {
  .top-heavy-list__item {
    padding: 10px;
    width: 50%;
    float: left;
  }
  .top-heavy-list__item:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 62em) {
  .top-heavy-list__item {
    width: 33.3333%;
  }
  .top-heavy-list__item:nth-child(2n+1) {
    clear: none;
  }
  .top-heavy-list__item:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 87.5em) {
  .top-heavy-list__item {
    width: 25%;
  }
  .mainbar--narrow .top-heavy-list__item {
    width: 33.33333333%;
  }
  .top-heavy-list__item:nth-child(3n+1) {
    clear: none;
  }
  .top-heavy-list__item:nth-child(4n+1) {
    clear: left;
  }
}
/* Flex code */
@supports (display: flex) {
  @media screen and (min-width: 35em) {
    .top-heavy-list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      margin-left: -10px;
      margin-right: -10px;
      width: calc(100% + 20px) .top-heavy-list __item;
      width-margin-right: auto;
      width-margin-left: auto;
      width-padding: 0 10px 20px;
      width-flex-basis: 50%;
      width-min-width: 50%;
      width-width: auto !important;
    }
    .top-heavy-list--five .top-heavy-list__item, .top-heavy-list__item:nth-child(-n+3) {
      -ms-flex-positive: 1;
          flex-grow: 1;
    }
  }
  @media screen and (max-width: 61.9375em) {
    .top-heavy-list--three .top-heavy-list__item:first-child, .top-heavy-list--five .top-heavy-list__item:first-child, .top-heavy-list--seven .top-heavy-list__item:first-child, .top-heavy-list--odd .top-heavy-list__item:first-child {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
    }
  }
  @media screen and (min-width: 62em) {
    .top-heavy-list {
      margin-left: -2%;
      margin-right: -2%;
      /*  grid with sidebar, stays only 3 columns  */
    }
    .top-heavy-list .top-heavy-list__item {
      padding: 2%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
      min-width: 25%;
    }
    .top-heavy-list--odd > .top-heavy-list__item, .mainbar--narrow .top-heavy-list > .top-heavy-list__item, .top-heavy-list--six > .top-heavy-list__item, .top-heavy-list--seven > .top-heavy-list__item:nth-child(-n+3) {
      -ms-flex-preferred-size: 33.33333333%;
          flex-basis: 33.33333333%;
      min-width: 33.33333333%;
    }
    .top-heavy-list--five > .top-heavy-list__item:nth-child(-n+2) {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
    }
    .top-heavy-list--five > .top-heavy-list__item:nth-child(n+3) {
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%;
    }
    .mainbar--narrow .top-heavy-list--four > .top-heavy-list__item:nth-child(-n+4), .mainbar--narrow .top-heavy-list--seven > .top-heavy-list__item:nth-child(-n+4) {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
    }
    .mainbar--narrow .top-heavy-list--five > .top-heavy-list__item:nth-child(-n+2), .mainbar--narrow .top-heavy-list--even > .top-heavy-list__item:nth-child(-n+2) {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
    }
  }
}
.media-object__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.media-object__list:before, .media-object__list:after {
  content: " ";
  display: table;
}
.media-object__list:after {
  clear: both;
}

.media-object__item {
  padding: 10px 0;
}

.media-object__list:after {
  clear: both;
}

.card__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

@supports (display: grid) {
  .card__list {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .card__list--lg {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .card__item + .card__item {
    margin-top: 0;
  }
}
.benefits-list {
  color: #727171;
  text-align: left;
  line-height: 1.4;
  background: url(../../assets/timeline_line.svg) repeat-y 10px 0;
  position: relative;
  padding-top: 20px;
  padding-bottom: 62px;
  margin-bottom: 0;
}
@media screen and (min-width: 35em) {
  .benefits-list {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 48em) {
  .benefits-list {
    font-size: 1.6rem;
    background-position: center top;
    padding-bottom: 82px;
  }
}
@media screen and (min-width: 62em) {
  .benefits-list {
    font-size: 1.8rem;
    padding-bottom: 100px;
  }
}
.benefits-list:before {
  content: " ";
  background: url(../../assets/ellipse_sm.svg) no-repeat center center;
  display: block;
  width: 21px;
  height: 21px;
  position: absolute;
  top: -10px;
  left: 1px;
}
@media screen and (min-width: 48em) {
  .benefits-list:before {
    width: auto;
    top: -10px;
    left: 0px;
    right: 0;
  }
}
.benefits-list:after {
  content: " ";
  background: url(../../assets/icon_clock.svg) no-repeat center center;
  display: block;
  height: 51px;
  position: absolute;
  bottom: -26px;
  left: 0px;
  right: 0px;
  z-index: 3;
}
.benefits-list--no-cta-section {
  padding-bottom: 40px;
}
.benefits-list--no-cta-section::after {
  content: unset;
}
.benefits-list__item {
  padding-left: 54px;
  position: relative;
}
@media screen and (min-width: 35em) {
  .benefits-list__item {
    padding-left: 87px;
  }
}
@media screen and (min-width: 48em) {
  .benefits-list__item {
    padding-left: 107px;
    width: 50%;
    margin-left: -2px;
    float: right;
    clear: both;
  }
}
.benefits-list__item:first-child {
  margin-top: 24px;
}
@media screen and (min-width: 48em) {
  .benefits-list__item:nth-child(2n+1) {
    text-align: right;
    float: left;
    margin-left: 0px;
    margin-right: -2px;
    padding-left: 0px;
    padding-right: 107px;
  }
  .benefits-list__item:nth-child(2n+1):before {
    display: none;
  }
  .benefits-list__item:nth-child(2n+1)::after {
    content: " ";
    background: url(../../assets/ellipse_right.svg) no-repeat right top;
    display: block;
    width: 77px;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: -14px;
  }
}
.benefits-list__item:before {
  content: " ";
  background: url(../../assets/ellipse_left.svg) no-repeat left top;
  display: block;
  width: 45px;
  position: absolute;
  top: 2px;
  bottom: 0;
  left: -3px;
}
@media screen and (min-width: 35em) {
  .benefits-list__item:before {
    width: 77px;
  }
}
@media screen and (min-width: 48em) {
  .benefits-list__item:before {
    left: -14px;
  }
}
.benefits-list__item--has-icon {
  min-height: 100px;
  margin-top: 60px;
}
.benefits-list__item--has-icon::before {
  display: block !important;
  background: #E5E5E5;
  height: 3px;
  top: calc(1px + 12px);
  left: -1px;
  width: 45px;
  z-index: 0;
}
@media screen and (min-width: 35em) {
  .benefits-list__item--has-icon::before {
    width: 92px;
  }
}
.benefits-list__item--has-icon:first-child {
  margin-top: 56px;
}
@media screen and (min-width: 48em) {
  .benefits-list__item--has-icon:nth-child(2n+1)::before {
    left: unset;
    right: 0;
  }
}
.benefits-list__item--has-icon::after {
  display: none !important;
}
.benefits-list__item__icon {
  background: #F3F5FB;
  border: 3px solid #809AD4;
  border-radius: 50%;
  background-size: auto 100%;
  position: absolute;
  top: -10px;
  left: calc(-12px - 0px);
  width: calc(0 + 48px);
  height: calc(0 + 48px);
  display: grid;
  justify-items: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .benefits-list__item__icon {
    top: -20px;
    left: calc(-36px - 0px);
    width: 72px;
    height: 72px;
  }
}
@media screen and (min-width: 62em) {
  .benefits-list__item__icon {
    top: -48px;
    left: -64px;
    border-width: 4px;
    width: 128px;
    height: 128px;
  }
}
.benefits-list__item__icon svg {
  width: 24px;
  height: 24px;
  position: relative;
}
@media screen and (min-width: 48em) {
  .benefits-list__item__icon svg {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 62em) {
  .benefits-list__item__icon svg {
    width: 56px;
    height: 56px;
  }
}
@media screen and (min-width: 48em) {
  .benefits-list__item--has-icon:nth-child(2n+1) .benefits-list__item__icon {
    right: -36px;
    left: unset;
  }
}
@media screen and (min-width: 62em) {
  .benefits-list__item--has-icon:nth-child(2n+1) .benefits-list__item__icon {
    right: -64px;
  }
}
.benefits-list h3 {
  color: #004e93;
  margin-bottom: 8px;
}

.benefits-list--icons {
  padding-top: 60px;
  margin-top: -40px;
  margin-bottom: -56px;
}
.benefits-list--icons:after {
  display: none;
}
.benefits-list--icons .benefits-list__item {
  padding-left: 75px;
  padding-top: 22px;
  position: relative;
}
@media screen and (min-width: 48em) {
  .benefits-list--icons .benefits-list__item {
    padding-left: 107px;
    left: 25px;
    padding-top: 58px;
    margin-bottom: -25px;
  }
}
@media screen and (min-width: 75em) {
  .benefits-list--icons .benefits-list__item {
    padding-right: 25px;
    padding-left: 115px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 48em) {
  .benefits-list--icons .benefits-list__item:nth-child(2n+1) {
    padding-left: 0;
    left: auto;
    right: 25px;
  }
  .benefits-list--icons .benefits-list__item:nth-child(2n+1)::before, .benefits-list--icons .benefits-list__item:nth-child(2n+1)::after {
    width: 170px;
  }
}
@media screen and (min-width: 75em) {
  .benefits-list--icons .benefits-list__item:nth-child(2n+1) {
    padding-left: 25px;
    padding-right: 115px;
  }
  .benefits-list--icons .benefits-list__item:nth-child(2n+1)::before, .benefits-list--icons .benefits-list__item:nth-child(2n+1)::after {
    width: 192px;
  }
}
.benefits-list--icons .benefits-list__item:before {
  background: url(../../assets/ellipse-md_left.svg) no-repeat left center;
  background-position: top left;
  width: 90px;
  left: -26px;
}
.benefits-list--icons .benefits-list__item__icon {
  background: no-repeat center center;
  background-size: 36px auto;
  display: block;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 0px;
  left: -26px;
}

/*
    Tidy List grid

    On large desktop it adjusts based on the number of items:
    - 1 full width
    - 2 two cols
    - 3 three cols
    - 4 four cols
    - 5+ three cols
*/
.tidy-list-grid {
  --gap: 32px;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: var(--gap);
}
@media screen and (min-width: 48em) {
  .tidy-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 75em) {
  .tidy-list-grid {
    display: inline-grid;
    min-width: 50%;
    grid-template-columns: unset;
    grid-auto-columns: 1fr;
  }
  .tidy-list-grid > :nth-child(2):last-child {
    grid-column: 2;
  }
  .tidy-list-grid > :nth-child(4):last-child {
    grid-column: 4;
  }
  .tidy-list-grid > :last-child:nth-child(3),
  .tidy-list-grid > :nth-last-child(n+5) ~ :nth-child(3) {
    grid-column: 3;
  }
}
.tidy-list-grid--gap-0 {
  --gap: 0;
}

.sitemap {
  text-align: left;
}
@media screen and (min-width: 48em) {
  .sitemap {
    columns: 2;
  }
}
@media screen and (min-width: 62em) {
  .sitemap {
    columns: 3;
  }
}
.sitemap__section {
  break-inside: avoid;
}
.sitemap__section:first-child .sitemap__list-title {
  margin-top: 0;
}
.sitemap__list-title {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  text-transform: none;
  color: inherit;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.sitemap__list-subtitle {
  font-weight: 700;
  margin-bottom: 0.25em;
  margin-top: 0.5em;
  opacity: 0.8;
}
.sitemap ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.sitemap ul > li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.sitemap ul > li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.sitemap .sitemap-item button {
  display: block;
  width: 100%;
  background: none;
  outline: none;
  border: none;
  font-family: "Raleway-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-align: left;
  padding-left: 1.25em;
}
.sitemap .sitemap-item a,
.sitemap .sitemap-item button {
  text-decoration: none;
  display: block;
  line-height: 2;
  background-color: transparent;
  color: #727171;
  border: 1px solid #EEEFF1;
  border-left: 3px solid #9c9c9c;
  margin-bottom: -1px;
  transition: color 250ms ease-in-out, border-color 250ms ease-in-out, background-color 250ms ease-in-out;
}
.sitemap .sitemap-item a:hover, .sitemap .sitemap-item a:focus, .sitemap .sitemap-item a:active,
.sitemap .sitemap-item button:hover,
.sitemap .sitemap-item button:focus,
.sitemap .sitemap-item button:active {
  background-color: #EEEFF1;
  color: #385799;
  border-left: 3px solid #385799;
}
.sitemap .sitemap-item-depth1 a {
  padding-left: 1.25em;
}
.sitemap .sitemap-item-depth2 a {
  padding-left: 2.5em;
}
.sitemap .sitemap-item-depth3 a {
  padding-left: 3.75em;
}

.media-article {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 48em) {
  .media-article {
    display: grid;
    grid-gap: 64px;
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (min-width: 75em) {
  .media-article {
    gap: 80px;
  }
}
@media screen and (min-width: 48em) {
  .media-article--reverse {
    grid-template-columns: 3fr 2fr;
  }
}
@media screen and (min-width: 48em) {
  .media-article--reverse .media-article__media {
    grid-column: 2;
  }
}
@media screen and (min-width: 48em) {
  .media-article--reverse .media-article__content {
    grid-row: 1;
    grid-column: 1;
  }
}

.promo-section {
  background-color: #e7ebf7;
  color: #605f5f;
  text-align: center;
  position: relative;
}
:where(.promo-section) a {
  color: #6991cd;
}

:where(.promo-section) a:hover,
:where(.promo-section) a:focus,
:where(.promo-section) a:active {
  color: #385799;
}

@media screen and (min-width: 62em) {
  .promo-section {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}
.promo-section--start-primary-bg ~ .promo-section:nth-child(2n) {
  background-color: #ffffff;
}
.promo-section--start-white-bg, .promo-section--start-white-bg ~ .promo-section:nth-child(2n+1) {
  background-color: #ffffff;
}
.promo-section--left-aligned {
  text-align: left;
}
.promo-section__title {
  color: #004e93;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 62em) {
  .promo-section__title {
    margin-bottom: 32px;
    font-size: 3.6rem;
    line-height: 40px;
  }
}
@media screen and (min-width: 62em) {
  .promo-section .subheading {
    margin-bottom: 32px;
  }
}
.promo-section__title-link {
  margin-top: -8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 62em) {
  .promo-section__title-link {
    margin-top: -24px;
    margin-bottom: 32px;
  }
}
.promo-section__title-link a {
  text-decoration: none;
  text-transform: uppercase;
}
.promo-section__title-link a::after {
  content: " >";
  position: relative;
  top: -0.1em;
}
.promo-section__richtext {
  max-width: 80ch;
  margin-inline: auto;
}
.promo-section__richtext--left-aligned {
  text-align: left;
}
.promo-section__richtext--left-2-col {
  text-align: left;
}
@media screen and (min-width: 62em) {
  .promo-section__richtext--left-2-col {
    columns: 2 auto;
    column-gap: 16px;
  }
}
.promo-section__richtext--left-2-col h1,
.promo-section__richtext--left-2-col h2,
.promo-section__richtext--left-2-col h3,
.promo-section__richtext--left-2-col h4,
.promo-section__richtext--left-2-col h5,
.promo-section__richtext--left-2-col h6 {
  break-inside: avoid;
  break-after: avoid;
}
@supports (break-after: always) {
  .promo-section__richtext--left-2-col h1,
  .promo-section__richtext--left-2-col h2,
  .promo-section__richtext--left-2-col h3,
  .promo-section__richtext--left-2-col h4,
  .promo-section__richtext--left-2-col h5,
  .promo-section__richtext--left-2-col h6 {
    margin-top: 0 !important;
  }
}
.promo-section__richtext--left-2-col li,
.promo-section__richtext--left-2-col p {
  break-inside: avoid;
}
.promo-section__form {
  text-align: left;
  max-width: 480px;
  margin: auto;
}
.promo-section .icon-tile-list {
  margin-top: 16px;
  text-align: left;
}
.promo-section__cta-heading {
  padding-top: 32px;
  margin-bottom: 0;
}
.promo-section__cta {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
}
.promo-section__cta__button {
  translate: 0 -50%;
}

.promo-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 35em) {
  .promo-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
  }
}
@media screen and (min-width: 62em) {
  .promo-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
  }
}

:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]),
:where(.constrain-section-text) :where(form) :where(button[type=submit]) {
  text-align: center;
  vertical-align: middle;
  display: inline-grid;
  grid-auto-flow: column;
  column-gap: 0.5em;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  white-space: normal;
  cursor: pointer;
  border-radius: var(--button-border-radius);
  outline: none;
  opacity: 1;
  position: relative;
  margin: 0;
  text-decoration: none;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-family: "Montserrat-webfont", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  line-height: normal;
  color: #ffffff;
  background: #208B50;
  border: var(--button-border-width) solid #208B50;
  transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out, outline 250ms ease-in-out;
  display: block;
  width: 100%;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]) svg,
:where(.constrain-section-text) :where(form) :where(button[type=submit]) svg {
  height: 0.85em;
  width: 0.85em;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]) svg [stroke*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]) svg [stroke*="#"] {
  stroke: currentColor;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]) svg [fill*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]) svg [fill*="#"] {
  fill: currentColor;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):hover, :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):focus, :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):active,
:where(.constrain-section-text) :where(form) :where(button[type=submit]):hover,
:where(.constrain-section-text) :where(form) :where(button[type=submit]):focus,
:where(.constrain-section-text) :where(form) :where(button[type=submit]):active {
  background-color: #166238;
  border-color: #166238;
  color: #ffffff;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):hover [stroke*="#"], :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):focus [stroke*="#"], :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):active [stroke*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):hover [stroke*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):focus [stroke*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):active [stroke*="#"] {
  stroke: #ffffff;
}
:where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):hover [fill*="#"], :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):focus [fill*="#"], :where(.extra-constrain-section-text) :where(form) :where(button[type=submit]):active [fill*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):hover [fill*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):focus [fill*="#"],
:where(.constrain-section-text) :where(form) :where(button[type=submit]):active [fill*="#"] {
  fill: #ffffff;
}

.promo-card__img.logo {
  width: 100%;
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  border: 3px solid #e5e5e5;
}

.promo-card__img__logo {
  object-fit: contain;
  padding: 2em;
}

.column-keep-together {
  display: inline-block;
  width: 100%;
}

.feature-section {
  color: #ffffff;
  background: #385799 url(../../assets/bg-photo-texture.jpg) no-repeat center 48%;
  background-attachment: fixed;
  padding-top: var(--section-large);
  padding-bottom: var(--section);
  position: relative;
  z-index: 0;
}
:where(.feature-section) h2,
:where(.feature-section) h3,
:where(.feature-section) h4,
:where(.feature-section) h5,
:where(.feature-section) h6 {
  color: #ffffff;
}

:where(.feature-section) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.feature-section) a:hover,
:where(.feature-section) a:focus,
:where(.feature-section) a:active {
  color: rgba(255, 255, 255, 0.7);
}

.feature-section__title {
  color: #ffffff;
  font-family: "compassethin", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.25;
}
.feature-section__tick-feature {
  color: #3ea321;
  text-transform: uppercase;
  display: inline-grid;
  gap: 16px;
  justify-items: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 48em) {
  .feature-section__tick-feature {
    grid-auto-flow: column;
  }
}

.testimonial-section {
  color: #ffffff;
  background: #385799 url(../../assets/bg-photo-texture.jpg) no-repeat center 48%;
  background-attachment: fixed;
}
:where(.testimonial-section) h2,
:where(.testimonial-section) h3,
:where(.testimonial-section) h4,
:where(.testimonial-section) h5,
:where(.testimonial-section) h6 {
  color: #ffffff;
}

:where(.testimonial-section) a {
  color: white;
  transition: color 250ms ease-in-out;
}

:where(.testimonial-section) a:hover,
:where(.testimonial-section) a:focus,
:where(.testimonial-section) a:active {
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 62em) {
  .testimonials {
    display: grid;
    grid-template-columns: 20ch auto;
    gap: 48px;
  }
}
@media screen and (min-width: 75em) {
  .testimonials {
    grid-template-columns: 24ch auto;
    gap: 80px;
  }
}
.testimonials__header__title {
  color: #ffffff;
  font-family: "compassethin", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.25;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffffff;
}
@media screen and (min-width: 62em) {
  .testimonials__header__title {
    margin-top: 0;
  }
}
.testimonials__testimonial {
  position: relative;
  font-size: 2rem;
}
@media screen and (min-width: 62em) {
  .testimonials__testimonial {
    font-size: 2.5rem;
  }
}
.testimonials__testimonial::before {
  content: '"';
  position: absolute;
  right: 100%;
}
.testimonials__testimonial p:last-of-type::after {
  content: '"';
}
.testimonials__testimonial__footer {
  margin-left: 32px;
  position: relative;
  font-size: 1.6rem;
  float: right;
  font-weight: bold;
}
@media screen and (min-width: 62em) {
  .testimonials__testimonial__footer {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 62em) {
  .testimonials__testimonial__footer {
    margin-left: 10%;
  }
}
.testimonials__testimonial__footer::before {
  content: "-";
  position: absolute;
  right: calc(100% + 8px);
}

/* ------------------------------------------------------
**** PAGES
------------------------------------------------------ */
.help-centre {
  padding-bottom: var(--section-large);
}
@media screen and (min-width: 48em) {
  .help-centre {
    padding-top: var(--section-small);
  }
}
.help-centre > .container:first-child {
  border-top: 1px solid #d4d4d4;
}
.help-centre__header {
  text-align: center;
  padding-top: var(--section);
}
.help-centre__header h1 {
  padding-bottom: 8px;
}
@media screen and (min-width: 48em) {
  .help-centre__header h1 {
    padding-bottom: var(--section-small);
  }
}
.help-centre__content {
  padding-top: var(--section-small);
}

.faq-search-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  gap: 8px;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
@media screen and (min-width: 48em) {
  .faq-search-form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: var(--section-small);
  }
}
.faq-search-form__input {
  width: 100%;
}
.faq-search-form__input :where(input) {
  min-height: 38px;
}

.faq-quick-search-form {
  display: -ms-flexbox;
  display: flex;
}
.faq-quick-search-form .field-input input {
  border-right: 0;
}

.faq-list {
  list-style-type: none;
  padding-left: 0;
}
.faq-list__category__btn {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  text-transform: none;
  color: #004e93;
  background-color: #ffffff;
  border: 0px solid #6991cd;
  border-top-width: 2px;
  border-bottom-width: 2px;
  padding: 16px;
  width: 100%;
  text-align: left;
  transition: all 250ms ease-in-out;
  margin: -2px 0 0;
  display: grid;
  grid-auto-flow: column;
  -ms-flex-pack: start;
      justify-content: start;
  gap: 8px;
}
.faq-list__category__btn__icon {
  display: inline-grid;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: all 250ms ease-in-out;
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
}
.faq-list__category__btn svg * {
  fill: currentColor;
}
.faq-list__category button.faq-list__category__btn {
  cursor: pointer;
}
.faq-list__category button.faq-list__category__btn:hover, .faq-list__category button.faq-list__category__btn:focus, .faq-list__category button.faq-list__category__btn:active {
  background-color: #385799;
  color: #ffffff;
}
.faq-list__category button.faq-list__category__btn[aria-pressed=false] .faq-list__category__btn__icon, .faq-list__category button.faq-list__category__btn:hover .faq-list__category__btn__icon, .faq-list__category button.faq-list__category__btn:focus .faq-list__category__btn__icon {
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
}
.faq-list__category button.faq-list__category__btn[aria-pressed=true] .faq-list__category__btn__icon, .faq-list__category button.faq-list__category__btn[aria-pressed=false]:hover .faq-list__category__btn__icon, .faq-list__category button.faq-list__category__btn[aria-pressed=false]:focus .faq-list__category__btn__icon {
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
.faq-list__category__entry-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  background-color: #EEEFF1;
}
.faq-list__category__entry-list a {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: #385799;
  transition: all 250ms ease-in-out;
}
.faq-list__category__entry-list a:hover, .faq-list__category__entry-list a:focus, .faq-list__category__entry-list a:active {
  background-color: #d4d4d4;
  color: #002547;
}
.faq-list .js-expandable-content[aria-expanded=false] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.faq-list .js-expandable-content[aria-expanded=true] {
  clip: auto;
  height: auto;
  overflow: visible;
  position: relative;
  width: auto;
  animation: fadeInDown 200ms ease;
  animation-fill-mode: forwards;
}

.faq-feedback {
  margin: var(--section-small) 0;
  padding: var(--section-small) 0;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}
.faq-feedback__btns {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 8px;
}
.faq-feedback__form {
  padding-top: 8px;
}
@media screen and (min-width: 30em) {
  .faq-feedback button[type=submit] {
    display: inline-block;
    margin: auto;
    width: auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}

.contact-cta {
  background-color: #EEEFF1;
  padding: 16px 24px;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 48em) {
  .contact-cta {
    grid-template-columns: auto auto;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.contact-cta p {
  margin: 0;
}

#assistance-switcher:target {
  outline: none;
  animation: fadeInDown 700ms ease;
}
