/*!
Theme Name: BFJ Digital
Theme URI: 
Author: BFJ Dev Team
Author URI: https://bfj.digital/
Description: Theme for Anglican Care a not-for-profit organization committed to delivering high-quality aged care services across Australia.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/
/* Variables (should be on top, contains overrides) */
/* ----------------------------------------------------------
   Poppins
   Description: Poppins font
----------------------------------------------------------- */
@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins/PoppinsLight.eot");
  src: url("./fonts/poppins/PoppinsLight.eot?#iefix") format("embedded-opentype"), url("./fonts/poppins/PoppinsLight.woff2") format("woff2"), url("./fonts/poppins/PoppinsLight.woff") format("woff"), url("./fonts/poppins/PoppinsLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins/PoppinsExtraLight.eot");
  src: url("./fonts/poppins/PoppinsExtraLight.eot?#iefix") format("embedded-opentype"), url("./fonts/poppins/PoppinsExtraLight.woff2") format("woff2"), url("./fonts/poppins/PoppinsExtraLight.woff") format("woff"), url("./fonts/poppins/PoppinsExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins/PoppinsMedium.eot");
  src: url("./fonts/poppins/PoppinsMedium.eot?#iefix") format("embedded-opentype"), url("./fonts/poppins/PoppinsMedium.woff2") format("woff2"), url("./fonts/poppins/PoppinsMedium.woff") format("woff"), url("./fonts/poppins/PoppinsMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins/PoppinsRegular.eot");
  src: url("./fonts/poppins/PoppinsRegular.eot?#iefix") format("embedded-opentype"), url("./fonts/poppins/PoppinsRegular.woff2") format("woff2"), url("./fonts/poppins/PoppinsRegular.woff") format("woff"), url("./fonts/poppins/PoppinsRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins/PoppinsSemiBold.eot");
  src: url("./fonts/poppins/PoppinsSemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts/poppins/PoppinsSemiBold.woff2") format("woff2"), url("./fonts/poppins/PoppinsSemiBold.woff") format("woff"), url("./fonts/poppins/PoppinsSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --grey: #3E495C;
  --teal: #00A0AF;
  --red: #D11242;
  --navy: #15397F;
  --white: #fff;
  --black: #000;
  --blue: #044cb4;
  --yellow: #FDB913;
  --light-grey: #F2F4FA;
  --blue-gray: #3F5D69;
  --font-poppins: "Poppins";
  --font-size-default: 1.125rem;
}

/*
  Buttons
 ------------------------------------------------------ */
.btn-default {
  line-height: 1;
  display: inline-block;
  padding: 0.8125rem 1.25rem;
  font-size: 1.125rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  text-decoration: none;
  border: 0.0625rem solid;
  border-radius: 6.25rem;
}

.btn-grey {
  color: var(--white);
  background: var(--grey);
  border-color: var(--grey);
}
.btn-grey:active {
  border-color: var(--grey);
}
.btn-grey:hover {
  color: var(--white);
  background: var(--grey);
}

.btn-transparent {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}
.btn-transparent:active {
  border-color: var(--white);
}
.btn-transparent:hover {
  color: var(--white);
  background: var(--white);
}

.btn-white {
  color: var(--grey);
  background: var(--white);
  border-color: var(--white);
}
.btn-white:active {
  border-color: var(--white);
}
.btn-white:hover {
  color: var(--grey);
  background: var(--white);
}

.btn-red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
.btn-red:active {
  border-color: var(--red);
}
.btn-red:hover {
  color: var(--white);
  background: var(--red);
}

.link-text {
  color: var(--blue);
  text-decoration: underline;
  font-size: 1rem;
}

.read-more {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.875rem;
}

/* ----------------------------------------------------------
   Headings
   Description: Styles for the global heading
----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 600;
}

/* ----------------------------------------------------------
   Global Styles
   Description: Default styles for all pages
----------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--grey);
  font-family: var(--font-poppins);
  background: var(--light-grey);
  font-size: 1.125rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 600;
}

.site-main {
  position: relative;
}

.relative {
  position: relative;
}

[x-cloak] {
  display: none !important;
}

.breadcrumbs {
  z-index: 100;
  position: absolute;
  top: 1.875rem;
  left: 0;
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--white);
}
@media (min-width: 992px) {
  .breadcrumbs {
    top: 3.75rem;
  }
}
.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

/* ==========================================================================
   HEADER STYLES
   Mobile-first, BEM methodology
   ========================================================================== */
