:root {
  --primary-color: #111;
  --secondary-color: #F5E633;

  --content-container-width: 650px;
  --news-items-width: 500px;
}

*:not(.content-container *):not(.admin-bar *):not(.fancybox-overlay *) {
  box-sizing: border-box;
}

html {
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: Poppins, 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #111;
}

h1,
.xxlarge {
  font-size: 2.6rem;
}

h2,
.xlarge {
  font-size: 2.2rem;
}

h2 {
  color: var(--primary-color);
}

h3,
.large {
  font-size: 2rem;
}

h4,
.medium {
  font-size: 1.6rem;
}

h5,
.small {
  font-size: 1.4rem;
}

::selection {
  color: #fff;
  background-color: var(--primary-color);
}

a {
  color: var(--primary-color);
}

.content-container a {
  text-decoration: underline;
}

a:focus,
a:hover {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #111;
}

.container button {
  font-family: inherit;
}

.container a:focus,
.container div:focus,
.container button:focus,
.container input:focus,
.container textarea:focus {
  outline: 0.2rem dashed var(--primary-color);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.high-visibility-only,
.hv-only,
.hv-active {
  display: none;
}

@media (min-width: 981px) {
  .responsive-only {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }
}

/* Tool Tip
--------------*/
.tooltip-text {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: inherit;
  color: currentColor;
  visibility: hidden;
  opacity: 0;
  transition: ease 0.2s opacity, ease 0.2s visibility;
  white-space: nowrap;
}

.tooltip:focus .tooltip-text,
.tooltip:hover .tooltip-text{
  visibility: visible;
  opacity: 1;
}

/* Top Bar
----------------*/
@media (min-width: 981px) {
  .top-bar-wrap {
    position: relative;
    top: 0;
    left: 0;
    z-index: 501;
    transition: ease 0.2s transform;
    width: 100%;
  }
  
  .top-bar {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 12rem);
    margin: 0 auto;
    background: url(splash-colour.png) #111 center no-repeat;
    padding: 3rem 0;
    transition: ease 0.2s;
  }

  .top-bar-wrap.sticky .top-bar {
    width: 100%;
    padding: 3rem 6rem;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .top-bar {
    background-size: 71.6rem;
  }
}

@media (max-width: 980px) {

  .top-bar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 501;
    transform: translateY(calc(var(--top-offset, 0) * 1px));
    transition: ease 0.2s transform;
    width: 100%;
    background: #111;
    height: 14.2rem;
  }
  
  .top-bar-wrap.sticky {
    transform: translateY(calc(var(--top-offset, 0) * 1px));
  }
  
  .top-bar {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    background: url(splash-colour.png) #111 center no-repeat;
    background-size: 40rem;
    padding: 3rem 0;
  }

  .admin-bar {
    position: fixed!important;
    z-index: 9999;
  }
}

@media (max-width: 720px) {
  .top-bar {
    width: calc(100% - 6rem);
    background: #111;
  }
}

/* Interactive Bar
------------------------------ */
.interactive-bar {
  display: flex;
  gap: 1rem;
  z-index: 101;
}

.interactive-bar .svg-icon {
  width: 2rem;
  height: 2rem;
}

.google-popout-wrap {
  position: relative;
}

.google-popout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 4rem;
  width: 4rem;
  border: 0;
  border-radius: 50vw;
  font-size: 1.6rem;
  color: #9E9E9E;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.google-popout-button * {
  pointer-events: none;
}

.google-popout-button .svg-icon {
  fill: currentColor;
}

.google-popout-wrap:focus-within .google-popout-button,
.google-popout-wrap:hover .google-popout-button {
  color: #111;
  background: #9E9E9E;
}

.google-popout-wrap:focus-within .google-popout-button .tooltip-text,
.google-popout-wrap:hover .google-popout-button .tooltip-text{
  color: #9E9E9E;
}

.google-popout-content {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #ccc;
  visibility: hidden;
}

.ib-quicklinks .google-popout-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fafafa;
  width: 21.3rem;
  padding: 3rem;
}

.ib-link {
  font-size: 1.4rem;
  font-weight: bold;
  transition: ease 0.2s opacity;
}

.ib-link:focus-within,
.ib-link:hover {
  opacity: 0.8;
}

.google-popout-content.active {
  visibility: visible;
}

