@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap);
@charset "UTF-8";
/* 1 */
/* 1 */
.duk-text--x-small {
  font-size: 0.7em;
  line-height: 1.6;
}
.duk-text--small {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.duk-text--regular {
  font-size: 1em;
  line-height: 1.6;
}
.duk-text--large {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.duk-text--x-large {
  font-size: 1.8em;
  line-height: 1.6;
}

.duk-icon-set span {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  float: left;
}
.duk-icon-set span > * {
  line-height: 3rem;
}
.duk-icon-set span > *:before {
  vertical-align: middle;
}

/**
 * Adds a circular border to an element.
 */
/**
 * Adds an outline when the element is on focus.
 */
/**
 * Provide a base button.
 */
/**
* Provides button state color.
*/
/**
 * Primary button style.
 */
/**
 * Secondary button style.
 */
/**
 * Transparent button style.
 */
/**
 * Link button style.
 */
/**
 * Basic card style.
 */
/**
 * Filter card style.
 */
/**
 * Filter card icon style.
 */
/**
 * Filter card style.
 */
/**
 * Set the arrow and underline color.
 */
/**
 * Adds a arrow and underline color mixin.
 */
/**
 * Set the background colour of the hero content.
 */
.cm-bgcontent-color:not(.cm-text-colour--dark) a:focus {
  outline-color: #ffffff;
}

/**
 * Adds a text color mixin for classes uses in paragraph fields.
 */
/**
 * Set the icon and link color on accordion paragraph type.
 */
/**
 * Adds a theme color mixin.
 */
/**
 * Apply text color for theme color fields.
 */
/**
 * Adds default style for hero.
 */
/**
 * Return an icon font size from the $duk-icon-sizes mapping.
 */
/**
 * Creates a container with constraints and left and right padding.
 */
/**
 * Creates a constraint for components.
 */
/**
 * Remove horizontal spacing set by layout.
 */
/**
 * Nested links style.
 */
/**
 * Add an icon after the link and remove the default underline animation.
 */
/**
 * Set link colour.
 */
/**
 * Add paragraph margin bottom;
 */
/**
 * Adds default style for paragraphs.
 */
/**
 * Reset styling for links in paragraph.
 */
/**
 * Mixin for the concave shape.
 */
/**
 * Adds a slider.
 */
/*
 * Spacing unit. su(1) == 16px.
 * su(2) == 32px. Etc.
 */
/**
 * Adds teaser landscape mixin for landscape images.
 */
/**
 * Adds teaser portrait mixin for portrait images.
 */
/**
 * Generates custom colour themes for landing pages like Teams.
 */
/**
 * Auto populate a theme based on a single color.
 */
/**
 * Set tooltip colour.
 */
/**
 * Mixin to transition.
 */
/**
 * Adds a text color mixin for classes uses in WYSIWYG.
 */
/* Circle */
.animate--circle {
  position: relative;
}
.animate--circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.animate--circle:hover::before {
  animation: circle 0.75s;
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/* Zoom Out #1 */
.animate--zoom-in {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.animate--zoom-in:hover {
  transform: scale(1.2);
}

/* Zoom Out #1 */
.animate--zoom-out {
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
.animate--zoom-out:hover {
  transform: scale(1);
}

body.palette--theme-default,
span.palette--theme-default,
div.palette--theme-default {
  --color-primary: #459965;
  --color-text_on_primary: #ffffff;
  --color-secondary: #007299;
  --color-text_on_secondary: ;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-1,
span.palette--theme-1,
div.palette--theme-1 {
  --color-primary: #0077b6;
  --color-text_on_primary: #ffffff;
  --color-secondary: #29a0de;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-2,
span.palette--theme-2,
div.palette--theme-2 {
  --color-primary: #459965;
  --color-text_on_primary: #ffffff;
  --color-secondary: #6caf85;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-3,
span.palette--theme-3,
div.palette--theme-3 {
  --color-primary: #9c9c9c;
  --color-text_on_primary: #ffffff;
  --color-secondary: #3e3e3e;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-4,
span.palette--theme-4,
div.palette--theme-4 {
  --color-primary: #6badcc;
  --color-text_on_primary: #ffffff;
  --color-secondary: #007299;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-5,
span.palette--theme-5,
div.palette--theme-5 {
  --color-primary: #e76f51;
  --color-text_on_primary: #ffffff;
  --color-secondary: #ff8b6e;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-6,
span.palette--theme-6,
div.palette--theme-6 {
  --color-primary: #ce416c;
  --color-text_on_primary: #ffffff;
  --color-secondary: #f2628e;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-7,
span.palette--theme-7,
div.palette--theme-7 {
  --color-primary: #7c45ab;
  --color-text_on_primary: #ffffff;
  --color-secondary: #a660e2;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-8,
span.palette--theme-8,
div.palette--theme-8 {
  --color-primary: #b83343;
  --color-text_on_primary: #ffffff;
  --color-secondary: #dd4658;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-9,
span.palette--theme-9,
div.palette--theme-9 {
  --color-primary: #006d77;
  --color-text_on_primary: #ffffff;
  --color-secondary: #078d9a;
  --color-text_on_secondary: #ffffff;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

body.palette--theme-10,
span.palette--theme-10,
div.palette--theme-10 {
  --color-primary: #ecd120;
  --color-text_on_primary: #000000;
  --color-secondary: #e0e0e0;
  --color-text_on_secondary: #000000;
  --color-primary-transparent: rgba(69, 153, 101, 0.3);
  --color-tint: rgba(37, 83, 55, 0.04);
}

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

[class*=duk-icon-]:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.duk-icon-date:before {
  content: "\e90a";
}

.duk-icon-word:before {
  content: "\e90b";
}

.duk-icon-pdf:before {
  content: "\e913";
}

.duk-icon-email:before {
  content: "\e914";
}

.duk-icon-pause:before {
  content: "\e915";
}

.duk-icon-phone:before {
  content: "\e916";
}

.duk-icon-external-link:before {
  content: "\e90f";
}

.duk-icon-arrow-right:before {
  content: "\e902";
}

.duk-icon-arrow-left:before {
  content: "\e905";
}

.duk-icon-arrow-down:before {
  content: "\e906";
}

.duk-icon-arrow-up:before {
  content: "\e90e";
}

.duk-icon-cheveron-up:before {
  content: "\e904";
}

.duk-icon-cheveron-right:before {
  content: "\e907";
}

.duk-icon-cheveron-down:before {
  content: "\e90c";
}

.duk-icon-cheveron-left:before {
  content: "\e90d";
}

.duk-icon-output:before {
  content: "\e910";
}

.duk-icon-next:before {
  content: "\e911";
}

.duk-icon-close:before {
  content: "\e912";
}

.duk-icon-search:before {
  content: "\e986";
}

.duk-icon-menu:before {
  content: "\e9bd";
}

.duk-icon-play:before {
  content: "\ea1c";
}

.duk-icon-blockquote:before {
  content: "\e900";
}

.duk-icon-download:before {
  content: "\e901";
}

.duk-icon-tooltip:before {
  content: "\e903";
}

.duk-icon-post:before {
  content: "\e908";
}

.layout-multi-column__body {
  margin-bottom: 32px;
}
.layout-multi-column__item {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .layout-multi-column__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.2rem;
  }
}
@media (min-width: 768px) {
  .layout-multi-column__item .teaser__image-wrapper,
  .layout-multi-column__item .teaser__image {
    min-height: 350px;
  }
}
@media (min-width: 1024px) {
  .layout-multi-column--3 .layout-multi-column__items,
  .layout-multi-column--4 .layout-multi-column__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .layout-multi-column--3 .layout-multi-column__item .teaser__image-wrapper,
  .layout-multi-column--3 .layout-multi-column__item .teaser__image,
  .layout-multi-column--4 .layout-multi-column__item .teaser__image-wrapper,
  .layout-multi-column--4 .layout-multi-column__item .teaser__image {
    min-height: 250px;
  }
}
@media (min-width: 1280px) {
  .layout-multi-column--4 .layout-multi-column__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.search__page .content-top .container, .publications__page .content-top .container, .news__page .content-top .container {
  width: auto;
  margin: 0;
  padding: 0;
}
.search__page .content-top .region-content-top > div, .publications__page .content-top .region-content-top > div, .news__page .content-top .region-content-top > div {
  margin: 0;
}
.search__page main, .publications__page main, .news__page main {
  font-family: "Montserrat", sans-serif;
}

.view-display-id-page_1 .pager, .view-display-id-views_publications_page .pager, .view-display-id-views_news_page .pager {
  margin: 45px 0;
}
.view-display-id-page_1 .pager__items a, .view-display-id-views_publications_page .pager__items a, .view-display-id-views_news_page .pager__items a {
  color: #383838;
  font-weight: 500;
}
.view-display-id-page_1 .pager__item--first a, .view-display-id-views_publications_page .pager__item--first a, .view-display-id-views_news_page .pager__item--first a, .view-display-id-page_1 .pager__item--previous a, .view-display-id-views_publications_page .pager__item--previous a, .view-display-id-views_news_page .pager__item--previous a, .view-display-id-page_1 .pager__item--next a, .view-display-id-views_publications_page .pager__item--next a, .view-display-id-views_news_page .pager__item--next a, .view-display-id-page_1 .pager__item--last a, .view-display-id-views_publications_page .pager__item--last a, .view-display-id-views_news_page .pager__item--last a {
  font-size: 1.375rem;
  line-height: 2rem;
}
.view-display-id-page_1 .pager__item.is-active a, .view-display-id-views_publications_page .pager__item.is-active a, .view-display-id-views_news_page .pager__item.is-active a {
  color: #722587;
}

.stack--simple, .stack--simple--with-arrow, .stack--detail {
  color: #383838;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}
.stack--simple .stack__link, .stack--simple--with-arrow .stack__link, .stack--detail .stack__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.stack--simple .stack__link:after, .stack--simple--with-arrow .stack__link:after, .stack--detail .stack__link:after {
  content: unset;
}
.stack--simple .stack__content, .stack--simple--with-arrow .stack__content, .stack--detail .stack__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 40px 30px;
}
.stack--simple .stack__content .stack__title, .stack--simple--with-arrow .stack__content .stack__title, .stack--detail .stack__content .stack__title {
  color: #383838;
}
.stack--simple .stack__content .stack__info, .stack--simple--with-arrow .stack__content .stack__info, .stack--detail .stack__content .stack__info, .stack--simple .stack__content .stack__summary, .stack--simple--with-arrow .stack__content .stack__summary, .stack--detail .stack__content .stack__summary {
  flex-grow: 1;
  margin-bottom: 20px;
}
.stack--simple .stack__content .stack__info p, .stack--simple--with-arrow .stack__content .stack__info p, .stack--detail .stack__content .stack__info p, .stack--simple .stack__content .stack__summary p, .stack--simple--with-arrow .stack__content .stack__summary p, .stack--detail .stack__content .stack__summary p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.stack--simple .stack__content .stack__tags, .stack--simple--with-arrow .stack__content .stack__tags, .stack--detail .stack__content .stack__tags {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 600;
}
.stack--simple .stack__content .stack__tags a, .stack--simple--with-arrow .stack__content .stack__tags a, .stack--detail .stack__content .stack__tags a {
  color: var(--color-link);
}
.stack--simple .stack__content .stack__tags a:after, .stack--simple--with-arrow .stack__content .stack__tags a:after, .stack--detail .stack__content .stack__tags a:after {
  content: unset;
}
@media (min-width: 768px) {
  .stack--simple, .stack--simple--with-arrow, .stack--detail {
    transition: all 250ms;
  }
  .stack--simple .stack__content .stack__title, .stack--simple--with-arrow .stack__content .stack__title, .stack--detail .stack__content .stack__title {
    font-size: 1.375rem;
    line-height: 1.3;
  }
  .stack--simple .stack__content .stack__info p, .stack--simple--with-arrow .stack__content .stack__info p, .stack--detail .stack__content .stack__info p, .stack--simple .stack__content .stack__summary p, .stack--simple--with-arrow .stack__content .stack__summary p, .stack--detail .stack__content .stack__summary p {
    font-size: 1.0625rem;
    line-height: 1.25rem;
    line-height: 28px;
  }
  .stack--simple .stack__content .stack__tags a, .stack--simple--with-arrow .stack__content .stack__tags a, .stack--detail .stack__content .stack__tags a {
    font-size: 18px;
    line-height: 1.625rem;
    opacity: 0;
    transition: opacity 250ms;
  }
  .stack--simple .stack__content .stack__tags a:focus, .stack--simple--with-arrow .stack__content .stack__tags a:focus, .stack--detail .stack__content .stack__tags a:focus {
    opacity: 1;
  }
  .stack--simple:hover, .stack--simple--with-arrow:hover, .stack--detail:hover {
    transform: translate(8px, -8px);
    box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.2);
  }
  .stack--simple:hover .stack__content .stack__tags a, .stack--simple--with-arrow:hover .stack__content .stack__tags a, .stack--detail:hover .stack__content .stack__tags a {
    opacity: 1;
  }
}

.adminimal-admin-toolbar .au-header {
  margin-top: 79px;
}

.au-body.au-grid {
  padding-top: 66px;
}
@media (min-width: 1024px) {
  .au-body.au-grid {
    padding-top: 100px;
  }
}

@font-face {
  font-family: "sms icons";
  src: url("/themes/caburlotto/src/fonts/icomoon/icomoon.eot");
  src: url("/themes/caburlotto/src/fonts/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("/themes/caburlotto/src/fonts/icomoon/icomoon.woff") format("woff"), url("/themes/caburlotto/src/fonts/icomoon/icomoon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class*=duk-icon-]:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.duk-icon-date:before {
  content: "\e90a";
}

.duk-icon-word:before {
  content: "\e90b";
}

.duk-icon-pdf:before {
  content: "\e913";
}

.duk-icon-email:before {
  content: "\e914";
}

.duk-icon-pause:before {
  content: "\e915";
}

.duk-icon-phone:before {
  content: "\e916";
}

.duk-icon-external-link:before {
  content: "\e90f";
}

.duk-icon-arrow-right:before {
  content: "\e902";
}

.duk-icon-arrow-left:before {
  content: "\e905";
}

.duk-icon-arrow-down:before {
  content: "\e906";
}

.duk-icon-arrow-up:before {
  content: "\e90e";
}

.duk-icon-cheveron-up:before {
  content: "\e904";
}

.duk-icon-cheveron-right:before {
  content: "\e907";
}

.duk-icon-cheveron-down:before {
  content: "\e90c";
}

.duk-icon-cheveron-left:before {
  content: "\e90d";
}

.duk-icon-output:before {
  content: "\e910";
}

.duk-icon-next:before {
  content: "\e911";
}

.duk-icon-close:before {
  content: "\e912";
}

.duk-icon-search:before {
  content: "\e986";
}

.duk-icon-menu:before {
  content: "\e9bd";
}

.duk-icon-play:before {
  content: "\ea1c";
}

.duk-icon-blockquote:before {
  content: "\e900";
}

.duk-icon-download:before {
  content: "\e901";
}

.duk-icon-tooltip:before {
  content: "\e903";
}

.duk-icon-post:before {
  content: "\e908";
}

p a[target=_blank]:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p a[target=_blank]:before {
  content: "\e90f";
}
p a[target=_blank]:before {
  margin-right: 0.25rem;
  zoom: 0.8;
}

h1, .duk-alpha {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h1, .duk-alpha {
    font-size: 1.875rem;
    font-weight: 600;
    font-weight: 700;
  }
}
@media (min-width: 768px) {
  h1, .duk-alpha {
    font-size: 2.2rem;
    font-weight: 600;
    font-weight: 700;
  }
}
@media (min-width: 1024px) {
  h1, .duk-alpha {
    font-size: 2.8rem;
    font-weight: 600;
    font-weight: 700;
  }
}
@media (min-width: 1280px) {
  h1, .duk-alpha {
    font-size: 3.5rem;
    font-weight: 600;
    font-weight: 700;
  }
}

h2, .duk-beta {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h2, .duk-beta {
    font-size: 1.375rem;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  h2, .duk-beta {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  h2, .duk-beta {
    font-size: 1.8rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  h2, .duk-beta {
    font-size: 2rem;
    font-weight: 600;
  }
}

h3, .duk-gamma {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h3, .duk-gamma {
    font-size: 1.3rem;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  h3, .duk-gamma {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  h3, .duk-gamma {
    font-size: 1.6rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  h3, .duk-gamma {
    font-size: 1.75rem;
    font-weight: 600;
  }
}

h4, .duk-delta {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h4, .duk-delta {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  h4, .duk-delta {
    font-size: 1.35rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  h4, .duk-delta {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  h4, .duk-delta {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

h5, .duk-epsilon {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h5, .duk-epsilon {
    font-size: 1.125rem;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  h5, .duk-epsilon {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  h5, .duk-epsilon {
    font-size: 1.285rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  h5, .duk-epsilon {
    font-size: 1.375rem;
    font-weight: 600;
  }
}

h6, .duk-zeta {
  margin: 1rem 0 0.5rem 0;
}
@media (min-width: 320px) {
  h6, .duk-zeta {
    font-size: 1.05rem;
    font-weight: 600;
  }
}
@media (min-width: 640px) {
  h6, .duk-zeta {
    font-size: 1.15rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  h6, .duk-zeta {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  h6, .duk-zeta {
    font-size: 1.25rem;
    font-weight: 600;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
body.overlay::before {
  z-index: 500;
  display: block;
  content: "";
  width: 100vh;
  height: 100vh;
  background: red;
  z-index: 500;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
body.toolbar-fixed header {
  position: relative;
}
body.toolbar-fixed main {
  margin-top: 0;
}

p {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  line-height: 1.6;
}

a {
  position: relative;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: var(--color-primary);
}
a::after {
  transition: 0.3s all ease-in-out;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
}
a::after {
  width: 0;
}
a:hover::after, a:focus::after {
  width: 100%;
}
a:hover {
  text-decoration: underline;
}

blockquote {
  display: flex;
  margin-block: 0;
  margin-inline: 0;
}
blockquote:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
blockquote:before {
  content: "\e900";
}
blockquote:before {
  font-size: 2rem;
  color: #459965;
  margin-right: 18px;
  color: var(--color-primary);
}
blockquote p {
  font-size: 1.05rem;
  line-height: 1.3;
  line-height: 1.5;
}
blockquote p:before {
  content: open-quote;
  color: var(--color-primary);
  font-size: 2rem;
}
blockquote p:after {
  content: close-quote;
  color: var(--color-primary);
  font-size: 2rem;
}
@media (min-width: 768px) {
  blockquote:before {
    font-size: 3rem;
    margin-right: 32px;
  }
  blockquote p {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

footer {
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  padding-top: 100px;
}
footer a {
  color: var(--color-text_on_primary);
}
footer .region-footer-top {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.au-body footer .region-footer-top, footer .region-footer-top {
  max-width: 1424px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body footer .region-footer-top, footer .region-footer-top {
    padding-left: 0;
    padding-right: 0;
  }
}
footer .region-footer-top .branding-footer {
  order: unset;
  text-align: center;
}
footer .region-footer-top .branding-footer img {
  background: unset;
  height: 150px;
  border: none;
}
footer .footer__middle {
  box-sizing: border-box;
}
.au-body footer .footer__middle, footer .footer__middle {
  max-width: 1424px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body footer .footer__middle, footer .footer__middle {
    padding-left: 0;
    padding-right: 0;
  }
}
footer .footer__middle .region-footer-middle {
  text-align: center;
}
footer .footer__bottom svg .footer-background {
  fill: var(--color-primary);
}
@media (min-width: 1024px) {
  footer .region-footer-top {
    flex-direction: row;
  }
  footer .region-footer-top .branding-footer {
    text-align: left;
  }
  footer .footer__middle {
    display: flex;
  }
  footer .footer__middle-left {
    width: 20%;
  }
  footer .footer__middle-right {
    width: 80%;
  }
  footer .footer__middle .region-footer-middle {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}

.before-footer {
  height: 100px;
}

header {
  z-index: 500;
  background-color: #ffffff;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  box-shadow: 0 1px 4px -4px #000000;
}
header .header__content {
  display: none;
}
header .header .region-navigation {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 66px;
  transition: height 250ms;
  overflow: hidden;
}
header .header .region-navigation nav.main-menu {
  flex-grow: 1;
  width: 100%;
  overflow-y: visible;
  order: 3;
}
header .header .region-navigation .search-block {
  margin: 32px 0;
  order: 2;
}
@media (min-width: 1024px) {
  header .header .region-navigation {
    flex-direction: row;
    align-items: center;
    height: 100px;
  }
  header .header .region-navigation .main-menu--button {
    display: none;
  }
  header .header .region-navigation > .color-strips {
    position: fixed;
    bottom: unset;
    top: 0;
    opacity: 1;
  }
  header .header .region-navigation .block-system-branding-block {
    margin: 0;
  }
  header .header .region-navigation .block-system-branding-block .site-logo {
    width: 224px;
    height: 80px;
  }
  header .header .region-navigation nav.main-menu {
    flex-grow: 1;
    width: auto;
    margin-left: 5vw;
    overflow-y: hidden;
    order: 2;
  }
  header .header .region-navigation > .region-sub-menu-sidebar {
    display: none;
  }
  header .header .region-navigation .search-block {
    width: auto;
    margin: 0 2%;
    order: 3;
  }
  header .header .region-navigation .contact-block {
    flex-shrink: 0;
    width: auto;
    margin: 0;
    order: 4;
  }
  header .header .region-navigation .contact-block .paragraph--type--phone-link {
    margin-bottom: 0;
  }
  header .header .region-navigation .contact-block .paragraph--type--phone-link .field--type-link a {
    border: 2px solid white;
  }
}
@media (min-width: 1440px) {
  header .header .region-navigation nav.main-menu {
    margin-left: 8vw;
  }
}
@media (min-width: 1024px) {
  header .header__content {
    display: flex;
    box-sizing: border-box;
    transition: max-width 250ms;
    justify-content: space-between;
  }
  .au-body header .header__content, header .header__content {
    max-width: 1424px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) and (min-width: ) {
  .au-body header .header__content, header .header__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  header .header__content-left {
    width: 8%;
  }
  header .header__content-right {
    width: 92%;
  }
  header .header__content-mobile {
    display: none;
  }
}

.layout-toc__sidebar {
  display: none;
}
.layout-toc .paragraph--type--item-list,
.layout-toc .paragraph--type--accordion-group {
  padding: 0;
  margin-bottom: 40px;
}
.layout-toc .paragraph--type--item-list > .paragraph-content,
.layout-toc .paragraph--type--accordion-group > .paragraph-content {
  padding: 0;
}
@media (min-width: 1024px) {
  .layout-toc {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-top: 64px;
  }
  .au-body .layout-toc, .layout-toc {
    max-width: 1184px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) and (min-width: ) {
  .au-body .layout-toc, .layout-toc {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .layout-toc .paragraph--type--item-list,
  .layout-toc .paragraph--type--accordion-group {
    margin-bottom: 64px;
  }
  .layout-toc__sidebar {
    display: block;
    width: 25%;
  }
  .layout-toc__content {
    width: 70%;
  }
  .layout-toc .toc__links.theme-color--violet .toc-list-item__title.is-active-link {
    color: #722587;
  }
  .layout-toc .toc__links.theme-color--omb .toc-list-item__title.is-active-link {
    color: #459965;
  }
  .layout-toc .toc__links.theme-color--pc-navy .toc-list-item__title.is-active-link {
    color: #00437B;
  }
  .layout-toc .toc__links.theme-color--foi-blue .toc-list-item__title.is-active-link {
    color: #007299;
  }
  .layout-toc .toc__links.theme-color--violet .toc-list-item.is-active-li::before {
    color: #722587;
    color: rgba(114, 37, 135, 0.1);
  }
  .layout-toc .toc__links.theme-color--omb .toc-list-item.is-active-li::before {
    color: #459965;
    color: rgba(69, 153, 101, 0.1);
  }
  .layout-toc .toc__links.theme-color--pc-navy .toc-list-item.is-active-li::before {
    color: #00437B;
    color: rgba(0, 67, 123, 0.1);
  }
  .layout-toc .toc__links.theme-color--foi-blue .toc-list-item.is-active-li::before {
    color: #007299;
    color: rgba(0, 114, 153, 0.1);
  }
  .layout-toc .toc-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .layout-toc .toc-list-item {
    margin-bottom: 32px;
  }
  .layout-toc .toc-list-item__subtitle {
    font-size: 0.875rem;
    line-height: 1.625rem;
    margin-bottom: 10px;
  }
  .layout-toc .toc-list-item__title {
    transition: 0.3s all ease-in-out;
    font-size: 1.125rem;
    line-height: 1.625rem;
    color: #383838;
    font-weight: 600;
  }
  .layout-toc .toc-list-item__title::before {
    display: none;
  }
  .layout-toc .toc-list-item.is-active-li::before {
    font-weight: 700;
    content: attr(data-toc-index);
    display: block;
    position: absolute;
    left: -215px;
    top: -140px;
    font-size: 20em;
  }
}
@media (min-width: 1280px) {
  .layout-toc .toc-list-item__subtitle {
    font-size: 18px;
    line-height: 1.625rem;
  }
  .layout-toc .toc-list-item__title {
    font-size: 1.375rem;
    line-height: 2rem;
  }
  .layout-toc .toc-list-item.is-active-li::before {
    left: -300px;
  }
}

.main-content {
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .main-content {
    padding-bottom: 48px;
  }
}

main {
  margin-top: 100px;
}

.news__page main .container {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .news__page main .container {
    box-sizing: border-box;
    flex-direction: row;
  }
  .au-body .news__page main .container, .news__page main .container {
    max-width: 1424px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) and (min-width: ) {
  .au-body .news__page main .container, .news__page main .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .news__page main .container .main-content {
    flex-grow: 1;
    position: relative;
    padding-top: 60px;
  }
  .news__page main .container .layout-sidebar {
    padding-top: 60px;
  }
}

.publications__page main .container {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media (min-width: 1024px) {
  .publications__page main .container {
    box-sizing: border-box;
    position: relative;
  }
  .au-body .publications__page main .container, .publications__page main .container {
    max-width: 1184px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) and (min-width: ) {
  .au-body .publications__page main .container, .publications__page main .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .publications__page main .container .main-content {
    flex-grow: 1;
  }
  .publications__page main .container .layout-sidebar {
    position: absolute;
    top: 50px;
    right: 0;
    padding-right: 16px;
  }
}

.search__page main .container {
  display: flex;
  flex-direction: column-reverse;
}

.au-breadcrumbs {
  position: absolute;
  top: 28px;
  text-align: left;
  width: auto;
}
.au-breadcrumbs > .au-link-list > li {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 600;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
.au-breadcrumbs > .au-link-list > li:after {
  color: #ffffff;
  width: auto;
  height: auto;
  margin: 0 6px;
  content: "/";
  background-image: none;
}
.au-breadcrumbs > .au-link-list > li a {
  color: #ffffff;
}
.au-breadcrumbs > .au-link-list > li a:focus {
  outline-color: #ffffff;
}
@media (min-width: 640px) {
  .au-breadcrumbs {
    top: 60px;
  }
  .au-breadcrumbs > .au-link-list > li {
    font-size: 18px;
    line-height: 1.625rem;
  }
  .au-breadcrumbs > .au-link-list > li:after {
    margin: 0 18px;
  }
}

.backstretch {
  color: transparent;
}
.backstretch-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.search-block {
  width: 100%;
}
.search-block form#views-exposed-form-content-search-page-1-header,
.search-block form#views-exposed-form-content-search-page-1 {
  position: relative;
}
.search-block form#views-exposed-form-content-search-page-1-header .form-text,
.search-block form#views-exposed-form-content-search-page-1 .form-text {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  border: none;
  border-radius: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 50px;
}
.search-block form#views-exposed-form-content-search-page-1-header .form-text::-moz-placeholder, .search-block form#views-exposed-form-content-search-page-1 .form-text::-moz-placeholder {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #383838;
}
.search-block form#views-exposed-form-content-search-page-1-header .form-text::placeholder,
.search-block form#views-exposed-form-content-search-page-1 .form-text::placeholder {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #383838;
}
.search-block form#views-exposed-form-content-search-page-1-header .search-button,
.search-block form#views-exposed-form-content-search-page-1 .search-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 0;
  margin-right: 20px;
  background-color: transparent;
  border: none;
}
.search-block form#views-exposed-form-content-search-page-1-header .search-button:focus,
.search-block form#views-exposed-form-content-search-page-1 .search-button:focus {
  outline: 3px solid #9263de;
}
.search-block form#views-exposed-form-content-search-page-1-header .search-button:before,
.search-block form#views-exposed-form-content-search-page-1 .search-button:before {
  font-size: 18px;
  line-height: 1.625rem;
  color: #00437B;
}
@media (min-width: 1024px) {
  .search-block form#views-exposed-form-content-search-page-1-header,
  .search-block form#views-exposed-form-content-search-page-1 {
    display: block;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .form-item-keys,
  .search-block form#views-exposed-form-content-search-page-1 .form-item-keys {
    width: auto;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .form-text,
  .search-block form#views-exposed-form-content-search-page-1 .form-text {
    font-size: 1.0625rem;
    line-height: 1.25rem;
    background-color: rgba(0, 67, 123, 0.05);
    width: 125px;
    padding-left: 47px;
    padding-right: 20px;
    transition: width 250ms;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .form-text:focus,
  .search-block form#views-exposed-form-content-search-page-1 .form-text:focus {
    width: 195px;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .form-text::-moz-placeholder, .search-block form#views-exposed-form-content-search-page-1 .form-text::-moz-placeholder {
    font-size: 1.0625rem;
    line-height: 1.25rem;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .form-text::placeholder,
  .search-block form#views-exposed-form-content-search-page-1 .form-text::placeholder {
    font-size: 1.0625rem;
    line-height: 1.25rem;
  }
  .search-block form#views-exposed-form-content-search-page-1-header .search-button,
  .search-block form#views-exposed-form-content-search-page-1 .search-button {
    right: auto;
    left: 0;
    margin-right: 0;
    margin-left: 20px;
  }
  .search-block form#views-exposed-form-content-search-page-1-header:hover .form-text,
  .search-block form#views-exposed-form-content-search-page-1:hover .form-text {
    width: 195px;
  }
}

.btn {
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.btn:hover, .btn:active, .btn:focus {
  text-decoration: none;
}
.btn:hover::after, .btn:active::after, .btn:focus::after {
  background: none;
}

.button {
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.button:hover, .button:active, .button:focus {
  text-decoration: none;
}
.button:hover::after, .button:active::after, .button:focus::after {
  background: none;
}

.button.button--primary {
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
  height: 50px;
}
.button.button--primary:hover,
.button.button--primary:active,
.button.button--primary:focus {
  text-decoration: none;
}
.button.button--primary:hover::after,
.button.button--primary:active::after,
.button.button--primary:focus::after {
  background: none;
}
.button.button--primary:hover,
.button.button--primary.hover,
.button.button--primary:focus,
.button.button--primary.focus {
  background: var(--color-secondary);
  color: var(--color-text_on_secondary);
}

.button.button--secondary {
  color: #ffffff;
  border-color: #007299;
  background-color: #007299;
  color: #ffffff;
}
.button.button--secondary:hover,
.button.button--secondary.hover,
.button.button--secondary:focus {
  color: #ffffff;
  border-color: #00B0BD;
  background-color: #00B0BD;
}
.button.button--secondary.disabled,
.button.button--secondary:disabled {
  color: #ffffff;
  background-color: #007299;
  border-color: #007299;
}
.button.button--secondary:not(:disabled):not(.disabled):active,
.button.button--secondary:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #00445c;
  border-color: #00445c;
}
.button.button--secondary:hover {
  color: #ffffff;
}
.button.button--secondary:active,
.button.button--secondary.active,
.button.button--secondary.is-active {
  color: #ffffff;
}
.button.button--secondary:focus {
  color: #ffffff;
}
.button.button--secondary a {
  color: var(--color-link);
}
.button.button--secondary.disabled,
.button.button--secondary:disabled {
  opacity: 0.5;
}
.button.button--secondary:focus,
.button.button--secondary.focus {
  color: #ffffff;
  background: #004C6C;
}

.button.button--transparent {
  color: #ffffff;
  border: 2px solid transparent;
}
.button.button--transparent a {
  color: var(--color-link);
}
.button.button--transparent.disabled,
.button.button--transparent:disabled {
  opacity: 0.5;
}
.button.button--transparent:hover,
.button.button--transparent.hover {
  background-color: #ffffff;
  color: #383838;
  border: 2px solid #ffffff;
}
.button.button--transparent:focus,
.button.button--transparent.focus {
  background-color: #ffffff;
}

.color-strips {
  display: flex;
  flex-direction: row;
  height: 9px;
}
.color-strips .strip {
  width: 100%;
}
.color-strips .strip-1 {
  background-color: #459965;
}
.color-strips .strip-2 {
  background-color: #00437B;
}
.color-strips .strip-3 {
  background-color: #007299;
}
.color-strips .strip-4 {
  background-color: #722587;
}

.copyright {
  text-align: center;
}

.developed-by {
  margin-top: 16px;
}
.developed-by__branding {
  display: flex;
  align-items: center;
  justify-content: center;
}
.developed-by__branding img {
  mix-blend-mode: hard-light;
  margin-right: 1rem;
}
.developed-by__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .developed-by__branding {
    display: block;
    text-align: center;
  }
  .developed-by__branding p {
    margin: 0;
  }
}

.field--type-text-with-summary ul li p, .field--type-text-with-summary ol li p,
.field--type-text-long ul li p,
.field--type-text-long ol li p {
  display: contents;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .field--type-text-with-summary ul li p, .field--type-text-with-summary ol li p,
  .field--type-text-long ul li p,
  .field--type-text-long ol li p {
    display: inline-block;
  }
}
.field--type-text-with-summary ul,
.field--type-text-long ul {
  list-style: none;
}
.field--type-text-with-summary ul li,
.field--type-text-long ul li {
  font-size: 1.0625rem;
  line-height: 1.25rem;
}
.field--type-text-with-summary ul li:before,
.field--type-text-long ul li:before {
  font-size: 1.375rem;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  content: "•";
  font-weight: bold;
  display: inline-block;
  width: 0.7em;
  position: relative;
  top: 2px;
}
.field--type-text-with-summary ol li,
.field--type-text-long ol li {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  counter-increment: list;
  list-style-type: none;
  position: relative;
}
.field--type-text-with-summary ol li:before,
.field--type-text-long ol li:before {
  content: counter(list) ".";
  font-weight: bold;
  display: inline-block;
  width: 24px;
}

div#top a:focus {
  z-index: 501;
  background-color: #ffffff;
  position: absolute;
}

.news-banner {
  background-color: #004C6C;
  color: #ffffff;
  display: none;
}
.news-banner--wrapper {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.au-body .news-banner--wrapper, .news-banner--wrapper {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .news-banner--wrapper, .news-banner--wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.news-banner--hide-button {
  background-color: transparent;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.news-banner--hide-button:focus {
  outline: 3px solid #9263de;
}

.node--type-news.node--view-mode-teaser {
  height: 100%;
}
.node--type-news.node--view-mode-teaser .news {
  height: 100%;
}
.node--type-news.node--view-mode-teaser .news__teaser-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.node--type-news.node--view-mode-teaser .news__content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  border: 1px solid #b7b7b7;
  border-radius: 12px;
  overflow: hidden;
}
.node--type-news.node--view-mode-teaser .news__image {
  width: 100%;
  height: 242px;
}
.node--type-news.node--view-mode-teaser .news__content {
  color: #383838;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.node--type-news.node--view-mode-teaser .news__title {
  margin-bottom: 8px;
}
.node--type-news.node--view-mode-teaser .news__title h2 {
  font-size: 1.375rem;
  line-height: 1.3;
  color: #383838;
  font-weight: 600;
  margin-bottom: 0;
}
.node--type-news.node--view-mode-teaser .news__date {
  font-size: 0.875rem;
  line-height: 1.625rem;
  margin-bottom: 14px;
}
.node--type-news.node--view-mode-teaser .news__body {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  flex-grow: 1;
  margin-bottom: 55px;
}
.node--type-news.node--view-mode-teaser .news__attachments {
  z-index: 2;
}
.node--type-news.node--view-mode-teaser .news__attachments .file-type:before {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #722587;
}
.node--type-news.node--view-mode-teaser .news__attachments .file-size span {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #383838;
}
.node--type-news.node--view-mode-teaser .news__link {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-top: 16px;
}
.node--type-news.node--view-mode-teaser .news__link a {
  color: #722587;
}
@media (min-width: 1024px) {
  .node--type-news.node--view-mode-teaser .news__link a {
    opacity: 0;
  }
  .node--type-news.node--view-mode-teaser .news__link a:focus {
    opacity: 1;
  }
  .node--type-news.node--view-mode-teaser .news:hover .news__link a {
    opacity: 1;
  }
}

.node--type-publication.node--view-mode-teaser .publication {
  color: #383838;
}
.node--type-publication.node--view-mode-teaser .publication__right-bottom-left {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.node--type-publication.node--view-mode-teaser .publication__right-bottom-right {
  flex-basis: 330px;
  flex-shrink: 0;
}
.node--type-publication.node--view-mode-teaser .publication__thumbnail {
  width: 140px;
  height: 200px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.node--type-publication.node--view-mode-teaser .publication__title {
  margin-bottom: 12px;
}
.node--type-publication.node--view-mode-teaser .publication__title h2 {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
  color: #383838;
  -webkit-font-smoothing: antialiased;
}
.node--type-publication.node--view-mode-teaser .publication__date--wrapper {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.node--type-publication.node--view-mode-teaser .publication__date-label {
  display: inline-block;
}
.node--type-publication.node--view-mode-teaser .publication__date {
  display: inline-block;
  margin-right: 21px;
}
.node--type-publication.node--view-mode-teaser .publication__type {
  display: inline-block;
}
.node--type-publication.node--view-mode-teaser .publication__type a {
  color: #722587;
}
.node--type-publication.node--view-mode-teaser .publication__body {
  flex-grow: 1;
  margin-bottom: 16px;
}
.node--type-publication.node--view-mode-teaser .publication__body p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.node--type-publication.node--view-mode-teaser .publication__link a {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 600;
  color: #722587;
}
.node--type-publication.node--view-mode-teaser .publication__attachments h2 {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #383838;
  margin-bottom: 16px;
  padding-left: 0;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__content {
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__body {
  margin-bottom: 12px;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__body p {
  font-size: 0.8125rem;
  line-height: 1.3rem;
  font-weight: 600;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__title {
  font-size: 0.8125rem;
  line-height: 1.3rem;
  margin-left: 0;
  margin-right: 0;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item:not(:last-child) {
  margin-bottom: 8px;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item article {
  width: 100%;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file a {
  font-size: 0.8125rem;
  line-height: 1.3rem;
  color: #383838;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file a:before {
  content: unset;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file-size {
  width: 35%;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file-size i:before {
  margin-right: 4px;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file-size span {
  color: #383838;
}
.node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item:hover {
  background-color: transparent;
}
@media (min-width: 1024px) {
  .node--type-publication.node--view-mode-teaser .publication {
    display: flex;
    flex-direction: row;
  }
  .node--type-publication.node--view-mode-teaser .publication__right {
    flex-grow: 1;
    margin-left: 40px;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .node--type-publication.node--view-mode-teaser .publication__right {
    max-width: calc(100% - 180px);
  }
}
@media (min-width: 1024px) {
  .node--type-publication.node--view-mode-teaser .publication__right-bottom {
    display: flex;
    flex-direction: row;
  }
  .node--type-publication.node--view-mode-teaser .publication__right-bottom-right {
    margin-left: 60px;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .node--type-publication.node--view-mode-teaser .publication__right-bottom-left {
    display: block;
  }
}
@media (min-width: 1024px) {
  .node--type-publication.node--view-mode-teaser .publication__thumbnail {
    margin-bottom: 0;
  }
  .node--type-publication.node--view-mode-teaser .publication__attachments h2 {
    margin-top: 0;
    padding-left: 12px;
  }
  .node--type-publication.node--view-mode-teaser .publication__attachments .attachments__content {
    padding: 15px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  .node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item .file-size {
    width: 28%;
  }
  .node--type-publication.node--view-mode-teaser .publication__attachments .attachments__files-paragraph .files__item:hover {
    background-color: inherit;
  }
}

.page__home main div.main-content {
  padding-bottom: 0;
}
.page__home main div.main-content .field--name-field-components > .field__item:last-child > .paragraph {
  margin-bottom: 0;
}
.page__system-403 .region-content, .page__system-404 .region-content {
  text-align: center;
  padding: 120px 0 0;
}
.page__system-403 .cant-find-block, .page__system-404 .cant-find-block {
  margin-top: 64px;
}

.au-body .publications__attachments-title, .publications__attachments-title {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 700;
  margin-top: 32px;
}
.au-body .publications__attachments-file-title, .publications__attachments-file-title {
  font-size: 0.8125rem;
  line-height: 1.3rem;
  font-weight: 600;
  margin: 18px 0;
}
@media (min-width: 1024px) {
  .au-body .publications__attachments-title, .publications__attachments-title {
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 12px;
  }
}

.carousel .layout-multi-column__items {
  display: block;
  padding-top: 0.5rem;
}
.carousel .layout-multi-column__item {
  margin: 0.5rem;
}
.carousel .slick-track {
  display: flex !important;
}
.carousel .slick-slide {
  height: inherit !important;
}
.carousel .slick-list {
  margin-top: 24px;
  padding-bottom: 18px;
}
.carousel .slick-arrow {
  background: #F2F2F2;
  transition: 0.2s all ease-in-out;
  outline: 1px solid var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  top: 0;
}
.carousel .slick-arrow:focus {
  outline: 3px solid var(--color-primary);
}
.carousel .slick-arrow:before {
  font-size: 40px;
  color: var(--color-primary);
  opacity: 1;
}
.carousel .slick-prev {
  right: 70px;
  left: unset;
}
.carousel .slick-prev:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.carousel .slick-prev:before {
  content: "\e90d";
}
.carousel .slick-next {
  right: 20px;
}
.carousel .slick-next:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.carousel .slick-next:before {
  content: "\e907";
}
.carousel .slick-current:focus {
  outline-offset: -3px;
}
.carousel .slick-dots button::before {
  opacity: 1;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #b7b7b7;
}
.carousel .slick-dots .slick-active button::before {
  color: var(--color-primary);
}

.toc__links {
  position: sticky;
  top: 100px;
}

.tippy-box {
  padding: 13px 15px;
  border-radius: 12px;
  box-shadow: none;
}
.tippy-box.tippy-box[data-theme~=all-functions] {
  background-color: #722587;
  border-color: #722587;
}
.tippy-box.tippy-box[data-theme~=all-functions]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=all-functions] .tippy-arrow::before {
  color: #722587;
}
.tippy-box.tippy-box[data-theme~=all-functions] .tippy-content {
  color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=ombudsman] {
  background-color: #459965;
  border-color: #459965;
}
.tippy-box.tippy-box[data-theme~=ombudsman]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=ombudsman] .tippy-arrow::before {
  color: #459965;
}
.tippy-box.tippy-box[data-theme~=ombudsman] .tippy-content {
  color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=privacy-commissioner] {
  background-color: #00437B;
  border-color: #00437B;
}
.tippy-box.tippy-box[data-theme~=privacy-commissioner]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=privacy-commissioner] .tippy-arrow::before {
  color: #00437B;
}
.tippy-box.tippy-box[data-theme~=privacy-commissioner] .tippy-content {
  color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=foi] {
  background-color: #007299;
  border-color: #007299;
}
.tippy-box.tippy-box[data-theme~=foi]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=foi] .tippy-arrow::before {
  color: #007299;
}
.tippy-box.tippy-box[data-theme~=foi] .tippy-content {
  color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=white] {
  background-color: #ffffff;
  border-color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=white]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=white] .tippy-arrow::before {
  color: #ffffff;
}
.tippy-box.tippy-box[data-theme~=white] .tippy-content {
  color: #383838;
}
.tippy-box.tippy-box[data-theme~=black] {
  background-color: #383838;
  border-color: #383838;
}
.tippy-box.tippy-box[data-theme~=black]:after {
  background-color: inherit;
}
.tippy-box.tippy-box[data-theme~=black] .tippy-arrow::before {
  color: #383838;
}
.tippy-box.tippy-box[data-theme~=black] .tippy-content {
  color: #ffffff;
}
.tippy-box .tippy-content {
  font-size: 0.875rem;
  line-height: 1.625rem;
}

.user-pass, .user-login-form {
  margin-bottom: 80px;
}
.user-pass label, .user-login-form label {
  display: block;
  margin-bottom: 11px;
}
.user-pass .user-login-form, .user-login-form .user-login-form {
  margin-bottom: 24px;
}
.user-pass input[type=text],
.user-pass input[type=password], .user-login-form input[type=text],
.user-login-form input[type=password] {
  display: inline-block;
  min-width: 350px;
}
.user-pass input[type=submit], .user-login-form input[type=submit] {
  margin-top: 32px;
}

.view-publications {
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .view-publications {
    margin-bottom: 80px;
  }
}

.view-display-id-views_news_page .view-header {
  display: none;
}
.view-display-id-views_news_page .view-content {
  display: flex;
  flex-direction: column;
}
.view-display-id-views_news_page .views-row:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .view-display-id-views_news_page .view-header {
    font-size: 1.125rem;
    line-height: 1.625rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .view-display-id-views_news_page .view-content {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .view-display-id-views_news_page .views-row {
    flex-basis: 48%;
    margin-right: 2%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .view-display-id-views_news_page .views-row {
    flex-basis: 30%;
    margin-right: 3%;
  }
}

.news__exposed-filter {
  padding: 30px 20px;
  margin-bottom: 50px;
  border: 1px solid #b7b7b7;
  border-radius: 12px;
  overflow: hidden;
}
.news__exposed-filter h2 {
  font-size: 1.375rem;
  line-height: 1.3;
  color: #383838;
  margin-bottom: 20px;
}
.news__exposed-filter #views-exposed-form-news-views-news-page {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item {
  flex-basis: 100%;
  position: relative;
  margin-bottom: 30px;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item > label {
  display: none;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item > input {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  width: 100%;
  max-width: unset;
  height: auto;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item > input::-moz-placeholder {
  color: #383838;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item > input::placeholder {
  color: #383838;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item-title:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item-title:after {
  content: "\e986";
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-from, .news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-to {
  flex-basis: 47%;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-from:after, .news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-to:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-from:after, .news__exposed-filter #views-exposed-form-news-views-news-page .form-item-field-published-date-to:after {
  content: "\e90a";
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-item:after {
  color: #722587;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-actions .form-submit {
  background-color: transparent;
  font-size: 0.875rem;
  line-height: 1.625rem;
  border: none;
  padding: 0;
  margin: 0 12px;
  font-family: inherit;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-actions input[id^=edit-submit-news] {
  color: #722587;
  font-weight: 500;
}
.news__exposed-filter #views-exposed-form-news-views-news-page .form-actions input[id^=edit-reset] {
  color: rgba(56, 56, 56, 0.7);
}
@media (min-width: 1024px) {
  .news__exposed-filter {
    width: 310px;
  }
  .news__exposed-filter #views-exposed-form-news-views-news-page .form-item {
    margin-bottom: 20px;
  }
}

.view-display-id-views_publications_page .view-header {
  margin-bottom: 28px;
}
.view-display-id-views_publications_page .view-header--title {
  position: absolute;
  top: 0;
  left: 12px;
}
.view-display-id-views_publications_page .view-header--result-summary {
  display: none;
}
.view-display-id-views_publications_page .view-content {
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-top: 57px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.view-display-id-views_publications_page .views-row:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}
@media (min-width: 1024px) {
  .view-display-id-views_publications_page .view-header--title {
    position: relative;
    margin-bottom: 28px;
    left: 0;
  }
  .view-display-id-views_publications_page .view-header--result-summary {
    font-size: 1.125rem;
    line-height: 1.625rem;
    display: block;
  }
}

.view-filters,
.publications__exposed-filters {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .view-filters,
  .publications__exposed-filters {
    margin-bottom: 28px;
  }
}
.view-filters #views-exposed-form-publications-views-publications-page,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page {
  display: flex;
  flex-direction: column;
  margin-top: 54px;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item {
  position: relative;
  margin-bottom: 16px;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item > label,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > label {
  display: none;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item > input,
.view-filters #views-exposed-form-publications-views-publications-page .form-item > select,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > input,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > select {
  font-weight: 500;
  width: 100%;
  max-width: unset;
  height: auto;
  padding: 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item > input::-moz-placeholder, .view-filters #views-exposed-form-publications-views-publications-page .form-item > select::-moz-placeholder, .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > input::-moz-placeholder, .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > select::-moz-placeholder {
  color: #383838;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item > input::placeholder,
.view-filters #views-exposed-form-publications-views-publications-page .form-item > select::placeholder,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > input::placeholder,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > select::placeholder {
  color: #383838;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item > select,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > select {
  color: #383838;
  background-image: none;
  padding-right: 42px;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after {
  content: "\e90c";
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-publication-type-target-id:after {
  font-size: 1.375rem;
  line-height: 2rem;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after, .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after, .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after {
  content: "\e90a";
}
.view-filters #views-exposed-form-publications-views-publications-page .form-item:after,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item:after {
  color: #722587;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-actions,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 1024px) {
  .view-filters #views-exposed-form-publications-views-publications-page .form-actions,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions {
    width: auto;
  }
}
.view-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit {
  font-weight: 600;
  color: #722587;
  background-color: transparent;
  flex-basis: 50%;
  height: auto;
  padding: 12px 20px;
  border: 2px solid #722587;
  border-radius: 8px;
  font-family: inherit;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit:hover,
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit:hover {
  text-decoration: none;
}
.view-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit:not(:last-child),
.publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 1024px) {
  .view-filters #views-exposed-form-publications-views-publications-page,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-item,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-item > input,
  .view-filters #views-exposed-form-publications-views-publications-page .form-item > select,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > input,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item > select {
    width: unset;
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after, .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after {
    display: inline-block;
    font-family: "sms icons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after, .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from:after,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to:after {
    content: "\e90a";
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from input, .view-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to input,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-from input,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-item-field-published-date-to input {
    max-width: 160px;
  }
  .view-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit,
  .publications__exposed-filters #views-exposed-form-publications-views-publications-page .form-actions .form-submit {
    min-width: 140px;
  }
}

.view-display-id-page_1 .view-header {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 40px;
}
.view-display-id-page_1 .view-content {
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 64px;
}
.view-display-id-page_1 .view-content .item-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.view-display-id-page_1 .views-row:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.search__exposed-filter {
  margin-bottom: 60px;
}
.search__exposed-filter h2 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 16px;
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header,
.search__exposed-filter #views-exposed-form-content-search-page-1 {
  display: flex;
  flex-direction: column;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header,
  .search__exposed-filter #views-exposed-form-content-search-page-1 {
    display: block;
  }
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header .form-item-keys,
.search__exposed-filter #views-exposed-form-content-search-page-1 .form-item-keys {
  margin-bottom: 16px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-item-keys,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-item-keys {
    display: inline-block;
    margin-right: 0;
    width: calc(100% - 128px);
  }
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header .form-item-keys input,
.search__exposed-filter #views-exposed-form-content-search-page-1 .form-item-keys input {
  padding: 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-actions,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-actions {
    display: inline-block;
    float: right;
  }
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header .form-actions .search-button,
.search__exposed-filter #views-exposed-form-content-search-page-1 .form-actions .search-button {
  background-color: #ffffff;
  width: 148px;
  padding: 8px;
  border: 2px solid #722587;
  border-radius: 8px;
  cursor: pointer;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-actions .search-button,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-actions .search-button {
    width: 112px;
  }
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header .form-actions .search-button span,
.search__exposed-filter #views-exposed-form-content-search-page-1 .form-actions .search-button span {
  font-size: 18px;
  line-height: 1.625rem;
  font-weight: 600;
  color: #722587;
  position: relative !important;
  font-family: "Montserrat", sans-serif;
}
.search__exposed-filter #views-exposed-form-content-search-page-1-header .form-actions .search-button:before,
.search__exposed-filter #views-exposed-form-content-search-page-1 .form-actions .search-button:before {
  content: none;
}
@media (min-width: 1024px) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header,
  .search__exposed-filter #views-exposed-form-content-search-page-1 {
    flex-direction: row;
  }
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-item-keys,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-item-keys {
    margin-bottom: 0;
    margin-right: 16px;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-item-keys,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-item-keys {
    width: calc(100% - 144px);
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .search__exposed-filter #views-exposed-form-content-search-page-1-header .form-submit .search-button,
  .search__exposed-filter #views-exposed-form-content-search-page-1 .form-submit .search-button {
    width: 128px;
  }
}

table tr th.align-right, table tr td.align-right {
  text-align: right;
}
table tr th.align-left, table tr td.align-left {
  text-align: left;
}
table tr th.align-center, table tr td.align-center {
  text-align: center;
}

.wy-tooltip {
  border: 1px solid #722587;
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 4px;
  text-align: left;
  border-radius: 5px;
  z-index: 1000;
}

.wy-hide {
  display: none;
}

label {
  display: inline-block;
  margin-bottom: 8px;
}

input {
  width: 100%;
  margin: 0;
  padding: 0 0 0 6px;
  height: 40px;
  border: 1px solid #E9E9E9;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.04);
}
input:focus {
  border: 1px solid var(--color-primary);
  outline: none;
}

textarea {
  border: 1px solid #E9E9E9;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.04);
}
textarea:focus {
  border: 1px solid var(--color-primary);
  outline: none;
}
textarea.full-width {
  width: 100%;
}

.form-item {
  margin-bottom: 16px;
}
.form-item__left {
  float: left;
  width: 48%;
}
.form-item__right {
  float: right;
  width: 48%;
}
.form-item .description {
  color: #6c757d;
  margin-top: 8px;
}

.button,
.webform-button--submit {
  background: #007bff;
  color: #ffffff;
  padding: 16px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 200px;
  margin-top: 32px;
  padding: 0;
}
.button:hover,
.webform-button--submit:hover {
  background: #6610f2;
}

input[type=checkbox] {
  width: auto;
  height: 20px;
}

.radios--wrapper legend {
  font-weight: 400;
}
.radios--wrapper .form-radios {
  display: flex;
}
.radios--wrapper .form-radios .form-type-radio {
  margin-right: 50px;
}
.radios--wrapper .form-radios .form-type-radio .form-radio {
  height: 20px;
}
.radios--wrapper .form-radios .form-type-radio label {
  font-weight: 400;
}

.select2-container--default .select2-selection--single {
  margin: 0;
  padding: 0 0 0 6px;
  height: 40px;
  border: 1px solid #E9E9E9;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.04);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  margin-top: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  margin-top: 5px;
}

/**
 * Style for the site branding logo.
 */
.block-system-branding-block {
  margin: 10px 0;
  order: 1;
}
.block-system-branding-block a {
  display: block;
}
.block-system-branding-block a:after {
  content: none;
}
.block-system-branding-block .site-logo img {
  overflow: hidden;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  padding: 0 12px;
  border: 5px solid var(--color-secondary);
}
.block-system-branding-block.branding-mobile {
  display: inline-block;
  margin: 0;
  padding-left: 16px;
  padding-top: 4px;
}

.cant-find-block {
  box-sizing: border-box;
  text-align: center;
}
.au-body .cant-find-block, .cant-find-block {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .cant-find-block, .cant-find-block {
    padding-left: 0;
    padding-right: 0;
  }
}
.cant-find-block p {
  max-width: 350px;
  margin: 0 auto;
}
.au-body .cant-find-block a, .cant-find-block a {
  color: #383838;
}
.au-body .cant-find-block a::after, .cant-find-block a::after {
  transition: 0.3s all ease-in-out;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
}
@media (min-width: 640px) {
  .cant-find-block p {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
  }
}

.content-with-sidebar {
  box-sizing: border-box;
}
.au-body .content-with-sidebar, .content-with-sidebar {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .content-with-sidebar, .content-with-sidebar {
    padding-left: 0;
    padding-right: 0;
  }
}
.content-with-sidebar .paragraph--type--content,
.content-with-sidebar .paragraph--type--content > .paragraph-content {
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .content-with-sidebar {
    display: flex;
    justify-content: space-between;
  }
  .content-with-sidebar__left {
    width: 60%;
  }
  .content-with-sidebar__right {
    width: 35%;
  }
}

.cm-hero-style--full-image .block-system-breadcrumb-block {
  display: none;
}
.cm-hero-style--full-image .block-region-hero-image .field--name-field-portrait-image {
  display: none;
}
.cm-hero-style--full-image .block-entity-fieldnodefield-hero-description {
  margin-bottom: 0;
}
.cm-hero-style--full-image .block-entity-fieldnodefield-hero-description a.w-link {
  width: 100%;
  margin-bottom: 20px;
}
.cm-hero-style--full-image .block-entity-fieldnodefield-hero-description a.w-link.tel {
  width: auto;
}
.cm-hero-style--full-image .hero__content {
  box-sizing: border-box;
}
.au-body .cm-hero-style--full-image .hero__content, .cm-hero-style--full-image .hero__content {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .cm-hero-style--full-image .hero__content, .cm-hero-style--full-image .hero__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .cm-hero-style--full-image .block-entity-fieldnodefield-hero-description {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .cm-hero-style--full-image .block-entity-fieldnodefield-hero-description p {
    font-size: 1.25rem;
    line-height: 2rem;
    line-height: 36px;
  }
  .cm-hero-style--full-image .block-entity-fieldnodefield-hero-description a.w-link {
    font-size: 1.125rem;
    line-height: 1.625rem;
    width: auto;
    margin-bottom: 0;
  }
  .cm-hero-style--full-image .hero__content {
    padding-top: 92px;
  }
}

.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--all-functions .hero__wrapper,
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--all-functions .hero__content {
  background-color: #722587;
}
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--omb-green .hero__wrapper,
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--omb-green .hero__content {
  background-color: #459965;
}
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--pc-navy .hero__wrapper,
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--pc-navy .hero__content {
  background-color: #00437B;
}
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--foi-blue .hero__wrapper,
.cm-hero-style--full-rounded-corner-image.cm-bg-hero-content--foi-blue .hero__content {
  background-color: #007299;
}
.cm-hero-style--full-rounded-corner-image .block-entity-fieldnodefield-portrait-image {
  margin-top: 0 !important;
}
.cm-hero-style--full-rounded-corner-image .block-entity-fieldnodefield-hero-description {
  margin-top: 0;
  margin-bottom: 0;
}
.cm-hero-style--full-rounded-corner-image .block-entity-fieldnodefield-hero-description a.w-link {
  width: 100%;
}
.cm-hero-style--full-rounded-corner-image .block-region-hero-content {
  width: 100%;
}
.cm-hero-style--full-rounded-corner-image .hero {
  margin-bottom: 48px;
}
.cm-hero-style--full-rounded-corner-image .hero__wrapper {
  overflow: hidden;
}
.cm-hero-style--full-rounded-corner-image .hero__content {
  justify-content: flex-start;
  padding: 60px 30px;
  padding-top: 98px;
  text-align: left;
}
.cm-hero-style--full-rounded-corner-image .hero__content h1 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cm-hero-style--full-rounded-corner-image .block-entity-fieldnodefield-hero-description a.w-link {
    width: auto;
  }
  .cm-hero-style--full-rounded-corner-image .hero {
    margin-bottom: 80px;
  }
  .cm-hero-style--full-rounded-corner-image .hero__content {
    padding-top: 188px;
    padding-bottom: 80px;
    margin-left: 130px;
  }
  .cm-hero-style--full-rounded-corner-image .hero__content h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 50px;
  }
  .cm-hero-style--full-rounded-corner-image .hero .block-region-hero-content {
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .cm-hero-style--full-rounded-corner-image .hero__wrapper {
    margin-left: 50px;
  }
}
.cm-hero-style--full-rounded-corner-image .block-region-hero-image .field--name-field-portrait-image {
  display: none;
}
.cm-hero-style--full-rounded-corner-image .hero__wrapper {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 0 50px 0 0;
  background-color: transparent !important;
}
.cm-hero-style--full-rounded-corner-image .hero__wrapper .backstretch-image {
  min-height: 300px;
  border-radius: 0 0 50px;
}
.cm-hero-style--full-rounded-corner-image .hero__content {
  width: 100%;
  max-width: none;
}
@media (min-width: 1024px) {
  .cm-hero-style--full-rounded-corner-image .block-region-hero-image {
    position: relative;
    padding-left: 80px;
  }
  .cm-hero-style--full-rounded-corner-image .hero__wrapper {
    display: block;
    position: relative;
    border-radius: 0;
  }
  .cm-hero-style--full-rounded-corner-image .hero__wrapper .backstretch-image {
    min-height: 720px;
    border-radius: 50px 0;
  }
  .cm-hero-style--full-rounded-corner-image .hero__content {
    position: absolute;
    top: 80px;
    bottom: 0;
    left: 0;
    max-width: 520px;
    margin: 0;
    padding: 58px 80px;
    padding-top: 166px;
    border-radius: 50px 50px 0;
  }
}

.cm-hero-style--half-image.cm-bg-hero-content--all-functions .hero__wrapper,
.cm-hero-style--half-image.cm-bg-hero-content--all-functions .hero__content {
  background-color: #722587;
}
.cm-hero-style--half-image.cm-bg-hero-content--omb-green .hero__wrapper,
.cm-hero-style--half-image.cm-bg-hero-content--omb-green .hero__content {
  background-color: #459965;
}
.cm-hero-style--half-image.cm-bg-hero-content--pc-navy .hero__wrapper,
.cm-hero-style--half-image.cm-bg-hero-content--pc-navy .hero__content {
  background-color: #00437B;
}
.cm-hero-style--half-image.cm-bg-hero-content--foi-blue .hero__wrapper,
.cm-hero-style--half-image.cm-bg-hero-content--foi-blue .hero__content {
  background-color: #007299;
}
.cm-hero-style--half-image .block-entity-fieldnodefield-portrait-image {
  margin-top: 0 !important;
}
.cm-hero-style--half-image .block-entity-fieldnodefield-hero-description {
  margin-top: 0;
  margin-bottom: 0;
}
.cm-hero-style--half-image .block-entity-fieldnodefield-hero-description a.w-link {
  width: 100%;
}
.cm-hero-style--half-image .block-region-hero-content {
  width: 100%;
}
.cm-hero-style--half-image .hero {
  margin-bottom: 48px;
}
.cm-hero-style--half-image .hero__wrapper {
  overflow: hidden;
}
.cm-hero-style--half-image .hero__content {
  justify-content: flex-start;
  padding: 60px 30px;
  padding-top: 98px;
  text-align: left;
}
.cm-hero-style--half-image .hero__content h1 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cm-hero-style--half-image .block-entity-fieldnodefield-hero-description a.w-link {
    width: auto;
  }
  .cm-hero-style--half-image .hero {
    margin-bottom: 80px;
  }
  .cm-hero-style--half-image .hero__content {
    padding-top: 188px;
    padding-bottom: 80px;
    margin-left: 130px;
  }
  .cm-hero-style--half-image .hero__content h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 50px;
  }
  .cm-hero-style--half-image .hero .block-region-hero-content {
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .cm-hero-style--half-image .hero__wrapper {
    margin-left: 50px;
  }
}
.cm-hero-style--half-image .block-region-hero-image .field--name-field-thumbnail,
.cm-hero-style--half-image .block-region-hero-image .field--name-field-feature-image {
  display: none;
}
.cm-hero-style--half-image .hero__wrapper {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 50px 0 0;
}
.cm-hero-style--half-image .hero__wrapper .backstretch-image {
  min-height: 420px;
}
.cm-hero-style--half-image .hero__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .cm-hero-style--half-image .hero__content {
    margin-left: 32px;
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .cm-hero-style--half-image .hero__content {
    margin-left: 130px;
  }
}
@media (min-width: 1024px) {
  .cm-hero-style--half-image .block-region-hero-image {
    position: relative;
    flex-basis: 60%;
    flex-shrink: 1;
    height: auto;
  }
  .cm-hero-style--half-image .hero__wrapper {
    flex-direction: row-reverse;
    border-radius: 50px 0 0 50px;
  }
  .cm-hero-style--half-image .hero .backstretch-image {
    min-height: 640px;
    margin-top: 60px;
    border-radius: 50px 0 0;
  }
  .cm-hero-style--half-image .hero__content {
    flex-shrink: 5;
    margin-right: 7%;
  }
}

.cm-hero-style--no-image.cm-bg-hero-content--all-functions .hero__wrapper,
.cm-hero-style--no-image.cm-bg-hero-content--all-functions .hero__content {
  background-color: #722587;
}
.cm-hero-style--no-image.cm-bg-hero-content--omb-green .hero__wrapper,
.cm-hero-style--no-image.cm-bg-hero-content--omb-green .hero__content {
  background-color: #459965;
}
.cm-hero-style--no-image.cm-bg-hero-content--pc-navy .hero__wrapper,
.cm-hero-style--no-image.cm-bg-hero-content--pc-navy .hero__content {
  background-color: #00437B;
}
.cm-hero-style--no-image.cm-bg-hero-content--foi-blue .hero__wrapper,
.cm-hero-style--no-image.cm-bg-hero-content--foi-blue .hero__content {
  background-color: #007299;
}
.cm-hero-style--no-image .block-entity-fieldnodefield-portrait-image {
  margin-top: 0 !important;
}
.cm-hero-style--no-image .block-entity-fieldnodefield-hero-description {
  margin-top: 0;
  margin-bottom: 0;
}
.cm-hero-style--no-image .block-entity-fieldnodefield-hero-description a.w-link {
  width: 100%;
}
.cm-hero-style--no-image .block-region-hero-content {
  width: 100%;
}
.cm-hero-style--no-image .hero {
  margin-bottom: 48px;
}
.cm-hero-style--no-image .hero__wrapper {
  overflow: hidden;
}
.cm-hero-style--no-image .hero__content {
  justify-content: flex-start;
  padding: 60px 30px;
  padding-top: 98px;
  text-align: left;
}
.cm-hero-style--no-image .hero__content h1 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cm-hero-style--no-image .block-entity-fieldnodefield-hero-description a.w-link {
    width: auto;
  }
  .cm-hero-style--no-image .hero {
    margin-bottom: 80px;
  }
  .cm-hero-style--no-image .hero__content {
    padding-top: 188px;
    padding-bottom: 80px;
    margin-left: 130px;
  }
  .cm-hero-style--no-image .hero__content h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 50px;
  }
  .cm-hero-style--no-image .hero .block-region-hero-content {
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .cm-hero-style--no-image .hero__wrapper {
    margin-left: 50px;
  }
}
.cm-hero-style--no-image .block-region-hero-image {
  display: none;
}
.cm-hero-style--no-image .hero {
  min-height: auto;
}
.cm-hero-style--no-image .hero__wrapper {
  border-radius: 50px 0 0;
}
@media (min-width: 1024px) {
  .cm-hero-style--no-image .hero__wrapper {
    border-radius: 50px 0 80px 50px;
  }
}

.hero {
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .hero {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .hero {
    margin-bottom: 96px;
  }
}
.hero__wrapper .backstretch {
  min-height: 350px;
  background-position: center;
}
.hero__wrapper::after {
  background: var(--color-primary);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
}
.hero__content {
  padding: 1rem;
  color: var(--color-text_on_primary);
}
.hero__text {
  font-size: 1.375rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .hero {
    min-height: 400px;
  }
  .hero__wrapper .backstretch {
    min-height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .hero__wrapper::after {
    width: 60%;
    z-index: 0;
    top: 0;
  }
  .hero__content-wrapper {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  .au-body .hero__content-wrapper, .hero__content-wrapper {
    max-width: 1424px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (min-width: ) {
  .au-body .hero__content-wrapper, .hero__content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .hero__content {
    position: relative;
    padding-top: 3em;
    max-width: 55%;
    z-index: 1;
  }
  .hero--slashed {
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 90%, 0 100%);
            clip-path: polygon(0 0%, 100% 0%, 100% 90%, 0 100%);
  }
  .hero--slashed .hero__wrapper::after {
    -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  }
  .hero--chevron {
    background: var(--color-primary);
  }
  .hero--chevron .hero__wrapper::after {
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 49%, 0% 0%);
            clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 49%, 0% 0%);
  }
  .hero--chevron .hero__wrapper .backstretch {
    -webkit-clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 0 49%, 0% 0%);
            clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 0 49%, 0% 0%);
  }
  .hero--wave {
    -webkit-clip-path: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
            clip-path: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
    shape-outside: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
  }
  .hero--wave .hero__wrapper::after {
    -webkit-clip-path: ellipse(75% 100% at 25% 75%);
            clip-path: ellipse(75% 100% at 25% 75%);
  }
  .hero.with-watermark .hero__wrapper::before {
    content: ""; /* Empty string */
    background-image: url("/themes/caburlotto/images/fr-luigi-grey.png");
    opacity: 0.185;
    background-size: initial;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    z-index: 1;
    margin-right: 10px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 500px;
  }
  .hero__wrapper .backstretch {
    min-height: 500px;
  }
  .hero__content {
    padding-top: 8em;
  }
}
@media (min-width: 1280px) {
  .hero__content {
    padding-left: 0;
  }
}

nav.menu--main {
  padding: 40px 0;
}
nav.menu--main .main--menu-button {
  display: none;
}
nav.menu--main.dropdown .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
nav.menu--main.dropdown .menu-item.menu-item--active-trail > a {
  color: var(--color-primary);
  text-decoration: underline;
}
nav.menu--main.dropdown .menu-item--expanded {
  position: relative;
}
nav.menu--main.dropdown .menu-item--expanded .menu {
  position: absolute;
  right: 0;
  left: 0;
  top: 30px;
  width: 190px;
  background: #171b27;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: inline-table;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 30px 20px 20px;
}
nav.menu--main.dropdown .menu-item--expanded .menu li {
  margin-right: 0;
  margin-bottom: 20px;
  position: relative;
}
nav.menu--main.dropdown .menu-item--expanded .menu li a {
  display: inline-block;
  font-size: 1rem;
  text-wrap: nowrap;
}
nav.menu--main.dropdown .menu-item--expanded:hover .menu {
  background: white;
  opacity: 1;
  visibility: visible;
  border: 1px solid var(--color-text_on_primary);
}
nav.menu--main.dropdown .menu-item:not(:last-child) {
  margin-bottom: 35px;
  margin-right: 3em;
}
nav.menu--main.dropdown .menu-item > a {
  font-weight: 600;
  color: #b7b7b7;
  font-size: 1.375rem;
  line-height: 1.3;
  width: 100%;
}
nav.menu--main.dropdown .menu-item > a:hover {
  color: var(--color-primary);
}
nav.menu--main.dropdown .menu-item > a.is-active {
  color: var(--color-primary);
}
nav.menu--main.mobile {
  padding: 0;
}
nav.menu--main.mobile .main--menu-button {
  transition: 0.2s all ease-in-out;
  background: var(--color-primary);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 56px;
  height: 98px;
  cursor: pointer;
  border-style: none;
}
nav.menu--main.mobile .main--menu-button:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
nav.menu--main.mobile .main--menu-button:before {
  content: "\e9bd";
}
nav.menu--main.mobile .main--menu-button:before {
  font-size: 50px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
nav.menu--main.mobile .menu {
  display: none;
}
nav.menu--main.mobile.expanded .main--menu-button:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
nav.menu--main.mobile.expanded .main--menu-button:before {
  content: "\e912";
}
nav.menu--main.mobile.expanded .menu {
  padding: 1.25rem;
  background: var(--color-primary);
  display: block;
  overflow-y: scroll;
  max-height: 70vh;
  max-width: 400px;
  box-shadow: 0 1px 4px -4px #000000;
  margin-top: 3px;
  list-style-type: none;
}
nav.menu--main.mobile.expanded .menu-item {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  margin-right: 0;
}
nav.menu--main.mobile.expanded .menu-item a {
  color: var(--color-text_on_primary);
  border-bottom: 1px solid var(--color-text_on_primary);
  padding: 1.125rem 0;
  display: block;
}
nav.menu--main.mobile.expanded .menu-item--expanded .menu {
  padding-right: 0;
  box-shadow: none;
}
nav.menu--main.mobile.expanded .menu-item--expanded .menu-item {
  font-weight: 400;
}
nav.menu--main.footer .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  -moz-column-count: 2;
       column-count: 2;
}
nav.menu--main.footer .menu-item {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
nav.menu--main.footer .menu-item--expanded {
  position: relative;
  display: flex;
  flex-direction: column;
}
nav.menu--main.footer .menu-item--expanded .menu {
  display: inline-table;
  margin-left: 0.5rem;
  margin-top: 0.8rem;
}
nav.menu--main.footer .menu-item--expanded .menu-item {
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 11px;
  color: var(--color-text_on_secondary);
}
@media (min-width: 1024px) {
  nav.menu--main.footer {
    width: 80%;
  }
  nav.menu--main.footer .menu {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
  nav.menu--main.footer .menu-item {
    margin-right: 1.5em;
  }
}

.cm-bg-border-style--round-lhs {
  position: relative;
  border-radius: 30px 0 0 30px;
  margin-left: 16px;
}
.cm-bg-border-style--round-lhs::before {
  background-color: #ffffff;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -50px;
  right: 0;
}
.cm-bg-border-style--round-lhs::before {
  z-index: 10;
  border-radius: 0 0 76px 0;
}
@media (min-width: 640px) {
  .cm-bg-border-style--round-lhs::before {
    width: 75px;
    height: 75px;
    top: -75px;
  }
}
.cm-bg-border-style--round-lhs::after {
  background-color: #ffffff;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -50px;
  right: 0;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--fx-violet::after {
  background-color: #722587;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--fx-violet a:focus {
  outline-color: #722587;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--foi-blue::after {
  background-color: #007299;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--foi-blue a:focus {
  outline-color: #007299;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--pc-navy::after {
  background-color: #00437B;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--pc-navy a:focus {
  outline-color: #00437B;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--omb-green::after {
  background-color: #459965;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--omb-green a:focus {
  outline-color: #459965;
}
.cm-bg-border-style--round-lhs.cm-bg-primary-color--blue-pattens::after {
  background-color: #f1f8fa;
}
@media (min-width: 640px) {
  .cm-bg-border-style--round-lhs::after {
    width: 75px;
    height: 75px;
    top: -75px;
  }
}
.au-body .cm-bg-border-style--round-lhs > div.paragraph-content, .cm-bg-border-style--round-lhs > div.paragraph-content {
  padding: 0 24px;
}
@media (min-width: 640px) {
  .cm-bg-border-style--round-ulhs {
    border-radius: 60px 0 0;
  }
  .cm-bg-border-style--round-lrhs {
    border-radius: 0 0 60px;
  }
  .cm-bg-border-style--round-lhs {
    border-radius: 60px 0 0 60px;
    margin-left: 32px;
  }
}
@media (min-width: 1024px) {
  .cm-bg-border-style--round-ulhs {
    border-radius: 100px 0 0;
  }
  .cm-bg-border-style--round-lrhs {
    border-radius: 0 0 100px;
  }
  .cm-bg-border-style--round-lhs {
    border-radius: 100px 0 0 100px;
    margin-left: 50px;
  }
}
@media (min-width: 1280px) {
  .au-body .cm-bg-border-style--round-lhs > div.paragraph-content, .cm-bg-border-style--round-lhs > div.paragraph-content {
    padding: 0;
  }
}

.cm-bg-content-color--fx-violet {
  background-color: #722587;
}
.cm-bg-content-color--fx-violet a:focus {
  outline-color: #722587;
}
.cm-bg-content-color--foi-blue {
  background-color: #007299;
}
.cm-bg-content-color--foi-blue a:focus {
  outline-color: #007299;
}
.cm-bg-content-color--pc-navy {
  background-color: #00437B;
}
.cm-bg-content-color--pc-navy a:focus {
  outline-color: #00437B;
}
.cm-bg-content-color--omb-green {
  background-color: #459965;
}
.cm-bg-content-color--omb-green a:focus {
  outline-color: #459965;
}
.cm-bg-content-color--blue-pattens {
  background-color: #f1f8fa;
}

/**
 * Hero content background color.
 */
.cm-bg-hero-content--fx-violet .block-region-hero-content {
  background-color: #722587;
}
.cm-bg-hero-content--foi-blue .block-region-hero-content {
  background-color: #007299;
}
.cm-bg-hero-content--pc-navy .block-region-hero-content {
  background-color: #00437B;
}
.cm-bg-hero-content--omb-green .block-region-hero-content {
  background-color: #459965;
}

.cm-bg-primary-color--fx-violet {
  background-color: #722587;
}
.cm-bg-primary-color--fx-violet a:focus {
  outline-color: #722587;
}
.cm-bg-primary-color--foi-blue {
  background-color: #007299;
}
.cm-bg-primary-color--foi-blue a:focus {
  outline-color: #007299;
}
.cm-bg-primary-color--pc-navy {
  background-color: #00437B;
}
.cm-bg-primary-color--pc-navy a:focus {
  outline-color: #00437B;
}
.cm-bg-primary-color--omb-green {
  background-color: #459965;
}
.cm-bg-primary-color--omb-green a:focus {
  outline-color: #459965;
}
.cm-bg-primary-color--blue-pattens {
  background-color: #f1f8fa;
}
.cm-bg-primary-color--blue-pattens {
  background-color: #f1f8fa;
}

.cm-heading-color--light {
  color: #ffffff;
}
.cm-heading-color--dark {
  color: #383838;
}

/**
 * Hero page title text color.
 */
.cm-page-title-color--light .block-region-hero-content h1,
.cm-page-title-color--light .block-region-hero-content .field--name-field-hero-description {
  color: #ffffff;
}
.cm-page-title-color--dark .block-region-hero-content h1,
.cm-page-title-color--dark .block-region-hero-content .field--name-field-hero-description {
  color: #383838;
}

.path-user main {
  margin-top: 150px;
  box-sizing: border-box;
  margin-bottom: 48px;
}
.au-body .path-user main, .path-user main {
  max-width: 1424px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .path-user main, .path-user main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 640px) {
  .path-user main {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .path-user main {
    margin-bottom: 96px;
  }
}
.path-user main .user-login-form {
  max-width: 500px;
}
.path-user main .form-item {
  margin-bottom: 28px;
}

.paragraph--type-page-reference .paragraph__title {
  margin-bottom: 30px;
  color: inherit;
}
.paragraph--type-page-reference .paragraph__body {
  margin-bottom: 30px;
  color: initial;
}
.paragraph--type-page-reference .paragraph__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.paragraph--type-page-reference .paragraph__item {
  width: 32%;
}

.paragraph--type--phone-link {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.paragraph--type--phone-link .field,
.paragraph--type--phone-link .paragraph-content {
  display: inline-block;
  padding: 0;
  width: 100%;
}
.paragraph--type--phone-link .field--type-link a {
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}
.paragraph--type--phone-link .field--type-link a:hover::after, .paragraph--type--phone-link .field--type-link a:focus::after {
  display: none;
}
.paragraph--type--phone-link.cm-phone-link-style--normal-icon .field--type-link a:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type--phone-link.cm-phone-link-style--normal-icon .field--type-link a:before {
  content: "\e916";
}
.paragraph--type--phone-link.cm-phone-link-style--normal-icon .field--type-link a::before {
  margin-right: 8px;
}
.paragraph--type--phone-link.cm-phone-link-style--round-transparent .field--type-link a {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.625rem;
  transition: color 250ms, background-color 250ms;
  padding: 8px 32px;
  border-radius: 40px;
  border: 2px solid white;
}
.paragraph--type--phone-link.cm-phone-link-style--round-transparent .field--type-link a:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type--phone-link.cm-phone-link-style--round-transparent .field--type-link a:before {
  content: "\e916";
}
.paragraph--type--phone-link.cm-phone-link-style--round-transparent .field--type-link a::before {
  margin-right: 8px;
}
.paragraph--type--phone-link.cm-phone-link-style--round-transparent .field--type-link a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a {
  color: #383838;
  background-color: rgba(165, 143, 196, 0.18);
  font-size: 18px;
  line-height: 1.625rem;
  position: relative;
  transition: 0.3s all ease-in-out;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 64px;
  padding-right: 32px;
  border-radius: 40px;
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a:before {
  content: "\e916";
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a::before {
  background-color: #722587;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.625rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 50%;
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a:hover {
  background-color: #722587;
  color: #ffffff;
}
.paragraph--type--phone-link.cm-phone-link-style--fancy .field--type-link a:hover::before {
  border-radius: 32px;
}

.paragraph--type--slider > .paragraph-content {
  box-sizing: border-box;
}
.au-body .paragraph--type--slider > .paragraph-content, .paragraph--type--slider > .paragraph-content {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type--slider > .paragraph-content, .paragraph--type--slider > .paragraph-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--slider > .paragraph-content {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--slider {
    margin: 80px 0;
  }
}

.paragraph--type--teaser {
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .paragraph--type--teaser {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--teaser {
    margin-bottom: 96px;
  }
}
.paragraph--type--teaser.cm-text-colour--fx-violet .paragraph-title {
  color: #722587;
}
.paragraph--type--teaser.cm-text-colour--foi-blue .paragraph-title {
  color: #007299;
}
.paragraph--type--teaser.cm-text-colour--pc-navy .paragraph-title {
  color: #00437B;
}
.paragraph--type--teaser.cm-text-colour--omb-green .paragraph-title {
  color: #459965;
}
.paragraph--type--teaser.cm-text-colour--light .paragraph-title {
  color: #ffffff;
}
.paragraph--type--teaser.cm-text-colour--dark .paragraph-title {
  color: #383838;
}
.paragraph--type--teaser.cm-bg-primary-color {
  padding: 40px 0;
}
@media (min-width: 640px) {
  .paragraph--type--teaser.cm-bg-primary-color {
    padding: 48px 0;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--teaser.cm-bg-primary-color {
    padding: 128px 0;
  }
}
.paragraph--type--teaser > .paragraph-content {
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.au-body .paragraph--type--teaser > .paragraph-content, .paragraph--type--teaser > .paragraph-content {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type--teaser > .paragraph-content, .paragraph--type--teaser > .paragraph-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.paragraph--type-accordion .accordion {
  margin-top: 30px;
  transition: 0.2s all ease-in-out;
}
.paragraph--type-accordion .accordion__content-wrapper {
  margin-bottom: 32px;
}
.paragraph--type-accordion .accordion__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.paragraph--type-accordion .accordion__item .title-text__title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  padding: 1rem 2rem 1rem 0;
  cursor: pointer;
  color: var(--color-primary);
}
.paragraph--type-accordion .accordion__item .title-text__title:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-accordion .accordion__item .title-text__title:after {
  content: "\e90c";
}
.paragraph--type-accordion .accordion__item .title-text__title:after {
  background-color: transparent;
  position: relative;
  width: auto;
  height: auto;
  transition: unset;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.paragraph--type-accordion .accordion__item .title-text__title:hover:after, .paragraph--type-accordion .accordion__item .title-text__title:focus:after {
  width: auto;
}
.paragraph--type-accordion .accordion__item .title-text__title:after {
  cursor: pointer;
  font-weight: 600;
  margin-right: 1rem;
  position: absolute;
  right: 0;
  font-size: 1.5rem;
}
.paragraph--type-accordion .accordion__item .title-text__body {
  display: none;
  overflow: hidden;
  padding-bottom: 1rem;
}
.paragraph--type-accordion .accordion__item.open .title-text__title:after {
  transform: translateY(0) rotate(-180deg);
}
.paragraph--type-accordion .accordion__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.paragraph--type-anchor-cards .card a {
  text-decoration: underline;
}
.paragraph--type-anchor-cards .card a:hover {
  text-decoration: underline;
}
.paragraph--type-anchor-cards .card a:hover:after {
  content: none;
}
.paragraph--type-anchor-cards .card a:focus:after {
  content: none;
}
.paragraph--type-anchor-cards .anchor-cards {
  box-sizing: border-box;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
}
.au-body .paragraph--type-anchor-cards .anchor-cards, .paragraph--type-anchor-cards .anchor-cards {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type-anchor-cards .anchor-cards, .paragraph--type-anchor-cards .anchor-cards {
    padding-left: 0;
    padding-right: 0;
  }
}
.paragraph--type-anchor-cards .anchor-cards__title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 35px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card {
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 20px;
  padding-bottom: 30px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--phone .card__title:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--phone .card__title:after {
  content: "\e916";
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--email .card__title:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--email .card__title:after {
  content: "\e914";
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--post .card__title:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--post .card__title:after {
  content: "\e908";
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet {
  transition: 0.3s all ease-in-out;
  background: rgba(114, 37, 135, 0.04);
  cursor: pointer;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet:hover {
  background: rgba(114, 37, 135, 0.04);
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet:hover .card__title {
  color: #722587;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet .card__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet .card__title {
  color: #722587;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet .card__title:after {
  color: #722587;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet {
    background: transparent;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--fx-violet .card__title {
    color: #383838;
  }
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue {
  transition: 0.3s all ease-in-out;
  background: rgba(0, 114, 153, 0.04);
  cursor: pointer;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue:hover {
  background: rgba(0, 114, 153, 0.04);
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue:hover .card__title {
  color: #007299;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue .card__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue .card__title {
  color: #007299;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue .card__title:after {
  color: #007299;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue {
    background: transparent;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--foi-blue .card__title {
    color: #383838;
  }
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy {
  transition: 0.3s all ease-in-out;
  background: rgba(0, 67, 123, 0.04);
  cursor: pointer;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy:hover {
  background: rgba(0, 67, 123, 0.04);
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy:hover .card__title {
  color: #00437B;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy .card__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy .card__title {
  color: #00437B;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy .card__title:after {
  color: #00437B;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy {
    background: transparent;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--pc-navy .card__title {
    color: #383838;
  }
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green {
  transition: 0.3s all ease-in-out;
  background: rgba(69, 153, 101, 0.04);
  cursor: pointer;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green:hover {
  background: rgba(69, 153, 101, 0.04);
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green:hover .card__title {
  color: #459965;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green .card__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green .card__title {
  color: #459965;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green .card__title:after {
  color: #459965;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green {
    background: transparent;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--omb-green .card__title {
    color: #383838;
  }
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens {
  transition: 0.3s all ease-in-out;
  background: rgba(241, 248, 250, 0.04);
  cursor: pointer;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens:hover {
  background: rgba(241, 248, 250, 0.04);
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens .card__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens .card__title {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens {
    background: transparent;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-brand-color--blue-pattens .card__title {
    color: #383838;
  }
}
.paragraph--type-anchor-cards .anchor-cards .paragraph--type-card.cm-icon--post .card__title::after {
  font-size: 1.75rem;
  line-height: 1.3;
}
.paragraph--type-anchor-cards .anchor-cards__card-items {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards .anchor-cards {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
  }
  .paragraph--type-anchor-cards .anchor-cards::after {
    content: "";
    height: 1px;
    width: calc(100% - 32px);
    margin: 0 auto;
    background: #b7b7b7;
    display: block;
    position: absolute;
    bottom: 0;
    left: 16px;
  }
  .paragraph--type-anchor-cards .anchor-cards__title {
    font-size: 1.5rem;
    line-height: 1.3;
    width: 20%;
  }
  .paragraph--type-anchor-cards .anchor-cards__card-items {
    width: 77%;
    display: flex;
    justify-content: space-between;
  }
  .paragraph--type-anchor-cards .anchor-cards .paragraph--type-card {
    width: 32.5%;
    padding: 30px;
    margin-bottom: 0;
  }
}
.paragraph--type-anchor-cards.has-no-heading .anchor-cards .card__title {
  color: #383838;
  position: relative;
}
.paragraph--type-anchor-cards.has-no-heading .anchor-cards .card__title:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.paragraph--type-anchor-cards.has-no-heading .anchor-cards .card__body p {
  font-size: 0.875rem;
  line-height: 1.625rem;
  margin: 0;
  margin-bottom: 8px;
}
.paragraph--type-anchor-cards.has-no-heading .anchor-cards .paragraph--type-card {
  cursor: initial;
  background: transparent;
}
.paragraph--type-anchor-cards.has-no-heading .anchor-cards .paragraph--type-card:hover {
  background: transparent;
}
@media (min-width: 1024px) {
  .paragraph--type-anchor-cards.has-no-heading .anchor-cards {
    display: block;
  }
  .paragraph--type-anchor-cards.has-no-heading .anchor-cards::after {
    display: none;
  }
  .paragraph--type-anchor-cards.has-no-heading .anchor-cards__card-items {
    width: 100%;
  }
  .paragraph--type-anchor-cards.has-no-heading .anchor-cards .paragraph--type-card {
    width: 31.5%;
  }
}

.paragraph--type-attachments .attachments h2 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  padding-left: 18px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.paragraph--type-attachments .attachments__content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin-bottom: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 18px;
  padding-right: 18px;
}
@media (min-width: 768px) {
  .paragraph--type-attachments .attachments__content {
    border-radius: 12px;
  }
}
.paragraph--type-attachments .attachments__body {
  margin-left: 8px;
}
.paragraph--type-attachments .attachments__body a {
  text-decoration: underline;
}
.paragraph--type-attachments .attachments__body a:hover {
  text-decoration: underline;
}
.paragraph--type-attachments .attachments__body a:hover:after {
  content: none;
}
.paragraph--type-attachments .attachments__body a:focus:after {
  content: none;
}
.paragraph--type-attachments .attachments__body h2 {
  margin: 0;
  padding-left: 0;
}
.paragraph--type-attachments .attachments__files-paragraph .files {
  display: flex;
  flex-direction: column;
}
.paragraph--type-attachments .attachments__files-paragraph .files__title {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin: 18px 8px;
}
.paragraph--type-attachments .attachments__files-paragraph .files__item {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #722587;
  background-color: rgba(114, 37, 135, 0.1);
  display: flex;
  padding: 12px;
  margin-bottom: 4px;
  border-radius: 10px;
  transition: background-color 0.7s;
}
.paragraph--type-attachments .attachments__files-paragraph .files__item a {
  color: #722587;
}
.paragraph--type-attachments .attachments__files-paragraph .files__item a:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-attachments .attachments__files-paragraph .files__item a:before {
  content: "\e901";
}
.paragraph--type-attachments .attachments__files-paragraph .files__item a:before {
  float: left;
  padding-top: 4px;
  padding-right: 8px;
  color: #722587;
  width: 23px;
  opacity: 1;
}
.paragraph--type-attachments .attachments__files-paragraph .files__item:hover {
  background-color: rgba(114, 37, 135, 0.1);
}
@media (min-width: 768px) {
  .paragraph--type-attachments .attachments__files-paragraph .files__item {
    background: none;
  }
  .paragraph--type-attachments .attachments__files-paragraph .files__item a:before {
    width: 0;
    opacity: 0;
    transition: width 0.3s, opacity 0.3s;
  }
  .paragraph--type-attachments .attachments__files-paragraph .files__item:hover a:before {
    width: 23px;
    opacity: 1;
  }
}
.paragraph--type-attachments .attachments__files-paragraph .files__item > article {
  width: 100%;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file {
  transition: ease-in-out;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file a {
  display: inline-block;
  color: #000000;
  width: 100%;
  justify-content: space-between;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file a:after {
  display: none;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file .file-size {
  width: 90px;
  text-align: left;
  float: right;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file .file-size span {
  color: #000000;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--application-pdf i {
  color: #722587;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--application-pdf i:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--application-pdf i:before {
  content: "\e913";
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--application-pdf .file-type {
  float: left;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--x-office-document i {
  color: #722587;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--x-office-document i:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--x-office-document i:before {
  content: "\e90b";
}
.paragraph--type-attachments .attachments__files-paragraph .files .file--x-office-document .file-type {
  float: left;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file a .file-size {
  flex-basis: 35%;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file a .file-size i {
  color: #722587;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file a .file-size i:before {
  margin-right: 4px;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file a:after {
  content: unset;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--application-pdf a .file-title, .paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--x-office-document a .file-title {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #722587;
  flex-grow: 1;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--application-pdf a .file-title:before, .paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--x-office-document a .file-title:before {
  content: "Download";
  margin-right: 4px;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--application-pdf i:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--application-pdf i:before {
  content: "\e913";
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--x-office-document i:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-attachments.paragraph--view-mode-teaser-small .attachments__files-paragraph .file--x-office-document i:before {
  content: "\e90b";
}

.paragraph--type-call-to-action .cta-content {
  z-index: 1;
}
.paragraph--type-call-to-action .cta-content__link {
  z-index: 1;
}
.paragraph--type-call-to-action .cta-content__link a {
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text_on_secondary);
}
.paragraph--type-call-to-action .cta-content__link a:hover, .paragraph--type-call-to-action .cta-content__link a:active, .paragraph--type-call-to-action .cta-content__link a:focus {
  text-decoration: none;
}
.paragraph--type-call-to-action .cta-content__link a:hover::after, .paragraph--type-call-to-action .cta-content__link a:active::after, .paragraph--type-call-to-action .cta-content__link a:focus::after {
  background: none;
}
.paragraph--type-call-to-action .cta-content__link a:hover {
  text-decoration: none;
}
.paragraph--type-call-to-action .cta-content__wrapper {
  background: var(--color-primary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.paragraph--type-call-to-action .cta-content__title, .paragraph--type-call-to-action .cta-content__body {
  color: var(--color-text_on_primary);
}
@media (min-width: 640px) {
  .paragraph--type-call-to-action .cta-content {
    margin-right: 2rem;
  }
  .paragraph--type-call-to-action .cta-content__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .paragraph--type-call-to-action .cta-content__wrapper::before {
    content: "";
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    position: absolute;
    z-index: 0;
    left: 0;
    -webkit-clip-path: ellipse(75% 65% at 0% 25%);
            clip-path: ellipse(75% 65% at 0% 25%);
  }
}

.paragraph--type-callout {
  margin-bottom: 48px;
  margin-left: 0;
  border-radius: 32px;
  padding: 46px 19px;
}
@media (min-width: 640px) {
  .paragraph--type-callout {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-callout {
    margin-bottom: 96px;
  }
}
.paragraph--type-callout::before, .paragraph--type-callout::after {
  display: none;
}
.paragraph--type-callout .callout__body {
  text-align: center;
  margin-bottom: 40px;
}
.paragraph--type-callout .callout__body a {
  text-decoration: underline;
}
.paragraph--type-callout .callout__body a:hover {
  text-decoration: underline;
}
.paragraph--type-callout .callout__body a:hover:after {
  content: none;
}
.paragraph--type-callout .callout__body a:focus:after {
  content: none;
}
.paragraph--type-callout .callout__body p {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  max-width: 328px;
  margin: 0 auto;
}
.paragraph--type-callout .callout__items {
  margin-bottom: 40px;
}
.paragraph--type-callout .callout__item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}
.paragraph--type-callout .callout-item .field--name-field-svg-icon {
  margin-right: 24px;
}
.paragraph--type-callout .callout-item__title {
  color: #383838;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.paragraph--type-callout .callout__bottom {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
}
.paragraph--type-callout .callout__cta-body {
  margin-bottom: 30px;
}
.paragraph--type-callout .callout__cta-body a {
  text-decoration: underline;
}
.paragraph--type-callout .callout__cta-body a:hover {
  text-decoration: underline;
}
.paragraph--type-callout .callout__cta-body a:hover:after {
  content: none;
}
.paragraph--type-callout .callout__cta-body a:focus:after {
  content: none;
}
.paragraph--type-callout .callout .svg__convert-to-tag svg {
  transition: 0.3s all ease-in-out;
  width: 50px;
  height: 50px;
}
.paragraph--type-callout .callout .callout-item__link {
  display: flex;
  align-items: center;
}
.paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg {
  width: 65px;
  height: 65px;
  transition: 0.3s all ease-in-out;
}
.paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg circle {
  transition: 0.3s all ease-in-out;
  fill: #459965;
}
.paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg .target-path-white {
  stroke: #ffffff;
}
.paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg .target-path-transparent {
  stroke: #459965;
}
@media (min-width: 1024px) {
  .paragraph--type-callout {
    margin-top: -110px;
    margin-left: 50px;
    border-radius: 75px 0 0 75px;
    padding: 46px 32px;
  }
  .paragraph--type-callout .callout {
    box-sizing: border-box;
  }
  .au-body .paragraph--type-callout .callout, .paragraph--type-callout .callout {
    max-width: 1184px;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) and (min-width: ) {
  .au-body .paragraph--type-callout .callout, .paragraph--type-callout .callout {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-callout .callout__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .paragraph--type-callout .callout__body {
    width: 35%;
    text-align: left;
  }
  .paragraph--type-callout .callout__body p {
    max-width: 450px;
  }
  .paragraph--type-callout .callout__items {
    display: flex;
    justify-content: space-between;
    width: 63%;
  }
  .paragraph--type-callout .callout__item {
    width: 31%;
    padding: 32px 16px;
    position: relative;
  }
  .paragraph--type-callout .callout-item::before {
    content: "";
    border: 16px solid transparent;
    position: absolute;
    left: -16px;
    top: 70%;
    border-bottom: 20px solid #ffffff;
  }
  .paragraph--type-callout .callout-item .field--name-field-svg-icon {
    margin: 0 0 16px;
  }
  .paragraph--type-callout .callout-item__title {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 16px;
  }
  .paragraph--type-callout .callout__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .paragraph--type-callout .callout__cta-body {
    width: 70%;
    margin-bottom: 0;
  }
  .paragraph--type-callout .callout__cta {
    width: 28%;
  }
  .paragraph--type-callout .callout__cta .paragraph--type--cta {
    margin-bottom: 0;
  }
  .paragraph--type-callout .callout .svg__convert-to-tag svg {
    width: 70px;
    height: 70px;
  }
  .paragraph--type-callout .callout .callout-item__link {
    display: block;
    text-align: center;
  }
  .paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg {
    width: 85px;
    height: 85px;
  }
  .paragraph--type-callout::before {
    display: block;
    background-image: url("/themes/custom/custom/nhpo/images/concave.png");
    width: 118px;
    height: 172px;
    top: -96px;
    right: 0;
    background-color: transparent;
  }
}
@media (min-width: 1280px) {
  .au-body .paragraph--type-callout .callout, .paragraph--type-callout .callout {
    max-width: 1400px;
    position: relative;
    left: -84px;
    margin: 0 auto;
    padding: 0 77px;
  }
  .paragraph--type-callout .callout__body {
    width: 28%;
  }
  .paragraph--type-callout .callout__items {
    width: 70%;
  }
  .paragraph--type-callout .callout .svg__convert-to-tag svg {
    width: 100px;
    height: 100px;
  }
  .paragraph--type-callout .callout .callout-item__link:hover .svg__convert-to-tag svg {
    width: 115px;
    height: 115px;
  }
}

.paragraph--type-content-with-sidebar .content-with-sidebar .paragraph--type-content__wrapper {
  padding: 0;
}

.paragraph--type-content {
  background-color: transparent;
  box-sizing: border-box;
  margin-bottom: 48px;
}
.au-body .paragraph--type-content, .paragraph--type-content {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type-content, .paragraph--type-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 640px) {
  .paragraph--type-content {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-content {
    margin-bottom: 96px;
  }
}
.paragraph--type-content.cm-bg-primary-color--fx-violet .paragraph--type-content__wrapper {
  background-color: #722587;
}
.paragraph--type-content.cm-bg-primary-color--fx-violet a:focus {
  outline-color: #722587;
}
.paragraph--type-content.cm-bg-primary-color--foi-blue .paragraph--type-content__wrapper {
  background-color: #007299;
}
.paragraph--type-content.cm-bg-primary-color--foi-blue a:focus {
  outline-color: #007299;
}
.paragraph--type-content.cm-bg-primary-color--pc-navy .paragraph--type-content__wrapper {
  background-color: #00437B;
}
.paragraph--type-content.cm-bg-primary-color--pc-navy a:focus {
  outline-color: #00437B;
}
.paragraph--type-content.cm-bg-primary-color--omb-green .paragraph--type-content__wrapper {
  background-color: #459965;
}
.paragraph--type-content.cm-bg-primary-color--omb-green a:focus {
  outline-color: #459965;
}
.paragraph--type-content.cm-bg-primary-color--blue-pattens .paragraph--type-content__wrapper {
  background-color: #f1f8fa;
}
.paragraph--type-content.cm-bg-primary-color .paragraph--type-content__wrapper {
  border-radius: 24px;
  padding: 48px;
}
.paragraph--type-content__body a {
  text-decoration: underline;
}
.paragraph--type-content__body a:hover {
  text-decoration: underline;
}
.paragraph--type-content__body a:hover:after {
  content: none;
}
.paragraph--type-content__body a:focus:after {
  content: none;
}
.paragraph--type-content__title {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 40px;
}
.paragraph--type-content.speech-bubble-background .paragraph--type-content__wrapper {
  background-image: url("/themes/custom/custom/nhpo/images/speech.svg");
  background-repeat: no-repeat;
  background-size: 100% 80%;
  background-position: center;
}
@media (min-width: 640px) {
  .paragraph--type-content.speech-bubble-background .paragraph--type-content__wrapper {
    padding: 80px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-content.speech-bubble-background .paragraph--type-content__wrapper {
    padding: 112px;
  }
  .paragraph--type-content.speech-bubble-background .paragraph--type-content__wrapper .paragraph--type-content__wrapper {
    border-radius: 50px;
    padding: 48px;
  }
}
@media (min-width: 1280px) {
  .paragraph--type-content.speech-bubble-background .paragraph--type-content__wrapper {
    padding: 130px 176px;
  }
}

.paragraph--type-cta-with-description-group {
  margin-bottom: 40px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.paragraph--type-cta-with-description-group .paragraph--type-cta-with-description {
  padding-left: 20px;
  padding-right: 20px;
}
.paragraph--type-cta-with-description-group .paragraph--type-cta-with-description.cm-bg-primary-color {
  padding-left: 20px;
  padding-right: 20px;
}
.paragraph--type-cta-with-description-group .cta-with-description-group__items {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.paragraph--type-cta-with-description-group .cta-with-description-group__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.paragraph--type-cta-with-description-group .cta-with-description-group__item .paragraph--type-cta-with-description {
  margin: 20px 0;
}
.paragraph--type-cta-with-description-group .cta-with-description-group__item:first-child .paragraph--type-cta-with-description {
  margin-top: 0;
}
.paragraph--type-cta-with-description-group .cta-with-description-group__item:last-child {
  border-bottom: none;
}
.paragraph--type-cta-with-description-group .cta-with-description-group__item:last-child .paragraph--type-cta-with-description {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .paragraph--type-cta-with-description-group {
    border-radius: 12px;
  }
}

.paragraph--type-cta-with-description {
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
.paragraph--type-cta-with-description.cm-arrow-color--fx-violet .cta-with-description__title a:after {
  color: #722587;
}
.paragraph--type-cta-with-description.cm-arrow-color--foi-blue .cta-with-description__title a:after {
  color: #007299;
}
.paragraph--type-cta-with-description.cm-arrow-color--pc-navy .cta-with-description__title a:after {
  color: #00437B;
}
.paragraph--type-cta-with-description.cm-arrow-color--omb-green .cta-with-description__title a:after {
  color: #459965;
}
.paragraph--type-cta-with-description.cm-arrow-color--light .cta-with-description__title a:after {
  color: #ffffff;
}
.paragraph--type-cta-with-description.cm-arrow-color--dark .cta-with-description__title a:after {
  color: #383838;
}
.paragraph--type-cta-with-description .cta-with-description__title a {
  color: #383838;
}
.paragraph--type-cta-with-description.cm-bg-primary-color {
  padding: 20px 40px;
  border-radius: 30px;
}
.paragraph--type-cta-with-description.cm-bg-primary-color .cta-with-description__title a, .paragraph--type-cta-with-description.cm-bg-primary-color .cta-with-description__body p {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.paragraph--type-cta-with-description.cm-bg-primary-color .cta-with-description__title a:focus {
  outline-color: #ffffff;
}
.paragraph--type-cta-with-description .cta-with-description__title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  margin-bottom: 13px;
}
.paragraph--type-cta-with-description .cta-with-description__title a {
  display: inline-block;
  width: 100%;
}
.paragraph--type-cta-with-description .cta-with-description__title a:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-cta-with-description .cta-with-description__title a:after {
  content: "\e902";
}
.paragraph--type-cta-with-description .cta-with-description__title a:after, .paragraph--type-cta-with-description .cta-with-description__title a:hover:after {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background-color: transparent;
  transition: unset;
}
.paragraph--type-cta-with-description .cta-with-description__body {
  max-width: 95%;
}
.paragraph--type-cta-with-description .cta-with-description__body a {
  text-decoration: underline;
}
.paragraph--type-cta-with-description .cta-with-description__body a:hover {
  text-decoration: underline;
}
.paragraph--type-cta-with-description .cta-with-description__body a:hover:after {
  content: none;
}
.paragraph--type-cta-with-description .cta-with-description__body a:focus:after {
  content: none;
}
.paragraph--type-cta-with-description .cta-with-description__body p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
@media (min-width: 1024px) {
  .paragraph--type-cta-with-description.cm-bg-primary-color {
    border-radius: 12px;
  }
  .paragraph--type-cta-with-description.cm-bg-primary-color .cta-with-description__title a {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
  .paragraph--type-cta-with-description .cta-with-description__title a {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}

.paragraph--type-data-display {
  box-sizing: border-box;
  margin-bottom: 48px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  text-align: center;
}
.au-body .paragraph--type-data-display, .paragraph--type-data-display {
  max-width: 1424px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type-data-display, .paragraph--type-data-display {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 640px) {
  .paragraph--type-data-display {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-data-display {
    margin-bottom: 96px;
  }
}
.paragraph--type-data-display.cm-bg-primary-color--fx-violet .paragraph--type-data-display__wrapper {
  background-color: #722587;
}
.paragraph--type-data-display.cm-bg-primary-color--fx-violet a:focus {
  outline-color: #722587;
}
.paragraph--type-data-display.cm-bg-primary-color--foi-blue .paragraph--type-data-display__wrapper {
  background-color: #007299;
}
.paragraph--type-data-display.cm-bg-primary-color--foi-blue a:focus {
  outline-color: #007299;
}
.paragraph--type-data-display.cm-bg-primary-color--pc-navy .paragraph--type-data-display__wrapper {
  background-color: #00437B;
}
.paragraph--type-data-display.cm-bg-primary-color--pc-navy a:focus {
  outline-color: #00437B;
}
.paragraph--type-data-display.cm-bg-primary-color--omb-green .paragraph--type-data-display__wrapper {
  background-color: #459965;
}
.paragraph--type-data-display.cm-bg-primary-color--omb-green a:focus {
  outline-color: #459965;
}
.paragraph--type-data-display.cm-bg-primary-color--blue-pattens .paragraph--type-data-display__wrapper {
  background-color: #f1f8fa;
}
.paragraph--type-data-display__wrapper {
  border-radius: 24px;
  padding: 60px 20px;
  background-image: url("/themes/custom/custom/nhpo/images/spiral-background.svg");
  background-repeat: no-repeat;
  background-size: 165% 138%;
  background-position: right;
}
.paragraph--type-data-display__title {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 500;
  padding-bottom: 30px;
  max-width: 600px;
  margin: 0 auto;
}
.paragraph--type-data-display__link {
  margin-bottom: 50px;
}
.paragraph--type-data-display__link a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
}
.paragraph--type-data-display__link a:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.paragraph--type-data-display__link a:after {
  content: "\e902";
}
.paragraph--type-data-display__link a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.paragraph--type-data-display__link a::after, .paragraph--type-data-display__link a:hover:after {
  position: relative;
  top: 0;
  width: unset;
  height: unset;
  background-color: transparent;
  transition: unset;
  margin-left: 10px;
}
.paragraph--type-data-display__content {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding-top: 40px;
}
.paragraph--type-data-display__data-title {
  margin-bottom: 40px;
}
.paragraph--type-data-display__data-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.paragraph--type-data-display__data-item {
  width: 50%;
  margin-bottom: 40px;
}
.paragraph--type-data-display__data-item:nth-child(n+2) {
  margin-bottom: 0;
}
.paragraph--type-data-display__data-item .paragraph-content {
  padding: 0;
}
.paragraph--type-data-display__data-item .field--name-field-number {
  font-size: 63px;
}
.paragraph--type-data-display__data-item .field--name-field-plain-text {
  max-width: 130px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .paragraph--type-data-display__wrapper {
    background-position: center;
    background-size: 130% 130%;
  }
  .paragraph--type-data-display__data-item {
    width: 23%;
  }
  .paragraph--type-data-display__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-data-display__wrapper {
    border-radius: 50px;
    background-size: 90% 100%;
    padding: 80px 32px;
  }
  .paragraph--type-data-display__title {
    font-weight: 600;
    font-size: 40.5px;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 35px;
  }
  .paragraph--type-data-display__link {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 100px;
  }
  .paragraph--type-data-display__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .paragraph--type-data-display__data-title {
    width: 20%;
  }
  .paragraph--type-data-display__data-items {
    width: 75%;
  }
  .paragraph--type-data-display__data-item {
    width: 33%;
    max-width: 175px;
  }
  .paragraph--type-data-display__data-title {
    margin-left: 24px;
    margin-bottom: 0;
    max-width: 150px;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .paragraph--type-data-display__wrapper {
    background-size: 125% 100%;
    padding: 140px 100px 80px;
  }
  .paragraph--type-data-display .field--name-field-plain-text {
    max-width: 175px;
  }
  .paragraph--type-data-display__data-title {
    width: 15%;
  }
  .paragraph--type-data-display__data-items {
    width: 80%;
  }
}

.paragraph--type-image-gallery .gallery__body {
  margin-bottom: 32px;
}
.paragraph--type-image-gallery .gallery__media-item {
  overflow: hidden;
  margin-bottom: 1rem;
}
.paragraph--type-image-gallery .gallery__media-item .image-popup__wrapper {
  width: 100%;
  overflow: hidden;
}
.paragraph--type-image-gallery .gallery__media-item .image-popup__image {
  min-height: 250px;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 640px) {
  .paragraph--type-image-gallery .gallery__media-item {
    margin-bottom: 0;
  }
  .paragraph--type-image-gallery .gallery__media-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
  }
  .paragraph--type-image-gallery .gallery .image-popup__image {
    min-height: 200px;
  }
}
@media (min-width: 768px) {
  .paragraph--type-image-gallery .gallery__media-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-image-gallery .gallery__media-items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .paragraph--type-image-gallery .gallery__media-items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.paragraph--type-our-role-infographic__wrapper {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 60px;
  position: relative;
}
.au-body .paragraph--type-our-role-infographic__wrapper, .paragraph--type-our-role-infographic__wrapper {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type-our-role-infographic__wrapper, .paragraph--type-our-role-infographic__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.paragraph--type-our-role-infographic__content {
  margin-bottom: 32px;
}
.paragraph--type-our-role-infographic__title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}
.paragraph--type-our-role-infographic__svg.desktop {
  display: none;
}
.paragraph--type-our-role-infographic__svg svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .paragraph--type-our-role-infographic__title {
    font-size: 3.5rem;
    line-height: 1;
  }
  .paragraph--type-our-role-infographic__content {
    max-width: 480px;
    position: absolute;
    left: 50%;
    top: 10%;
  }
  .paragraph--type-our-role-infographic__svg {
    text-align: center;
    display: none;
  }
  .paragraph--type-our-role-infographic__svg.desktop {
    display: block;
  }
  .paragraph--type-our-role-infographic__svg svg {
    width: 90%;
  }
}

.paragraph--type-remote-video-popup iframe {
  width: 100%;
  min-height: 250px;
}
@media (min-width: 640px) {
  .paragraph--type-remote-video-popup iframe {
    min-height: 200px;
  }
}

.paragraph--type-step-component .step__content-wrapper {
  margin-bottom: 32px;
}
.paragraph--type-step-component .step__items {
  list-style: none;
  padding: 0;
  counter-reset: li;
}
.paragraph--type-step-component .step__item {
  border-left: 2px solid var(--color-primary);
  min-height: auto;
  position: relative;
  padding: 0 0 1.5rem 4rem;
  margin: 0 0 0 24px;
}
.paragraph--type-step-component .step__item::before {
  background-color: var(--color-primary);
  color: var(--color-text_on_primary);
  border: 1px solid var(--color-secondary);
  font-weight: 600;
  content: counter(li);
  counter-increment: li;
  text-align: center;
  top: 0;
  left: 0;
  position: absolute;
  width: 3rem;
  height: 3rem;
  padding: 0;
  font-size: 1.125rem;
  line-height: 3rem;
  border-radius: 0.25rem;
  transform: translateX(-50%);
}
.paragraph--type-step-component .step__item:last-child {
  border-left-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
}
.paragraph--type-step-component .step__item .title-text__title {
  font-weight: 600;
  font-size: 1.1rem;
}

.paragraph--type-toc-item {
  box-sizing: border-box;
  margin-bottom: 40px;
  scroll-margin-top: 130px;
}
.au-body .paragraph--type-toc-item, .paragraph--type-toc-item {
  max-width: 1184px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph--type-toc-item, .paragraph--type-toc-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.paragraph--type-toc-item.cm-bg-primary-color {
  padding: 32px 16px;
  border-top-right-radius: 60px;
}
.paragraph--type-toc-item .toc-item a {
  text-decoration: underline;
}
.paragraph--type-toc-item .toc-item a:hover {
  text-decoration: underline;
}
.paragraph--type-toc-item .toc-item a:hover:after {
  content: none;
}
.paragraph--type-toc-item .toc-item a:focus:after {
  content: none;
}
.paragraph--type-toc-item .toc-item__subtitle {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.paragraph--type-toc-item .toc-item__title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  line-height: 2rem;
}
@media (min-width: 640px) {
  .paragraph--type-toc-item.cm-bg-primary-color {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .paragraph--type-toc-item {
    margin-bottom: 64px;
  }
  .paragraph--type-toc-item.cm-bg-primary-color {
    padding: 60px;
    border-radius: 12px;
  }
  .paragraph--type-toc-item .toc-item__title {
    font-size: 2rem;
    line-height: 1;
  }
}

.paragraph {
  box-sizing: border-box;
  margin-bottom: 48px;
}
.au-body .paragraph, .paragraph {
  max-width: 1424px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: ) {
  .au-body .paragraph, .paragraph {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 640px) {
  .paragraph {
    margin-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .paragraph {
    margin-bottom: 96px;
  }
}
.paragraph.no-margin {
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .paragraph {
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .paragraph {
    margin-bottom: 96px;
  }
}

.left-content-teaser-portrait__left {
  margin-bottom: 32px;
}
.left-content-teaser-portrait .backstretch {
  background-size: cover;
  border-radius: 10px;
  height: 55vh;
}
.au-body .left-content-teaser-portrait__title, .left-content-teaser-portrait__title {
  margin-bottom: 19px;
}
.left-content-teaser-portrait__body {
  margin-bottom: 51px;
}
.left-content-teaser-portrait__body a {
  text-decoration: underline;
}
.left-content-teaser-portrait__body a:hover {
  text-decoration: underline;
}
.left-content-teaser-portrait__body a:hover:after {
  content: none;
}
.left-content-teaser-portrait__body a:focus:after {
  content: none;
}
@media (min-width: 640px) {
  .au-body .left-content-teaser-portrait__title, .left-content-teaser-portrait__title {
    margin-bottom: 32px;
  }
  .left-content-teaser-portrait__cta .paragraph-content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .left-content-teaser-portrait {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .left-content-teaser-portrait__left {
    margin-bottom: 0;
    width: 46%;
  }
  .left-content-teaser-portrait__right {
    width: 46%;
  }
}

.left-content-teaser .backstretch {
  min-height: 320px;
  background-size: contain;
}
.au-body .left-content-teaser__title, .left-content-teaser__title {
  margin-bottom: 32px;
}
.left-content-teaser__body {
  margin-bottom: 51px;
}
.left-content-teaser__body a {
  text-decoration: underline;
}
.left-content-teaser__body a:hover {
  text-decoration: underline;
}
.left-content-teaser__body a:hover:after {
  content: none;
}
.left-content-teaser__body a:focus:after {
  content: none;
}
.left-content-teaser__cta {
  margin-bottom: 51px;
}
@media (min-width: 640px) {
  .left-content-teaser .backstretch {
    background-size: auto;
  }
  .au-body .left-content-teaser__title, .left-content-teaser__title {
    margin-bottom: 32px;
  }
  .left-content-teaser__cta .paragraph-content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .left-content-teaser {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .left-content-teaser__left {
    width: 48%;
  }
  .left-content-teaser__right {
    width: 48%;
  }
}

.right-content-teaser-portrait__left {
  margin-bottom: 32px;
}
.right-content-teaser-portrait .backstretch {
  background-size: cover;
  border-radius: 10px;
  height: 55vh;
}
.au-body .right-content-teaser-portrait__title, .right-content-teaser-portrait__title {
  margin-bottom: 19px;
}
.right-content-teaser-portrait__body {
  margin-bottom: 51px;
}
.right-content-teaser-portrait__body a {
  text-decoration: underline;
}
.right-content-teaser-portrait__body a:hover {
  text-decoration: underline;
}
.right-content-teaser-portrait__body a:hover:after {
  content: none;
}
.right-content-teaser-portrait__body a:focus:after {
  content: none;
}
@media (min-width: 640px) {
  .au-body .right-content-teaser-portrait__title, .right-content-teaser-portrait__title {
    margin-bottom: 32px;
  }
  .right-content-teaser-portrait__cta .paragraph-content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .right-content-teaser-portrait {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .right-content-teaser-portrait__left {
    margin-bottom: 0;
    width: 46%;
  }
  .right-content-teaser-portrait__right {
    width: 46%;
  }
}

.right-content-teaser .backstretch {
  min-height: 320px;
  background-size: contain;
}
.au-body .right-content-teaser__title, .right-content-teaser__title {
  margin-bottom: 32px;
}
.right-content-teaser__body {
  margin-bottom: 51px;
}
.right-content-teaser__body a {
  text-decoration: underline;
}
.right-content-teaser__body a:hover {
  text-decoration: underline;
}
.right-content-teaser__body a:hover:after {
  content: none;
}
.right-content-teaser__body a:focus:after {
  content: none;
}
.right-content-teaser__cta {
  margin-bottom: 51px;
}
@media (min-width: 640px) {
  .right-content-teaser .backstretch {
    background-size: auto;
  }
  .au-body .right-content-teaser__title, .right-content-teaser__title {
    margin-bottom: 32px;
  }
  .right-content-teaser__cta .paragraph-content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .right-content-teaser {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: unset;
  }
  .right-content-teaser__left {
    width: 48%;
  }
  .right-content-teaser__right {
    width: 48%;
  }
}

.search {
  margin-top: 0;
}
.search__title a {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
  color: #383838;
}
.search__summary p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.stack--detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #b7b7b7;
}
.stack--detail .stack__image {
  width: 100%;
  height: 240px;
}
.stack--detail .stack__content {
  max-width: 100%;
}
.stack--detail .stack__content > * {
  max-width: 100%;
}
@media (min-width: 768px) {
  .stack--detail .stack__image {
    height: 280px;
  }
}

.stack--simple--with-arrow {
  background-color: transparent;
  border-radius: unset;
}
.stack--simple--with-arrow .stack__content {
  position: relative;
  padding: 0;
  padding-right: 30px;
  border-width: 0;
  border-bottom-width: 3px;
  border-style: solid;
}
.stack--simple--with-arrow .stack__content > * {
  max-width: 100%;
}
.stack--simple--with-arrow .stack__content .stack__title {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
}
.stack--simple--with-arrow .stack__content .stack__info {
  margin-bottom: 32px;
}
.stack--simple--with-arrow .stack__content .stack__info p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.stack--simple--with-arrow .stack__content .stack__tags {
  position: absolute;
  top: 0;
  right: 0;
}
.stack--simple--with-arrow .stack__content .stack__tags a {
  font-weight: 600;
}
.stack--simple--with-arrow .stack__content .stack__tags a:after {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.stack--simple--with-arrow .stack__content .stack__tags a:after {
  content: "\e902";
}
.stack--simple--with-arrow .stack__content .stack__tags a:after {
  background-color: transparent;
  position: relative;
  width: auto;
  height: auto;
  transition: unset;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.stack--simple--with-arrow .stack__content .stack__tags a:hover:after, .stack--simple--with-arrow .stack__content .stack__tags a:focus:after {
  width: auto;
}
.stack--simple--with-arrow .stack__content .stack__tags a:after {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .stack--simple--with-arrow .stack__content .stack__tags {
    opacity: 1;
  }
  .stack--simple--with-arrow:hover {
    transform: unset;
    box-shadow: none;
  }
}

.stack--simple {
  border: 1px solid #b7b7b7;
}
.stack--simple.cm-text-colour--fx-violet {
  color: #722587;
}
.stack--simple.cm-text-colour--foi-blue {
  color: #007299;
}
.stack--simple.cm-text-colour--pc-navy {
  color: #00437B;
}
.stack--simple.cm-text-colour--omb-green {
  color: #459965;
}
.stack--simple.cm-text-colour--light {
  color: #ffffff;
}
.stack--simple.cm-text-colour--dark {
  color: #383838;
}
.stack--simple.cm-bgcontent-color {
  border: none;
}
.stack--simple .stack__content > * {
  max-width: 100%;
}
.stack--simple.cm-text-colour .stack__content .stack__title {
  color: unset;
}
.stack--simple.cm-text-colour .stack__content .stack__tags a {
  color: unset;
}
.stack--simple.cm-text-colour.cm-text-colour--light .stack__content .stack__title {
  color: #ffffff;
}
.stack--simple.cm-text-colour.cm-text-colour--light .stack__content .stack__tags a {
  color: #ffffff;
}

.teaser__image-wrapper {
  overflow: hidden;
  max-height: 300px;
}
.teaser__image {
  width: 100%;
  min-height: 300px;
}
.teaser__content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.5rem 1.5rem;
}
.teaser__title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  margin: 1rem 0;
}
.teaser__text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.w-blockquote--all-functions:before {
  color: #722587;
}
.w-blockquote--ombudsman:before {
  color: #459965;
}
.w-blockquote--privacy-commissioner:before {
  color: #00437B;
}
.w-blockquote--foi:before {
  color: #007299;
}
.w-blockquote--white:before {
  color: #ffffff;
}

.w-heading-h2--all-functions, .w-heading-h3--all-functions, .w-heading-h4--all-functions, .w-heading-h5--all-functions, .w-heading-h6--all-functions {
  color: #722587;
}
.w-heading-h2--ombudsman, .w-heading-h3--ombudsman, .w-heading-h4--ombudsman, .w-heading-h5--ombudsman, .w-heading-h6--ombudsman {
  color: #459965;
}
.w-heading-h2--privacy-commissioner, .w-heading-h3--privacy-commissioner, .w-heading-h4--privacy-commissioner, .w-heading-h5--privacy-commissioner, .w-heading-h6--privacy-commissioner {
  color: #00437B;
}
.w-heading-h2--foi, .w-heading-h3--foi, .w-heading-h4--foi, .w-heading-h5--foi, .w-heading-h6--foi {
  color: #007299;
}
.w-heading-h2--white, .w-heading-h3--white, .w-heading-h4--white, .w-heading-h5--white, .w-heading-h6--white {
  color: #ffffff;
}
.w-heading-h2--black, .w-heading-h3--black, .w-heading-h4--black, .w-heading-h5--black, .w-heading-h6--black {
  color: #383838;
}

.au-body a.w-link, a.w-link {
  display: inline-block;
}
.au-body a.w-link--all-functions, a.w-link--all-functions {
  color: #722587;
}
.au-body a.w-link--all-functions:after, a.w-link--all-functions:after {
  background-color: #722587;
}
.au-body a.w-link--ombudsman, a.w-link--ombudsman {
  color: #459965;
}
.au-body a.w-link--ombudsman:after, a.w-link--ombudsman:after {
  background-color: #459965;
}
.au-body a.w-link--privacy-commissioner, a.w-link--privacy-commissioner {
  color: #00437B;
}
.au-body a.w-link--privacy-commissioner:after, a.w-link--privacy-commissioner:after {
  background-color: #00437B;
}
.au-body a.w-link--foi, a.w-link--foi {
  color: #007299;
}
.au-body a.w-link--foi:after, a.w-link--foi:after {
  background-color: #007299;
}
.au-body a.w-link--white, a.w-link--white {
  color: #ffffff;
}
.au-body a.w-link--white:after, a.w-link--white:after {
  background-color: #ffffff;
}
.au-body a.w-link--black, a.w-link--black {
  color: #383838;
}
.au-body a.w-link--black:after, a.w-link--black:after {
  background-color: #383838;
}
.au-body a.w-link--all-functions-regular, a.w-link--all-functions-regular {
  background-color: #722587;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--all-functions-regular:hover, .au-body a.w-link--all-functions-regular.hover, a.w-link--all-functions-regular:hover, a.w-link--all-functions-regular.hover {
  background: rgba(114, 37, 135, 0.8);
}
.au-body a.w-link--all-functions-regular:hover, .au-body a.w-link--all-functions-regular:active, .au-body a.w-link--all-functions-regular:focus, a.w-link--all-functions-regular:hover, a.w-link--all-functions-regular:active, a.w-link--all-functions-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--all-functions-regular:hover::after, .au-body a.w-link--all-functions-regular:active::after, .au-body a.w-link--all-functions-regular:focus::after, a.w-link--all-functions-regular:hover::after, a.w-link--all-functions-regular:active::after, a.w-link--all-functions-regular:focus::after {
  background: none;
}
.au-body a.w-link--all-functions-regular:hover::after, .au-body a.w-link--all-functions-regular:focus::after, a.w-link--all-functions-regular:hover::after, a.w-link--all-functions-regular:focus::after {
  display: none;
}
.au-body a.w-link--all-functions-regular:focus, a.w-link--all-functions-regular:focus {
  outline-color: #722587;
}
.au-body a.w-link--ombudsman-regular, a.w-link--ombudsman-regular {
  background-color: #459965;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--ombudsman-regular:hover, .au-body a.w-link--ombudsman-regular.hover, a.w-link--ombudsman-regular:hover, a.w-link--ombudsman-regular.hover {
  background: rgba(69, 153, 101, 0.8);
}
.au-body a.w-link--ombudsman-regular:hover, .au-body a.w-link--ombudsman-regular:active, .au-body a.w-link--ombudsman-regular:focus, a.w-link--ombudsman-regular:hover, a.w-link--ombudsman-regular:active, a.w-link--ombudsman-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--ombudsman-regular:hover::after, .au-body a.w-link--ombudsman-regular:active::after, .au-body a.w-link--ombudsman-regular:focus::after, a.w-link--ombudsman-regular:hover::after, a.w-link--ombudsman-regular:active::after, a.w-link--ombudsman-regular:focus::after {
  background: none;
}
.au-body a.w-link--ombudsman-regular:hover::after, .au-body a.w-link--ombudsman-regular:focus::after, a.w-link--ombudsman-regular:hover::after, a.w-link--ombudsman-regular:focus::after {
  display: none;
}
.au-body a.w-link--ombudsman-regular:focus, a.w-link--ombudsman-regular:focus {
  outline-color: #459965;
}
.au-body a.w-link--privacy-commissioner-regular, a.w-link--privacy-commissioner-regular {
  background-color: #00437B;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--privacy-commissioner-regular:hover, .au-body a.w-link--privacy-commissioner-regular.hover, a.w-link--privacy-commissioner-regular:hover, a.w-link--privacy-commissioner-regular.hover {
  background: rgba(0, 67, 123, 0.8);
}
.au-body a.w-link--privacy-commissioner-regular:hover, .au-body a.w-link--privacy-commissioner-regular:active, .au-body a.w-link--privacy-commissioner-regular:focus, a.w-link--privacy-commissioner-regular:hover, a.w-link--privacy-commissioner-regular:active, a.w-link--privacy-commissioner-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--privacy-commissioner-regular:hover::after, .au-body a.w-link--privacy-commissioner-regular:active::after, .au-body a.w-link--privacy-commissioner-regular:focus::after, a.w-link--privacy-commissioner-regular:hover::after, a.w-link--privacy-commissioner-regular:active::after, a.w-link--privacy-commissioner-regular:focus::after {
  background: none;
}
.au-body a.w-link--privacy-commissioner-regular:hover::after, .au-body a.w-link--privacy-commissioner-regular:focus::after, a.w-link--privacy-commissioner-regular:hover::after, a.w-link--privacy-commissioner-regular:focus::after {
  display: none;
}
.au-body a.w-link--privacy-commissioner-regular:focus, a.w-link--privacy-commissioner-regular:focus {
  outline-color: #00437B;
}
.au-body a.w-link--foi-regular, a.w-link--foi-regular {
  background-color: #007299;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--foi-regular:hover, .au-body a.w-link--foi-regular.hover, a.w-link--foi-regular:hover, a.w-link--foi-regular.hover {
  background: rgba(0, 114, 153, 0.8);
}
.au-body a.w-link--foi-regular:hover, .au-body a.w-link--foi-regular:active, .au-body a.w-link--foi-regular:focus, a.w-link--foi-regular:hover, a.w-link--foi-regular:active, a.w-link--foi-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--foi-regular:hover::after, .au-body a.w-link--foi-regular:active::after, .au-body a.w-link--foi-regular:focus::after, a.w-link--foi-regular:hover::after, a.w-link--foi-regular:active::after, a.w-link--foi-regular:focus::after {
  background: none;
}
.au-body a.w-link--foi-regular:hover::after, .au-body a.w-link--foi-regular:focus::after, a.w-link--foi-regular:hover::after, a.w-link--foi-regular:focus::after {
  display: none;
}
.au-body a.w-link--foi-regular:focus, a.w-link--foi-regular:focus {
  outline-color: #007299;
}
.au-body a.w-link--white-regular, a.w-link--white-regular {
  background-color: #ffffff;
  color: #383838;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--white-regular:hover, .au-body a.w-link--white-regular.hover, a.w-link--white-regular:hover, a.w-link--white-regular.hover {
  background: rgba(255, 255, 255, 0.8);
  color: #383838;
}
.au-body a.w-link--white-regular:hover, .au-body a.w-link--white-regular:active, .au-body a.w-link--white-regular:focus, a.w-link--white-regular:hover, a.w-link--white-regular:active, a.w-link--white-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--white-regular:hover::after, .au-body a.w-link--white-regular:active::after, .au-body a.w-link--white-regular:focus::after, a.w-link--white-regular:hover::after, a.w-link--white-regular:active::after, a.w-link--white-regular:focus::after {
  background: none;
}
.au-body a.w-link--white-regular:hover::after, .au-body a.w-link--white-regular:focus::after, a.w-link--white-regular:hover::after, a.w-link--white-regular:focus::after {
  display: none;
}
.au-body a.w-link--white-regular:focus, a.w-link--white-regular:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--transparent-regular, a.w-link--transparent-regular {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid white;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--transparent-regular:hover, .au-body a.w-link--transparent-regular.hover, a.w-link--transparent-regular:hover, a.w-link--transparent-regular.hover {
  background: rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.15);
}
.au-body a.w-link--transparent-regular:hover, .au-body a.w-link--transparent-regular:active, .au-body a.w-link--transparent-regular:focus, a.w-link--transparent-regular:hover, a.w-link--transparent-regular:active, a.w-link--transparent-regular:focus {
  text-decoration: none;
}
.au-body a.w-link--transparent-regular:hover::after, .au-body a.w-link--transparent-regular:active::after, .au-body a.w-link--transparent-regular:focus::after, a.w-link--transparent-regular:hover::after, a.w-link--transparent-regular:active::after, a.w-link--transparent-regular:focus::after {
  background: none;
}
.au-body a.w-link--transparent-regular:hover::after, .au-body a.w-link--transparent-regular:focus::after, a.w-link--transparent-regular:hover::after, a.w-link--transparent-regular:focus::after {
  display: none;
}
.au-body a.w-link--transparent-regular:focus, a.w-link--transparent-regular:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--all-functions-round, a.w-link--all-functions-round {
  background-color: #722587;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--all-functions-round:hover, .au-body a.w-link--all-functions-round.hover, a.w-link--all-functions-round:hover, a.w-link--all-functions-round.hover {
  background: rgba(114, 37, 135, 0.8);
}
.au-body a.w-link--all-functions-round:hover, .au-body a.w-link--all-functions-round:active, .au-body a.w-link--all-functions-round:focus, a.w-link--all-functions-round:hover, a.w-link--all-functions-round:active, a.w-link--all-functions-round:focus {
  text-decoration: none;
}
.au-body a.w-link--all-functions-round:hover::after, .au-body a.w-link--all-functions-round:active::after, .au-body a.w-link--all-functions-round:focus::after, a.w-link--all-functions-round:hover::after, a.w-link--all-functions-round:active::after, a.w-link--all-functions-round:focus::after {
  background: none;
}
.au-body a.w-link--all-functions-round:hover::after, .au-body a.w-link--all-functions-round:focus::after, a.w-link--all-functions-round:hover::after, a.w-link--all-functions-round:focus::after {
  display: none;
}
.au-body a.w-link--all-functions-round:focus, a.w-link--all-functions-round:focus {
  outline-color: #722587;
}
.au-body a.w-link--ombudsman-round, a.w-link--ombudsman-round {
  background-color: #459965;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--ombudsman-round:hover, .au-body a.w-link--ombudsman-round.hover, a.w-link--ombudsman-round:hover, a.w-link--ombudsman-round.hover {
  background: rgba(69, 153, 101, 0.8);
}
.au-body a.w-link--ombudsman-round:hover, .au-body a.w-link--ombudsman-round:active, .au-body a.w-link--ombudsman-round:focus, a.w-link--ombudsman-round:hover, a.w-link--ombudsman-round:active, a.w-link--ombudsman-round:focus {
  text-decoration: none;
}
.au-body a.w-link--ombudsman-round:hover::after, .au-body a.w-link--ombudsman-round:active::after, .au-body a.w-link--ombudsman-round:focus::after, a.w-link--ombudsman-round:hover::after, a.w-link--ombudsman-round:active::after, a.w-link--ombudsman-round:focus::after {
  background: none;
}
.au-body a.w-link--ombudsman-round:hover::after, .au-body a.w-link--ombudsman-round:focus::after, a.w-link--ombudsman-round:hover::after, a.w-link--ombudsman-round:focus::after {
  display: none;
}
.au-body a.w-link--ombudsman-round:focus, a.w-link--ombudsman-round:focus {
  outline-color: #459965;
}
.au-body a.w-link--privacy-commissioner-round, a.w-link--privacy-commissioner-round {
  background-color: #00437B;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--privacy-commissioner-round:hover, .au-body a.w-link--privacy-commissioner-round.hover, a.w-link--privacy-commissioner-round:hover, a.w-link--privacy-commissioner-round.hover {
  background: rgba(0, 67, 123, 0.8);
}
.au-body a.w-link--privacy-commissioner-round:hover, .au-body a.w-link--privacy-commissioner-round:active, .au-body a.w-link--privacy-commissioner-round:focus, a.w-link--privacy-commissioner-round:hover, a.w-link--privacy-commissioner-round:active, a.w-link--privacy-commissioner-round:focus {
  text-decoration: none;
}
.au-body a.w-link--privacy-commissioner-round:hover::after, .au-body a.w-link--privacy-commissioner-round:active::after, .au-body a.w-link--privacy-commissioner-round:focus::after, a.w-link--privacy-commissioner-round:hover::after, a.w-link--privacy-commissioner-round:active::after, a.w-link--privacy-commissioner-round:focus::after {
  background: none;
}
.au-body a.w-link--privacy-commissioner-round:hover::after, .au-body a.w-link--privacy-commissioner-round:focus::after, a.w-link--privacy-commissioner-round:hover::after, a.w-link--privacy-commissioner-round:focus::after {
  display: none;
}
.au-body a.w-link--privacy-commissioner-round:focus, a.w-link--privacy-commissioner-round:focus {
  outline-color: #00437B;
}
.au-body a.w-link--foi-round, a.w-link--foi-round {
  background-color: #007299;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--foi-round:hover, .au-body a.w-link--foi-round.hover, a.w-link--foi-round:hover, a.w-link--foi-round.hover {
  background: rgba(0, 114, 153, 0.8);
}
.au-body a.w-link--foi-round:hover, .au-body a.w-link--foi-round:active, .au-body a.w-link--foi-round:focus, a.w-link--foi-round:hover, a.w-link--foi-round:active, a.w-link--foi-round:focus {
  text-decoration: none;
}
.au-body a.w-link--foi-round:hover::after, .au-body a.w-link--foi-round:active::after, .au-body a.w-link--foi-round:focus::after, a.w-link--foi-round:hover::after, a.w-link--foi-round:active::after, a.w-link--foi-round:focus::after {
  background: none;
}
.au-body a.w-link--foi-round:hover::after, .au-body a.w-link--foi-round:focus::after, a.w-link--foi-round:hover::after, a.w-link--foi-round:focus::after {
  display: none;
}
.au-body a.w-link--foi-round:focus, a.w-link--foi-round:focus {
  outline-color: #007299;
}
.au-body a.w-link--white-round, a.w-link--white-round {
  background-color: #ffffff;
  color: #383838;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--white-round:hover, .au-body a.w-link--white-round.hover, a.w-link--white-round:hover, a.w-link--white-round.hover {
  background: rgba(255, 255, 255, 0.8);
  color: #383838;
}
.au-body a.w-link--white-round:hover, .au-body a.w-link--white-round:active, .au-body a.w-link--white-round:focus, a.w-link--white-round:hover, a.w-link--white-round:active, a.w-link--white-round:focus {
  text-decoration: none;
}
.au-body a.w-link--white-round:hover::after, .au-body a.w-link--white-round:active::after, .au-body a.w-link--white-round:focus::after, a.w-link--white-round:hover::after, a.w-link--white-round:active::after, a.w-link--white-round:focus::after {
  background: none;
}
.au-body a.w-link--white-round:hover::after, .au-body a.w-link--white-round:focus::after, a.w-link--white-round:hover::after, a.w-link--white-round:focus::after {
  display: none;
}
.au-body a.w-link--white-round:focus, a.w-link--white-round:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--transparent-round, a.w-link--transparent-round {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid white;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--transparent-round:hover, .au-body a.w-link--transparent-round.hover, a.w-link--transparent-round:hover, a.w-link--transparent-round.hover {
  background: rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.15);
}
.au-body a.w-link--transparent-round:hover, .au-body a.w-link--transparent-round:active, .au-body a.w-link--transparent-round:focus, a.w-link--transparent-round:hover, a.w-link--transparent-round:active, a.w-link--transparent-round:focus {
  text-decoration: none;
}
.au-body a.w-link--transparent-round:hover::after, .au-body a.w-link--transparent-round:active::after, .au-body a.w-link--transparent-round:focus::after, a.w-link--transparent-round:hover::after, a.w-link--transparent-round:active::after, a.w-link--transparent-round:focus::after {
  background: none;
}
.au-body a.w-link--transparent-round:hover::after, .au-body a.w-link--transparent-round:focus::after, a.w-link--transparent-round:hover::after, a.w-link--transparent-round:focus::after {
  display: none;
}
.au-body a.w-link--transparent-round:focus, a.w-link--transparent-round:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--all-functions-pdf, a.w-link--all-functions-pdf {
  background-color: #722587;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--all-functions-pdf:hover, .au-body a.w-link--all-functions-pdf.hover, a.w-link--all-functions-pdf:hover, a.w-link--all-functions-pdf.hover {
  background: rgba(114, 37, 135, 0.8);
}
.au-body a.w-link--all-functions-pdf:hover, .au-body a.w-link--all-functions-pdf:active, .au-body a.w-link--all-functions-pdf:focus, a.w-link--all-functions-pdf:hover, a.w-link--all-functions-pdf:active, a.w-link--all-functions-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--all-functions-pdf:hover::after, .au-body a.w-link--all-functions-pdf:active::after, .au-body a.w-link--all-functions-pdf:focus::after, a.w-link--all-functions-pdf:hover::after, a.w-link--all-functions-pdf:active::after, a.w-link--all-functions-pdf:focus::after {
  background: none;
}
.au-body a.w-link--all-functions-pdf:before, a.w-link--all-functions-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--all-functions-pdf:before, a.w-link--all-functions-pdf:before {
  content: "\e913";
}
.au-body a.w-link--all-functions-pdf:before, a.w-link--all-functions-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--all-functions-pdf:hover::after, .au-body a.w-link--all-functions-pdf:focus::after, a.w-link--all-functions-pdf:hover::after, a.w-link--all-functions-pdf:focus::after {
  display: none;
}
.au-body a.w-link--all-functions-pdf:focus, a.w-link--all-functions-pdf:focus {
  outline-color: #722587;
}
.au-body a.w-link--ombudsman-pdf, a.w-link--ombudsman-pdf {
  background-color: #459965;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--ombudsman-pdf:hover, .au-body a.w-link--ombudsman-pdf.hover, a.w-link--ombudsman-pdf:hover, a.w-link--ombudsman-pdf.hover {
  background: rgba(69, 153, 101, 0.8);
}
.au-body a.w-link--ombudsman-pdf:hover, .au-body a.w-link--ombudsman-pdf:active, .au-body a.w-link--ombudsman-pdf:focus, a.w-link--ombudsman-pdf:hover, a.w-link--ombudsman-pdf:active, a.w-link--ombudsman-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--ombudsman-pdf:hover::after, .au-body a.w-link--ombudsman-pdf:active::after, .au-body a.w-link--ombudsman-pdf:focus::after, a.w-link--ombudsman-pdf:hover::after, a.w-link--ombudsman-pdf:active::after, a.w-link--ombudsman-pdf:focus::after {
  background: none;
}
.au-body a.w-link--ombudsman-pdf:before, a.w-link--ombudsman-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--ombudsman-pdf:before, a.w-link--ombudsman-pdf:before {
  content: "\e913";
}
.au-body a.w-link--ombudsman-pdf:before, a.w-link--ombudsman-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--ombudsman-pdf:hover::after, .au-body a.w-link--ombudsman-pdf:focus::after, a.w-link--ombudsman-pdf:hover::after, a.w-link--ombudsman-pdf:focus::after {
  display: none;
}
.au-body a.w-link--ombudsman-pdf:focus, a.w-link--ombudsman-pdf:focus {
  outline-color: #459965;
}
.au-body a.w-link--privacy-commissioner-pdf, a.w-link--privacy-commissioner-pdf {
  background-color: #00437B;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--privacy-commissioner-pdf:hover, .au-body a.w-link--privacy-commissioner-pdf.hover, a.w-link--privacy-commissioner-pdf:hover, a.w-link--privacy-commissioner-pdf.hover {
  background: rgba(0, 67, 123, 0.8);
}
.au-body a.w-link--privacy-commissioner-pdf:hover, .au-body a.w-link--privacy-commissioner-pdf:active, .au-body a.w-link--privacy-commissioner-pdf:focus, a.w-link--privacy-commissioner-pdf:hover, a.w-link--privacy-commissioner-pdf:active, a.w-link--privacy-commissioner-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--privacy-commissioner-pdf:hover::after, .au-body a.w-link--privacy-commissioner-pdf:active::after, .au-body a.w-link--privacy-commissioner-pdf:focus::after, a.w-link--privacy-commissioner-pdf:hover::after, a.w-link--privacy-commissioner-pdf:active::after, a.w-link--privacy-commissioner-pdf:focus::after {
  background: none;
}
.au-body a.w-link--privacy-commissioner-pdf:before, a.w-link--privacy-commissioner-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--privacy-commissioner-pdf:before, a.w-link--privacy-commissioner-pdf:before {
  content: "\e913";
}
.au-body a.w-link--privacy-commissioner-pdf:before, a.w-link--privacy-commissioner-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--privacy-commissioner-pdf:hover::after, .au-body a.w-link--privacy-commissioner-pdf:focus::after, a.w-link--privacy-commissioner-pdf:hover::after, a.w-link--privacy-commissioner-pdf:focus::after {
  display: none;
}
.au-body a.w-link--privacy-commissioner-pdf:focus, a.w-link--privacy-commissioner-pdf:focus {
  outline-color: #00437B;
}
.au-body a.w-link--foi-pdf, a.w-link--foi-pdf {
  background-color: #007299;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--foi-pdf:hover, .au-body a.w-link--foi-pdf.hover, a.w-link--foi-pdf:hover, a.w-link--foi-pdf.hover {
  background: rgba(0, 114, 153, 0.8);
}
.au-body a.w-link--foi-pdf:hover, .au-body a.w-link--foi-pdf:active, .au-body a.w-link--foi-pdf:focus, a.w-link--foi-pdf:hover, a.w-link--foi-pdf:active, a.w-link--foi-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--foi-pdf:hover::after, .au-body a.w-link--foi-pdf:active::after, .au-body a.w-link--foi-pdf:focus::after, a.w-link--foi-pdf:hover::after, a.w-link--foi-pdf:active::after, a.w-link--foi-pdf:focus::after {
  background: none;
}
.au-body a.w-link--foi-pdf:before, a.w-link--foi-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--foi-pdf:before, a.w-link--foi-pdf:before {
  content: "\e913";
}
.au-body a.w-link--foi-pdf:before, a.w-link--foi-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--foi-pdf:hover::after, .au-body a.w-link--foi-pdf:focus::after, a.w-link--foi-pdf:hover::after, a.w-link--foi-pdf:focus::after {
  display: none;
}
.au-body a.w-link--foi-pdf:focus, a.w-link--foi-pdf:focus {
  outline-color: #007299;
}
.au-body a.w-link--white-pdf, a.w-link--white-pdf {
  background-color: #ffffff;
  color: #383838;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--white-pdf:hover, .au-body a.w-link--white-pdf.hover, a.w-link--white-pdf:hover, a.w-link--white-pdf.hover {
  background: rgba(255, 255, 255, 0.8);
  color: #383838;
}
.au-body a.w-link--white-pdf:hover, .au-body a.w-link--white-pdf:active, .au-body a.w-link--white-pdf:focus, a.w-link--white-pdf:hover, a.w-link--white-pdf:active, a.w-link--white-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--white-pdf:hover::after, .au-body a.w-link--white-pdf:active::after, .au-body a.w-link--white-pdf:focus::after, a.w-link--white-pdf:hover::after, a.w-link--white-pdf:active::after, a.w-link--white-pdf:focus::after {
  background: none;
}
.au-body a.w-link--white-pdf:before, a.w-link--white-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--white-pdf:before, a.w-link--white-pdf:before {
  content: "\e913";
}
.au-body a.w-link--white-pdf:before, a.w-link--white-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--white-pdf:hover::after, .au-body a.w-link--white-pdf:focus::after, a.w-link--white-pdf:hover::after, a.w-link--white-pdf:focus::after {
  display: none;
}
.au-body a.w-link--white-pdf:focus, a.w-link--white-pdf:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--transparent-pdf, a.w-link--transparent-pdf {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid white;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--transparent-pdf:hover, .au-body a.w-link--transparent-pdf.hover, a.w-link--transparent-pdf:hover, a.w-link--transparent-pdf.hover {
  background: rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.15);
}
.au-body a.w-link--transparent-pdf:hover, .au-body a.w-link--transparent-pdf:active, .au-body a.w-link--transparent-pdf:focus, a.w-link--transparent-pdf:hover, a.w-link--transparent-pdf:active, a.w-link--transparent-pdf:focus {
  text-decoration: none;
}
.au-body a.w-link--transparent-pdf:hover::after, .au-body a.w-link--transparent-pdf:active::after, .au-body a.w-link--transparent-pdf:focus::after, a.w-link--transparent-pdf:hover::after, a.w-link--transparent-pdf:active::after, a.w-link--transparent-pdf:focus::after {
  background: none;
}
.au-body a.w-link--transparent-pdf:before, a.w-link--transparent-pdf:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--transparent-pdf:before, a.w-link--transparent-pdf:before {
  content: "\e913";
}
.au-body a.w-link--transparent-pdf:before, a.w-link--transparent-pdf:before {
  margin-right: 16px;
}
.au-body a.w-link--transparent-pdf:hover::after, .au-body a.w-link--transparent-pdf:focus::after, a.w-link--transparent-pdf:hover::after, a.w-link--transparent-pdf:focus::after {
  display: none;
}
.au-body a.w-link--transparent-pdf:focus, a.w-link--transparent-pdf:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--all-functions-word, a.w-link--all-functions-word {
  background-color: #722587;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--all-functions-word:hover, .au-body a.w-link--all-functions-word.hover, a.w-link--all-functions-word:hover, a.w-link--all-functions-word.hover {
  background: rgba(114, 37, 135, 0.8);
}
.au-body a.w-link--all-functions-word:hover, .au-body a.w-link--all-functions-word:active, .au-body a.w-link--all-functions-word:focus, a.w-link--all-functions-word:hover, a.w-link--all-functions-word:active, a.w-link--all-functions-word:focus {
  text-decoration: none;
}
.au-body a.w-link--all-functions-word:hover::after, .au-body a.w-link--all-functions-word:active::after, .au-body a.w-link--all-functions-word:focus::after, a.w-link--all-functions-word:hover::after, a.w-link--all-functions-word:active::after, a.w-link--all-functions-word:focus::after {
  background: none;
}
.au-body a.w-link--all-functions-word:before, a.w-link--all-functions-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--all-functions-word:before, a.w-link--all-functions-word:before {
  content: "\e90b";
}
.au-body a.w-link--all-functions-word:before, a.w-link--all-functions-word:before {
  margin-right: 16px;
}
.au-body a.w-link--all-functions-word:hover::after, .au-body a.w-link--all-functions-word:focus::after, a.w-link--all-functions-word:hover::after, a.w-link--all-functions-word:focus::after {
  display: none;
}
.au-body a.w-link--all-functions-word:focus, a.w-link--all-functions-word:focus {
  outline-color: #722587;
}
.au-body a.w-link--ombudsman-word, a.w-link--ombudsman-word {
  background-color: #459965;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--ombudsman-word:hover, .au-body a.w-link--ombudsman-word.hover, a.w-link--ombudsman-word:hover, a.w-link--ombudsman-word.hover {
  background: rgba(69, 153, 101, 0.8);
}
.au-body a.w-link--ombudsman-word:hover, .au-body a.w-link--ombudsman-word:active, .au-body a.w-link--ombudsman-word:focus, a.w-link--ombudsman-word:hover, a.w-link--ombudsman-word:active, a.w-link--ombudsman-word:focus {
  text-decoration: none;
}
.au-body a.w-link--ombudsman-word:hover::after, .au-body a.w-link--ombudsman-word:active::after, .au-body a.w-link--ombudsman-word:focus::after, a.w-link--ombudsman-word:hover::after, a.w-link--ombudsman-word:active::after, a.w-link--ombudsman-word:focus::after {
  background: none;
}
.au-body a.w-link--ombudsman-word:before, a.w-link--ombudsman-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--ombudsman-word:before, a.w-link--ombudsman-word:before {
  content: "\e90b";
}
.au-body a.w-link--ombudsman-word:before, a.w-link--ombudsman-word:before {
  margin-right: 16px;
}
.au-body a.w-link--ombudsman-word:hover::after, .au-body a.w-link--ombudsman-word:focus::after, a.w-link--ombudsman-word:hover::after, a.w-link--ombudsman-word:focus::after {
  display: none;
}
.au-body a.w-link--ombudsman-word:focus, a.w-link--ombudsman-word:focus {
  outline-color: #459965;
}
.au-body a.w-link--privacy-commissioner-word, a.w-link--privacy-commissioner-word {
  background-color: #00437B;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--privacy-commissioner-word:hover, .au-body a.w-link--privacy-commissioner-word.hover, a.w-link--privacy-commissioner-word:hover, a.w-link--privacy-commissioner-word.hover {
  background: rgba(0, 67, 123, 0.8);
}
.au-body a.w-link--privacy-commissioner-word:hover, .au-body a.w-link--privacy-commissioner-word:active, .au-body a.w-link--privacy-commissioner-word:focus, a.w-link--privacy-commissioner-word:hover, a.w-link--privacy-commissioner-word:active, a.w-link--privacy-commissioner-word:focus {
  text-decoration: none;
}
.au-body a.w-link--privacy-commissioner-word:hover::after, .au-body a.w-link--privacy-commissioner-word:active::after, .au-body a.w-link--privacy-commissioner-word:focus::after, a.w-link--privacy-commissioner-word:hover::after, a.w-link--privacy-commissioner-word:active::after, a.w-link--privacy-commissioner-word:focus::after {
  background: none;
}
.au-body a.w-link--privacy-commissioner-word:before, a.w-link--privacy-commissioner-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--privacy-commissioner-word:before, a.w-link--privacy-commissioner-word:before {
  content: "\e90b";
}
.au-body a.w-link--privacy-commissioner-word:before, a.w-link--privacy-commissioner-word:before {
  margin-right: 16px;
}
.au-body a.w-link--privacy-commissioner-word:hover::after, .au-body a.w-link--privacy-commissioner-word:focus::after, a.w-link--privacy-commissioner-word:hover::after, a.w-link--privacy-commissioner-word:focus::after {
  display: none;
}
.au-body a.w-link--privacy-commissioner-word:focus, a.w-link--privacy-commissioner-word:focus {
  outline-color: #00437B;
}
.au-body a.w-link--foi-word, a.w-link--foi-word {
  background-color: #007299;
  color: #ffffff;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--foi-word:hover, .au-body a.w-link--foi-word.hover, a.w-link--foi-word:hover, a.w-link--foi-word.hover {
  background: rgba(0, 114, 153, 0.8);
}
.au-body a.w-link--foi-word:hover, .au-body a.w-link--foi-word:active, .au-body a.w-link--foi-word:focus, a.w-link--foi-word:hover, a.w-link--foi-word:active, a.w-link--foi-word:focus {
  text-decoration: none;
}
.au-body a.w-link--foi-word:hover::after, .au-body a.w-link--foi-word:active::after, .au-body a.w-link--foi-word:focus::after, a.w-link--foi-word:hover::after, a.w-link--foi-word:active::after, a.w-link--foi-word:focus::after {
  background: none;
}
.au-body a.w-link--foi-word:before, a.w-link--foi-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--foi-word:before, a.w-link--foi-word:before {
  content: "\e90b";
}
.au-body a.w-link--foi-word:before, a.w-link--foi-word:before {
  margin-right: 16px;
}
.au-body a.w-link--foi-word:hover::after, .au-body a.w-link--foi-word:focus::after, a.w-link--foi-word:hover::after, a.w-link--foi-word:focus::after {
  display: none;
}
.au-body a.w-link--foi-word:focus, a.w-link--foi-word:focus {
  outline-color: #007299;
}
.au-body a.w-link--white-word, a.w-link--white-word {
  background-color: #ffffff;
  color: #383838;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--white-word:hover, .au-body a.w-link--white-word.hover, a.w-link--white-word:hover, a.w-link--white-word.hover {
  background: rgba(255, 255, 255, 0.8);
  color: #383838;
}
.au-body a.w-link--white-word:hover, .au-body a.w-link--white-word:active, .au-body a.w-link--white-word:focus, a.w-link--white-word:hover, a.w-link--white-word:active, a.w-link--white-word:focus {
  text-decoration: none;
}
.au-body a.w-link--white-word:hover::after, .au-body a.w-link--white-word:active::after, .au-body a.w-link--white-word:focus::after, a.w-link--white-word:hover::after, a.w-link--white-word:active::after, a.w-link--white-word:focus::after {
  background: none;
}
.au-body a.w-link--white-word:before, a.w-link--white-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--white-word:before, a.w-link--white-word:before {
  content: "\e90b";
}
.au-body a.w-link--white-word:before, a.w-link--white-word:before {
  margin-right: 16px;
}
.au-body a.w-link--white-word:hover::after, .au-body a.w-link--white-word:focus::after, a.w-link--white-word:hover::after, a.w-link--white-word:focus::after {
  display: none;
}
.au-body a.w-link--white-word:focus, a.w-link--white-word:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--transparent-word, a.w-link--transparent-word {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid white;
  padding: 12px 32px;
  text-align: center;
  transition: all 250ms ease-in-out;
  font-weight: 500;
  min-width: 150px;
  border-radius: 8px;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-text_on_primary);
  text-align: center;
}
.au-body a.w-link--transparent-word:hover, .au-body a.w-link--transparent-word.hover, a.w-link--transparent-word:hover, a.w-link--transparent-word.hover {
  background: rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.15);
}
.au-body a.w-link--transparent-word:hover, .au-body a.w-link--transparent-word:active, .au-body a.w-link--transparent-word:focus, a.w-link--transparent-word:hover, a.w-link--transparent-word:active, a.w-link--transparent-word:focus {
  text-decoration: none;
}
.au-body a.w-link--transparent-word:hover::after, .au-body a.w-link--transparent-word:active::after, .au-body a.w-link--transparent-word:focus::after, a.w-link--transparent-word:hover::after, a.w-link--transparent-word:active::after, a.w-link--transparent-word:focus::after {
  background: none;
}
.au-body a.w-link--transparent-word:before, a.w-link--transparent-word:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.au-body a.w-link--transparent-word:before, a.w-link--transparent-word:before {
  content: "\e90b";
}
.au-body a.w-link--transparent-word:before, a.w-link--transparent-word:before {
  margin-right: 16px;
}
.au-body a.w-link--transparent-word:hover::after, .au-body a.w-link--transparent-word:focus::after, a.w-link--transparent-word:hover::after, a.w-link--transparent-word:focus::after {
  display: none;
}
.au-body a.w-link--transparent-word:focus, a.w-link--transparent-word:focus {
  outline-color: #ffffff;
}
.au-body a.w-link--all-functions + button, a.w-link--all-functions + button {
  color: #722587;
}
.au-body a.w-link--ombudsman + button, a.w-link--ombudsman + button {
  color: #459965;
}
.au-body a.w-link--privacy-commissioner + button, a.w-link--privacy-commissioner + button {
  color: #00437B;
}
.au-body a.w-link--foi + button, a.w-link--foi + button {
  color: #007299;
}
.au-body a.w-link--white + button, a.w-link--white + button {
  color: #ffffff;
}
.au-body a.w-link--black + button, a.w-link--black + button {
  color: #383838;
}
a.w-link[data-glossary] {
  font-weight: 600;
}
a.w-link[data-glossary]:before {
  margin-right: 4px;
}
a.w-link[data-glossary]:after {
  content: unset;
}
a.w-link[data-glossary] + button {
  font-size: 1.0625rem;
  line-height: 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
}
a.w-link[data-glossary] + button:before {
  display: inline-block;
  font-family: "sms icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.w-link[data-glossary] + button:before {
  content: "\e903";
}

ol.w-ol--all-functions {
  color: #722587;
}
ol.w-ol--ombudsman {
  color: #459965;
}
ol.w-ol--privacy-commissioner {
  color: #00437B;
}
ol.w-ol--foi {
  color: #007299;
}
ol.w-ol--white {
  color: #ffffff;
}
.au-body ol li, ol li {
  font-family: "Montserrat", sans-serif;
}

p.w-paragraph--all-functions {
  color: #722587;
}
p.w-paragraph--ombudsman {
  color: #459965;
}
p.w-paragraph--privacy-commissioner {
  color: #00437B;
}
p.w-paragraph--foi {
  color: #007299;
}
p.w-paragraph--white {
  color: #ffffff;
}

p.size--17 {
  font-size: 1.0625rem;
  line-height: 1.25rem;
}
p.size--18 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
p.size--20 {
  font-size: 1.25rem;
  line-height: 2rem;
}
p.size--22 {
  font-size: 1.375rem;
  line-height: 2rem;
}

table {
  border-collapse: initial;
  border-spacing: 0;
  text-align: left;
  margin-bottom: 32px;
  width: 100%;
}
table caption {
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 768px) {
  table caption {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
table thead tr th, table tbody tr th {
  font-size: 18px;
  line-height: 1.625rem;
  padding-left: 27px;
  padding-right: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: bold;
  border-bottom: none;
  white-space: nowrap;
}
table thead tr th:first-child, table tbody tr th:first-child {
  border-top-left-radius: 10px;
}
table thead tr th:last-child, table tbody tr th:last-child {
  border-top-right-radius: 10px;
}
table tr {
  border: 1px solid #000000;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
table tr td {
  padding-top: 12px;
  padding-left: 27px;
  padding-right: 12px;
  padding-bottom: 12px;
}

ul.w-ul--all-functions {
  color: #722587;
}
ul.w-ul--ombudsman {
  color: #459965;
}
ul.w-ul--privacy-commissioner {
  color: #00437B;
}
ul.w-ul--foi {
  color: #007299;
}
ul.w-ul--white {
  color: #ffffff;
}
.au-body ul li, ul li {
  font-family: "Montserrat", sans-serif;
}