/* Announcement Bar
   ========================================================================== */
.announcement-note {
  padding: 0.625rem 0;
}
.announcement-note__text {
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  width: 70%;
  font-style: italic;
  color: var(--black);
}
.announcement-note__text a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}

.announcement-bar {
  padding: 0.75rem 0;
  margin-bottom: 0.9375rem;
  background-color: var(--light-grey);
  border-bottom-left-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}
.announcement-bar__container {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.announcement-bar__left, .announcement-bar__right {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .announcement-bar__left, .announcement-bar__right {
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .announcement-bar__left__left, .announcement-bar__right__left {
    gap: 0.75rem;
  }
  .announcement-bar__left__right, .announcement-bar__right__right {
    gap: 1rem;
  }
}
.announcement-bar__btn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 0.375rem;
  color: var(--navy);
  font-size: 0.75rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
@media (min-width: 992px) {
  .announcement-bar__btn {
    font-size: 0.9375rem;
  }
}
.announcement-bar__btn:hover, .announcement-bar__btn:focus {
  outline: none;
}
.announcement-bar__btn--search .announcement-bar__btn-text {
  display: none;
}
@media (min-width: 768px) {
  .announcement-bar__btn--search .announcement-bar__btn-text {
    display: inline;
  }
}
.announcement-bar__icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.announcement-bar__icon svg {
  width: 0.75rem;
  height: 0.375rem;
}
.announcement-bar__icon.is-rotated {
  transform: rotate(180deg);
}
.announcement-bar__btn--search .announcement-bar__icon.icon-search {
  display: none;
}
@media (min-width: 768px) {
  .announcement-bar__btn--search .announcement-bar__icon.icon-search {
    display: inline-block;
  }
}
.announcement-bar__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .announcement-bar__controls {
    gap: 1.875rem;
  }
}
.announcement-bar__control--search {
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .announcement-bar__control--search {
    margin-top: 0;
  }
}
.announcement-bar__control--search .announcement-bar__btn--search {
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .announcement-bar__control--search .announcement-bar__btn--search {
    width: auto;
    justify-content: flex-start;
  }
}
.announcement-bar__dropdown {
  position: relative;
}
.announcement-bar__dropdown .dropdown-menu {
  z-index: 9999;
  position: absolute;
  top: 1.25rem;
  width: 13.125rem;
  list-style: none;
  padding: 0.9375rem 1.25rem;
  font-size: 0.875rem;
  background-color: var(--light-grey);
  overflow: hidden;
}
.announcement-bar__dropdown .dropdown-menu li {
  margin-bottom: 0.125rem;
}
.announcement-bar__dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.announcement-bar__dropdown .dropdown-menu li a {
  color: var(--navy);
  text-decoration: none;
}

/* Header Main Container
   ========================================================================== */
.header {
  width: 100%;
  position: relative;
  background-color: var(--white);
}

/* Header Main
   ========================================================================== */
.header__main {
  padding: 0.9375rem 0;
}
@media (min-width: 992px) {
  .header__main {
    padding: 1.25rem 0;
  }
}

/* Mobile Header Layout
   ========================================================================== */
.header__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
}
.header__mobile-left, .header__mobile-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header__mobile-left {
  flex: 0 0 auto;
}
.header__mobile-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__mobile-center .header__logo {
  width: 8.75rem;
  height: 3.75rem;
}
.header__mobile-right {
  flex: 0 0 auto;
}

/* Header Icon Buttons (Mobile)
   ========================================================================== */
.header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0;
  background-color: var(--navy);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header__icon-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
.header__icon-btn:hover, .header__icon-btn:focus {
  transform: scale(1.05);
  opacity: 0.9;
}
.header__icon-btn:focus {
  outline: 0.125rem solid var(--teal);
  outline-offset: 0.125rem;
}
.header__icon-btn--search {
  background-color: var(--light-grey);
}
.header__icon-btn--map {
  background-color: var(--teal);
}
.header__icon-btn--phone {
  background-color: var(--red);
}

/* Header Logo
   ========================================================================== */