@media (max-width: 980px) {

  .user-logged-in .top-bar-wrap {
    margin-top: 4.1rem;
  }
  
  .interactive-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:  0;
    width: 100%;
    align-items: center;
    padding: 0 6rem;
  }

  .nav-trigger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    width: fit-content;
    padding: 0 1rem;
    border: 0;
    margin-left: auto;
    color: #fafafa;
    background: none;
    transition: 0.2s;
    height: auto;
  }

  .nav-trigger-wrap:focus,
  .nav-trigger-wrap:hover {
    color: #111;
  }

  .nav-trigger-wrap .svg-icon {
    fill: currentColor;
    width: 6.2rem;
    height: 6.2rem;
  }

  .nav-trigger-wrap .text {
    color: #fafafa;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .nav-trigger-wrap:before {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.1rem;
    height: 6.1rem;
    background: none;
    border-radius: 100%;
    z-index: -1;
    transition: ease 0.2s background;
  }
  
  .nav-trigger-wrap:focus-within:before,
  .nav-trigger-wrap:hover:before {
    background: #fafafa;
  }
  
  .google-popout-button {
    padding: 1rem;
  }
}

@media (max-width: 720px) {
  
  .top-bar-wrap {
    height: 16.2rem;
  }
  
  .interactive-bar {
    top: calc(50% + 5.1rem);
    padding: 0;
  }

  .nav-trigger-wrap {
    position: relative;
    bottom: 3rem;
  }
}

@media (max-width: 400px) {
  .google-popout-wrap {
    position: static;
  }

  .google-popout-content {
    top: calc(100% - 0.5rem);
    right: 50%;
    transform: translateX(50%);
    right: auto;
    transform: none;
  }
}

/* Google Widgets
----------------- */
.google-search-widget,
.google-translate-widget {
  width: 22.5rem;
  height: 4.4rem;
}

.gsc-input,
.gsc-search-button {
  display: inline-block;
  height: 100% !important;
}

.gsc-search-button:not(td),
.google-translate-widget-button {
  width: 4.4rem !important;
  margin-left: 0.6rem !important;
  background-color: var(--primary-color) !important;
}

.gsc-input-box,
.gsc-search-button:not(td),
.google-translate-widget-button,
.goog-te-combo {
  border-radius: 0.4rem;
}

.gsc-search-button:not(td):focus,
.gsc-search-button:not(td):hover {
  background-color: #000 !important;
}

.gsc-input-box,
.goog-te-combo {
  border: 0.1rem solid var(--primary-color) !important;
}

.google-translate-widget {
  display: flex;
}

.goog-te-gadget {
  order: 1;
  width: 100%;
  overflow: hidden;
}

.goog-te-gadget,
.goog-logo-link {
  color: #add9fe !important;
}

.goog-te-gadget span {
  display: none;
}

.goog-te-combo {
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.6rem;
}

.google-translate-widget-button {
  flex: none;
  order: 2;
  padding: 0;
  border: none;
  color: #fff;
}

/* Main Header
------------------- */
.main-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-link {
  display: block;
  transition: ease 0.2s opacity;
  position: relative;
  backface-visibility: hidden;
}

.home-link:focus,
.home-link:hover {
  opacity: 0.8;
}

.home-link img {
  display: block;
  width: 100%;
}

@media (min-width: 981px) {

  .main-header {
    margin: 0 auto;
    right: 3rem;
  }
  
  .home-link {
    width: 30rem;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .main-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
  }

  .home-link {
    width: 17.4rem;
  }
}

@media (max-width: 720px) {
  .main-header {
    margin: 0;
    padding: 0;
  }
}

/* Burger Nav
------------------*/
.burger-nav {
  position: relative;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fafafa;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 505;
  font-size: 1.4rem;
  font-weight: bold;
  gap: 0.5rem;
}

.burger-nav:before {
  content: '';
  position: absolute;
  top: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.1rem;
  height: 6.1rem;
  background: none;
  border-radius: 100%;
  z-index: -1;
  transition: ease 0.2s background;
}

.burger-nav:focus-within:before,
.burger-nav:hover:before {
  background: #fafafa;
}

.burger-nav > svg {
  position: relative;
  width: 6.2rem;
  height: 6.2rem;
  fill: currentColor;
  transition: ease 0.2s;
  z-index: 2;
}

.burger-nav:focus-within > svg,
.burger-nav:hover > svg {
  fill: #111;
}

