/* ==================== */
/* Colours
/* ==================== */

/**
 * Edit, delete or add as needed
 */
 :root {
  --brand-main: #123462;
  --brand-main-hover: #0D1F39;
  --brand-sec: #F1C450;
  --brand-sec-hover: #8E7124;
  --off-grey: #d2d2d2;
}

/* ==================== */
/* Scroll Behaviour
/* ==================== */

html {
  scroll-behavior: smooth;
}


/* ==================== */
/* Global Font
/* ==================== */

body {
  font-family: 'Open Sans', sans-serif; /* Change to correct font */
  font-size: 16px;
}

.post, .page {
  margin: 0 !important;
}

/* ==================== */
/* Container
/* ==================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-has-bg .container {
  position: relative;
  z-index: 2;
}

/* ==================== */
/* Sections
/* ==================== */

.section {
  padding: 3rem 0;
}

.section--off-grey {
  background-color: var(--off-grey);
}

.section-has-bg {
  background-size: cover;
  position: relative;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.section-has-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

@media (min-width: 1280px){

  .section-has-bg {
    padding: 50px 0;
  }
}

/* ==================== */
/* WCAG Code
/* ==================== */

a:focus-visible, button:focus-visible {
  outline: 2px dashed #ff0000; /* or any high-contrast color */
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

address {
  font-style: normal;
}


/* ==================== */
/* Reset H1 CSS
/* ==================== */

h1.home-link,
a.home-link {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 16px !important;
}

.home-link__logo {
  display: block;
  max-width: 170px;
  width: 100%;
}


/* ==================== */
/* Site Titles
/* ==================== */

.rte h2, .rte h3, .rte h4,
.site-title {
  margin-top: 0 !important;
  color: black !important;

}

.site-title--centre {
  text-align: center;
}


/* ==================== */
/* Site Buttons
/* ==================== */

.site-btn {
  display: inline-block;
  background-color: var(--brand-main);
  color: white !important;
  padding: 8px 32px;
  border-radius: 50px;
  text-decoration: none !important;
}

.site-btn--white {
  background-color: white;
  color: var(--brand-main) !important;
}


/* ==================== */
/* Typography
/* ==================== */

p:first-of-type {
  margin-top: 0;
}

.rte {
  line-height: 1.75 !important;
}

@media (min-width: 1280px){
  .rte--larger-text {
    font-size: 18px;
  }
}


/* ==================== */
/* Misc Classes
/* ==================== */

.text-align-center {
  text-align: center !important;
}

.max-width--750 {
  max-width: 750px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text--white {
  color: white !important;
}

.disp-block {
  display: block !important;
}

/* ==================== */
/* Grid
/* ==================== */

.row{
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.row-invert{
  display: flex!important;
  flex-direction: column-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.col-2, .col-3, .col-4, .col-2-small, .col-2-big, .col-2-no-space{
  width: 100%;
}

.col-4{
  padding: 15px 0;
}

.vertical_center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px){

  .row, .row-invert{
    flex-direction: row;
  }

  .col-4{
    width: 48.5%;
  }

}

@media (min-width: 1024px){

  .row, .row-invert{
    flex-direction: row;
  }

  .col-2{
    width: 48.5%;
  }

  .col-2-small{
    width: 31.5%;
  }

  .col-2-big{
    width: 64.5%;
  }

  .col-2-no-space{
    width: 50%;
  }

  .col-3{
    width: 31.5%;
  }

  .col-4{
    width: 23.5%;
  }

}

/* ==================== */
/* Top Bar
/* ==================== */

.top-bar {  
  background-color: var(--brand-main-hover);
  padding: 6px 0;
  text-align: center;
}

.top-bar__col {
  display: flex;
  flex-direction: column;
}

.top-bar__col--contact {
  display: none;
}

.top-bar__cta-btn {
  display: inline-block;
  color: var(--brand-main) !important;
  font-size: 14px;
  text-decoration: none !important;
  background-color: var(--brand-sec);
  padding: 8px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.top-bar__item {
  color: white;
}

.top-bar__item i {
  display: inline-block;
  margin-right: 5px;
}

.top-bar__item a {
  color: white !important;
  text-decoration: none !important;
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 14px;
  cursor: pointer;
}

@media (min-width: 768px){
  .top-bar {
    display: block;
    padding: 8px 0;
  }

  .top-bar__row {
    display: flex;
    justify-content: space-between;
  }

  .top-bar__col--contact {
    display: flex;
    align-items: center;
  }

  .top-bar__cta-btn {
    padding: 5px 25px;    
  }
}

/* ===================== */
/* Slideout Nav
/* ===================== */

.slideout-menu {    
  width: 350px;
  position: fixed;
  top: 0; 
  left: -350px; 
/*  left: 0;*/
  height: 100%; 
  background: #333;
  z-index: 100;
  /*overflow-y: scroll;*/
  background-color: var(--brand-main);
  transition: 0.5s;
}

body.admin-bar .slideout-menu {
  top: 46px;
}

.slideout-menu.active {
  box-shadow: 0 21px 27px rgb(0 0 0 / 90%);
  left: 0;
}

.slideout-menu i {
  font-family: "FontAwesome";
}

.slideout-menu h3 { 
  margin: 0;
  position: relative;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
/*  border-bottom: 4px solid #222;*/
}

/* Style up the toggle menu "x" */
.slideout-menu .slideout-menu-toggle {
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  padding: 6px 9px 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  background: var(--brand-blue);
  color: white;
  text-decoration: none;
  vertical-align: top;
}

.slideout-menu .slideout-menu-toggle:hover {
  color: #fff;
}

/* Give the menu container some love */
.slideout-menu ul {
  list-style: none;
  font-weight: 300; 
  margin: 0;
  padding: 0;
}

/* And now the list items */
.slideout-menu ul li {
  /*border-top: 1px solid #454545;
  border-bottom: 1px solid #151515;*/
}

/* The anchor elements within the list items */
.slideout-menu ul li a {
  position: relative;
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  text-align: center;
}

.slideout-menu ul li a button  {
  position: absolute;
  right: 10px;
}

.slideout-menu ul li a:hover {
  /*background: #000;
  color: #fff;*/
}

.slideout-menu ul li a i {
  position: absolute;
  top: 15px;
  right: 10px;
  opacity: .5;
}

.dropdown-toggle {
  background-color: transparent;
  border: 0;    
  content: "";
  height: 42px;
  padding: 0;
  position: absolute;
  text-transform: lowercase;
  top: 3px;
  right: 0;
  width: 42px;
}

.dropdown-toggle:after {
  font-family: "FontAwesome";
  color: white;
  content: "\f078";    
  line-height: 42px;
  position: relative;
  top: 0;
  left: 1px;
  width: 42px;
}

.dropdown-toggle.sub-menu-on:after {
  content: "\f077";    
}

/* Submenu */
.slideout-menu ul .sub-menu {
  display: none;
  position: relative;
  width: 100%;
}

.slideout-menu ul .sub-menu li {
  border: 0;  
}

.slideout-menu ul .sub-menu li a {
  text-align: center;
  background-color: var(--brand-main-hover) !important;
}

@media (min-width: 1024px){
  .slideout-menu {
    display: none;
  }
}

/* ==================== */
/* Main Header
/* ==================== */

.main-header {
  background-color: var(--brand-main);
  padding: 0.5rem 0;
  position: relative;
  z-index: 3;
}

.main-header__row {
  display: flex;
  justify-content: space-between;
}

.main-header__col--logo {
  flex-basis: 60%;
}

.main-header__col--nav {
  display: none;
}

.main-header__burger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header__burger-link {
  color: white !important;
}

@media (min-width: 1024px){
  .main-header {
    padding: 1rem 0;
  }

  .main-header__col--logo {
    flex-basis: auto;
  }

  .main-header__burger {
    display: none;
  }

  .main-header__col--nav {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px){
  .main-header {
    padding: 1.5rem 0;
  }
}


/* ==================== */
/* Main Nav
/* ==================== */

.main-browse-nav {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.main-browse-nav > li {
  margin-right: 1rem;
  position: relative;
}

.main-browse-nav > li > a {
  color: white !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 14px;
}

.main-browse-nav > li > a:hover, .main-browse-nav > li > a:focus {
  color: var(--brand-sec) !important;
}

@media (min-width: 1024px){
  .main-browse-nav > li > a {
    font-size: 12px;
  }
}

@media (min-width: 1080px){
  .main-browse-nav > li > a {
    font-size: 14px;
  }
}

@media (min-width: 1280px){

  .main-browse-nav > li > a {
    font-size: 16px;
  }

}

@media (min-width: 1440px){

  .main-browse-nav > li { 
    margin-right: 2rem;
  }

  .main-browse-nav > li > a {
    font-size: 17px;
  }
}


/* ==================== */
/* Sub Menus
/* ==================== */

.sub-menu {
  position: absolute;
  left: 0;  
  margin: 0;
  padding: 0;
  width: 250px;
  display: none;
}

.sub-menu > li.menu-item {
  display: block;  
}

.sub-menu > li.menu-item a {
  color: white !important;
  display: block;
  background-color: var(--brand-main);
  padding: 8px;
  text-align: left;
  text-decoration: none !important;
}

.sub-menu > li.menu-item a:hover, .sub-menu > li.menu-item a:focus {
  background-color: var(--brand-main-hover)
}

.main-browse-nav > li:hover .sub-menu {
  display: block;
}

.main-browse-nav > li:hover .sub-menu,
.main-browse-nav > li:focus-within .sub-menu {
  display: block;
}



/* ==================== */
/* Slideshow
/* ==================== */

#slideshow {
  overflow: hidden;
}

.fp-slideshow__slide {
  height: 500px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.fp-slideshow__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.fp-slideshow__content {
  position: relative;
  z-index: 1;  
  width: 90%;
  max-width: 1280px;  
  margin-left: auto;
  margin-right: auto;
}

.fp-slideshow__title {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.fp-slideshow__text {
  color: white;
  margin: 0 0 0.5rem 0;
  max-width: 500px;

}

#slideshow .slick-dots {
  bottom: 1rem;
}

#slideshow .slick-dots li button:before {
  font-size: 14px;
  color: white;
}

#slideshow .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

#slideshow .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media (min-width: 1280px){

  .fp-slideshow__slide {
    height: 750px;
  }

  .fp-slideshow__logo {
    width: 550px;
  }

  .fp-slideshow__title {
    font-size: 28px;
  }

  .fp-slideshow__text {
    font-size: 22px;
  }

  #slideshow .slick-dots {
    bottom: 2rem;
  }
}


/* ==================== */
/* Footer
/* ==================== */

.site-footer-main {
  padding: 32px 0;
  background-color: var(--brand-main);
}

.site-footer-main::after

.site-footer-main__col {
  line-height: 2;
}

.site-footer-main__col--blurb {
  margin-bottom: 32px;
}

.site-footer__logo {
  max-width: 210px;
  margin-bottom: 1rem;
}

.site-footer__blurb {
  font-size: 14px;
  color: white;
}

.site-footer__title {
  color: white;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 5px;
}

.footer-nav-wrap ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

ul.footer-legal-nav {
  margin-bottom: 1rem !important;
}

.footer-nav-wrap ul a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  text-decoration: none !important;
}

.footer-nav-wrap ul a:hover {
  border-color: white;
}

.site-footer__addr {
  color: white !important;
  /* padding-left: 32px; */
  position: relative;
  margin-bottom: 16px;
}

/* .site-footer__addr::before {
  content: "\f3c5"; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
} */

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  text-decoration: none !important;  
}

.site-footer__link-wrap {
  position: relative;
  /* padding-left: 32px; */
}

/* .site-footer__link-wrap::before {
  content: "\f095"; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
} */

/* .site-footer__link-wrap--email::before {
  content: "\f0e0";
} */

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.social-icons__link {
  /* font-size: 32px; */
  color: white !important;
}

.social-icons__item {
  margin-right: 1rem;
}

.social-icons__item:last-of-type {
  margin-right: 0;
}

.social-icons__link--dark {
  color: var(--brand-main) !important;
}

.site-footer .social-icons__item {
  margin-right: 0.5rem;
}

@media (min-width: 768px){

  .site-footer-main__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-footer-main__col--blurb,
  .site-footer__blurb {
    margin-bottom: 0;
  }

  .site-footer__title {
    margin-top: 0;
  }
}

@media (min-width: 1024px){

  .site-footer-main {
    padding-top: 50px;
  }

  .site-footer-main__row {
    flex-wrap: nowrap;
  }

  .site-footer-main__col {
    flex-basis: calc(25% - 32px);
  }
}

@media (min-width: 1280px){

  .site-footer-main {
    padding-top: 75px;
  }

  .site-footer__blurb {
    padding-right: 32px;
  }
  
  .social-icons__link--lg {
    font-size: 45px;
  }

  .site-footer__blurb {
    line-height: 2;
  }
}


/* ==================== */
/* Site Info
/* ==================== */

.site-info {
  background-color: var(--brand-main-hover);
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-info__text {
  margin: 0;
  color: white;
  font-size: 14px;
}

.site-info__copyright,
.site-info__designby {
  display: block;
  text-align: center;
}

.site-info a {
  color: white !important;
}

@media (min-width: 768px){
  .site-info__text {
    display: flex;
    justify-content: center;    
  }

  .site-info__copyright {
    margin-right: 8px;
    position: relative;
  }  

  .site-info__copyright::after {
    content: " |";
    display: inline-block;
    padding-left: 8px;
  }
}


/* ==================== */
/* Main Banner
/* ==================== */

.main-banner {
  background-size: cover;
  background-position: center;
  background-color: var(--brand-main); /* Default colour fallback for banner */
  height: 250px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 20px solid var(--brand-main)
}

.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.main-banner__row {
  position: relative;
}

.main-banner__title {
  max-width: 650px;
}

.main-banner__title h1 {
  color: white;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(18, 52,98,0.2);
  display: inline-block;
  padding: 20px;
}

@media (min-width: 1280px){
  .main-banner {
    height: 350px;
  }

  .main-banner__title h1 {
    font-size: 40px;
  }


}


/* ==================== */
/* Page Builder
/* ==================== */

.page-wrap {
  background-color: #efefef;
  padding: 2rem 0 1rem 0;
}

.content-box__row {
/*  background-color: white;*/
/*  padding: 1rem;*/
  margin-bottom: 2rem;
/*  box-shadow: 0 0 4px rgba(0,0,0,0.4);*/
}

.content-box__row p:last-of-type {
  margin-bottom: 0;
}

.col-order-1 {
  margin-bottom: 2rem;
}

.content-box__title {
  margin-bottom: 1rem;
}

.content-box__body {
  margin-bottom: 1rem;
}

.section-has-bg .content-box__row {
  background-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-shadow: none;
}

.section-has-bg .site-title-pre,
.section-has-bg .content-box__title,
.section-has-bg .content-box__body .rte * {
  color: white !important;
}

@media (min-width: 1024px){

  .col-order-1 {
    margin-bottom: 0;
  } 

  .content-box__row {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
  }

  .content-box__row--single-row {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }

  .content-box__col--txt {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content-box__col--img {
    width: 400px;
  }

  .content-box__col--txt.col-order-1 {
    padding-right: 2rem;
  }

  .col-order-1 {
    order: 1;
  }

  .col-order-2 {
    order: 2;
  }
}

@media (min-width: 1280px){
  .content-box__row { 
    padding: 3rem 0;
  }

  .content-box__body {
    margin-bottom: 2rem;
  }
}


/* ==================== */
/* Contact Page 1
/* ==================== */

.contact-card {
  background-color: var(--brand-main);
  padding: 1rem;
  border-radius: 10px;
  display: flex;  
  align-items: center;
  margin-bottom: 1rem;
}

.contact-card__icon-wrap {
  margin-right: 1rem;
}

.contact-card__icon-circle {
  color: white !important; 
}

.contact-card__icon {
  color: var(--brand-main) !important;
}

.contact-card__text-wrap,
.contact-card__link {
  color: white !important;
}

.contact-card__link {
  text-decoration: none !important;
}

.opening-hours {
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

.opening-hours__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}

.opening-hours__item::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted white;
}

.opening-hours__day,
.opening-hours__hours {
  background-color: var(--brand-main);
  display: inline-block;  
  position: relative;
  z-index: 1;
}

.opening-hours__day {
  padding-right: 8px;
}

.opening-hours__hours {
  padding-left: 8px;
}

.section-about-lower__col--hours {
  margin-bottom: 2rem;
}

.section-contact__col--form h2 {
  margin-bottom: 2rem !important;
}

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;
  gap: 16px;
}

.social-icons__link {
  font-size: 32px;
  color: var(--brand-main) !important;
}

.site-footer .social-icons__link {
  color: white !important;
}

@media (min-width: 1024px){
  .section-contact__row,
  .section-about-lower__row {
    display: flex;
    justify-content: space-between;
  }

  .section-contact__col--form {
    flex-basis: 60%;
  }

  .section-contact__col--text {
    flex-basis: 35%;
  }

  .section-about-lower__col {
    flex-basis: 40%;
  }
}


/*====================
Contact Page 2
====================*/

.contact_box_wrapper{
  background-color: var(--brand-main);
  padding: 30px;
  border-radius: 10px;
  color: #fff;  
  text-align: center;
  margin: 15px 0;
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.2);
}

.contact_box_wrapper h2{
  font-size: 60px;
  margin: 0;
}

.contact_box_wrapper a{
  color: #fff;  
  text-decoration: none;
}

.contact_box_wrapper a:hover{
  color: var(--brand-secondary);  
  text-decoration: none;
}

.frm_button_submit{
  float: right;
}

.contact_form{
  background-color: var(--brand-main);
}

.contact_form h2{
  color: #fff;
}

/* ============================================================ */
/* Custom code starts below...
/* ============================================================ */

.header_row {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header_top_row {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.header_bottom_row {
  margin-bottom: 10px;
}

.top-bar__col .site-btn {
  margin-top: 10px;
  align-self: flex-end;
}


@media (min-width: 1024px) {
  .header_top_row {
    flex-direction: row;
  }

  .top-bar__col .site-btn {
    margin-top: 0;
    margin-left: 10px;
  }
  
}

/* ============================================= */
/* Global Styles
/* ============================================= */

.brand_color {
  color: var(--brand-main)!important;
}

.site-title {
  margin-bottom: 30px;
}

.site-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
}

.site-title-white .pre-title, .site-title-white .main-title {
  margin: 0;
  color: white;
  max-width: 315px;
}

.site-title-black .pre-title, .site-title-black .main-title {
  margin: 0;
  color: black;
  max-width: 380px;
}

.site-title-center {
  margin: auto;
  text-align: center;
}

.pre-title {
  font-weight: 400;
  font-size: 16px;
}

.main-title {
  font-weight: 600;
  font-size: 32px;
}

/* ==================== */
/* Buttons
/* ==================== */

.site-btn{
  position: relative;
  text-transform: none;
  border-radius: 0;
}

.site-btn-square, .site-btn-square:hover, .site-btn-square::after, .site-btn-square::after {
  border-radius: 15px 0;
}

.site-btn-main{
  background-color: var(--brand-main);
}

.site-btn-main span, .site-btn-sec span, .site-btn-blk span{
  position: relative;
  z-index: 2;
  margin: 0!important;
}

.site-btn-main:hover{
  position: relative;
  background: var(--brand-main);
  color: white!important;
  transition: .5s;
}

.site-btn-main::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-main-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
  border-radius: 15px 0;
}

.site-btn-sec{
  background-color: var(--brand-sec);
  color: var(--brand-main)!important;
}

.site-btn-sec:hover{
  position: relative;
  background: var(--brand-sec);
  color: white!important;
  transition: .5s;
}

.site-btn-sec::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-outline{
  background: transparent;
  border: 1px solid white;
  transition: .2s;
}

.site-btn-outline:hover{
  position: relative;
  background: var(--brand-sec);
  border: 1px solid var(--brand-sec);
  transition: .5s;
  color: var(--brand-main)!important;
}

.site-btn-outline::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec);
  transition: 0.5s;
  height: 100%;
  z-index: -1;
}