.header__logo {
  margin: 0;
  line-height: 1;
  width: 7.75rem;
  height: 3.75rem;
}
.header__logo .logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.header__logo .logo-link:hover {
  opacity: 0.8;
}
.header__logo .logo-link img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* Header Navigation
   ========================================================================== */
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header__nav {
    justify-content: flex-start;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .header__nav {
    justify-content: flex-start;
    margin-left: 2.5rem;
    margin-top: 0.625rem;
  }
}
@media (max-width: 991.98px) {
  .header__nav[x-data]::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  .header__nav:has(.menu-container.show)::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Header Actions (Services + Phone CTA)
   ========================================================================== */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.875rem;
}
@media (min-width: 768px) {
  .header-actions {
    gap: 1.25rem;
    margin-top: 0;
  }
}
.header-actions__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--teal);
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 0.125rem solid var(--teal);
  padding-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .header-actions__link {
    font-size: 1.125rem;
  }
}
.header-actions__link:hover {
  text-decoration: none;
}
.header-actions__link-icon {
  display: inline-flex;
}
.header-actions__link-icon svg {
  stroke: var(--teal);
}
.header-actions__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background-color: var(--bright-red, #E01E4D);
  border-radius: 1.75rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header-actions__cta {
    padding: 0.75rem 1.25rem;
  }
}
.header-actions__cta-icon {
  display: inline-flex;
}
.header-actions__cta-text {
  font-weight: 600;
}

/* Menu Toggle (Hamburger)
   ========================================================================== */
.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--navy);
  cursor: pointer;
  top: 0;
  transition: top 0.8s ease-in-out, transform 0.3s ease;
  z-index: 1001;
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle.open {
  top: -5rem;
}
.menu-toggle:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.menu-toggle:focus {
  outline: 0;
  outline-offset: 0;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.375rem;
  height: 1.125rem;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--white);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}
.menu-toggle[aria-expanded=true] .hamburger-bar:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .hamburger-bar:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

/* Menu Container
   ========================================================================== */
.menu-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 88%;
  max-width: 25rem;
  height: 100vh;
  background-color: var(--white);
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 5rem 1.5rem 2.5rem;
}
.menu-container.show {
  left: 0;
}
@media (min-width: 992px) {
  .menu-container {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    overflow-y: visible;
    padding: 0;
    transition: none;
  }
}

/* Navigation List
   ========================================================================== */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .nav-list {
    gap: 2.5rem;
  }
}
.nav-list > li {
  margin: 0;
  border-bottom: 0.0625rem solid var(--light-grey);
}
@media (min-width: 992px) {
  .nav-list > li {
    border-bottom: 0;
  }
}
.nav-list > li > a {
  display: block;
  padding: 1rem 0;
  color: var(--grey);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
@media (min-width: 992px) {
  .nav-list > li > a {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 400;
  }
  .nav-list > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: var(--teal);
    transition: width 0.3s ease;
  }
}
.nav-list > li > a:hover, .nav-list > li > a:focus {
  color: var(--teal);
}
@media (min-width: 992px) {
  .nav-list > li > a:hover::after, .nav-list > li > a:focus::after {
    width: 100%;
  }
}
.nav-list > li.current-menu-item > a, .nav-list > li.current_page_item > a, .nav-list > li.current-menu-ancestor > a {
  color: var(--teal);
  font-weight: 600;
}
@media (min-width: 992px) {
  .nav-list > li.current-menu-item > a::after, .nav-list > li.current_page_item > a::after, .nav-list > li.current-menu-ancestor > a::after {
    width: 100%;
  }
}
.nav-list > li.menu-item-has-children {
  position: relative;
}
.nav-list > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list > li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.5rem;
  border-right: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .nav-list > li.menu-item-has-children > a::before {
    margin-left: 0.375rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}
.nav-list > li.menu-item-has-children:hover > a::before, .nav-list > li.menu-item-has-children:focus-within > a::before {
  transform: rotate(-135deg);
}
@media (min-width: 992px) {
  .nav-list > li.menu-item-has-children:hover > .sub-menu, .nav-list > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
}
@media (min-width: 992px) {
  .nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-0.625rem);
    min-width: 13.75rem;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    background-color: var(--white);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
}
.nav-list .sub-menu li {
  border-bottom: 0;
}
.nav-list .sub-menu li a {
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .nav-list .sub-menu li a {
    padding: 0.5rem 0;
  }
  .nav-list .sub-menu li a::after {
    display: none;
  }
}
.nav-list .sub-menu li a:hover {
  padding-left: 0.5rem;
}