.nav-open .burger-nav {
  height: 9rem;
  width: 7.4rem;
}

.nav-open .burger-nav svg {
  width: 2rem;
  height: 2rem;
}

.burger-icon-open {
  display: block;
}

.burger-icon-close {
  display: none;
}

.nav-open .burger-icon-open {
  display: none;
}

.nav-open .burger-icon-close {
  display: block;
}

.nav-open .burger-nav {
  color: #111;
}

.nav-open .burger-nav:before {
  top: 1.1rem;
  width: 4rem;
  height: 4rem;
}

.nav-open .burger-nav:focus-within:before,
.nav-open .burger-nav:hover:before{
  background: #111;
}

.nav-open .burger-nav:focus-within svg,
.nav-open .burger-nav:hover svg{
  fill: #fafafa;
}

@media (min-width: 981px) {

  .burger-nav-button-wrap {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    width: 18.2rem;
    height: 14.8rem;
    border-radius: 0 0 0 1rem;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(calc(var(--top-offset, 0) * 1px));
    z-index: 505;
  }

  .burger-nav-button-wrap.sticky {
    transform: translateY(calc(var(--top-offset, 0) * 1px));
  }

  .burger-nav {
    position: fixed;
  }

  body.nav-open .burger-nav-button-wrap {
    background: none;
    box-shadow: none;
  }
  
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background: #111;
    opacity: 0.7;
  }
  
  .burger-nav-content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 502;
    background: #FAFAFA;
    width: 88.8rem;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: ease 0.2s;
    padding: 12rem 7rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    overflow-y: auto;
  }
  
  .nav-open .burger-nav-content {
    visibility: visible;
    opacity: 1;
  }

  .burger-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .burger-info .heading {
    font-size: 4.8rem;
    font-weight: 800;
  }

  .burger-info .home-btn {
    font-size: 1.4rem;
    color: #111;
    transition: ease 0.2s;
  }

  .burger-info .home-btn:focus-within,
  .burger-info .home-btn:hover {
    opacity: 0.8;
  }

  .nav-open .interactive-bar,
  .nav-open .main-header {
    filter: brightness(0.7);
    pointer-events: none;
  }
  
}

/* Main Nav
-------------------------------- */
@media (min-width: 981px) {
  .main-nav li.ps_nav-sub-heading {
    display: none !important;
  }

  .main-nav .cp-close {
    display: none;
  }

  .main-nav h3 {
    display: none;
  }

  .main-nav ul {
    padding: 0;
    margin: 0;
  }

  .main-nav > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 6rem;
  }

  .main-nav > ul > li > ul > li > ul {
    display: none;
  }

  .main-nav ul li.ps_nav-top-level:focus-within ul,
  .main-nav ul li.ps_nav-top-level:hover ul {
    display: block;
  }

  .main-nav ul li.ps_nav-top-level:focus-within ul ul,
  .main-nav ul li.ps_nav-top-level:hover ul ul {
    display: none;
  }

  .main-nav li a {
    transition: ease 0.2s opacity;
  }

  .main-nav li a:focus-within,
  .main-nav li a:hover {
    opacity: 0.7;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
  }

  .main-nav > ul > li {
    width: 20rem;
  }

  .ps_topic_link > a {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
  }

  .main-nav li ul li {
    width: 100%;
    height: auto;
    background: none;
    transition: ease 0.2s background;
  }

  .main-nav li ul li a {
    display: block;
    width: auto;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.5rem 0;
    color: #000;
    text-decoration: none;
  }
}

@media (max-width: 980px) {
  .menu-active .interactive-bar,
  .menu-active .main-header {
    filter: brightness(0.7);
    pointer-events: none;
  }
  
  .main-nav {
    height: 100vh;
  }
  
  .main-nav,
  .main-nav ul li ul,
  .cp-close {
    background: var(--primary-color);
  }

  .mobile-nav h3,
  .cp-close,
  .main-nav ul li a,
  .main-nav ul li ul li a,
  .main-nav .nav-toggle::before {
    color: #fff;
  }

  .main-nav ul li:focus,
  .main-nav ul li:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .main-nav .cp-close,
  .mobile-nav h3,
  .main-nav ul li a,
  .main-nav ul li ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .main-nav ul li ul li:focus,
  .main-nav ul li ul li:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}

