/* Imports */
/* Variables */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

body {
  font-size: 14px;
  line-height: 1.7;
  color: #67768C;
  font-family: 'Mint Grotesk', sans-serif;
  font-weight: normal;
  /*h2.breakout,
  p.breakout,
  p.breakout a,
  .breakout h2,
  .breakout p {
    @include font-size($leader-font-sizes);
    color: $default-font-color;
  }*/ }
  @media screen and (min-width: 768px) {
    body {
      font-size: 16px; } }
  body ::selection {
    background: #67768C;
    /* WebKit/Blink Browsers */
    color: #fff; }
  body ::-moz-selection {
    background: #67768C;
    /* Gecko Browsers */
    color: #fff; }
  body span,
  body div {
    backface-visibility: hidden; }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    backface-visibility: hidden;
    color: #0C3984;
    font-family: 'MinSans', sans-serif;
    font-weight: normal;
    margin-bottom: 20px; }
  body .kt-inside-inner-col > h1:first-child,
  body .kt-inside-inner-col > h2:first-child,
  body .kt-inside-inner-col > h3:first-child,
  body .kt-inside-inner-col > h4:first-child,
  body .kt-inside-inner-col > h5:first-child,
  body .kt-inside-inner-col > h6:first-child {
    margin-top: 0; }
  body h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05; }
    @media screen and (min-width: 768px) {
      body h1 {
        font-size: 46px; } }
    @media screen and (min-width: 1024px) {
      body h1 {
        font-size: 60px; } }
  body h1.hide {
    display: none; }
  body h2 {
    font-size: 26px;
    line-height: 1.25; }
    @media screen and (min-width: 768px) {
      body h2 {
        font-size: 34px; } }
    @media screen and (min-width: 1024px) {
      body h2 {
        font-size: 40px; } }
  body h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25; }
    @media screen and (min-width: 768px) {
      body h3 {
        font-size: 24px; } }
  body h4 {
    font-size: 20px; }
    @media screen and (min-width: 768px) {
      body h4 {
        font-size: 22px; } }
  body h5 {
    font-size: 19px; }
    @media screen and (min-width: 768px) {
      body h5 {
        font-size: 20px; } }
  body h6 {
    font-size: 16px; }
    @media screen and (min-width: 768px) {
      body h6 {
        font-size: 18px; } }
  body h2:first-child,
  body h3:first-child,
  body h4:first-child,
  body h5:first-child,
  body h6:first-child,
  body p:first-child {
    margin-top: 0; }
  body h2:last-child,
  body h3:last-child,
  body h4:last-child,
  body h5:last-child,
  body h6:last-child,
  body p:last-child {
    margin-bottom: 0; }
  body .white-text {
    color: #ECF8FE; }
    body .white-text h1 {
      color: #fff; }
    body .white-text h2, body .white-text h3, body .white-text h4, body .white-text h5, body .white-text h6, body .white-text p {
      color: #ECF8FE; }
  body p {
    backface-visibility: hidden;
    margin: 0 0 20px; }
    body p strong {
      font-weight: bold; }
  body ol {
    counter-reset: li;
    list-style: none; }
    body ol li {
      backface-visibility: hidden;
      counter-increment: li; }
      body ol li:before {
        content: counter(li);
        color: #67768C;
        direction: rtl;
        display: inline-block;
        font-weight: bold;
        margin-left: -1em;
        margin-right: 0.5em;
        text-align: right;
        width: 1em; }
  body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu) {
    list-style: none;
    /* Remove default bullets */ }
    body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu):last-child {
      margin-bottom: 0; }
    body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu) li:not(:last-child) {
      margin-bottom: 5px; }
    body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu) li:before {
      content: "\2022";
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em; }
    body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list {
      list-style: none;
      margin: 20px 0; }
      @media (max-width: 768px) {
        body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list {
          margin-bottom: 0; } }
      body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list li {
        list-style: none;
        margin: 15px 0;
        padding-left: 35px;
        position: relative; }
        body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list li:before {
          content: "\f00c";
          font-family: "Font Awesome 5 Pro";
          font-size: 12px;
          font-weight: normal;
          position: absolute;
          left: 18px;
          top: 4px;
          z-index: 2; }
        body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list li:after {
          border-radius: 50%;
          content: "";
          display: block;
          height: 24px;
          opacity: 0.2;
          position: absolute;
          left: 0;
          top: 1px;
          width: 24px;
          z-index: 1; }
        body article ul:not(.gform_fields):not(.lSPager):not(.footer-menu).fancy-list li a {
          font-weight: normal; }
  body a {
    border-bottom: solid 1px transparent;
    padding-bottom: 4px;
    backface-visibility: hidden;
    color: #0C3984;
    font-weight: bold;
    transition: all 0.2s; }
    body a:hover, body a:focus {
      border-color: #01A8F1; }
  body button:focus {
    outline: none; }
  body .wp-block-buttons {
    display: block;
    margin-top: 30px; }
    body .wp-block-buttons.is-content-justification-center {
      text-align: center; }
    @media (max-width: 499px) {
      body .wp-block-buttons > .wp-block-button {
        display: block; } }
    body .wp-block-buttons .wp-block-button:not(.is-style-outline) {
      margin: 0; }
      body .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
        background-color: #0C3984;
        border: solid 1px transparent;
        border-radius: 40px;
        color: #fff;
        display: inline-block;
        font-size: 16px;
        font-weight: normal;
        line-height: 22px;
        padding: 15px 30px;
        transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
        width: auto; }
        @media (max-width: 499px) {
          body .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
            text-align: center;
            width: 100%; } }
        body .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover, body .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:focus {
          background: #01173A; }
  body .wp-block-button.is-style-outline > .wp-block-button__link {
    background-color: #0C3984;
    border: solid 1px transparent;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    padding: 15px 30px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
    width: auto;
    background-color: transparent;
    border-color: #0C3984;
    color: #0C3984; }
    @media (max-width: 499px) {
      body .wp-block-button.is-style-outline > .wp-block-button__link {
        text-align: center;
        width: 100%; } }
    body .wp-block-button.is-style-outline > .wp-block-button__link:hover, body .wp-block-button.is-style-outline > .wp-block-button__link:focus {
      background: #01173A; }
    body .wp-block-button.is-style-outline > .wp-block-button__link:hover, body .wp-block-button.is-style-outline > .wp-block-button__link:focus {
      background-color: #01173A;
      border-color: #01173A;
      color: #fff; }
  body .wp-block-button.has-arrow > .wp-block-button__link {
    background-color: #0C3984;
    border: solid 1px transparent;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    padding: 15px 30px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
    &:after {
      transform: translateY(2px) rotate(-45deg);
    }

    &:hover,
    &:focus {

      &:after {
        transform: rotate(0);
      }
    }
  }*/ }
    @media (max-width: 499px) {
      body .wp-block-button.has-arrow > .wp-block-button__link {
        text-align: center;
        width: 100%; } }
    body .wp-block-button.has-arrow > .wp-block-button__link:hover, body .wp-block-button.has-arrow > .wp-block-button__link:focus {
      background: #01173A; }
    body .wp-block-button.has-arrow > .wp-block-button__link:after {
      content: "\f178";
      display: inline-block;
      font-family: 'Font Awesome 5 Pro';
      font-size: 22px;
      font-weight: 200;
      padding-bottom: 2px;
      padding-left: 8px;
      position: static;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      transform: translateX(0px);
      transition: transform 0.2s, color 0.2s;
      vertical-align: top; }
    @media (max-width: 499px) {
      body .wp-block-button.has-arrow > .wp-block-button__link {
        text-align: left !important; }
        body .wp-block-button.has-arrow > .wp-block-button__link:after {
          float: right; } }
    body .wp-block-button.has-arrow > .wp-block-button__link:hover:after, body .wp-block-button.has-arrow > .wp-block-button__link:focus:after {
      transform: translateX(5px); }
  body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link {
    background-color: #0C3984;
    border: solid 1px transparent;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    padding: 15px 30px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
    &:after {
      transform: translateY(2px) rotate(-45deg);
    }

    &:hover,
    &:focus {

      &:after {
        transform: rotate(0);
      }
    }
  }*/
    background-color: transparent;
    border-color: #0C3984;
    color: #0C3984; }
    @media (max-width: 499px) {
      body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link {
        text-align: center;
        width: 100%; } }
    body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:hover, body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:focus {
      background: #01173A; }
    body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:after {
      content: "\f178";
      display: inline-block;
      font-family: 'Font Awesome 5 Pro';
      font-size: 22px;
      font-weight: 200;
      padding-bottom: 2px;
      padding-left: 8px;
      position: static;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      transform: translateX(0px);
      transition: transform 0.2s, color 0.2s;
      vertical-align: top; }
    @media (max-width: 499px) {
      body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link {
        text-align: left !important; }
        body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:after {
          float: right; } }
    body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:hover:after, body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:focus:after {
      transform: translateX(5px); }
    body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:hover, body .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:focus {
      background-color: transparent;
      border-color: #01173A;
      color: #01173A; }
  body .white-text a:not(.wp-block-button__link) {
    border-bottom: solid 1px transparent;
    padding-bottom: 4px; }
    body .white-text a:not(.wp-block-button__link):hover, body .white-text a:not(.wp-block-button__link):focus {
      border-color: #01A8F1; }
  body .white-text .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
    background-color: #ECF8FE;
    color: #01173A; }
    body .white-text .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover, body .white-text .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:focus {
      background-color: #46CDFC; }
  body .white-text .wp-block-buttons .wp-block-button.is-style-outline:not(.has-arrow) > .wp-block-button__link {
    border-color: #01A8F1;
    color: #ECF8FE; }
    body .white-text .wp-block-buttons .wp-block-button.is-style-outline:not(.has-arrow) > .wp-block-button__link:hover, body .white-text .wp-block-buttons .wp-block-button.is-style-outline:not(.has-arrow) > .wp-block-button__link:focus {
      background-color: #46CDFC;
      border-color: #46CDFC;
      color: #01173A; }
  body .white-text .wp-block-buttons .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link {
    border-color: #fff;
    color: #fff; }
    body .white-text .wp-block-buttons .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:hover, body .white-text .wp-block-buttons .wp-block-button.is-style-outline.has-arrow > .wp-block-button__link:focus {
      border-color: #ECF8FE; }
  body .entry-content a,
  body .entry-footer a:focus,
  body .entry-footer a:hover,
  body .entry-summary a,
  body .logged-in-as a,
  body .site-info a:focus,
  body .site-info a:hover,
  body .taxonomy-description a {
    box-shadow: none; }

html,
body {
  background-color: #fff; }

html.popup-open,
body.popup-open {
  -webkit-overflow-scrolling: touch !important;
  overflow: auto;
  height: 100% !important; }

body {
  overflow-x: hidden;
  /*.ready-anim:not(.already-visible) {
    opacity: 0;

    &.come-in {
      opacity: 0;
      transform: translateY(80px);
      animation: come-in 0.5s ease forwards;
      animation-delay: .25s;
    }

    @keyframes come-in {
      to { 
        opacity: 1;
        transform: translateY(0); 
      }
    }
  }*/ }
  body img {
    image-rendering: -webkit-optimize-contrast; }
  body.menu-active {
    overflow: hidden !important;
    position: relative;
    height: 100%; }
  body #page {
    position: relative;
    z-index: 1; }
  body #content {
    padding-top: 180px; }
    @media (max-width: 1309px) {
      body #content {
        padding-top: 154px; } }
    @media (max-width: 1239px) {
      body #content {
        padding-top: 85px; } }
    @media (max-width: 369px) {
      body #content {
        padding-top: 80px; } }
    body #content .hentry-wrapper {
      position: relative; }
      @media (min-width: 768px) {
        body #content .hentry-wrapper {
          width: 100%; } }
      body #content .hentry-wrapper > header, body #content .hentry-wrapper > .entry-content {
        position: relative;
        z-index: 1; }
  body .entry-hero-wrapper,
  body .hentry-wrapper,
  body .site-content-wrapper,
  body .site-footer-wrapper,
  body .site-content-wrapper .has-post-thumbnail .entry-header-wrapper,
  body .widget-area-wrapper {
    max-width: 760px; }
    @media (max-width: 767px) {
      body .entry-hero-wrapper,
      body .hentry-wrapper,
      body .site-content-wrapper,
      body .site-footer-wrapper,
      body .site-content-wrapper .has-post-thumbnail .entry-header-wrapper,
      body .widget-area-wrapper {
        width: calc(100% - 60px); } }
  body .hentry {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0; }
    body .hentry + .hentry {
      margin-top: 0;
      padding-bottom: 0;
      padding-top: 0; }
  @media (max-width: 767px) {
    body .site-content-wrapper {
      margin-left: 0;
      width: auto; }
    body .hentry-wrapper .hentry-wrapper {
      margin-left: 0;
      width: auto; } }
  body .alignwide {
    max-width: 1240px;
    margin-left: calc( 50% - 50vw );
    padding: 0 30px;
    width: 100vw; }
    @media (min-width: 1240px) {
      body .alignwide {
        margin-left: calc( 50% - 620px ); } }
    body .alignwide > .aligncenter {
      margin-left: auto;
      margin-right: auto;
      max-width: 760px; }
      @media (max-width: 767px) {
        body .alignwide > .aligncenter {
          max-width: none;
          width: 100%; } }
  body .kt-row-column-wrap {
    padding: 0; }
  body.page-id-3 #content .entry-content, body.page-id-88 #content .entry-content {
    max-width: 1240px;
    margin-left: calc( 50% - 50vw );
    padding: 20px 30px;
    width: 100vw; }
    @media (min-width: 1240px) {
      body.page-id-3 #content .entry-content, body.page-id-88 #content .entry-content {
        margin-left: calc( 50% - 620px ); } }
    body.page-id-3 #content .entry-content > h2, body.page-id-88 #content .entry-content > h2 {
      font-size: 20px;
      font-weight: 300; }
      @media screen and (min-width: 768px) {
        body.page-id-3 #content .entry-content > h2, body.page-id-88 #content .entry-content > h2 {
          font-size: 24px; } }
  body .alignfull .aligncenter {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    width: calc(100% - 60px); }
    @media (max-width: 767px) {
      body .alignfull .aligncenter {
        max-width: none;
        width: 100%; } }
  @media (max-width: 767px) {
    body .alignfull > .aligncenter {
      padding-left: 30px;
      padding-right: 30px; } }
  body .alignfull .alignwide .kt-row-column-wrap {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 767px) {
    body .alignfull > .kt-row-layout-inner > .kt-row-column-wrap {
      padding-left: 30px;
      padding-right: 30px; }
      body .alignfull > .kt-row-layout-inner > .kt-row-column-wrap .aligncenter > .kt-row-layout-inner > .kt-row-column-wrap {
        padding-left: 0;
        padding-right: 0; }
    body .kt-m-colapse-right-to-left.kt-mobile-layout-row:not(.kt-v-gutter-none) > .wp-block-kadence-column:first-child {
      margin-bottom: 0; }
    body .kt-m-colapse-right-to-left.kt-mobile-layout-row:not(.kt-v-gutter-none) > .wp-block-kadence-column:last-child {
      margin-bottom: 30px; } }
  body figure.aligncenter {
    text-align: center; }
  body iframe {
    margin-bottom: 0; }
  @media (max-width: 767px) {
    body .wp-block-image {
      text-align: center; } }
  body button.back-top {
    display: none !important; }
  @media (min-width: 768px) {
    body .hide-desktop {
      display: none !important; } }
  body .booking-container {
    margin-top: 30px; }
    @media (min-width: 550px) {
      body .booking-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap; } }
    @media (max-width: 767px) {
      body .booking-container {
        margin-top: 30px; } }
    body .booking-container > div {
      margin-bottom: 10px; }
    body .booking-container > div:not(:last-child), body .booking-container > span:not(:last-child) {
      margin-bottom: 10px; }
      @media (min-width: 550px) {
        body .booking-container > div:not(:last-child), body .booking-container > span:not(:last-child) {
          margin-right: 30px; } }
    body .booking-container .wp-block-buttons {
      margin-top: 0; }
      body .booking-container .wp-block-buttons .wp-block-button {
        margin: 0; }
  body .popup {
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    display: flex;
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.2s;
    z-index: 0; }
    body .popup a.close {
      border: solid 3px #01173A;
      border-radius: 50%;
      font-size: 0;
      height: 22px;
      position: absolute;
      right: 30px;
      top: 30px;
      width: 22px; }
      body .popup a.close:before, body .popup a.close:after {
        background: #01173A;
        border-radius: 0;
        content: " ";
        display: block;
        height: 2px;
        transition: background 0.3s;
        position: absolute;
        right: 3px;
        width: 10px; }
      body .popup a.close:hover {
        border-color: #01A8F1; }
        body .popup a.close:hover:before, body .popup a.close:hover:after {
          background: #01A8F1; }
      body .popup a.close:before {
        top: 7px;
        transform: rotate(225deg); }
      body .popup a.close:after {
        bottom: 7px;
        transform: rotate(-45deg); }
    body .popup .popup-inner {
      background-color: #fff;
      max-width: 680px;
      min-height: 200px;
      max-height: 100vh;
      overflow: auto;
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      width: 100%; }
      body .popup .popup-inner .popup-top {
        padding: 70px 60px 50px; }
        @media (max-width: 499px) {
          body .popup .popup-inner .popup-top {
            padding: 60px 30px 20px; } }
        body .popup .popup-inner .popup-top h2 {
          margin-bottom: 5px; }
        body .popup .popup-inner .popup-top .intro {
          color: #0C3984;
          margin-bottom: 20px; }
        body .popup .popup-inner .popup-top .locations {
          display: flex;
          flex-wrap: wrap;
          margin-left: -8px;
          margin-right: -8px;
          padding: 10px 0 0; }
          body .popup .popup-inner .popup-top .locations .location {
            flex: 0 0 33.3%;
            max-width: 33.3%;
            padding: 8px;
            white-space: nowrap; }
            @media (max-width: 599px) {
              body .popup .popup-inner .popup-top .locations .location {
                flex: 0 0 50%;
                max-width: 50%;
                padding-bottom: 20px; } }
            @media (max-width: 329px) {
              body .popup .popup-inner .popup-top .locations .location {
                flex: 0 0 100%;
                max-width: 100%; } }
            body .popup .popup-inner .popup-top .locations .location a {
              border: none;
              padding: 0; }
            body .popup .popup-inner .popup-top .locations .location .text {
              background-color: #0C3984;
              border: solid 1px transparent;
              border-radius: 40px;
              color: #fff;
              display: inline-block;
              font-size: 16px;
              font-weight: normal;
              line-height: 22px;
              padding: 15px 30px;
              transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
              width: auto;
              display: flex;
              align-items: center;
              justify-content: space-between;
              text-align: left;
            /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
              &:after {
                transform: translateY(2px) rotate(-45deg);
              }
          
              &:hover,
              &:focus {
          
                &:after {
                  transform: rotate(0);
                }
              }
            }*/
              background-color: transparent;
              border-color: #0C3984;
              color: #0C3984;
              border: none;
              display: inline-block;
              font-weight: normal;
              padding: 0; }
              @media (max-width: 499px) {
                body .popup .popup-inner .popup-top .locations .location .text {
                  text-align: center;
                  width: 100%; } }
              body .popup .popup-inner .popup-top .locations .location .text:hover, body .popup .popup-inner .popup-top .locations .location .text:focus {
                background: #01173A; }
              body .popup .popup-inner .popup-top .locations .location .text:after {
                content: "\f178";
                display: inline-block;
                font-family: 'Font Awesome 5 Pro';
                font-size: 22px;
                font-weight: 200;
                padding-bottom: 2px;
                padding-left: 8px;
                position: static;
                -webkit-transform: none;
                -moz-transform: none;
                -ms-transform: none;
                transform: translateX(0px);
                transition: transform 0.2s, color 0.2s;
                vertical-align: top; }
              @media (max-width: 499px) {
                body .popup .popup-inner .popup-top .locations .location .text {
                  text-align: left !important; }
                  body .popup .popup-inner .popup-top .locations .location .text:after {
                    float: right; } }
              body .popup .popup-inner .popup-top .locations .location .text:hover:after, body .popup .popup-inner .popup-top .locations .location .text:focus:after {
                transform: translateX(5px); }
              body .popup .popup-inner .popup-top .locations .location .text:hover, body .popup .popup-inner .popup-top .locations .location .text:focus {
                background-color: transparent;
                border-color: #01173A;
                color: #01173A; }
              @media (max-width: 499px) {
                body .popup .popup-inner .popup-top .locations .location .text {
                  font-size: 14px; } }
              body .popup .popup-inner .popup-top .locations .location .text:after {
                color: #01A8F1;
                padding-left: 8px;
                transform: translateX(0px) !important; }
                @media (min-width: 330px) and (max-width: 499px) {
                  body .popup .popup-inner .popup-top .locations .location .text:after {
                    float: none; } }
            body .popup .popup-inner .popup-top .locations .location a:hover .text:after {
              transform: translateX(5px) !important; }
      body .popup .popup-inner .popup-bottom {
        background-color: #0C3984;
        padding: 20px 60px 25px; }
        @media (max-width: 499px) {
          body .popup .popup-inner .popup-bottom {
            padding: 20px 30px 25px; } }
        body .popup .popup-inner .popup-bottom .intro {
          font-size: 14px; }
        body .popup .popup-inner .popup-bottom .call {
          margin-top: 15px; }
          body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
            background-color: #0C3984;
            border: solid 1px transparent;
            border-radius: 40px;
            color: #fff;
            display: inline-block;
            font-size: 16px;
            font-weight: normal;
            line-height: 22px;
            padding: 15px 30px;
            transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
            width: auto;
            background-color: transparent;
            border-color: #0C3984;
            color: #0C3984;
            border-color: #fff;
            color: #fff;
            padding: 10px 20px; }
            @media (max-width: 499px) {
              body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
                text-align: center;
                width: 100%; } }
            body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover, body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link:focus {
              background: #01173A; }
            body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover, body .popup .popup-inner .popup-bottom .call .wp-block-button:not(.is-style-outline) > .wp-block-button__link:focus {
              background-color: #01173A;
              border-color: #01173A;
              color: #fff; }
    body .popup.open {
      animation: fade-in 0.2s ease forwards; }
@keyframes fade-in {
  0% {
    opacity: 0;
    z-index: 99999; }
  100% {
    opacity: 1;
    z-index: 99999; } }
    body .popup.close {
      animation: fade-out 0.2s ease forwards; }
@keyframes fade-out {
  0% {
    opacity: 1;
    z-index: 99999; }
  99% {
    opacity: 0;
    z-index: 99999; }
  100% {
    opacity: 0;
    z-index: -1; } }
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: none; }

body input[type="submit"],
body button[type="submit"] {
  background-color: #0C3984;
  border: solid 1px transparent;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  padding: 15px 30px;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
    &:after {
      transform: translateY(2px) rotate(-45deg);
    }

    &:hover,
    &:focus {

      &:after {
        transform: rotate(0);
      }
    }
  }*/ }
  @media (max-width: 499px) {
    body input[type="submit"],
    body button[type="submit"] {
      text-align: center;
      width: 100%; } }
  body input[type="submit"]:hover, body input[type="submit"]:focus,
  body button[type="submit"]:hover,
  body button[type="submit"]:focus {
    background: #01173A; }
  body input[type="submit"]:after,
  body button[type="submit"]:after {
    content: "\f178";
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-size: 22px;
    font-weight: 200;
    padding-bottom: 2px;
    padding-left: 8px;
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: translateX(0px);
    transition: transform 0.2s, color 0.2s;
    vertical-align: top; }
  @media (max-width: 499px) {
    body input[type="submit"],
    body button[type="submit"] {
      text-align: left !important; }
      body input[type="submit"]:after,
      body button[type="submit"]:after {
        float: right; } }
  body input[type="submit"]:hover:after, body input[type="submit"]:focus:after,
  body button[type="submit"]:hover:after,
  body button[type="submit"]:focus:after {
    transform: translateX(5px); }

body textarea:focus,
body input:focus,
body select:focus,
body .select2-selection:focus,
body input[type="text"]:focus,
body input[type="email"]:focus,
body textarea:focus,
body .search-form input:focus,
body .ginput_container input:focus,
body .ginput_container textarea:focus,
body input[type="tel"]:focus,
body input[type="number"]:focus {
  outline: none; }
body textarea:required,
body input:required,
body select:required,
body .select2-selection:required,
body input[type="text"]:required,
body input[type="email"]:required,
body textarea:required,
body .search-form input:required,
body .ginput_container input:required,
body .ginput_container textarea:required,
body input[type="tel"]:required,
body input[type="number"]:required {
  box-shadow: none;
  outline: none; }
body textarea:invalid,
body input:invalid,
body select:invalid,
body .select2-selection:invalid,
body input[type="text"]:invalid,
body input[type="email"]:invalid,
body textarea:invalid,
body .search-form input:invalid,
body .ginput_container input:invalid,
body .ginput_container textarea:invalid,
body input[type="tel"]:invalid,
body input[type="number"]:invalid {
  box-shadow: none; }
body form input.button,
body form input[type="submit"],
body form button,
body form button.button {
  background-color: #0C3984;
  border: solid 1px transparent;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  padding: 15px 30px;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
    &:after {
      transform: translateY(2px) rotate(-45deg);
    }

    &:hover,
    &:focus {

      &:after {
        transform: rotate(0);
      }
    }
  }*/
  font-family: 'Mint Grotesk', sans-serif; }
  @media (max-width: 499px) {
    body form input.button,
    body form input[type="submit"],
    body form button,
    body form button.button {
      text-align: center;
      width: 100%; } }
  body form input.button:hover, body form input.button:focus,
  body form input[type="submit"]:hover,
  body form input[type="submit"]:focus,
  body form button:hover,
  body form button:focus,
  body form button.button:hover,
  body form button.button:focus {
    background: #01173A; }
  body form input.button:after,
  body form input[type="submit"]:after,
  body form button:after,
  body form button.button:after {
    content: "\f178";
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-size: 22px;
    font-weight: 200;
    padding-bottom: 2px;
    padding-left: 8px;
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: translateX(0px);
    transition: transform 0.2s, color 0.2s;
    vertical-align: top; }
  @media (max-width: 499px) {
    body form input.button,
    body form input[type="submit"],
    body form button,
    body form button.button {
      text-align: left !important; }
      body form input.button:after,
      body form input[type="submit"]:after,
      body form button:after,
      body form button.button:after {
        float: right; } }
  body form input.button:hover:after, body form input.button:focus:after,
  body form input[type="submit"]:hover:after,
  body form input[type="submit"]:focus:after,
  body form button:hover:after,
  body form button:focus:after,
  body form button.button:hover:after,
  body form button.button:focus:after {
    transform: translateX(5px); }
body label {
  font-size: 12px;
  display: block;
  font-weight: normal;
  padding-bottom: 8px; }
  @media screen and (min-width: 768px) {
    body label {
      font-size: 14px; } }
body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
body .select2-container .select2-selection--single,
body textarea {
  background-color: #fff;
  border: none;
  border-bottom: solid 1px transparent;
  border-radius: 3px;
  color: #0C3984;
  font-family: 'Mint Grotesk', sans-serif;
  font-size: 14px;
  height: auto;
  line-height: 21px;
  padding: 14px 15px;
  width: 100%; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::-webkit-input-placeholder,
  body .select2-container .select2-selection--single::-webkit-input-placeholder,
  body textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #67768C;
    opacity: 0.5; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::-moz-placeholder,
  body .select2-container .select2-selection--single::-moz-placeholder,
  body textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #67768C;
    opacity: 0.5; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):-ms-input-placeholder,
  body .select2-container .select2-selection--single:-ms-input-placeholder,
  body textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #67768C;
    opacity: 0.5; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):-moz-placeholder,
  body .select2-container .select2-selection--single:-moz-placeholder,
  body textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #67768C;
    opacity: 0.5; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus::-webkit-input-placeholder,
  body .select2-container .select2-selection--single:focus::-webkit-input-placeholder,
  body textarea:focus::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    opacity: 1; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus::-moz-placeholder,
  body .select2-container .select2-selection--single:focus::-moz-placeholder,
  body textarea:focus::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus:-ms-input-placeholder,
  body .select2-container .select2-selection--single:focus:-ms-input-placeholder,
  body textarea:focus:-ms-input-placeholder {
    /* IE 10+ */
    opacity: 1; }
  body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus:-moz-placeholder,
  body .select2-container .select2-selection--single:focus:-moz-placeholder,
  body textarea:focus:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1; }