/* Utility Classes
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 991.98px) {
  body:has(.nav-list.show) .header__nav::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/* ----------------------------------------------------------
   Footer
   Description: Styles for the global footer
----------------------------------------------------------- */
.site-footer {
  padding: 2.5rem 0 0;
  background-color: var(--white, #fff);
}
@media (min-width: 992px) {
  .site-footer {
    padding: 3.75rem 0 0;
  }
}
.site-footer .footer-column {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .site-footer .footer-column {
    margin-bottom: 0;
  }
}
.site-footer .footer-column__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--teal, #00A9A3);
  margin: 0 0 1.25rem;
}
@media (min-width: 992px) {
  .site-footer .footer-column__title {
    font-size: 1.375rem;
  }
}
.site-footer .footer-column__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-column__links li {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey, #3E495C);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .site-footer .footer-column__links li {
    font-size: 1rem;
  }
}
.site-footer .footer-column__links li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-column__links li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey, #3E495C);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .site-footer .footer-column__links li a {
    font-size: 1rem;
  }
}
.site-footer .footer-column__links li a:hover {
  color: var(--teal, #00A9A3);
}
.site-footer .footer-column__contact {
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .site-footer .footer-column__contact {
    margin-bottom: 1rem;
  }
}
.site-footer .footer-column__contact a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey, #3E495C);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .site-footer .footer-column__contact a {
    font-size: 1rem;
  }
}
.site-footer .footer-column__contact a:hover {
  color: var(--teal, #00A9A3);
}
.site-footer .footer-column__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
@media (min-width: 992px) {
  .site-footer .footer-column__social {
    gap: 1.25rem;
    margin-top: 1.75rem;
  }
}
.site-footer .footer-column__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--navy, #003057);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media (min-width: 992px) {
  .site-footer .footer-column__social li a {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.site-footer .footer-column__social li a img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (min-width: 992px) {
  .site-footer .footer-column__social li a img {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.site-footer .footer-column__social li a:hover {
  transform: translateY(-2px);
  background-color: var(--teal, #00A9A3);
}
.site-footer {
  /* ----------------------------------------------------------
  Footer Main
  Description: Membership and Acknowledgement section
  ----------------------------------------------------------- */
}
.site-footer .footer-main {
  margin-top: 5.625rem;
  padding: 2.5rem 0;
  background-color: var(--navy, #003057);
  color: var(--white, #FFFFFF);
}
@media (min-width: 992px) {
  .site-footer .footer-main {
    padding: 3.75rem 0 5rem;
  }
}
.site-footer .footer-main__membership {
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer .footer-main__membership {
    margin-bottom: 0;
    padding-right: 2.5rem;
    text-align: left;
  }
}
.site-footer .footer-main__membership-heading {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white, #FFFFFF);
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .site-footer .footer-main__membership-heading {
    width: 62%;
    font-size: 1.125rem;
    margin-bottom: 1.875rem;
  }
}
.site-footer .footer-main__main-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .site-footer .footer-main__main-logo {
    justify-content: flex-start;
    margin-bottom: 1.875rem;
  }
}
.site-footer .footer-main__main-logo img {
  max-width: 17.5rem;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .site-footer .footer-main__main-logo img {
    max-width: 20rem;
  }
}
.site-footer .footer-main__logo-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .site-footer .footer-main__logo-list {
    gap: 1.25rem;
  }
}
.site-footer .footer-main__logo-item img {
  max-width: 3.75rem;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .site-footer .footer-main__logo-item img {
    max-width: 4.375rem;
  }
}
.site-footer .footer-main__acknowledgement {
  margin-top: 3.125rem;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer .footer-main__acknowledgement {
    margin-top: 0;
    padding-left: 2.5rem;
    text-align: left;
  }
}
.site-footer .footer-main__acknowledgement-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white, #FFFFFF);
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .site-footer .footer-main__acknowledgement-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}
.site-footer .footer-main__acknowledgement-description {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white, #FFFFFF);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .site-footer .footer-main__acknowledgement-description {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
  }
}
.site-footer .footer-main__acknowledgement-description p {
  margin: 0 0 0.75rem;
}
.site-footer .footer-main__acknowledgement-description p:last-child {
  margin-bottom: 0;
}
.site-footer .footer-main__acknowledgement-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .site-footer .footer-main__acknowledgement-logos {
    gap: 1.5rem;
    justify-content: flex-start;
  }
}
.site-footer .footer-main__acknowledgement-logo img {
  max-width: 11.25rem;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .site-footer .footer-main__acknowledgement-logo img {
    max-width: 17.5rem;
  }
}
.site-footer {
  /* ----------------------------------------------------------
  Footer Bottom
  Description: Membership and Acknowledgement section
  ----------------------------------------------------------- */
}
.site-footer .footer-bottom {
  padding-bottom: 60px;
  background-color: var(--navy, #003057);
  color: var(--light-gray, #F2F4FA);
}
.site-footer .footer-bottom__copyright {
  text-align: center;
  font-size: 0.9375rem;
}
.site-footer .footer-bottom__copyright p {
  margin: 0;
  font-weight: 200;
}
.site-footer .footer-bottom__copyright a {
  color: var(--light-gray, #F2F4FA);
  text-decoration: none;
  font-weight: 500;
}
.site-footer .footer-bottom__copyright a:hover {
  color: var(--teal, #00A9A3);
}

@media (min-width: 992px) {
  .breadcrumbs {
    padding-left: 2.5rem;
  }
}

.page-template-page-home-life .block_banner-text-cta,
.page-template-page-residential-care .block_banner-text-cta,
.page-template-page-retrirement-living .block_banner-text-cta {
  margin-top: 0;
}
.page-template-page-home-life .block_banner-text-cta .container-fluid,
.page-template-page-residential-care .block_banner-text-cta .container-fluid,
.page-template-page-retrirement-living .block_banner-text-cta .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.page-template-page-home-life .block_banner-text-cta__title,
.page-template-page-residential-care .block_banner-text-cta__title,
.page-template-page-retrirement-living .block_banner-text-cta__title {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .page-template-page-home-life .block_banner-text-cta__title,
  .page-template-page-residential-care .block_banner-text-cta__title,
  .page-template-page-retrirement-living .block_banner-text-cta__title {
    font-size: 1.875rem;
  }
}
.page-template-page-home-life .block_banner-text-cta--left .block_banner-text-cta__image,
.page-template-page-home-life .block_banner-text-cta--left .block_banner-text-cta__content,
.page-template-page-home-life .block_banner-text-cta--left .block_banner-text-cta__video-wrapper,
.page-template-page-residential-care .block_banner-text-cta--left .block_banner-text-cta__image,
.page-template-page-residential-care .block_banner-text-cta--left .block_banner-text-cta__content,
.page-template-page-residential-care .block_banner-text-cta--left .block_banner-text-cta__video-wrapper,
.page-template-page-retrirement-living .block_banner-text-cta--left .block_banner-text-cta__image,
.page-template-page-retrirement-living .block_banner-text-cta--left .block_banner-text-cta__content,
.page-template-page-retrirement-living .block_banner-text-cta--left .block_banner-text-cta__video-wrapper {
  border-radius: 0;
}
.page-template-page-home-life .block_banner-text-cta--right .block_banner-text-cta__image,
.page-template-page-home-life .block_banner-text-cta--right .block_banner-text-cta__content,
.page-template-page-home-life .block_banner-text-cta--right .block_banner-text-cta__video-wrapper,
.page-template-page-residential-care .block_banner-text-cta--right .block_banner-text-cta__image,
.page-template-page-residential-care .block_banner-text-cta--right .block_banner-text-cta__content,
.page-template-page-residential-care .block_banner-text-cta--right .block_banner-text-cta__video-wrapper,
.page-template-page-retrirement-living .block_banner-text-cta--right .block_banner-text-cta__image,
.page-template-page-retrirement-living .block_banner-text-cta--right .block_banner-text-cta__content,
.page-template-page-retrirement-living .block_banner-text-cta--right .block_banner-text-cta__video-wrapper {
  border-radius: 0;
}

.page-template-page-home-life .block_page-banner-carousel {
  min-height: 52.5rem;
}
.page-template-page-home-life .block_page-banner-carousel .swiper-slide {
  min-height: 52.5rem;
}