/* Slideshow Area
-------------------- */
@media (min-width: 981px) {
  .hero {
    position: relative;
    width: calc(100% - 12rem);
    margin: 0 auto 0;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
  }

  .img-wrap {
    position: relative;
    height: 71.3vh;
    min-height: 45rem;
  }

  .img-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: #333;
    z-index: 1;
  }
  
  .slideshow-common {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
  }
  .podcast-full-width-slideshow {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 980px) {

  .hero {
    width: calc(100% - 12rem);
    margin: 14.2rem auto 0;
  }

  .user-logged-in .hero {
    margin-top: calc(14.2rem + 4.1rem);
  }
  
  .img-wrap {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    width: 100%;
    margin: 18.3rem auto 0;
  }

  .user-logged-in .hero {
    margin-top: calc(18.3rem + 4.1rem);
  }
}

/* Main Content
-------------------------*/
.inner-container {
  position: relative;
}

.content-container {
  position: relative;
  margin: 0 auto;
}

.page-title {
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

.breadcrumbs {
  margin: 5px 0 20px;
}

.breadcrumbs > li::before {
  color: #000;
  content: '>>';
}

.breadcrumbs li a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

.breadcrumbs li a:focus,
.breadcrumbs li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (min-width: 981px) {

  .inner-container {
    width: calc(100% - 12rem);
    margin: 0 auto;
    background: url(contents-watermark.png) bottom right #EBEBEB no-repeat;
    background-size: 84.6rem;
    border-radius: 0 0 1rem 1rem;
    padding: 0 1rem;
  }
  
  .content-container {
    min-height: 50rem;
    width: var(--content-container-width);
    padding: 4rem 0;
    margin: 0;
  }
}

@media (max-width: 980px) {

  .inner-container {
    background: #fafafa;
  }
  
  .content-container {
    padding: 4rem 2rem;
  }
}

/* Related Nav
---------------*/
@media (min-width: 981px) {
  .sub-nav {
    position: relative;
    z-index: 9;
    top: -6rem;
    max-width: 38rem;
    width: 100%;
    margin-left: clamp(2rem, 13.6vw, 26rem);
    display: none;
    background: var(--primary-color);
    border-radius: 1rem;
    padding:  6rem;
  }

  .sub-nav > h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    box-sizing: border-box;
  }

  .sub-nav > ul > li a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    box-sizing: border-box;
    display: block;
    transition: ease 0.2s;
    margin-bottom: 1rem;
  }

  /* Special Pages */
  .sub-nav-hide .sub-nav,
  .sub-nav-special .sub-nav ul ul li ul,
  .sub-nav-special .sub-nav>ul>li:after,
  .sub-nav-special .sub-nav ul li a {
    display: none;
  }

  .sub-nav-special .sub-nav ul ul li {
    display: block;
  }

  .sub-nav-special .sub-nav ul ul li a {
    width: 100%;
    display: block;
    text-decoration: none;
  }

  /* Hovers */
  .sub-nav ul > li.ps_selected_page > a,
  body:not(.sub-nav-special) .sub-nav ul li:focus a,
  body:not(.sub-nav-special) .sub-nav ul li:hover a,
  .sub-nav-special .sub-nav ul li ul li:focus a,
  .sub-nav-special .sub-nav ul li ul li:hover a,
  .sub-nav-special.calendar-active .sub-nav .ps_page_slug_calendar a:focus,
  .sub-nav-special.calendar-active .sub-nav .ps_page_slug_calendar a:hover {
    color: #9E9E9E;
    font-weight: normal;
  }

}

@media (min-width: 981px) and (max-width: 1450px) {
  .sub-nav {
    padding: 4rem 2rem;
    max-width: 28rem;
    margin-left: 2rem;
  }
}

@media (min-width: 981px) and (max-width: 1150px) {
  .sub-nav {
    padding: 2rem 2rem;
    max-width: 16rem;
    margin-left: 1rem;
  }

  .sub-nav > h2 {
    font-size: 1.6rem;
  }
}