body .select2-container .select2-selection--single .select2-selection__rendered {
  color: #0C3984;
  line-height: inherit;
  padding: 0; }
body .select2-container .select2-selection--single .select2-selection__arrow {
  bottom: 0;
  height: auto;
  top: 0;
  right: 10px; }
  body .select2-container .select2-selection--single .select2-selection__arrow b {
    border: none;
    height: 22px;
    margin-top: -10px;
    width: 100%; }
    body .select2-container .select2-selection--single .select2-selection__arrow b:before {
      content: "\f078";
      font-family: 'Font Awesome 5 Pro';
      font-size: 14px;
      font-weight: normal;
      line-height: 1; }
body .select2-container--open {
  font-size: 14px;
  z-index: 22222; }
body button {
  outline: none; }
body .gform_wrapper h3.gform_title {
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: 1px;
  line-height: 42px;
  text-align: center; }
body .gform_wrapper .gform_description {
  display: block;
  margin-bottom: 15px;
  text-align: center; }
body .gform_wrapper input[type="checkbox"]:checked, body .gform_wrapper input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px; }
body .gform_wrapper input[type="checkbox"]:checked + span, body .gform_wrapper input[type="checkbox"]:not(:checked) + span, body .gform_wrapper input[type="checkbox"]:checked + label, body .gform_wrapper input[type="checkbox"]:not(:checked) + label {
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: bold !important;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: none;
  position: relative;
  padding-bottom: 0;
  padding-left: 35px;
  transition: color 0.3s, opacity 0.3s; }