.site-btn-blk{
  background-color: black;
  color: white!important;
}

.site-btn-blk:hover{
  position: relative;
  background: var(--brand-sec);
  transition: .5s;
}

.site-btn-blk::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-outline:hover::after, .site-btn-main:hover::after, .site-btn-sec:hover::after, .site-btn-blk:hover::after{
  width: 100%;
}

.site-btn-center {
  text-align: center;
}

/* ==================== */
/* backgrounds
/* ==================== */

.bg-main {
  background-color: var(--brand-main)!important;
}

.bg-sec {
  background-color: var(--brand-sec)!important;
}

.bg-sec-hov {
  background-color: var(--brand-sec-hover)!important;
}

.bg-ter {
  background-color: var(--brand-ter)!important;
}

.bg-off-grey {
  background-color: var(--off-grey)!important;
}

.bg-off-white {
  background-color: var(--off-white)!important;
}

.bg-black {
  background-color: #000!important;
}

.bg-gradient {
  background: linear-gradient(120deg, #313840 0%, #24282D 100%)!important;
}

.bg-hard-gradient{
  background: linear-gradient(to bottom, var(--brand-main) 0%, var(--brand-main) 40%, #fff 40%)!important;
}

.bg-hard-gradient-vert {
  background: linear-gradient(to bottom, var(--brand-main) 0%, var(--brand-main) 20%, #f1f1f1 20%)!important;
}

@media (min-width: 1024px) {

  .bg-hard-gradient-vert {
    background: linear-gradient(90deg, var(--brand-main) 0%, var(--brand-main) 40%, #f1f1f1 40%)!important;
  }

}

.bg-icon-squares-sml, .bg-icon-squares-lrg, .bg-icon-building, .bg-icon-building-sml, .bg-icon-building-ftr {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-icon-building::before {
  content: "";
  display: none;
  width: 425px;
  height: 432px;
  position: absolute;
  right: 50%;
  bottom: 0;
  background-image: url('/wp-content/uploads/2025/04/building-bg.png');
  opacity: 0.15;
  transform: translateX(50%);
}

.bg-icon-building-sml::before {
  content: "";
  /* display: none; */
  width: 300px;
  height: 304px;
  position: absolute;
  right: 20%;
  bottom: 0;
  background-image: url('/wp-content/uploads/2025/04/building-bg.png');
  background-size: contain;
  opacity: 0.15;
  transform: translateX(50%);
}


.bg-icon-building-ftr::before {
  content: "";
  display: none;
  width: 425px;
  height: 432px;
  position: absolute;
  right: 20%;
  bottom: 0;
  background-image: url('/wp-content/uploads/2025/04/building-bg.png');
  background-size: contain;
  opacity: 0.15;
  transform: translateX(50%);
}

.bg-icon-squares-sml::before {
  content: "";
  width: 419px;
  height: 241px;
  position: absolute;
  right: -80px;
  top: -30px;
  background-image: url('/wp-content/uploads/2025/04/Square-graphic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .3;
  z-index: -1;
}

.bg-icon-squares-lrg::before {
  content: "";
  width: 630px;
  height: 360px;
  position: absolute;
  right: -150px;
  top: -50px;
  background-image: url('/wp-content/uploads/2025/04/Square-graphic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: -1;
}

@media (min-width: 1024px) {

  .bg-icon-building::before {
    display: flex;
    right: 10%;
    transform: unset;
  }
}

@media (min-width: 1280px) {

  .bg-icon-building::before {
    right: 20%;
  }

  .bg-icon-squares-lrg::before {
    opacity: 1;
  }

  .bg-icon-building-ftr::before {
    display: block;
  }

}

@media (min-width: 1400px) {
  .bg-icon-squares-sml::before {
    opacity: 1;
  }
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.bg-img-fixed {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

/* ==================== */
/* animations
/* ==================== */

.grow-in-scroll-animation {
  scale: .7; 
  opacity: 0;
  animation: grow-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  margin: 15px 0;
  height: 400px;
}

@keyframes grow-in {
  to{scale: 1; opacity: 1;}
}

.fade-in-left-scroll-animation {
  position: relative;
  left: -20%; 
  opacity: 0;
  animation: slide-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes slide-in {
  to{left: 0; opacity: 1;}
}


.fade-in-up-scroll-animation {
  position: relative;
  bottom: -150px; 
  opacity: 0;
  animation: slide-in-up linear forwards;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes slide-in-up {
  to{bottom: 0; opacity: 1;}
}

@media (min-width: 1024px) {
  .fade-in-up-scroll-animation:nth-child(1) {
    bottom: -150px; 
  }

  .fade-in-up-scroll-animation:nth-child(2) {
    bottom: -190px; 
  }

  .fade-in-up-scroll-animation:nth-child(3) {
    bottom: -230px;
  }

  .fade-in-up-scroll-animation:nth-child(4) {
    bottom: -260px;
  }

}

.fade-in-scroll-animation { 
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes fade-in {
  to{opacity: 1;}
}

/* ==================== */
/* Titles
/* ==================== */

.section_title {
  color: #141414;
}

.section_title_center {
  text-align: center;
}

.section_content {
  color: #141414;
  font-size: 18px
}

.section_title h3 {
  color: var(--brand-sec);
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
}

.section_title h2, .section_title_center h2 {
  font-size: 28px;
  margin-top: 0;
}

.site-title-dark {
  color: #0E0E0E!important;
}


.site-title-white {
  color: white!important;
}

.site-title-dark .pre-title, .site-title-dark .main-title {
  margin: 0;
}

@media (min-width: 1024px) {
  .section_content {
    max-width: 530px;
  }

  .section_title_half {
    max-width: 50%;
  }
}

/* ==================== */
/* Call to Action
/* ==================== */

.cta_bar_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.cta_bar_txt h2 {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.cta_bar_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin-bottom: 1rem;
  width: 100%;
}

@media (min-width: 1024px){

  .cta_bar_btn{
    margin-bottom: 0;
      width: 15.5%;
  }

  .cta_bar_txt{
    width: 81.5%;
    
  }

}

/* ============================================= */
/* Global Styles End
/* ============================================= */


/* ==================== */
/* Home - Hero
/* ==================== */

.section_hero {
  min-height: 600px;
  border-bottom: 20px solid var(--brand-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero_content {
  background-color: rgba(18,52,98,0.2);
  color: white;
  max-width: 800px;
  padding: 10px;
  font-size: 18px;
}

.hero_content h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

@media (min-width: 768px) {
  .hero_content {
    font-size: 22px;
  }

  .hero_content h1 {
    font-size: 32px;
  }

}

/* ==================== */
/* Home - What We Handle
/* ==================== */

.handle_item {
  text-align: center;
}

.handle_item p {
  max-width: 280px;
  margin: 0 auto;
}

.brand_hr {
  background-color: var(--brand-main);
  margin: 10px auto;
  max-width: 320px;
}

/* ==================== */
/* Home - Responsibilities
/* ==================== */

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

.responsibilities_list_item {
  display: flex;
  border-bottom: 1px solid var(--brand-sec);
  width: 100%;
  max-width: 640px;
}

.responsibilities_list_item a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 10px 0; 
  width: 100%;
  padding-right: 50px;
  position: relative;
}

.responsibilities_list_item a:hover {
  color: var(--brand-sec);
}

.responsibilities_list_item a::after {
  content: '\f061'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; 
  margin-left: 8px;
  position: absolute;
  color: var(--brand-sec);
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.responsibilities_list_item a:hover::after {
  right: 0;
}

/* ==================== */
/* Home - How to Apply
/* ==================== */

.apply_content {
  max-width: 800px;
}

.apply_content ol {
  margin-left: 16px;
  padding-left: 0;
}

.apply_content ol li {
  margin-bottom: 10px;
}

/* ==================== */
/* Home - recent decisions
/* ==================== */

.home_decisions_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 990px;
  color: white;
}


.home_decisions_list ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-right: 100px;
}

.home_decisions_list li {
  margin-bottom: 15px;
}

.home_decisions_list li a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  position: relative;
}

.home_decisions_list li a::after {
  content: '\f061'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; 
  margin-left: 8px;
  position: absolute;
  color: var(--brand-sec);
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.home_decisions_list li a:hover {
  color: var(--brand-sec);
  text-decoration: none;
}

.home_decisions_list li a:hover::after {
  right: -60px;
}

@media (min-width: 1024px) {
  .home_decisions_list {
    flex-direction: row;
  }
}


/********************
 * Latest Posts
********************/

.home_latest_news_item {
  display: flex;
  flex-direction: column;

}

.news_card {
  display: flex!important;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.14);
  margin: 15px 0;
}

.latest_post--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  flex-shrink: 0;
}

.latest_post--text {
  background-color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.latest_post--text h2 {
  font-size: 16px;
}

.latest_post--text a {
  color: var(--brand-main);
  text-decoration: none;
}

.latest_post--text a:hover {
  color: var(--brand-main-hover);
}

.latest_post--text h2 a {
  color: #121010;
  text-decoration: none;
}

.latest_post--text h2 a:hover {
  color: var(--brand-main);
}

.latest_post--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.latest_post--btn {
  margin: 0 30px 30px 30px;
}

.news_link a {
  position: relative;
}

.news_link a::after {
  content: '\f061'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; 
  margin-left: 8px;
  position: absolute;
  color: var(--brand-main);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;

}


.news_link a:hover::after {
  right: -40px;
}


.is-form-style.is-form-style-3 input.is-search-input {
  /* border-radius: 10px 0 0 10px; */
  border: 0;
}

.is-form-style input.is-search-input, .is-search-icon {
  height: 40px;
}

.is-search-icon  {
  /* border-radius: 0 10px 10px 0; */
}

.is-search-icon {
  background: #3A3A3C!important;
  border: 0;
  margin-top: -2px;
}

.is-search-icon svg {
  padding-top: 4px;
}

.is-form-style .is-search-submit path {
  fill: white;
}


/********************
 * Internal Content
********************/

.internal_content_title {
  margin-bottom: 10px;
}

.internal_content_title h2, .internal_content_title a {
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 10px;
}

.internal_content_title h2 a {
  color: var(--brand-main);
}

.internal_content_text p {
  margin-top: 0;
  padding-top: 0;
}

.internal_content_text ul, .internal_content_text ol {
  margin-left: 30px;
  padding: 0;
}

.internal_content_text ul li, .internal_content_text ol li {
  margin-bottom: 10px;
}

.internal_content_title h2 {
  color: #000;
}

.internal_content_title h2 a:hover, .internal_content_title h2 a:focus {
  color: var(--brand-sec-hover)!important;
}


.internal_nav_menu_title {
  background-color: var(--brand-main);
  padding: 20px;
  color: white;
}

.internal_nav_menu_title h3 {
  margin: 0;
}

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

.internal_nav_menu ul li {
  background-color: #F2F2F2;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px;
}


.internal_nav_menu ul li a {
  color: var(--brand-main);
  text-decoration: none;
}

.internal_nav_menu ul li a:hover, .internal_nav_menu ul li a:focus {
  color: var(--brand-sec-hover);
  text-decoration: none;
}

.contents_list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 10px;
}

.contents_list li {
  margin-bottom: 10px;
}

.contents_list li a, .internal_content_text a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brand-main);

}

.contents_list li a:hover, .internal_content_text a:hover {
  color: var(--brand-sec-hover);
}

.nav-links a {
  background-color: var(--brand-main);
  color: white;
  text-decoration: none;
  padding: 10px 30px;
}

.nav-links a:hover {
  background-color: var(--brand-main-hover);
  color: white;
  text-decoration: none;
  padding: 10px 30px;
}


/********************
 * Search Results
********************/

.search_row {
  margin-bottom: 15px;
}

.entry-image {
  height: 250px;
  overflow: hidden;
  width: 100%;
}

.entry-image img {
  min-width: 100%;
  height: 100%;
  object-fit: cover!important;
}

.entry-content {
  margin: 0;
  padding: 30px
}

.entry-title {
  margin: 0;
  font-size: 18px;
}

.entry-meta {
  margin: 20px 0;
}

.entry-title a, .entry-meta a {
  text-decoration: none;
  color: var(--brand-main);
}

.entry-title a:hover, .entry-meta a:hover {
  text-decoration: none;
  color: var(--brand-sec-hover);
}

.entry-meta a {
  font-weight: 600;
}

.search_result {
  margin: 15px 0;
  background: #f2f2f2;
}


/********************
 * News Article Page
********************/

.news-article__image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.news-article__meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.news-article__meta .news-article__date {
  margin-right: 10px;
}

.news-article__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #222;
}

.news-article__content {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

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

/********************
 * Publications
********************/

.publication_file_downloads .col-2-small, .decision_file_downloads .col-2-small {
  width: 18.5%;
  display: flex;
  justify-content: center;
  max-height: 80px;
}

.publication_file_downloads .col-2-big, .decision_file_downloads .col-2-big {
  width: 78.5%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.publication_file_downloads a, .publication-title a, .decision_file_downloads a, .decision-title a {
  color: var(--brand-main);
  text-decoration: none;
}

.decision_file_downloads a:hover, .decision_file_downloads a:focus, .decision-title a:hover, .decision-title a:focus {
  color: var(--brand-sec-hover);
}

.publication_file_downloads h3, .publication-title, .decision_file_downloads h3, .decision-title {
  margin: 0;
}

.publication_file_downloads img, .decision_file_downloads img {
  height: 80px;
}

.publication-item, .decision-item {
  width: 100%;
}

.publication-item, .publication_file_downloads, .decision-item, .decision_file_downloads {
  padding: 20px;
  border-bottom: 1px solid #cecece;
}

.publication_list, .publication_file_list, .decision_list, .decision_file_list {
  border-top: 1px solid #cecece;
}

.help_viewing_btn {
  margin-top: 30px;
}

/********************
 * Filter Accordion
********************/

/* Accordion */
.filter-accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  margin-top: 10px;
}

.filter-accordion-content.active {
  opacity: 1;
}

/* See more hidden items */
.filter-hidden.hidden {
  display: none;
}

.filter-accordion-toggle {
  background: var(--brand-main);
  color: white;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 0;
}

.filter-accordion-toggle::after {
  content: '\f078'; /* Font Awesome chevron down icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  float: right;
  transition: transform 0.3s ease;
}

.filter-accordion-toggle[aria-expanded="true"] + .filter-accordion-content {
  display: block;
}

.filter-accordion-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg); /* Rotate the arrow to point up */
}

.filter-accordion-content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  /* overflow: hidden; */
  transition: height 0.4s ease, opacity 0.4s ease;
}

#publication-filters .site-btn-sec, #decision-filters .site-btn-sec {
  margin-top: 10px;
}



.help_table {
  padding: 0;
}

.help_table th {
  background-color: var(--brand-main);
  color: white;
}

.help_table td, .help_table th {
  padding: 10px;
}

.pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333!important;
}

.pagination .current {
  font-weight: bold;
  background: #eee;
}

/* .hidden {
  display: none;
} */

.member_card {
  background: #f2f2f2;
  padding: 30px;
  /* box-shadow: 2px 4px 12px #00000014; */
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.member_card_img {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.site-title-member {
  margin-top: 30px!important;
}

@media (min-width: 1024px) {
  .member_card_img {
    height: 450px;
  }
}




/********************
 * News Header
********************/

.news-banner__row {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-icon-squares-sml {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header-icon-squares-sml::before {
  content: "";
  width: 419px;
  height: 241px;
  position: absolute;
  right: -80px;
  top: -30px;
  background-image: url('/wp-content/uploads/2025/04/Square-graphic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .6;
  z-index: 0;
}

.header-icon-squares-sml::after {
  content: "";
  display: none;
  width: 419px;
  height: 241px;
  position: absolute;
  left: -80px;
  bottom: -30px;
  background-image: url('/wp-content/uploads/2025/04/Square-graphic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .6;
  z-index: 0;
  transform: rotate(180deg); /* Added rotation */
}

@media (min-width: 1400px) {
  .header-icon-squares-sml::after {
    display: block;
  }
}