/* Sub Nav Inner/Content Container Styling
=========================================== */
@media (min-width: 981px) {

  .sub-nav-visible .sub-nav {
    display: block;
  }

  .sub-nav-hide .sub-nav {
    display: none!important;
  }

  .sub-nav-visible .inner-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

/* News Page
------------ */
.ps_activity-date-info {
  color: var(--primary-color);
}

.ps_form-search input[type='text'] {
  border-color: var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 0 0 2px #e0e8ec;
  color: #333;
}

.ps_form-search input[type='submit'] {
  color: var(--primary-color);
}

.ps_form-search input[type='submit']:focus,
.ps_form-search input[type='submit']:hover {
  color: #000;
}

@media (min-width: 981px) {
  .news-items {
    width: var(--news-items-width);
  }
}

/* Calendar Page
---------------- */
.ps_event {
  background-color: #eeeeee;
}

.ps_calendar {
  background-color: #fff;
}

.ps_calendar-month {
  background-color: var(--primary-color);
}

.ps_event-title a {
  color: var(--primary-color);
}

.ps_event-title a:hover {
  color: #000;
}

.ps_event-desc {
  color: #333;
}

/* Button / Contact Form Buttons
-------------------------------- */
.ps_form-blocks .ps_form-btn,
.ps_prev,
.ps_next {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
  background: var(--primary-color);
}

.ps_prev:focus,
.ps_prev:hover,
.ps_next:focus,
.ps_next:hover,
.ps_form-blocks .ps_form-btn:focus,
.ps_form-blocks .ps_form-btn:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
}

/* Trust Contact
------------------*/
.trust-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  padding: 6rem 2rem 0;
  gap: 1rem;
}

.trust-contact .logo-link {
  width: 17.4rem;
  transition: ease 0.2s opacity;
}

.trust-contact .logo-link img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.trust-contact .logo-link:focus-within,
.trust-contact .logo-link:hover {
  opacity: 0.8;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-text {
  color: #9E9E9E;
}

.cd-item-text {
  color: #fff;
  font-weight: bold;
  transition: ease 0.2s color;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 26rem;
}

.cd-item-text:focus-within,
.cd-item-text:hover {
  color: #9E9E9E;;
}

/* Bottom Bar 
-----------------*/
.bottom-nav-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  gap: 6rem;
  padding: 6rem 0;
}

.bn-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 6rem;
}

.bn-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
}

.bn-list > li {
  width: 16.2rem;
}

.ul-link,
.bn-list > li a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #9E9E9E;
  transition: ease 0.2s color;
}

.bn-list > li > ul > li > ul {
  display: none;
}

.useful-links .heading,
.bn-list > li.ps_topic_link > a {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FAFAFA;
  margin-bottom: 1rem;
  display: block;
  transition: ease 0.2s color;
}

.bn-list > li.ps_topic_link > a:focus-within,
.bn-list > li.ps_topic_link > a:hover {
  color: #9E9E9E;
}
.ul-link:focus-within,
.ul-link:hover,
.bn-list > li a:focus-within,
.bn-list > li a:hover {
  color: #fff;
}

.bn-list:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.useful-links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sm-links .ul-link .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  transition: ease 0.2s fill;
}

@media (min-width: 981px) and (max-width: 1600px) {
  .bn-inner,
  .bn-list {
    gap: 2rem;
  }

}

@media (min-width: 981px) and (max-width: 1120px) {
  .bn-list > li:nth-child(1),
  .bn-list > li:nth-child(2) {
    width: 14rem;
  }

  .bn-inner,
  .bn-list {
    gap: 1rem;
  }

}

@media (max-width: 980px) {
  .useful-links {
    justify-content: center;
    align-items: center;
  }
}


/* Content icons
-------------------------- */

.content-container .external-link,
.content-container .internal-link {
  display: none!important;
}

.ps_element-icon-small-stacked li a {
  padding-left: 0!important;
}

/* Footer
-------------------------- */
.footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 2rem;
  font-size: 1.4rem;
  color: #9E9E9E;
  background: #111;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links > * + * {
  position: relative;
}

.footer-link,
.footer-policies-button,
.footer-contrast-button {
  color: #9E9E9E;
  transition: opacity 0.2s ease;
  font-weight: bold;
}

.footer-link:focus,
.footer-policies-button:focus,
.footer-contrast-button:focus,
.footer-link:hover,
.footer-policies-button:hover,
.footer-contrast-button:hover {
  color: #9E9E9E;
  opacity: 0.8;
}

.footer-policies-button,
.footer-contrast-button {
  border: none;
  background: none;
  font-size: 1.4rem;
}

.footer-policies-button {
  position: relative;
  padding: 0 1.5rem 0 0;
}