body .gform_wrapper input[type="checkbox"]:disabled + span, body .gform_wrapper input[type="checkbox"]:disabled + label {
  opacity: 0.5; }
body .gform_wrapper input[type="checkbox"]:checked + span:before, body .gform_wrapper input[type="checkbox"]:not(:checked) + span:before, body .gform_wrapper input[type="checkbox"]:checked + label:before, body .gform_wrapper input[type="checkbox"]:not(:checked) + label:before {
  background: #FAFAFA;
  border: solid 1px #EAEAEA;
  border-radius: 0;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: border 0.3s; }
body .gform_wrapper input[type="checkbox"]:checked + span:after, body .gform_wrapper input[type="checkbox"]:not(:checked) + span:after, body .gform_wrapper input[type="checkbox"]:checked + label:after, body .gform_wrapper input[type="checkbox"]:not(:checked) + label:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 16px;
  height: 16px;
  background: none;
  position: absolute;
  bottom: 7px;
  left: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }
body .gform_wrapper input[type="checkbox"]:checked + span:after, body .gform_wrapper input[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: translateX(-50%), scale(1);
  transform: translateX(-50%) scale(1); }
body .gform_wrapper input[type="checkbox"]:not(:checked) + span:after, body .gform_wrapper input[type="checkbox"]:not(:checked) + label:after, body .gform_wrapper input[type="checkbox"]:disabled + span:after, body .gform_wrapper input[type="checkbox"]:disabled + label:after {
  opacity: 0;
  -webkit-transform: translateX(-50%), scale(0);
  transform: translateX(-50%) scale(0); }
body .gform_wrapper input[type="radio"]:checked, body .gform_wrapper input[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px; }
body .gform_wrapper input[type="radio"]:checked + span, body .gform_wrapper input[type="radio"]:not(:checked) + span, body .gform_wrapper input[type="radio"]:checked + label, body .gform_wrapper input[type="radio"]:not(:checked) + label {
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: bold !important;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: none;
  position: relative;
  padding-bottom: 0;
  padding-left: 35px;
  transition: color 0.3s, opacity 0.3s; }
body .gform_wrapper input[type="radio"]:disabled + span, body .gform_wrapper input[type="radio"]:disabled + label {
  opacity: 0.5; }
body .gform_wrapper input[type="radio"]:checked + span:before, body .gform_wrapper input[type="radio"]:not(:checked) + span:before, body .gform_wrapper input[type="radio"]:checked + label:before, body .gform_wrapper input[type="radio"]:not(:checked) + label:before {
  background: #FAFAFA;
  border: solid 1px #EAEAEA;
  border-radius: 0;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: border 0.3s; }
body .gform_wrapper input[type="radio"]:checked + span:after, body .gform_wrapper input[type="radio"]:not(:checked) + span:after, body .gform_wrapper input[type="radio"]:checked + label:after, body .gform_wrapper input[type="radio"]:not(:checked) + label:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 16px;
  height: 16px;
  background: none;
  position: absolute;
  bottom: 7px;
  left: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }
body .gform_wrapper input[type="radio"]:checked + span:after, body .gform_wrapper input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: translateX(-50%), scale(1);
  transform: translateX(-50%) scale(1); }
body .gform_wrapper input[type="radio"]:not(:checked) + span:after, body .gform_wrapper input[type="radio"]:not(:checked) + label:after, body .gform_wrapper input[type="radio"]:disabled + span:after, body .gform_wrapper input[type="radio"]:disabled + label:after {
  opacity: 0;
  -webkit-transform: translateX(-50%), scale(0);
  transform: translateX(-50%) scale(0); }
body .gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 -10px; }
  body .gform_wrapper .gform_fields p {
    font-size: 13px !important; }
  body .gform_wrapper .gform_fields fieldset.gfield {
    border: none;
    margin-left: 0;
    margin-right: 0; }
  body .gform_wrapper .gform_fields .gfield {
    box-sizing: border-box;
    flex: 0 0 100%;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative; }
    body .gform_wrapper .gform_fields .gfield .ginput_container {
      margin: 0; }
      body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span {
        display: block; }
        body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span.name_first {
          padding-bottom: 10px; }
        @media (min-width: 600px) {
          body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span {
            float: left;
            width: 50%; }
            body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span.name_first {
              padding-bottom: 0;
              padding-right: 10px; }
            body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span.name_last {
              padding-left: 10px; } }
        body .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_name span label {
          display: block;
          font-size: 12px !important;
          font-weight: normal;
          padding-bottom: 8px; }
    body .gform_wrapper .gform_fields .gfield:not(.type-checkbox):not(.type-radio):not(.type-fileupload):not(.type-consent) label,
    body .gform_wrapper .gform_fields .gfield legend.gfield_label {
      font-size: 12px;
      display: block;
      font-weight: normal;
      padding-bottom: 8px; }
      @media screen and (min-width: 768px) {
        body .gform_wrapper .gform_fields .gfield:not(.type-checkbox):not(.type-radio):not(.type-fileupload):not(.type-consent) label,
        body .gform_wrapper .gform_fields .gfield legend.gfield_label {
          font-size: 14px; } }
      body .gform_wrapper .gform_fields .gfield:not(.type-checkbox):not(.type-radio):not(.type-fileupload):not(.type-consent) label .gfield_required,
      body .gform_wrapper .gform_fields .gfield legend.gfield_label .gfield_required {
        color: #FF6A6A; }
        body .gform_wrapper .gform_fields .gfield:not(.type-checkbox):not(.type-radio):not(.type-fileupload):not(.type-consent) label .gfield_required:before,
        body .gform_wrapper .gform_fields .gfield legend.gfield_label .gfield_required:before {
          content: "*";
          font-size: inherit;
          padding-left: 5px; }
        body .gform_wrapper .gform_fields .gfield:not(.type-checkbox):not(.type-radio):not(.type-fileupload):not(.type-consent) label .gfield_required .gfield_required_text,
        body .gform_wrapper .gform_fields .gfield legend.gfield_label .gfield_required .gfield_required_text {
          display: none; }
    body .gform_wrapper .gform_fields .gfield.type-textarea textarea {
      height: 120px; }
    @media (min-width: 600px) {
      body .gform_wrapper .gform_fields .gfield.type-text, body .gform_wrapper .gform_fields .gfield.type-email, body .gform_wrapper .gform_fields .gfield.type-phone, body .gform_wrapper .gform_fields .gfield.type-number, body .gform_wrapper .gform_fields .gfield.field-label-mf {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%; } }
    body .gform_wrapper .gform_fields .gfield.type-hidden {
      margin: 0; }
    body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_checkbox,
    body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_radio, body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_checkbox,
    body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_radio {
      list-style: none;
      margin: 0; }
      body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_checkbox li,
      body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_radio li, body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_checkbox li,
      body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_radio li {
        display: inline-block;
        line-height: 30px;
        padding-right: 40px !important; }
        body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_checkbox li:before,
        body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_radio li:before, body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_checkbox li:before,
        body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_radio li:before {
          display: none; }
        body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_checkbox li:last-child,
        body .gform_wrapper .gform_fields .gfield.type-checkbox ul.gfield_radio li:last-child, body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_checkbox li:last-child,
        body .gform_wrapper .gform_fields .gfield.type-radio ul.gfield_radio li:last-child {
          padding-right: 0 !important; }
    body .gform_wrapper .gform_fields .gfield.type-date .clear-multi {
      display: flex; }
      body .gform_wrapper .gform_fields .gfield.type-date .clear-multi > div {
        max-width: 100px; }
        body .gform_wrapper .gform_fields .gfield.type-date .clear-multi > div:not(:last-child) {
          padding-right: 15px; }
        body .gform_wrapper .gform_fields .gfield.type-date .clear-multi > div:last-child {
          max-width: 100px; }
body .gform_wrapper .gfieldset {
  border: none;
  padding: 0; }
body .gform_wrapper .gform_footer {
  margin-top: 30px;
  padding-top: 0;
  text-align: left; }
body .gform_wrapper .required-message {
  display: inline-block;
  font-size: 12px;
  font-weight: 100;
  margin-left: 10px; }
body .gform_wrapper div.validation_error,
body .gform_wrapper ol.validation_list {
  border: none;
  color: #FF6A6A;
  font-size: 14px;
  padding: 0;
  text-align: center; }
  body .gform_wrapper div.validation_error a,
  body .gform_wrapper ol.validation_list a {
    color: #FF6A6A !important; }
body .gform_wrapper ol.validation_list {
  list-style: none;
  margin-left: 0;
  margin-top: 10px; }
  body .gform_wrapper ol.validation_list li {
    list-style: none !important; }
    body .gform_wrapper ol.validation_list li:before {
      display: none; }
body .gform_wrapper li.gfield.gfield_error {
  background: none;
  border: none;
  margin-bottom: 0 !important; }
  body .gform_wrapper li.gfield.gfield_error.gfield_contains_required .ginput_container {
    margin: 0; }
  body .gform_wrapper li.gfield.gfield_error div.ginput_complex.ginput_container label,
  body .gform_wrapper li.gfield.gfield_error ul.gfield_checkbox,
  body .gform_wrapper li.gfield.gfield_error ul.gfield_radio {
    color: #fff; }
body .gform_wrapper .field_description_below .gfield_description.validation_message {
  color: #FF6A6A;
  font-size: 12px;
  padding-right: 0 !important;
  padding-top: 2px; }
  body .gform_wrapper .field_description_below .gfield_description.validation_message:before {
    content: "\f071";
    font-family: 'Font Awesome 5 Pro';
    padding-right: 10px; }
body .white-text .gform_wrapper div.validation_error,
body .white-text .gform_wrapper ol.validation_list,
body .white-text .gform_wrapper ol.validation_list a,
body .white-text .gform_wrapper .field_description_below .gfield_description.validation_message {
  color: #fff !important; }

/* Variables */
body .lSSlideOuter {
  overflow: visible; }
  body .lSSlideOuter .lSPager.lSpg {
    height: 6px;
    margin: 0 15px; }
    body .lSSlideOuter .lSPager.lSpg > li {
      height: 6px; }
      body .lSSlideOuter .lSPager.lSpg > li a {
        background-color: #fff;
        border: solid 1px rgba(103, 118, 140, 0.35);
        height: 6px;
        padding: 0;
        vertical-align: top;
        width: 6px; }
      body .lSSlideOuter .lSPager.lSpg > li.active a {
        background-color: #0C3984;
        border-color: #0C3984; }

html.has-js {
  margin-top: 0 !important; }

body {
  /*&.single-case-study .site-header .site-header-wrapper .site-menu .main-navigation ul li#menu-item-31 > a {
    @media (min-width: 1240px) {
    }
  }*/ }
  body.menu-active {
    overflow: hidden; }
  body #wpadminbar {
    opacity: 0.5; }
  body .call i {
    font-weight: 300; }
  body #desktop-extras .wp-block-buttons,
  body #mobile-extras .wp-block-buttons {
    margin-top: 0; }
    body #desktop-extras .wp-block-buttons .wp-block-button.telehealth .wp-block-button__link:not(:hover):not(:focus),
    body #mobile-extras .wp-block-buttons .wp-block-button.telehealth .wp-block-button__link:not(:hover):not(:focus) {
      background-color: #01A8F1; }
  body .site-header-covid {
    background-color: #0B54D3;
    color: #fff;
    font-size: 14px;
    transition: height 0.2s; }
    body .site-header-covid .site-header-covid-inner {
      padding: 5px 30px; }
      body .site-header-covid .site-header-covid-inner a {
        border: none;
        padding-bottom: 0; }
    body .site-header-covid img {
      box-sizing: content-box;
      padding-right: 20px;
      vertical-align: top; }
    body .site-header-covid a {
      color: #fff;
      display: inline-block;
      font-weight: normal;
      margin-left: 15px;
      text-decoration: underline; }
  body .site-header-top {
    background-color: rgba(236, 248, 254, 0.85);
    height: 47px;
    transition: height 0.2s; }
    body .site-header-top .site-header-top-inner {
      margin: 0 auto;
      max-width: 1500px;
      padding: 0 30px; }
    body .site-header-top .top-navigation {
      display: flex;
      justify-content: flex-end;
      transition: padding 0.3s; }
      body .site-header-top .top-navigation ul {
        justify-content: center;
        margin-right: 15px;
        padding: 0;
        transition: height 0.3s; }
        body .site-header-top .top-navigation ul li {
          flex-grow: 1;
          margin: 0;
          padding: 0 15px;
          position: relative;
          text-align: center; }
          body .site-header-top .top-navigation ul li:last-child {
            padding-right: 0; }
          body .site-header-top .top-navigation ul li.menu-item-has-children > a:after {
            content: "\f078";
            display: inline-block;
            font-family: 'Font Awesome 5 Pro';
            font-size: 12px;
            font-weight: normal;
            padding-left: 8px;
            vertical-align: top; }
          body .site-header-top .top-navigation ul li a {
            box-sizing: content-box;
            color: #0C3984;
            display: inline-block;
            font-size: 14px;
            font-weight: normal;
            line-height: 20px;
            padding: 13px 0;
            transition: color 0.2s, padding 0.2s;
            white-space: nowrap; }
          body .site-header-top .top-navigation ul li a:hover, body .site-header-top .top-navigation ul li a:focus {
            text-decoration: none; }
          body .site-header-top .top-navigation ul li ul.sub-menu {
            -webkit-box-shadow: 0px 4px 44px 0 rgba(0, 0, 0, 0.25);
            -moz-box-shadow: 0px 4px 44px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 44px 0 rgba(0, 0, 0, 0.25);
            border-bottom: solid 2px #01A8F1;
            border-radius: 8px;
            margin: 0;
            padding: 20px 45px;
            top: 46px;
            width: 300px; }
            body .site-header-top .top-navigation ul li ul.sub-menu:before {
              border-left: 8px solid transparent;
              border-right: 8px solid transparent;
              border-bottom: 8px solid #fff;
              content: "";
              height: 0;
              margin-left: -8px;
              position: absolute;
              left: 50%;
              top: -8px;
              width: 0; }
            body .site-header-top .top-navigation ul li ul.sub-menu li {
              border: none;
              max-width: none;
              padding: 10px 0;
              text-align: left; }
              body .site-header-top .top-navigation ul li ul.sub-menu li:after {
                display: none; }
              body .site-header-top .top-navigation ul li ul.sub-menu li a {
                border: none;
                display: block;
                font-size: 14px;
                height: auto;
                letter-spacing: 0;
                line-height: 35px;
                padding: 0;
                text-transform: none; }
              body .site-header-top .top-navigation ul li ul.sub-menu li.current-menu-item a,
              body .site-header-top .top-navigation ul li ul.sub-menu li a:hover,
              body .site-header-top .top-navigation ul li ul.sub-menu li a:focus {
                color: #01A8F1; }
  body .site-header {
    background: #fff;
    padding-bottom: 0;
    left: 0;
    top: 0;
    transition: box-shadow 0.2s; }
    body .site-header .site-header-wrapper {
      margin: 0 auto;
      max-width: 1500px;
      overflow: visible;
      width: 100%;
      z-index: 222; }
      body .site-header .site-header-wrapper .site-branding {
        box-sizing: content-box;
        display: flex;
        align-items: center;
        margin: 0;
        position: relative;
        z-index: 222; }
        body .site-header .site-header-wrapper .site-branding a {
          border: none;
          padding-bottom: 0; }
        body .site-header .site-header-wrapper .site-branding .ndis-logo {
          margin-left: 15px; }
        body .site-header .site-header-wrapper .site-branding img,
        body .site-header .site-header-wrapper .site-branding svg {
          display: block;
          max-height: 40px;
          transition: all 0.3s; }
          @media (max-width: 429px) {
            body .site-header .site-header-wrapper .site-branding img,
            body .site-header .site-header-wrapper .site-branding svg {
              max-height: 30px; } }
        body .site-header .site-header-wrapper .site-branding .ndis-logo {
          margin-left: 20px;
          max-width: 56px; }
          @media (max-width: 599px) {
            body .site-header .site-header-wrapper .site-branding .ndis-logo {
              margin-left: 10px; } }
    @media (min-width: 1240px) {
      body .site-header .site-header-wrapper {
        display: flex;
        padding: 0 30px; }
      body .site-header .mobile-menu-toggle {
        display: none; }
      body .site-header #desktop-extras {
        display: flex;
        align-items: center;
        margin-left: auto; }
        body .site-header #desktop-extras .wp-block-button {
          margin-bottom: 0; }
          body .site-header #desktop-extras .wp-block-button:not(:last-child) {
            margin-right: 10px; }
        body .site-header #desktop-extras .wp-block-buttons .wp-block-button .wp-block-button__link {
          padding: 10px 20px; }
      body .site-header #mobile-extras,
      body .site-header .mobile-top-menu {
        display: none; }
      body .site-header .site-menu #site-navigation-mobile {
        display: none; }
      body .site-header .site-menu #site-navigation .primary-menu {
        padding-left: 30px; } }
  @media (min-width: 1240px) and (max-width: 1119px) {
    body .site-header .site-menu #site-navigation .primary-menu {
      padding-left: 15px; } }
    @media (min-width: 1240px) {
        body .site-header .site-menu #site-navigation .primary-menu li {
          position: relative; }
          body .site-header .site-menu #site-navigation .primary-menu li:before {
            background: rgba(236, 248, 254, 0);
            background: -moz-linear-gradient(0deg, rgba(236, 248, 254, 0) 0%, #ECF8FE 100%);
            background: -webkit-linear-gradient(0deg, rgba(236, 248, 254, 0) 0%, #ECF8FE 100%);
            background: -o-linear-gradient(0deg, rgba(236, 248, 254, 0) 0%, #ECF8FE 100%);
            background: -ms-linear-gradient(0deg, rgba(236, 248, 254, 0) 0%, #ECF8FE 100%);
            background: linear-gradient(180deg, rgba(236, 248, 254, 0) 0%, #ECF8FE 100%);
            content: "";
            display: block;
            height: 100%;
            opacity: 0;
            position: absolute;
            left: 0;
            top: 0;
            transition: opacity 0.2s;
            z-index: 1;
            width: 100%; }
          body .site-header .site-menu #site-navigation .primary-menu li a {
            border: none;
            font-size: 16px;
            font-weight: normal;
            line-height: 80px;
            padding: 0 15px;
            position: relative;
            z-index: 2; }
            body .site-header .site-menu #site-navigation .primary-menu li a:after {
              color: #46CDFC;
              content: "\f0d7";
              font-family: 'Font Awesome 5 Pro';
              font-size: 16px;
              font-weight: bold;
              line-height: 10px;
              position: absolute;
              left: 50%;
              bottom: 15px;
              transform: translateX(-50%);
              transition: bottom 0.2s; }
          body .site-header .site-menu #site-navigation .primary-menu li.active:before, body .site-header .site-menu #site-navigation .primary-menu li.current-menu-item:before, body .site-header .site-menu #site-navigation .primary-menu li.current_page_parent:before, body .site-header .site-menu #site-navigation .primary-menu li:hover:before, body .site-header .site-menu #site-navigation .primary-menu li:focus:before {
            opacity: 1; } }
  body .megamenus {
    position: relative; }
    body .megamenus .alignfull {
      opacity: 0;
      position: absolute;
      left: -999em;
      top: 0;
      transition: opacity 0.2s;
      z-index: 99999; }
      body .megamenus .alignfull.active {
        left: 0;
        opacity: 1; }
    body .megamenus .alignwide {
      padding: 0 20px; }
      body .megamenus .alignwide .kt-row-layout-inner {
        margin-left: -15px;
        margin-right: -15px; }
      body .megamenus .alignwide .wp-block-rows-column {
        display: flex;
        height: calc(100vh - 162px);
        max-height: 550px;
        min-height: 460px;
        padding: 30px; }
        body .megamenus .alignwide .wp-block-rows-column:first-child {
          justify-content: center;
          align-items: center; }
    body .megamenus .alignfull,
    body .megamenus .alignwide {
      padding-bottom: 0;
      padding-top: 0; }
      body .megamenus .alignfull .kt-row-column-wrap,
      body .megamenus .alignwide .kt-row-column-wrap {
        padding: 0; }
    body .megamenus .services {
      background-color: #0C3984;
      color: #fff; }
      body .megamenus .services .alignwide .wp-block-rows-column .wp-block-image {
        margin-bottom: 10px;
        text-align: left; }
      body .megamenus .services .alignwide .wp-block-rows-column img,
      body .megamenus .services .alignwide .wp-block-rows-column svg {
        height: 70px;
        width: auto; }
      body .megamenus .services .alignwide .wp-block-rows-column h2,
      body .megamenus .services .alignwide .wp-block-rows-column h3 {
        font-size: 19px;
        border-bottom: solid 1px #01A8F1;
        font-family: 'Mint Grotesk', sans-serif;
        margin-top: 10px;
        padding-bottom: 15px; }
        @media screen and (min-width: 768px) {
          body .megamenus .services .alignwide .wp-block-rows-column h2,
          body .megamenus .services .alignwide .wp-block-rows-column h3 {
            font-size: 20px; } }
        body .megamenus .services .alignwide .wp-block-rows-column h2 a,
        body .megamenus .services .alignwide .wp-block-rows-column h3 a {
          background-color: #0C3984;
          border: solid 1px transparent;
          border-radius: 40px;
          color: #fff;
          display: inline-block;
          font-size: 16px;
          font-weight: normal;
          line-height: 22px;
          padding: 15px 30px;
          transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
          width: auto;
          display: flex;
          align-items: center;
          justify-content: space-between;
          text-align: left;
        /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
          &:after {
            transform: translateY(2px) rotate(-45deg);
          }
      
          &:hover,
          &:focus {
      
            &:after {
              transform: rotate(0);
            }
          }
        }*/
          background-color: transparent;
          border-color: #0C3984;
          color: #0C3984;
          font-size: 19px;
          border: none;
          font-weight: bold;
          justify-content: flex-start;
          padding: 0; }
          @media (max-width: 499px) {
            body .megamenus .services .alignwide .wp-block-rows-column h2 a,
            body .megamenus .services .alignwide .wp-block-rows-column h3 a {
              text-align: center;
              width: 100%; } }
          body .megamenus .services .alignwide .wp-block-rows-column h2 a:hover, body .megamenus .services .alignwide .wp-block-rows-column h2 a:focus,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:hover,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:focus {
            background: #01173A; }
          body .megamenus .services .alignwide .wp-block-rows-column h2 a:after,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:after {
            content: "\f178";
            display: inline-block;
            font-family: 'Font Awesome 5 Pro';
            font-size: 22px;
            font-weight: 200;
            padding-bottom: 2px;
            padding-left: 8px;
            position: static;
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            transform: translateX(0px);
            transition: transform 0.2s, color 0.2s;
            vertical-align: top; }
          @media (max-width: 499px) {
            body .megamenus .services .alignwide .wp-block-rows-column h2 a,
            body .megamenus .services .alignwide .wp-block-rows-column h3 a {
              text-align: left !important; }
              body .megamenus .services .alignwide .wp-block-rows-column h2 a:after,
              body .megamenus .services .alignwide .wp-block-rows-column h3 a:after {
                float: right; } }
          body .megamenus .services .alignwide .wp-block-rows-column h2 a:hover:after, body .megamenus .services .alignwide .wp-block-rows-column h2 a:focus:after,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:hover:after,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:focus:after {
            transform: translateX(5px); }
          body .megamenus .services .alignwide .wp-block-rows-column h2 a:hover, body .megamenus .services .alignwide .wp-block-rows-column h2 a:focus,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:hover,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:focus {
            background-color: transparent;
            border-color: #01173A;
            color: #01173A; }
          @media screen and (min-width: 768px) {
            body .megamenus .services .alignwide .wp-block-rows-column h2 a,
            body .megamenus .services .alignwide .wp-block-rows-column h3 a {
              font-size: 20px; } }
          body .megamenus .services .alignwide .wp-block-rows-column h2 a:after,
          body .megamenus .services .alignwide .wp-block-rows-column h3 a:after {
            color: #01A8F1;
            padding-left: 20px; }
          @media (max-width: 599px) {
            body .megamenus .services .alignwide .wp-block-rows-column h2 a,
            body .megamenus .services .alignwide .wp-block-rows-column h3 a {
              display: block; }
              body .megamenus .services .alignwide .wp-block-rows-column h2 a:after,
              body .megamenus .services .alignwide .wp-block-rows-column h3 a:after {
                float: right; } }
      body .megamenus .services .alignwide .wp-block-rows-column .excerpt {
        margin: 15px 0; }
      body .megamenus .services .alignwide .wp-block-rows-column ul {
        list-style: none;
        margin: 0;
        padding-top: 5px; }
        body .megamenus .services .alignwide .wp-block-rows-column ul li {
          border-top: solid 1px rgba(1, 168, 241, 0.35);
          margin: 0;
          padding: 14px 0; }
          body .megamenus .services .alignwide .wp-block-rows-column ul li:last-child {
            border-bottom: solid 1px rgba(1, 168, 241, 0.35); }
          body .megamenus .services .alignwide .wp-block-rows-column ul li:before {
            display: none; }
          body .megamenus .services .alignwide .wp-block-rows-column ul li a {
            border-bottom: solid 1px transparent;
            padding-bottom: 4px;
            font-weight: normal;
            padding: 4px 0; }
            body .megamenus .services .alignwide .wp-block-rows-column ul li a:hover, body .megamenus .services .alignwide .wp-block-rows-column ul li a:focus {
              border-color: #01A8F1; }
      @media (max-width: 599px) {
        body .megamenus .services .alignwide .wp-block-rows-column .wp-block-image {
          margin-bottom: 0; }
        body .megamenus .services .alignwide .wp-block-rows-column h3 {
          margin-top: 0; }
        body .megamenus .services .alignwide .wp-block-rows-column p,
        body .megamenus .services .alignwide .wp-block-rows-column ul {
          display: none; } }
      body .megamenus .services .alignwide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 162px);
        max-height: 550px;
        min-height: 460px;
        padding-bottom: 50px;
        padding-top: 40px; }
        body .megamenus .services .alignwide .kt-row-layout-inner {
          width: calc(100% - 15px); }
        body .megamenus .services .alignwide .wp-block-rows-column {
          display: block;
          height: auto;
          min-height: 0;
          max-height: none;
          padding: 0 15px; }
          body .megamenus .services .alignwide .wp-block-rows-column a {
            color: #fff !important; }
          body .megamenus .services .alignwide .wp-block-rows-column h2 {
            margin-bottom: 0; }
          body .megamenus .services .alignwide .wp-block-rows-column ul {
            padding-top: 0; }
    body .megamenus .our-team {
      background-color: #ECF8FE; }
      body .megamenus .our-team .alignwide .our-team-left {
        background-color: #0C3984;
        margin-left: -2000px;
        padding: 30px 30px 30px 2030px; }
        @media (max-width: 1239px) {
          body .megamenus .our-team .alignwide .our-team-left {
            margin-left: 0;
            padding: 30px; } }
        body .megamenus .our-team .alignwide .our-team-left h2,
        body .megamenus .our-team .alignwide .our-team-left p {
          color: #fff; }
        body .megamenus .our-team .alignwide .our-team-left h2 {
          margin-bottom: 30px; }
        body .megamenus .our-team .alignwide .our-team-left .wp-block-buttons {
          margin-top: 30px; }
          body .megamenus .our-team .alignwide .our-team-left .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(:hover):not(:focus) {
            background-color: #fff; }
      body .megamenus .our-team .alignwide .our-team-right {
        align-items: center; }
        body .megamenus .our-team .alignwide .our-team-right .kt-inside-inner-col {
          max-width: 562px; }
        body .megamenus .our-team .alignwide .our-team-right h2 {
          border-bottom: solid 1px #01A8F1;
          color: #0C3984;
          font-family: 'Mint Grotesk', sans-serif;
          font-size: 14px;
          margin-bottom: 10px;
          margin-top: 20px;
          padding-bottom: 15px; }
        body .megamenus .our-team .alignwide .our-team-right .team {
          display: flex;
          flex-wrap: wrap;
          margin-left: -15px;
          margin-right: -15px; }
          @media (min-width: 1240px) {
            body .megamenus .our-team .alignwide .our-team-right .team {
              padding-top: 15px; } }
          body .megamenus .our-team .alignwide .our-team-right .team .team-item {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 20px; }
            body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 {
              font-size: 19px;
              font-family: 'Mint Grotesk', sans-serif;
              margin-bottom: 10px; }
              @media screen and (min-width: 768px) {
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 {
                  font-size: 20px; } }
              body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a {
                background-color: #0C3984;
                border: solid 1px transparent;
                border-radius: 40px;
                color: #fff;
                display: inline-block;
                font-size: 16px;
                font-weight: normal;
                line-height: 22px;
                padding: 15px 30px;
                transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
                width: auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                text-align: left;
              /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
                &:after {
                  transform: translateY(2px) rotate(-45deg);
                }
            
                &:hover,
                &:focus {
            
                  &:after {
                    transform: rotate(0);
                  }
                }
              }*/
                background-color: transparent;
                border-color: #0C3984;
                color: #0C3984;
                font-size: 19px;
                border: none;
                font-weight: bold;
                justify-content: flex-start;
                padding: 0; }
                @media (max-width: 499px) {
                  body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a {
                    text-align: center;
                    width: 100%; } }
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:hover, body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:focus {
                  background: #01173A; }
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:after {
                  content: "\f178";
                  display: inline-block;
                  font-family: 'Font Awesome 5 Pro';
                  font-size: 22px;
                  font-weight: 200;
                  padding-bottom: 2px;
                  padding-left: 8px;
                  position: static;
                  -webkit-transform: none;
                  -moz-transform: none;
                  -ms-transform: none;
                  transform: translateX(0px);
                  transition: transform 0.2s, color 0.2s;
                  vertical-align: top; }
                @media (max-width: 499px) {
                  body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a {
                    text-align: left !important; }
                    body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:after {
                      float: right; } }
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:hover:after, body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:focus:after {
                  transform: translateX(5px); }
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:hover, body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:focus {
                  background-color: transparent;
                  border-color: #01173A;
                  color: #01173A; }
                @media screen and (min-width: 768px) {
                  body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a {
                    font-size: 20px; } }
                body .megamenus .our-team .alignwide .our-team-right .team .team-item h3 a:after {
                  color: #01A8F1;
                  padding-left: 20px; }
    body .megamenus .practice-locations {
      background-color: #ECF8FE; }
      body .megamenus .practice-locations .our-locations {
        background-color: #0C3984;
        margin-left: -2000px;
        padding: 30px 30px 30px 2030px; }
        @media (max-width: 1239px) {
          body .megamenus .practice-locations .our-locations {
            margin-left: 0;
            padding: 30px; } }
        body .megamenus .practice-locations .our-locations h2,
        body .megamenus .practice-locations .our-locations p {
          color: #fff; }
        body .megamenus .practice-locations .our-locations h2 {
          margin-bottom: 30px; }
        body .megamenus .practice-locations .our-locations .wp-block-buttons {
          margin-top: 30px; }
          body .megamenus .practice-locations .our-locations .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(:hover):not(:focus) {
            background-color: #fff; }
      body .megamenus .practice-locations .actual-locations {
        align-items: center; }
        body .megamenus .practice-locations .actual-locations .kt-inside-inner-col {
          max-width: 562px; }
        body .megamenus .practice-locations .actual-locations .regions .region {
          margin-top: 20px; }
          body .megamenus .practice-locations .actual-locations .regions .region h2 {
            border-bottom: solid 1px #01A8F1;
            color: #0C3984;
            font-family: 'Mint Grotesk', sans-serif;
            font-size: 14px;
            margin-bottom: 10px;
            padding-bottom: 15px; }
          body .megamenus .practice-locations .actual-locations .regions .region .locations {
            display: flex;
            flex-wrap: wrap;
            margin-left: -8px;
            margin-right: -8px;
            padding: 10px 0 0; }
            body .megamenus .practice-locations .actual-locations .regions .region .locations .location {
              flex: 0 0 33.3%;
              max-width: 33.3%;
              padding: 8px;
              white-space: nowrap; }
              body .megamenus .practice-locations .actual-locations .regions .region .locations .location a {
                border: none;
                padding: 0; }
              body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text {
                background-color: #0C3984;
                border: solid 1px transparent;
                border-radius: 40px;
                color: #fff;
                display: inline-block;
                font-size: 16px;
                font-weight: normal;
                line-height: 22px;
                padding: 15px 30px;
                transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
                width: auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                text-align: left;
              /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
                &:after {
                  transform: translateY(2px) rotate(-45deg);
                }
            
                &:hover,
                &:focus {
            
                  &:after {
                    transform: rotate(0);
                  }
                }
              }*/
                background-color: transparent;
                border-color: #0C3984;
                color: #0C3984;
                border: none;
                display: inline-block;
                font-weight: normal;
                padding: 0; }
                @media (max-width: 499px) {
                  body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text {
                    text-align: center;
                    width: 100%; } }
                body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:hover, body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:focus {
                  background: #01173A; }
                body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:after {
                  content: "\f178";
                  display: inline-block;
                  font-family: 'Font Awesome 5 Pro';
                  font-size: 22px;
                  font-weight: 200;
                  padding-bottom: 2px;
                  padding-left: 8px;
                  position: static;
                  -webkit-transform: none;
                  -moz-transform: none;
                  -ms-transform: none;
                  transform: translateX(0px);
                  transition: transform 0.2s, color 0.2s;
                  vertical-align: top; }
                @media (max-width: 499px) {
                  body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text {
                    text-align: left !important; }
                    body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:after {
                      float: right; } }
                body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:hover:after, body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:focus:after {
                  transform: translateX(5px); }
                body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:hover, body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:focus {
                  background-color: transparent;
                  border-color: #01173A;
                  color: #01173A; }
                body .megamenus .practice-locations .actual-locations .regions .region .locations .location .text:after {
                  color: #01A8F1;
                  padding-left: 8px;
                  transform: translateX(0px) !important; }
              body .megamenus .practice-locations .actual-locations .regions .region .locations .location a:hover .text:after {
                transform: translateX(5px) !important; }
          body .megamenus .practice-locations .actual-locations .regions .region.south {
            margin-top: 40px; }
            body .megamenus .practice-locations .actual-locations .regions .region.south .locations {
              padding-bottom: 0; }
    body .megamenus .support-for {
      background-color: #ECF8FE; }
      body .megamenus .support-for .support-for-text {
        background-color: #0C3984;
        margin-left: -2000px;
        padding: 30px 30px 30px 2030px; }
        @media (max-width: 1239px) {
          body .megamenus .support-for .support-for-text {
            margin-left: 0;
            padding: 30px; } }
        body .megamenus .support-for .support-for-text h2,
        body .megamenus .support-for .support-for-text p {
          color: #fff; }
        body .megamenus .support-for .support-for-text h2 {
          margin-bottom: 30px; }
        body .megamenus .support-for .support-for-text .wp-block-buttons {
          margin-top: 30px; }
          body .megamenus .support-for .support-for-text .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(:hover):not(:focus) {
            background-color: #fff; }
      body .megamenus .support-for .support-for-items {
        align-items: center; }
        body .megamenus .support-for .support-for-items .kt-inside-inner-col {
          max-width: 562px; }
        body .megamenus .support-for .support-for-items h2 {
          border-bottom: solid 1px #01A8F1;
          color: #0C3984;
          font-family: 'Mint Grotesk', sans-serif;
          font-size: 14px;
          margin-bottom: 10px;
          margin-top: 20px;
          padding-bottom: 15px; }
        body .megamenus .support-for .support-for-items .support-items {
          display: flex;
          flex-wrap: wrap;
          margin-left: -8px;
          margin-right: -8px;
          padding: 10px 0 0; }
          body .megamenus .support-for .support-for-items .support-items .item {
            flex: 0 0 33.3%;
            max-width: 33.3%;
            padding: 8px;
            white-space: nowrap; }
            body .megamenus .support-for .support-for-items .support-items .item a {
              border: none;
              padding: 0; }
            body .megamenus .support-for .support-for-items .support-items .item .text {
              background-color: #0C3984;
              border: solid 1px transparent;
              border-radius: 40px;
              color: #fff;
              display: inline-block;
              font-size: 16px;
              font-weight: normal;
              line-height: 22px;
              padding: 15px 30px;
              transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
              width: auto;
              display: flex;
              align-items: center;
              justify-content: space-between;
              text-align: left;
            /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
              &:after {
                transform: translateY(2px) rotate(-45deg);
              }
          
              &:hover,
              &:focus {
          
                &:after {
                  transform: rotate(0);
                }
              }
            }*/
              background-color: transparent;
              border-color: #0C3984;
              color: #0C3984;
              border: none;
              display: inline-block;
              font-weight: normal;
              padding: 0; }
              @media (max-width: 499px) {
                body .megamenus .support-for .support-for-items .support-items .item .text {
                  text-align: center;
                  width: 100%; } }
              body .megamenus .support-for .support-for-items .support-items .item .text:hover, body .megamenus .support-for .support-for-items .support-items .item .text:focus {
                background: #01173A; }
              body .megamenus .support-for .support-for-items .support-items .item .text:after {
                content: "\f178";
                display: inline-block;
                font-family: 'Font Awesome 5 Pro';
                font-size: 22px;
                font-weight: 200;
                padding-bottom: 2px;
                padding-left: 8px;
                position: static;
                -webkit-transform: none;
                -moz-transform: none;
                -ms-transform: none;
                transform: translateX(0px);
                transition: transform 0.2s, color 0.2s;
                vertical-align: top; }
              @media (max-width: 499px) {
                body .megamenus .support-for .support-for-items .support-items .item .text {
                  text-align: left !important; }
                  body .megamenus .support-for .support-for-items .support-items .item .text:after {
                    float: right; } }
              body .megamenus .support-for .support-for-items .support-items .item .text:hover:after, body .megamenus .support-for .support-for-items .support-items .item .text:focus:after {
                transform: translateX(5px); }
              body .megamenus .support-for .support-for-items .support-items .item .text:hover, body .megamenus .support-for .support-for-items .support-items .item .text:focus {
                background-color: transparent;
                border-color: #01173A;
                color: #01173A; }
              body .megamenus .support-for .support-for-items .support-items .item .text:after {
                color: #01A8F1;
                padding-left: 8px;
                transform: translateX(0px) !important; }
              body .megamenus .support-for .support-for-items .support-items .item .text:after,
              body .megamenus .support-for .support-for-items .support-items .item .text .text-inner {
                float: left; }
              body .megamenus .support-for .support-for-items .support-items .item .text .text-inner {
                max-width: calc(100% - 28px);
                white-space: normal; }
            body .megamenus .support-for .support-for-items .support-items .item a:hover .text:after {
              transform: translateX(5px) !important; }
  body .mobile-menu-toggle {
    box-sizing: content-box;
    color: #fff;
    display: flex;
    align-items: center;
    float: right;
    height: 18px;
    padding: 10px 0 0; }
    @media (max-width: 768px) {
      body .mobile-menu-toggle {
        padding-top: 13px; } }
    @media (max-width: 429px) {
      body .mobile-menu-toggle {
        padding-top: 9px; } }
    body .mobile-menu-toggle #menu-toggle {
      outline: none !important; }
    body .mobile-menu-toggle .wp-block-buttons {
      margin-right: 20px;
      margin-top: 0; }
      body .mobile-menu-toggle .wp-block-buttons .wp-block-button:not(.is-style-outline) > .wp-block-button__link {
        padding: 10px 20px; }
    body .mobile-menu-toggle .hamburger,
    body .mobile-menu-toggle .hamburger.is-active {
      height: 38px;
      padding: 0;
      text-transform: uppercase;
      z-index: 222; }
      body .mobile-menu-toggle .hamburger .hamburger-box,
      body .mobile-menu-toggle .hamburger.is-active .hamburger-box {
        height: auto;
        width: auto; }
        @media (max-width: 1239px) {
          body .mobile-menu-toggle .hamburger .hamburger-box,
          body .mobile-menu-toggle .hamburger.is-active .hamburger-box {
            padding-left: 0;
            padding-top: 13px;
            width: 30px; } }
      body .mobile-menu-toggle .hamburger span.hamburger-text,
      body .mobile-menu-toggle .hamburger.is-active span.hamburger-text {
        display: none; }
      body .mobile-menu-toggle .hamburger .hamburger-inner,
      body .mobile-menu-toggle .hamburger .hamburger-inner:before,
      body .mobile-menu-toggle .hamburger .hamburger-inner:after,
      body .mobile-menu-toggle .hamburger.is-active .hamburger-inner,
      body .mobile-menu-toggle .hamburger.is-active .hamburger-inner:before,
      body .mobile-menu-toggle .hamburger.is-active .hamburger-inner:after {
        background-color: #0C3984;
        left: 0;
        height: 2px;
        width: 30px; }
      body .mobile-menu-toggle .hamburger .hamburger-inner,
      body .mobile-menu-toggle .hamburger.is-active .hamburger-inner {
        left: 0;
        top: 0; }
      body .mobile-menu-toggle .hamburger:hover, body .mobile-menu-toggle .hamburger:focus,
      body .mobile-menu-toggle .hamburger.is-active:hover,
      body .mobile-menu-toggle .hamburger.is-active:focus {
        opacity: 1; }
    body .mobile-menu-toggle .hamburger:not(.is-active) .hamburger-inner:before {
      top: 8px; }
    body .mobile-menu-toggle .hamburger:not(.is-active) .hamburger-inner:after {
      top: 16px; }
    body .mobile-menu-toggle .hamburger.is-active .hamburger-inner,
    body .mobile-menu-toggle .hamburger.is-active .hamburger-inner:before,
    body .mobile-menu-toggle .hamburger.is-active .hamburger-inner:after {
      width: 30px; }
    body .mobile-menu-toggle .hamburger.is-active .hamburger-inner {
      left: 4px;
      top: -2px; }
    body .mobile-menu-toggle .hamburger.is-active:before {
      background: none; }
    body .mobile-menu-toggle .hamburger.is-active .hamburger-inner:after {
      bottom: 0; }
  @media (max-width: 1239px) {
    body .megamenus {
      display: none !important; }
    body .site-header-top,
    body #desktop-extras {
      display: none !important; }
    body .site-header-covid {
      font-size: 12px;
      text-align: center; }
      body .site-header-covid .site-header-covid-inner {
        padding: 10px 30px; }
      body .site-header-covid img {
        padding-right: 10px;
        width: 16px; }
      body .site-header-covid a {
        margin-left: 10px; }
    body #page {
      overflow: hidden;
      padding-top: 0;
      width: 100vw; }
    body .site-header {
      background-color: #fff; }
      body .site-header .site-header-wrapper {
        display: block;
        overflow: auto;
        padding: 25px 30px; }
        body .site-header .site-header-wrapper .site-branding {
          float: left; }
          body .site-header .site-header-wrapper .site-branding svg {
            height: auto;
            width: 176px; }
        body .site-header .site-header-wrapper .site-menu .main-navigation ul.primary-menu {
          display: block; }
    body.sticky-header .site-header {
      position: fixed;
      -webkit-transition: all 250ms ease-in-out;
      -moz-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out;
      z-index: 999; }
    body.sticky-header.menu-active .site-header {
      z-index: 9999; }
    body.menu-active .mobile-top-menu {
      opacity: 0; }
    body .site-header-wrapper .site-menu {
      background: #ECF8FE;
      display: flex;
      flex-direction: column;
      opacity: 0;
      overflow: auto;
      padding-top: 0;
      position: fixed;
      bottom: 100%;
      left: 0;
      right: 0;
      top: 84px;
      transition: opacity 0.5s;
      -webkit-transition: opacity 0.5s;
      z-index: 22; }
      body .site-header-wrapper .site-menu.toggled-on {
        bottom: 0;
        opacity: 1; }
      body .site-header-wrapper .site-menu nav {
        overflow: visible;
        padding: 0;
        position: static;
        top: auto;
        width: 100%; }
        body .site-header-wrapper .site-menu nav#site-navigation {
          display: none; }
        body .site-header-wrapper .site-menu nav.mobile-navigation ul {
          background: none;
          display: block; }
          body .site-header-wrapper .site-menu nav.mobile-navigation ul.toggled-on {
            display: block; }
          body .site-header-wrapper .site-menu nav.mobile-navigation ul > li {
            border: none;
            border-bottom: solid 1px rgba(12, 57, 132, 0.1);
            margin: 0; }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.open, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.menu-item-has-children.toggled-on, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.current-menu-ancestor, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.current-menu-item {
              background-color: rgba(11, 84, 211, 0.05); }
              body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.open .dropdown-toggle.toggled-on, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.menu-item-has-children.toggled-on .dropdown-toggle.toggled-on, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.current-menu-ancestor .dropdown-toggle.toggled-on, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.current-menu-item .dropdown-toggle.toggled-on {
                transform: rotate(180deg); }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.menu-item-has-children.toggled-on .dropdown-toggle {
              transform: rotate(180deg); }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li.menu-item-has-children.toggled-on > ul.sub-menu {
              display: block; }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li > a {
              border: none;
              font-size: 20px;
              font-weight: normal;
              margin: 0;
              padding: 18px 24px; }
              body .site-header-wrapper .site-menu nav.mobile-navigation ul > li > a:hover, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li > a:focus {
                color: #01A8F1;
                text-decoration: none; }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul {
              border: none;
              display: none;
              float: none;
              margin: 0;
              padding: 12px 0;
              position: static;
              width: auto; }
              body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul.toggled-on {
                border-top: solid 1px rgba(12, 57, 132, 0.1);
                border-left: solid 2px #46CDFC;
                display: block; }
              body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul li {
                border: none;
                margin: 0; }
                body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul li a {
                  color: #0C3984;
                  font-size: 14px;
                  font-weight: normal;
                  padding: 12px 23px; }
                  body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul li a:hover, body .site-header-wrapper .site-menu nav.mobile-navigation ul > li ul li a:focus {
                    color: #01A8F1;
                    text-decoration: none; }
            body .site-header-wrapper .site-menu nav.mobile-navigation ul > li .dropdown-toggle {
              display: block;
              font-size: 21px;
              height: 1.5em;
              right: 30px;
              top: 20px;
              width: 30px;
              z-index: 22; }
              body .site-header-wrapper .site-menu nav.mobile-navigation ul > li .dropdown-toggle:before {
                color: #46CDFC;
                content: "\f0d7";
                font-family: 'Font Awesome 5 Pro';
                font-size: 16px;
                font-weight: bold; }
      body .site-header-wrapper .site-menu #mobile-extras {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 30px 20px; }
        body .site-header-wrapper .site-menu #mobile-extras > span {
          justify-content: center;
          padding: 0 0 30px;
          width: 100%; }
        body .site-header-wrapper .site-menu #mobile-extras .wp-block-buttons {
          display: flex;
          flex-wrap: wrap;
          justify-content: center; }
          body .site-header-wrapper .site-menu #mobile-extras .wp-block-buttons .wp-block-button {
            margin-bottom: 5px;
            margin-top: 5px; }
    body.menu-active .site-header .site-header-wrapper {
      height: 100vh;
      overflow: hidden; } }
  body.scrolling .site-header {
    -webkit-box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.06); }
    body.scrolling .site-header .site-header-covid {
      height: 0 !important;
      overflow: hidden; }
    body.scrolling .site-header .site-header-top {
      height: 37px; }
      body.scrolling .site-header .site-header-top .top-navigation ul li a {
        padding: 8px 0; }
      body.scrolling .site-header .site-header-top .top-navigation ul li ul.sub-menu {
        top: 35px; }
        body.scrolling .site-header .site-header-top .top-navigation ul li ul.sub-menu li a {
          padding: 0; }
    @media (max-width: 1239px) {
      body.scrolling .site-header .site-header-wrapper .site-menu {
        top: 84px !important; } }
  body .hentry-wrapper header {
    background-color: #0C3984;
    margin-left: calc( 50% - 50vw );
    max-width: none;
    position: relative;
    width: 100vw; }
    body .hentry-wrapper header .alignwide {
      display: flex;
      align-items: flex-end;
      padding-bottom: 0;
      padding-top: 0;
      position: relative; }
    body .hentry-wrapper header .header-content {
      padding: 40px 30px 50px 0;
      z-index: 2; }
      @media (max-width: 767px) {
        body .hentry-wrapper header .header-content {
          padding: 20px 30px 50px 0; } }
      @media (max-width: 499px) {
        body .hentry-wrapper header .header-content {
          padding-right: 0; } }
      body .hentry-wrapper header .header-content .breadcrumbs {
        padding-bottom: 30px; }
        @media (max-width: 499px) {
          body .hentry-wrapper header .header-content .breadcrumbs {
            display: none; } }
        body .hentry-wrapper header .header-content .breadcrumbs span,
        body .hentry-wrapper header .header-content .breadcrumbs a {
          color: #ECF8FE;
          font-weight: normal;
          padding-bottom: 0; }
        body .hentry-wrapper header .header-content .breadcrumbs > span {
          font-size: 14px; }
        body .hentry-wrapper header .header-content .breadcrumbs i {
          color: #46CDFC;
          opacity: 0.4;
          padding: 6px 20px 0;
          vertical-align: top; }
      body .hentry-wrapper header .header-content h1 {
        margin: 0; }
    body .hentry-wrapper header:not(.has-image) {
      margin-bottom: 100px;
      overflow: hidden; }
      @media (max-width: 767px) {
        body .hentry-wrapper header:not(.has-image) {
          margin-bottom: 60px; } }
      body .hentry-wrapper header:not(.has-image) .alignwide {
        height: 264px; }
        @media (max-width: 767px) {
          body .hentry-wrapper header:not(.has-image) .alignwide {
            height: 200px; } }
        body .hentry-wrapper header:not(.has-image) .alignwide:before {
          background: url("/wp-content/themes/thetheme/images/header-pattern-5.svg") no-repeat left center;
          content: "";
          display: block;
          position: absolute;
          bottom: 0;
          top: 0;
          left: 60%;
          width: 100vw; }
          @media (max-width: 767px) {
            body .hentry-wrapper header:not(.has-image) .alignwide:before {
              background-size: cover;
              width: 50vw; } }
      body .hentry-wrapper header:not(.has-image) .header-content {
        width: 70%; }
        @media (max-width: 767px) {
          body .hentry-wrapper header:not(.has-image) .header-content {
            width: 80%; } }
        @media (max-width: 599px) {
          body .hentry-wrapper header:not(.has-image) .header-content {
            width: 100%; } }
    body .hentry-wrapper header.has-image {
      height: auto;
      margin-bottom: 240px; }
      @media (max-width: 1239px) {
        body .hentry-wrapper header.has-image {
          margin-bottom: 180px; } }
      @media (max-width: 767px) {
        body .hentry-wrapper header.has-image {
          margin-bottom: 100px; } }
      @media (max-width: 767px) {
        body .hentry-wrapper header.has-image .alignwide {
          flex-direction: column; } }
      body .hentry-wrapper header.has-image .alignwide .header-content {
        padding: 60px 0 0;
        width: 100%; }
        @media (min-width: 768px) and (max-width: 1239px) {
          body .hentry-wrapper header.has-image .alignwide .header-content {
            padding-bottom: 60px; } }
        @media (min-width: 768px) {
          body .hentry-wrapper header.has-image .alignwide .header-content {
            padding: 60px 30px 100px 0;
            flex: 0 0 50%; } }
      @media (min-width: 768px) {
        body .hentry-wrapper header.has-image .alignwide .header-image {
          flex: 0 0 50%; } }
      body .hentry-wrapper header.has-image .alignwide .header-image img {
        border-bottom: solid 80px #46CDFC;
        transform: translateY(80px); }
        @media (max-width: 767px) {
          body .hentry-wrapper header.has-image .alignwide .header-image img {
            border-bottom: solid 40px #46CDFC;
            transform: translateY(40px); } }
  body.page-id-18 .hentry-wrapper header:not(.has-image), body.page-id-28 .hentry-wrapper header:not(.has-image), body.single-location .hentry-wrapper header:not(.has-image) {
    margin-bottom: 0; }
  body.page-id-18 #content {
    padding-top: 0; }
  @media (min-width: 768px) {
    body.page-id-18 .hentry-wrapper header:before {
      background-blend-mode: soft-light, soft-light, normal, normal;
      background-position: center;
      background-size: cover;
      content: "";
      height: 100%;
      padding-top: 180px;
      position: absolute;
      left: 50%;
      top: 0;
      width: 50%; } }
  body.page-id-18 .hentry-wrapper header .alignwide {
    height: auto;
    position: relative;
    z-index: 1; }
    @media (max-width: 1239px) {
      body.page-id-18 .hentry-wrapper header .alignwide {
        height: auto; } }
    body.page-id-18 .hentry-wrapper header .alignwide:before {
      display: none; }
    body.page-id-18 .hentry-wrapper header .alignwide .header-content {
      padding: 0;
      width: auto; }
      @media (min-width: 768px) {
        body.page-id-18 .hentry-wrapper header .alignwide .header-content {
          width: 50%; } }
      body.page-id-18 .hentry-wrapper header .alignwide .header-content .breadcrumbs a,
      body.page-id-18 .hentry-wrapper header .alignwide .header-content .breadcrumbs span {
        color: #01A8F1; }
      body.page-id-18 .hentry-wrapper header .alignwide .header-content .header-content-inner {
        background-color: #ECF8FE;
        color: #0C3984;
        margin-left: -2000px;
        padding: 100px 60px 60px 2000px; }
        @media (max-width: 1239px) {
          body.page-id-18 .hentry-wrapper header .alignwide .header-content .header-content-inner {
            margin-left: -30px;
            padding: 60px 60px 40px 30px; } }
        @media (max-width: 767px) {
          body.page-id-18 .hentry-wrapper header .alignwide .header-content .header-content-inner {
            margin-right: -30px;
            padding-right: 30px; } }
        body.page-id-18 .hentry-wrapper header .alignwide .header-content .header-content-inner h1 {
          color: #0C3984;
          font-weight: normal;
          margin-bottom: 20px; }
  body.page-id-135 .hentry-wrapper header:not(.has-image) .alignwide:before {
    background-image: url("/wp-content/themes/thetheme/images/header-pattern-4.svg");
    background-position: left 100px center; }
  body.page-id-20 .hentry-wrapper header:not(.has-image) .alignwide:before, body.single-team-member .hentry-wrapper header:not(.has-image) .alignwide:before {
    background-image: url("/wp-content/themes/thetheme/images/header-pattern-1.svg"); }
  body.page-id-26 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-49 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-52 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-54 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-56 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-58 .hentry-wrapper header:not(.has-image) .alignwide:before {
    background-image: url("/wp-content/themes/thetheme/images/header-pattern-2.svg"); }
  body.page-id-106 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-109 .hentry-wrapper header:not(.has-image) .alignwide:before, body.page-id-111 .hentry-wrapper header:not(.has-image) .alignwide:before {
    background-image: url("/wp-content/themes/thetheme/images/header-pattern-3.svg"); }

footer.entry-footer {
  display: none; }

.footer-wrapper a {
  color: #ECF8FE;
  font-weight: normal; }
.footer-wrapper > .hentry-wrapper > footer .insights-recent-block {
  margin-top: 0; }
.footer-wrapper .footer-contact {
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #0B54D3; }
  @media (max-width: 767px) {
    .footer-wrapper .footer-contact {
      padding-bottom: 60px;
      padding-top: 60px; } }
  .footer-wrapper .footer-contact p {
    max-width: 430px; }
  .footer-wrapper .footer-contact .call {
    color: #ECF8FE; }
    .footer-wrapper .footer-contact .call a {
      margin-left: 10px; }
  .footer-wrapper .footer-contact form input.button:not(:hover):not(:focus),
  .footer-wrapper .footer-contact form input[type="submit"]:not(:hover):not(:focus),
  .footer-wrapper .footer-contact form button:not(:hover):not(:focus),
  .footer-wrapper .footer-contact form button.button:not(:hover):not(:focus) {
    background-color: #fff;
    color: #0C3984; }
  .footer-wrapper .footer-contact .gform_wrapper {
    margin-top: -15px; }
    .footer-wrapper .footer-contact .gform_wrapper div.validation_error,
    .footer-wrapper .footer-contact .gform_wrapper ol.validation_list,
    .footer-wrapper .footer-contact .gform_wrapper ol.validation_list a,
    .footer-wrapper .footer-contact .gform_wrapper .field_description_below .gfield_description.validation_message {
      color: #fff !important; }
.footer-wrapper .footer-bottom {
  background-color: #01173A;
  font-size: 14px;
  padding-bottom: 80px;
  padding-top: 80px; }
  @media screen and (min-width: 768px) {
    .footer-wrapper .footer-bottom {
      font-size: 16px; } }
  @media (min-width: 767px) {
    .footer-wrapper .footer-bottom {
      padding-top: 60px;
      padding-bottom: 40px; } }
  .footer-wrapper .footer-bottom h2 {
    font-size: 19px;
    font-family: 'Mint Grotesk', sans-serif;
    margin-bottom: 30px; }
    @media screen and (min-width: 768px) {
      .footer-wrapper .footer-bottom h2 {
        font-size: 20px; } }
  .footer-wrapper .footer-bottom p {
    margin: 30px 0;
    max-width: 328px; }
  .footer-wrapper .footer-bottom a.site-logo,
  .footer-wrapper .footer-bottom a.ndis-logo {
    border: none !important; }
  .footer-wrapper .footer-bottom img {
    max-height: 58px; }
    @media (max-width: 499px) {
      .footer-wrapper .footer-bottom img {
        max-height: 36px; } }
  .footer-wrapper .footer-bottom .wp-block-button:not(.is-style-outline) > .wp-block-button__link,
  .footer-wrapper .footer-bottom .wp-block-button.is-style-outline > .wp-block-button__link {
    padding-bottom: 12px;
    padding-top: 12px; }
  .footer-wrapper .footer-bottom .footer-bottom-top .inner-column-3 {
    flex: 0 0 254px; }
  @media (max-width: 1069px) {
    .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap {
      flex-wrap: wrap; }
      .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap > .wp-block-rows-column {
        flex: 0 0 50%;
        margin: 0;
        width: auto; }
        .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap > .wp-block-rows-column:last-child {
          flex: 0 0 100%; }
          .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap > .wp-block-rows-column:last-child .kt-inside-inner-col {
            margin: 40px auto 0;
            max-width: 700px;
            text-align: center; } }
        @media (max-width: 1069px) and (max-width: 767px) {
          .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap > .wp-block-rows-column:last-child .kt-inside-inner-col {
            margin-top: 50px;
            text-align: left; } }

  @media (max-width: 767px) {
    .footer-wrapper .footer-bottom .footer-bottom-top .kt-row-column-wrap {
      padding: 0; } }
  .footer-wrapper .footer-bottom .footer-bottom-top .ndis-logo {
    margin-left: 20px; }
  .footer-wrapper .footer-bottom .footer-bottom-top a:not(.wp-block-button__link):not(.social-icon) {
    border-bottom: solid 1px transparent;
    padding-bottom: 4px; }
    .footer-wrapper .footer-bottom .footer-bottom-top a:not(.wp-block-button__link):not(.social-icon):hover, .footer-wrapper .footer-bottom .footer-bottom-top a:not(.wp-block-button__link):not(.social-icon):focus {
      border-color: #01A8F1; }
  .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details {
    list-style: none;
    margin: 0; }
    .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li {
      padding-left: 30px;
      position: relative; }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li:not(:last-child) {
        margin-bottom: 20px; }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li:before {
        background-position: left center;
        background-repeat: no-repeat;
        background-size: contain;
        content: "" !important;
        display: inline-block;
        height: 16px;
        margin-left: -30px;
        margin-right: 12px;
        margin-top: -6px;
        vertical-align: middle;
        width: 16px; }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li:first-child:before {
        background-image: url("/wp-content/themes/thetheme/images/icon-phone.svg"); }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li:nth-child(2):before {
        background-image: url("/wp-content/themes/thetheme/images/icon-fax.svg"); }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.contact-details li:last-child:before {
        background-image: url("/wp-content/themes/thetheme/images/icon-mail.svg"); }
  .footer-wrapper .footer-bottom .footer-bottom-top ul.locations {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0; }
    .footer-wrapper .footer-bottom .footer-bottom-top ul.locations li {
      display: inline; }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.locations li:after {
        background: url("/wp-content/themes/thetheme/images/footer-bullet.svg") center center no-repeat;
        content: " ";
        letter-spacing: 1em; }
      .footer-wrapper .footer-bottom .footer-bottom-top ul.locations li a {
        line-height: 1.8;
        white-space: nowrap; }
  @media (max-width: 767px) {
    .footer-wrapper .footer-bottom .footer-bottom-top .inner-column-3 .wp-block-image {
      text-align: left; } }
  .footer-wrapper .footer-bottom .footer-bottom-top .inner-column-3 .wp-block-image img {
    max-height: none;
    margin-bottom: 0;
    margin-top: 20px;
    width: 255px; }
  @media (min-width: 499px) {
    .footer-wrapper .footer-bottom .footer-bottom-top .wp-block-button:not(.is-style-outline):not(:last-child),
    .footer-wrapper .footer-bottom .footer-bottom-top .wp-block-button.is-style-outline:not(:last-child) {
      margin-right: 10px; } }
  @media (max-width: 1239px) {
    .footer-wrapper .footer-bottom .footer-bottom-bottom {
      padding-top: 30px; } }
  @media (max-width: 1069px) {
    .footer-wrapper .footer-bottom .footer-bottom-bottom .kt-row-column-wrap {
      padding: 0; } }
  .footer-wrapper .footer-bottom .footer-bottom-bottom .kt-inside-inner-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .footer-wrapper .footer-bottom .footer-bottom-bottom .kt-inside-inner-col {
        flex-direction: column; } }
  .footer-wrapper .footer-bottom .footer-bottom-bottom p {
    color: #46CDFC;
    font-size: 12px; }
    @media (min-width: 768px) {
      .footer-wrapper .footer-bottom .footer-bottom-bottom p:last-child {
        text-align: right; } }
    @media (max-width: 767px) {
      .footer-wrapper .footer-bottom .footer-bottom-bottom p {
        margin-bottom: 5px; }
        .footer-wrapper .footer-bottom .footer-bottom-bottom p:not(:first-of-type) {
          margin-top: 5px; } }
    .footer-wrapper .footer-bottom .footer-bottom-bottom p a {
      border-bottom: solid 1px transparent;
      padding-bottom: 4px;
      color: #46CDFC; }
      .footer-wrapper .footer-bottom .footer-bottom-bottom p a:hover, .footer-wrapper .footer-bottom .footer-bottom-bottom p a:focus {
        border-color: #01A8F1; }
.footer-wrapper .menu-footer-menu-container {
  width: 100%; }
  .footer-wrapper .menu-footer-menu-container .footer-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; }
    @media (min-width: 768px) and (max-width: 1069px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu {
        justify-content: center; } }
    @media (max-width: 767px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu {
        flex-wrap: wrap; } }
    @media (min-width: 1240px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu {
        margin-top: 60px; } }
    .footer-wrapper .menu-footer-menu-container .footer-menu li:not(:last-child) {
      margin-right: 30px; }
    .footer-wrapper .menu-footer-menu-container .footer-menu li:not(.staff-login) a {
      border-bottom: solid 1px transparent;
      padding-bottom: 4px; }
      .footer-wrapper .menu-footer-menu-container .footer-menu li:not(.staff-login) a:hover, .footer-wrapper .menu-footer-menu-container .footer-menu li:not(.staff-login) a:focus {
        border-color: #01A8F1; }
    @media (max-width: 1069px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu li:not(:nth-last-child(-n+3)) {
        display: none; } }
    @media (max-width: 1069px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu li {
        order: 1; } }
    @media (max-width: 767px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu li a {
        white-space: nowrap; } }
    @media (max-width: 1069px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login {
        margin-left: 30px;
        order: 2; } }
    @media (max-width: 767px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login {
        flex: 0 0 100%;
        margin: 30px 0 0 !important; } }
    .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a {
      background-color: #0C3984;
      border: solid 1px transparent;
      border-radius: 40px;
      color: #fff;
      display: inline-block;
      font-size: 16px;
      font-weight: normal;
      line-height: 22px;
      padding: 15px 30px;
      transition: border-color 0.2s, background-color 0.2s, color 0.2s, line-height 0.2s;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
    /*&:not([href^="http://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.com.au"]):not([href^="https://clearhealthpsychology.duxdigital.net/"]):not([href^="/"]):not([href^="#"]) {
      &:after {
        transform: translateY(2px) rotate(-45deg);
      }
  
      &:hover,
      &:focus {
  
        &:after {
          transform: rotate(0);
        }
      }
    }*/
      background-color: transparent;
      border-color: #0C3984;
      color: #0C3984;
      border-color: #fff;
      color: #fff;
      font-size: 14px;
      /*&:after {
        transform: translateY(2px) rotate(-45deg);
      }*/ }
      @media (max-width: 499px) {
        .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a {
          text-align: center;
          width: 100%; } }
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:hover, .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:focus {
        background: #01173A; }
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:after {
        content: "\f178";
        display: inline-block;
        font-family: 'Font Awesome 5 Pro';
        font-size: 22px;
        font-weight: 200;
        padding-bottom: 2px;
        padding-left: 8px;
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: translateX(0px);
        transition: transform 0.2s, color 0.2s;
        vertical-align: top; }
      @media (max-width: 499px) {
        .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a {
          text-align: left !important; }
          .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:after {
            float: right; } }
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:hover:after, .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:focus:after {
        transform: translateX(5px); }
      .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:hover, .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:focus {
        background-color: transparent;
        border-color: #01173A;
        color: #01173A; }
      @media screen and (min-width: 768px) {
        .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a {
          font-size: 16px; } }
    .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:hover,
    .footer-wrapper .menu-footer-menu-container .footer-menu .staff-login a:focus {
      border-color: #ECF8FE;
      color: #fff;
      /*&:after {
        transform: rotate(0);
      }*/ }
    @media (min-width: 1070px) {
      .footer-wrapper .menu-footer-menu-container .footer-menu .terms {
        margin-left: auto; } }
.footer-wrapper .flags_section {
  border-top: 1px solid rgba(1, 168, 241, 0.35);
  border-bottom: 1px solid rgba(1, 168, 241, 0.35);
  margin-top: 60px; }
  @media (max-width: 767px) {
    .footer-wrapper .flags_section {
      padding-bottom: 25px; }
      .footer-wrapper .flags_section .wp-block-rows-column {
        margin-bottom: 0px; } }
  .footer-wrapper .flags_section .wp-block-rows-rowlayout .kt-inside-inner-col .wp-block-image {
    margin-bottom: 0; }
    .footer-wrapper .flags_section .wp-block-rows-rowlayout .kt-inside-inner-col .wp-block-image img {
      max-height: 52px;
      height: 40px;
      max-width: 40px;
      display: block;
      margin-top: 25px; }
  .footer-wrapper .flags_section .wp-block-rows-rowlayout .kt-inside-inner-col p {
    max-width: 428px;
    font-size: 14px; }
    @media (max-width: 767px) {
      .footer-wrapper .flags_section .wp-block-rows-rowlayout .kt-inside-inner-col p {
        margin-top: 10px !important;
        margin-bottom: 8px !important; } }
  .footer-wrapper .flags_section .left-flags .wp-block-rows-column {
    margin-bottom: 0; }
  .footer-wrapper .flags_section .left-flags .inner-column-2 .wp-block-image img {
    margin-top: 0px; }
  @media (max-width: 767px) {
    .footer-wrapper .flags_section .left-flags .kt-row-column-wrap {
      flex-direction: row;
      justify-content: flex-start;
      gap: 10px; }
      .footer-wrapper .flags_section .left-flags .kt-row-column-wrap .wp-block-rows-column {
        max-width: none;
        width: auto !important; }
    .footer-wrapper .flags_section .left-flags .inner-column-2 .wp-block-image img {
      margin-top: 25px; } }
.footer-wrapper .footer-right-links a {
  display: inline-block; }
  .footer-wrapper .footer-right-links a:first-of-type {
    padding-right: 10px; }
  .footer-wrapper .footer-right-links a:last-of-type {
    padding-left: 10px; }

/*# sourceMappingURL=common-styles.css.map */