.footer-policies-button::before {
  display: block;
  position: absolute;
  right: 0;
  width: 1rem;
  height: 100%;
  content: '';
  background: currentColor;
  -webkit-mask: url(icons.svg#arrow-up) left center / contain no-repeat;
  mask: url(icons.svg#arrow-up) left center / contain no-repeat;
}

.footer-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 1.4rem);
  left: 0;
  z-index: 101;
  width: max-content;
  max-width: 25rem;
  box-shadow: 0 0.1rem 0.6rem hsl(0 0% 0% / 20%), 0 0.1rem 0.4rem hsl(0 0% 0% / 20%);
  background: #fff;
}

.footer-popup::before,
.footer-popup::after {
  display: block;
  position: absolute;
  top: 100%;
  z-index: -1;
  width: 0;
  height: 0;
  content: '';
  border: solid transparent;
  border-bottom: none;
}

.footer-popup::before {
  left: 0.9rem;
  border-top-color: hsl(0 0% 0% / 20%);
  border-width: 1.3rem;
  margin-top: 0.3rem;
  filter: blur(0.2rem);
}

.footer-popup::after {
  left: 1rem;
  border-top-color: #fff;
  border-width: 1.2rem;
}

.footer-popup-item,
.footer-popup-link {
  display: block;
}

.footer-popup-link {
  width: 100%;
  padding: 0.8rem 2rem;
}

.footer-popup-link,
.footer-popup-link:focus,
.footer-popup-link:hover {
  color: #000;
}

.footer-popup-link:focus,
.footer-popup-link:hover {
  text-decoration: underline;
}

.footer-contrast-button {
  padding: 0;
}

.footer-website-information {
  text-align: right;
}

.footer-copyright {
  display: inline-block;
}

.footer-primarysite {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  margin-left: 0.2rem;
}

.footer-primarysite::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.7rem;
  height: 100%;
  content: '';
  background: url(icons.svg#primarysite-logo) left center / contain no-repeat;
}

@media (min-width: 981px) {
  .footer {
    width: calc(100% - 12rem);
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
  }

  .footer-inner {
    max-width: 128rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .footer-website-information {
    display: flex;
    gap: 1rem;
  }
  
}

@media (max-width: 980px) {
  .footer {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  .footer-popup {
    text-align: center;
  }

  .footer-popup,
  .footer-popup::before,
  .footer-popup::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-website-information {
    text-align: center;
  }

  .footer-website-information-item {
    margin-bottom: 0.5rem;
  }
}

/* Common */
@media (min-width: 981px) {
  .scroll-top {
    bottom: 8rem;
    width: auto;
    height: auto;
    padding: 1rem 1.6rem;
    border: 0.1rem solid currentColor;
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
    margin-right: 0;
    font: inherit;
    color: var(--primary-color);
    background: #fafafa;
    transition: padding 0.1s linear;
    z-index: 106;
  }

  .scroll-top::before {
    display: block;
    width: 100%;
    height: 1.5rem;
    content: '';
    margin-bottom: 0.2rem;
    background: currentColor;
    -webkit-mask: url(icons.svg#arrow-up) center / contain no-repeat;
    mask: url(icons.svg#arrow-up) center / contain no-repeat;
  }

  .scroll-top:focus,
  .scroll-top:hover {
    padding-right: 2.2rem;
    padding-left: 2.2rem;
  }
}

.accessibility-statement-text,
.accessibility-statement-list {
  padding-bottom: 1rem;
}

.accessibility-statement-list {
  padding-left: 2rem;
  list-style: outside;
}


/* RSS Feed
----------------*/
.rss-feed-block a:focus,
.rss-feed-block a:hover {
  text-decoration: underline;
}

.rss-feed-block .feed-title > a {
  font-size: 3rem;
  color: #000;
}

.rss-feed-block .feed-title > a:focus,
.rss-feed-block .feed-title > a:hover {
  text-decoration: underline;
}

.rss-feed-block .feed-item-title > a {
  display: block;
  font-size: 2rem;
  color: #333;
  margin-top: 2rem;
}

.rss-feed-block .feed-item-title > a:focus,
.rss-feed-block .feed-item-title > a:hover {
  text-decoration: underline;
}

@media (min-width: 981px) {
  .rss-feed-block {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}


/* CMS STYLING */
.document-icon {
  display: none;
}

.ps_rendered-documents .ps_element-icon-small-stacked li a{
  padding-left: 0;
}