/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
/* Usage Example
.selector {
  color: red;

  @include breakpoint('small') {
    color: blue;
  }
}
*/
body {
  font-family: "roboto", sans-serif;
  color: #02142D;
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1280px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 1080px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 797px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 580px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "freight-display-pro", serif;
  color: #012E6A;
  line-height: 1.1em;
  margin: 0 0 1.5rem 0;
}

h1 {
  font-size: 3.8em;
}

h2 {
  font-size: 3.2em;
}

h3 {
  font-size: 2.6em;
}

h4 {
  font-size: 2.2em;
}

h5 {
  font-size: 1.8em;
}

h6 {
  font-size: 1.4em;
}

/* ------------------------ Loader Styles */
.loading-animation {
  color: #345D9D;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.skip-link:focus {
  position: static;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #345D9D;
  padding: 10px;
  opacity: 1;
  z-index: 1000;
  transition: none;
}

div {
  box-sizing: border-box;
  max-width: 100%;
  position: relative;
}

body {
  overflow-x: hidden;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

p {
  margin-bottom: 1.5rem;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a[class] {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: #345D9D auto 1px;
}

.hidden {
  display: none !important;
}

/* Button Styles */
.default-btn {
  font-size: 1em;
  font-weight: 400;
  color: #02142D !important;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1.5em;
  text-align: center;
  display: flex;
  margin: 0 0.3em;
  border: none;
  background: #9ED56A;
  min-height: 3em;
  min-width: 110px;
  transition: color 0.3s ease-in, background-color 0.3s ease-in;
  cursor: pointer;
}
@media (max-width: 580px) {
  .default-btn {
    width: 100% !important;
    margin: 0;
  }
}
.default-btn:hover, .default-btn:active, .default-btn:focus {
  background: #B5E18B;
}
.default-btn img {
  width: 13px !important;
  height: 13px !important;
  margin-left: 0.6em;
  pointer-events: none;
}

.secondary-btn {
  font-size: 1em;
  font-weight: 400;
  color: #ffffff !important;
  border-radius: 100em;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1.25em;
  display: flex;
  margin: 0 0.3em;
  background: #345D9D;
}
.secondary-btn:hover, .secondary-btn:active, .secondary-btn:focus {
  background: #012E6A;
}
@media (max-width: 580px) {
  .secondary-btn {
    width: 100% !important;
    margin: 0;
    justify-content: space-between !important;
  }
}

.outline-btn {
  font-size: 1em;
  font-weight: 400;
  color: #345D9D !important;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1.5em;
  text-align: center;
  display: flex;
  margin: 0 0.3em;
  border: 3px solid #345D9D;
  background: transparent;
  min-height: 3em;
  min-width: 110px;
  transition: color 0.3s ease-in, background-color 0.3s ease-in, border-color 0.3s ease-in;
  cursor: pointer;
}
@media (max-width: 580px) {
  .outline-btn {
    width: 100% !important;
    margin: 0;
  }
}
.outline-btn--white {
  border-color: #ffffff;
  color: #ffffff !important;
}
.outline-btn--white:hover, .outline-btn--white:active, .outline-btn--white:focus {
  background-color: #ffffff;
  color: #02142D !important;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
header.site-header {
  position: sticky;
  top: 1em;
  width: 100%;
  background: transparent;
  margin-bottom: -5.4em;
  z-index: 999999;
}
header.site-header .nav-main {
  width: 100%;
  border-radius: 100em;
  background: #ffffff;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
  margin-top: 1em;
}
header.site-header .nav-main__container {
  width: 88%;
  max-width: 1440px;
  margin: auto;
}
header.site-header .nav-main__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  padding: 0.4em 1em;
}
header.site-header .nav-main__logo .site-banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header.site-header .nav-main__logo .site-banner__logo {
  width: 100%;
  max-width: 14em;
  height: auto;
}
header.site-header .nav-main__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
@media (max-width: 1280px) {
  header.site-header .nav-main__menu {
    display: none;
  }
}
header.site-header .nav-main__menu .nav-menu {
  margin: 0px !important;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
header.site-header .nav-main__menu .nav-menu li.menu-item {
  position: relative;
}
header.site-header .nav-main__menu .nav-menu li.menu-item a {
  text-decoration: none;
  color: #02142D;
  transition: 0.3s ease-in;
}
header.site-header .nav-main__menu .nav-menu li.menu-item a:hover {
  color: #9ED56A;
}
header.site-header .nav-main__menu .nav-menu li.menu-item.active > a {
  color: #9ED56A;
}
header.site-header .nav-main__mobile {
  display: none;
}
@media (max-width: 1280px) {
  header.site-header .nav-main__mobile {
    display: block;
  }
}
header.site-header .nav-main__mobile .mobile-menu__search .search-form {
  margin-bottom: 1em;
}
header.site-header .nav-main__mobile .mobile-menu__search .search-form .search-field {
  max-width: inherit;
  color: #02142D;
  background-color: #E9E4DB;
  border-color: #345D9D;
}
header.site-header .nav-main__mobile .mobile-menu__search .search-form .search-field:hover {
  border-color: #9ED56A;
}
header.site-header .nav-main__mobile .mobile-menu__search .search-form .search-field:focus, header.site-header .nav-main__mobile .mobile-menu__search .search-form .search-field:active {
  border-color: #02142D;
}
header.site-header .nav-main .search-form .fa-search {
  width: 2em;
  height: 2em;
  background: #ffffff;
  border-radius: 100em;
  position: absolute;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.3em;
  margin-top: 0.3em;
}
header.site-header .nav-main .search-form .search-field {
  background: #012E6A;
  border-radius: 100em;
  border: 2px solid #012E6A;
  padding: 0.5em 0.8em 0.5em 2.5em;
  line-height: 1.3em;
  color: #ffffff;
  width: 100%;
  max-width: 13em;
  transition: 0.3s ease-in;
}
header.site-header .nav-main .search-form .search-field:hover {
  border-color: #9ED56A;
}
header.site-header .nav-main .search-form .search-field:focus, header.site-header .nav-main .search-form .search-field:active {
  border-color: #345D9D;
}

#desktop-main-nav .nav-menu {
  margin-bottom: 0px !important;
  width: auto;
}
#desktop-main-nav .nav-menu li {
  padding: 1.1em 0 2.1em;
  margin-bottom: -1em;
}
#desktop-main-nav .nav-menu li:hover .sub-menu,
#desktop-main-nav .nav-menu li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
  top: 3em !important;
  background: #ffffff;
  pointer-events: all;
}
#desktop-main-nav .nav-menu .sub-menu {
  visibility: hidden;
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: ease-in 0.3s;
  width: 15em;
  top: 3em !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex !important;
  flex-direction: column !important;
  border-radius: 0.35em;
  gap: 0;
}
#desktop-main-nav .nav-menu .sub-menu:hover {
  visibility: visible;
  opacity: 1;
  transform: none;
  background: #ffffff;
  pointer-events: all;
}
#desktop-main-nav .nav-menu .sub-menu li {
  width: 100%;
  padding: 0px;
  margin-bottom: 0px;
  position: relative;
}
#desktop-main-nav .nav-menu .sub-menu li:hover a {
  background: #9ED56A !important;
}
#desktop-main-nav .nav-menu .sub-menu li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
  top: 0 !important;
  background: #ffffff;
  pointer-events: all;
}
#desktop-main-nav .nav-menu .sub-menu li:first-child a {
  border-radius: 0.35em 0.35em 0 0;
}
#desktop-main-nav .nav-menu .sub-menu li:last-child a {
  border-radius: 0 0 0.35em 0.35em;
}
#desktop-main-nav .nav-menu .sub-menu li a {
  display: block;
  width: 100%;
  padding: 0.5em 0.75em;
  color: #02142D !important;
  transition: ease-in 0.3s;
  font-size: 0.9em;
}
#desktop-main-nav .nav-menu .sub-menu li .sub-menu {
  visibility: hidden;
  top: 0 !important;
  left: 100%;
  opacity: 0;
  border-radius: 0;
}
#desktop-main-nav .nav-menu .sub-menu li .sub-menu:hover {
  visibility: visible;
  opacity: 1;
  transform: none;
  background: #ffffff;
  pointer-events: all;
}
#desktop-main-nav .nav-menu .sub-menu li .sub-menu li a {
  background-color: #ffffff !important;
  border-radius: 0 !important;
}
#desktop-main-nav .nav-menu .sub-menu li .sub-menu li a:hover {
  background: #9ED56A !important;
}

.nav-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0px !important;
}
@media (max-width: 1280px) {
  .nav-list .nav-items a {
    font-size: 0.9em !important;
  }
}

.mobilenav-trigger {
  position: relative;
  height: 44px;
  width: 44px;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  text-indent: 100%;
  display: flex;
  background: #ffffff !important;
  border-radius: 0.35em;
  border: 2px solid #345D9D;
  transition: 0.3s ease-in;
}

.mobilenav-trigger span,
.mobilenav-trigger span::before,
.mobilenav-trigger span::after {
  position: absolute;
  height: 2px;
  width: 25px;
  background: #345D9D;
  transition: 0.3s ease-in;
}

.mobilenav-trigger span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

.mobilenav-trigger span::before,
.mobilenav-trigger span::after {
  content: "";
  top: 0;
  left: 0;
  transition: background 0.3s, transform 0.3s;
}

.mobilenav-trigger span::before {
  transform: translateY(-6px);
}

.mobilenav-trigger span::after {
  transform: translateY(6px);
}

.mobilenav-trigger:hover span,
.mobilenav-trigger:hover span::before,
.mobilenav-trigger:hover span::after {
  background: #02142D;
}

.mobilenav-trigger:hover {
  border-color: #9ED56A;
  background: #9ED56A !important;
}

.nav-open .mobilenav-trigger span {
  background: transparent;
}

.nav-open .mobilenav-trigger span::before,
.nav-open .mobilenav-trigger span::after {
  background: #02142D;
}

.nav-open .mobilenav-trigger span::before {
  transform: rotate(-45deg);
}

.nav-open .mobilenav-trigger span::after {
  transform: rotate(45deg);
}

.mobile-menu__overlay {
  position: fixed;
  z-index: 2222;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.nav-open .mobile-menu__overlay {
  opacity: 0.6;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  z-index: 3333;
  top: 0;
  right: 0;
  height: 100%;
  width: 90%;
  max-width: 26em;
  padding: 2em 1em;
  background: #ffffff;
  overflow: auto;
  transform: translateZ(0);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
}
.mobile-menu__logo {
  padding: 0rem;
  display: block;
}
.mobile-menu__logo img {
  padding-bottom: 1em;
  max-width: 14em;
}
.mobile-menu ul.nav-menu {
  font-weight: 400;
  overflow: hidden;
}
.mobile-menu ul.nav-menu li {
  position: relative;
}
.mobile-menu ul.nav-menu li.menu-item-has-children {
  overflow: hidden !important;
}
.mobile-menu ul.nav-menu li.menu-item-has-children:before {
  display: block;
  content: "";
  position: absolute;
  right: 12px;
  top: 16px;
  padding: 0.2em;
  cursor: pointer;
  border-bottom: 2px solid #345D9D;
  border-right: 2px solid #345D9D;
  margin-top: -4px;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
}
.mobile-menu ul.nav-menu li a {
  padding: 0.4em 0;
  text-decoration: none;
  color: #345D9D;
  transition: ease-in 0.3s;
  width: 100%;
  display: block;
}
.mobile-menu ul.nav-menu li a:hover, .mobile-menu ul.nav-menu li a:active, .mobile-menu ul.nav-menu li a:focus {
  color: #02142D;
}
.mobile-menu ul.nav-menu li ul.sub-menu {
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 0;
  overflow: hidden;
  max-height: 0 !important;
  transition: max-height 0.5s ease-in-out;
}
.mobile-menu ul.nav-menu li ul.sub-menu.drop-menu {
  max-height: 500px !important;
  transition: max-height 0.5s ease-in-out;
}
.mobile-menu ul.nav-menu li ul.sub-menu li a {
  padding-left: 1em;
}
.mobile-menu ul.nav-menu li ul.sub-menu li ul.sub-menu li a {
  color: #02142D;
  padding-left: 2.2em;
  font-size: 1.1em;
}

.nav-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu .nav-list {
  list-style: none;
  padding: 1em 0;
  display: block;
}

.mobile-menu .nav-list a {
  display: block;
  padding: 0.2em 0;
  font-weight: 300;
  font-size: 1.3em !important;
  text-decoration: none;
  color: #02142D;
  transform: translateZ(0);
}
.mobile-menu .nav-list a:hover, .mobile-menu .nav-list a:active {
  color: #9ED56A;
}

.nav-open .mobile-menu .nav-list a {
  animation: slide-in 0.4s 0.2s backwards;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(2) a {
  animation-delay: 0.3s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(3) a {
  animation-delay: 0.4s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(4) a {
  animation-delay: 0.5s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(5) a {
  animation-delay: 0.6s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(6) a {
  animation-delay: 0.7s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(7) a {
  animation-delay: 0.8s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(8) a {
  animation-delay: 0.9s;
}

.nav-open .mobile-menu .nav-list li:nth-of-type(9) a {
  animation-delay: 1s;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
.h-footer__top {
  padding: 3em 0;
  border-top: 2px solid #E9E4DB;
}
.h-footer__top__contact {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.h-footer__top__contact p {
  margin-bottom: 0;
}
.h-footer__top__sections h5 {
  font-size: 1.5em;
  margin-bottom: 1rem;
}
.h-footer__top__sections .menu {
  columns: 2;
  column-gap: 1em;
}
@media (max-width: 580px) {
  .h-footer__top__sections .menu {
    columns: 1;
  }
}
.h-footer__top__sections .menu a {
  padding: 0.15em 0.3em 0.15em 0.8em;
  border-left: 2px solid #E9E4DB;
  text-decoration: none;
  color: #345D9D;
  transition: all 0.3s ease-in-out;
  width: 100%;
  position: relative;
  display: block;
}
.h-footer__top__sections .menu a:hover {
  color: #9ED56A;
  background: rgba(233, 228, 219, 0.5);
  border-color: #345D9D;
}
.h-footer__top__acknowledgement {
  padding: 2em 0;
}
.h-footer__top__acknowledgement h5 {
  font-size: 1.5em;
  margin-bottom: 1rem;
}
.h-footer__top__acknowledgement p {
  margin-bottom: 0;
}
@media (max-width: 1080px) {
  .h-footer__top__acknowledgement {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 797px) {
  .h-footer__top__acknowledgement {
    grid-column-end: 2;
    padding: 0;
  }
}
.h-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto;
}
@media (max-width: 797px) {
  .h-footer__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.h-footer__grid__content {
  width: 88%;
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  font-size: 0.9em;
  line-height: 1.3em;
  gap: 2em;
}
@media (max-width: 1080px) {
  .h-footer__grid__content {
    grid-template-columns: repeat(2, 1fr);
    grid-row-end: 3;
  }
}
@media (max-width: 797px) {
  .h-footer__grid__content {
    grid-template-columns: 1fr;
  }
}
.h-footer__grid__bkg {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  background: linear-gradient(180deg, rgb(233, 228, 219) 0%, rgb(246, 245, 242) 100%);
  border-radius: 100em 0 0 100em;
}
@media (max-width: 1080px) {
  .h-footer__grid__bkg {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    border-radius: 100em 100em 0 0;
  }
}
@media (max-width: 797px) {
  .h-footer__grid__bkg {
    grid-column-end: 2;
  }
}
.h-footer__bottom {
  padding: 1em 0;
  border-top: 2px solid #E9E4DB;
  font-size: 0.9em;
}
.h-footer__bottom p {
  margin-bottom: 0;
}
.h-footer__bottom__content {
  width: 88%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
@media (max-width: 797px) {
  .h-footer__bottom__content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.h-footer__bottom__content__hello img {
  max-width: 2.5em;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
/* --------------------------------------------- Archive */
.section-members {
  width: 88%;
  max-width: 1440px;
  margin: 0 auto;
}
.section-banner {
  padding: 9em 0 3em;
  background: #E9E4DB;
  background-image: url("/wp-content/uploads/2026/07/BannerDefault.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
.section-banner__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 88%;
  max-width: 1440px;
  margin: 0 auto;
}
.section-banner__icon {
  width: 3.5em;
  height: 3.5em;
  padding: 0.6em;
  border-radius: 0.4em;
  background: #012E6A;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner__title {
  font-size: 3em;
  color: #012E6A;
  line-height: 1.2em;
}
.section-intro {
  display: flex;
  flex-direction: row-reverse;
  padding: 3em 0;
  max-width: 1440px;
  width: 88%;
  margin: auto;
  gap: 1.5em;
}
@media (max-width: 797px) {
  .section-intro {
    flex-direction: column;
  }
}
.section-meta {
  display: flex;
  flex-direction: column;
  gap: 1em;
  min-width: 23em;
}
@media (max-width: 797px) {
  .section-meta {
    min-width: none !important;
    width: 100%;
  }
}
.section-structure {
  border: 2px solid #E9E4DB;
  border-radius: 0.6em;
  overflow: hidden;
}
.section-structure h2 {
  font-size: 1.5em;
  line-height: 1em;
  padding: 0.5rem;
}
.section-structure__table {
  font-size: 0.9em;
}
.section-structure__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  padding: 0.4rem 0.5rem;
  line-height: 1.2em;
}
@media (max-width: 580px) {
  .section-structure__row {
    flex-direction: column;
  }
}
.section-structure__row:nth-child(odd) {
  background: rgba(233, 228, 219, 0.5);
}
.section-structure__row:nth-child(even) {
  background: white;
}
.section-structure__members {
  font-weight: 600;
  text-align: right;
}
@media (max-width: 580px) {
  .section-structure__members {
    text-align: left;
  }
}
.section-structure__members a {
  text-decoration: none;
  color: #345D9D;
}
.section-structure__members a:hover {
  color: #9ED56A;
}
.section-mailing-list {
  border: 2px solid #E9E4DB;
  border-radius: 0.5em;
  overflow: hidden;
}
.section-mailing-list button.accordion {
  background: white;
  border: none;
  font-size: 1.1em;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em;
  line-height: 1.1em;
  color: #012E6A;
}
.section-mailing-list button.accordion:hover {
  background: #E9E4DB;
}
.section-mailing-list button.accordion i {
  color: #9ED56A;
  transition: all 0.3s ease-in-out;
}
.section-mailing-list button.accordion i.active {
  transform: rotate(180deg);
}
.section-mailing-list .panel {
  display: none;
  border-top: 2px solid #E9E4DB;
  font-size: 0.9em;
}
.section-mailing-list .panel.active {
  display: block !important;
}
.section-mailing-list .panel .section-mailing-list__item {
  padding: 0.5em 0.5em 0.6em;
  line-height: 1.1em;
}
.section-mailing-list .panel .section-mailing-list__item a {
  font-weight: 600;
  color: #345D9D;
  transition: all 0.3s ease-in-out;
}
.section-mailing-list .panel .section-mailing-list__item a:hover {
  color: #9ED56A;
}
.section-mailing-list .panel .section-mailing-list__item:nth-child(odd) {
  background: rgba(233, 228, 219, 0.5);
}
.section-mailing-list .panel .section-mailing-list__item:nth-child(even) {
  background: white;
}
.section-tabs__list {
  border-bottom: 2px solid #E9E4DB;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85em;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.3em;
  margin-bottom: 1.5em;
}
.section-tabs__list .tablinks {
  border: 2px solid #E9E4DB;
  background: white;
  margin-bottom: -2px;
  border-radius: 0.5em 0.5em 0 0;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  color: #02142D;
}
@media (max-width: 797px) {
  .section-tabs__list .tablinks {
    width: 100%;
  }
}
.section-tabs__list .tablinks.active {
  background: #E9E4DB !important;
  color: #02142D !important;
}
.section-tabs__list .tablinks.active svg path {
  stroke: #345D9D !important;
}
.section-tabs__list .tablinks:hover {
  background: #345D9D;
  color: white;
}
.section-tabs__list .tablinks:hover svg path {
  stroke: white;
}
.section-tabs__list .tablinks .svg-wrapper {
  width: 1.3em;
  height: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-tabs__list .tablinks .svg-wrapper svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: all 0.3s ease-in-out;
  stroke: #345D9D;
}
.section-tabs__wrap .tabcontent {
  padding-top: 1.5em;
}
.section-tabs__wrap .tabcontent h2 {
  margin-bottom: 1.1rem;
  font-size: 1.8em;
}
.section-tabs__wrap .tabcontent p {
  line-height: 1.4em;
}

.tabcontent {
  display: none;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
.team-grid {
  display: block;
  padding: 3em 0;
  border-top: 2px solid #E9E4DB;
}
.team-grid h2 {
  font-size: 1em;
  font-weight: 400;
  margin: 0.75em 0;
  padding: 0.5em;
  padding-left: 1.25em;
  color: #ffffff;
  background-color: #345D9D;
  border-radius: 100em 0 0 100em;
}
.team-grid__heading {
  width: 94%;
  float: right;
}
.team-grid__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  margin-bottom: 2em;
  font-size: 0.8em;
  margin: 0 auto;
  width: 88%;
  max-width: 1440px;
}
.team-grid__search, .team-grid__select {
  padding: 0.75em 1.25em;
  border: 2px solid transparent;
  border-radius: 100em;
  background: #E9E4DB;
  color: #012E6A;
  line-height: 1.2;
  transition: border-color 0.2s ease;
  max-width: 16em;
}
.team-grid__search:focus, .team-grid__select:focus {
  outline: none;
  border-color: #345D9D;
}
.team-grid__search-wrap {
  position: relative;
  flex: 1 1 16em;
  display: flex;
  align-items: center;
  max-width: 16em;
}
.team-grid__search-icon {
  position: absolute;
  left: 1em;
  color: #012E6A;
  pointer-events: none;
}
.team-grid__search {
  width: 100%;
  padding-left: 2.75em;
}
.team-grid__search::placeholder {
  color: rgba(1, 46, 106, 0.7);
}
.team-grid__select {
  flex: 0 1 auto;
  min-width: 11em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75em;
  background-image: linear-gradient(45deg, transparent 50%, #012E6A 50%), linear-gradient(135deg, #012E6A 50%, transparent 50%);
  background-position: right 1.3em center, right 1em center;
  background-size: 0.35em 0.35em;
  background-repeat: no-repeat;
}
.team-grid__apply {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 100em;
  background: #9ED56A;
  color: #012E6A;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.team-grid__apply:hover, .team-grid__apply:focus-visible {
  background: #B5E18B;
}
@media (max-width: 580px) {
  .team-grid__apply {
    margin-left: 0;
    flex: 1 1 100%;
    justify-content: center;
  }
}
.team-grid__results {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.team-grid__group {
  margin: 0;
}
.team-grid__group-heading {
  font-size: 2.5em;
  font-family: "freight-display-pro", serif;
  color: #012E6A;
  margin: 0 0 0.75em;
}
.team-grid__content {
  margin: 1em auto 0;
  width: 88%;
  max-width: 1440px;
  clear: both;
}
.team-grid__subgroup {
  margin: 0 auto 2em;
  width: 88%;
  max-width: 1440px;
}
.team-grid__subgroup:last-child {
  margin-bottom: 0;
}
.team-grid__subgroup-heading {
  font-family: "freight-display-pro", serif;
  color: #345D9D;
  font-size: 2em;
  margin: 0 0 0.75em;
}
.team-grid__group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1em;
}
@media (max-width: 1080px) {
  .team-grid__group-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 797px) {
  .team-grid__group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .team-grid__group-grid {
    grid-template-columns: 1fr;
  }
}
.team-grid__empty {
  padding: 2em;
  text-align: center;
  color: #02142D;
}
.team-grid__loader {
  margin: 2em auto;
}
.team-grid.is-loading .team-grid__results {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.team-grid.is-loading .team-grid__loader {
  display: block !important;
}

.team-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
}
.team-card:hover .team-card__media {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.team-card__link {
  display: block;
  color: inherit;
}
.team-card__media {
  position: relative;
  aspect-ratio: 1.8/1;
  background: #E9E4DB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.team-card__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  background: #ffffff;
}
.team-card__body {
  padding: 0.5em 0 0;
}
.team-card__name {
  font-size: 1.3em;
  margin: 0;
  color: #012E6A;
  line-height: 1.15;
}
.team-card__credentials {
  font-family: "roboto", sans-serif;
  font-size: 0.9em;
  color: #02142D;
  font-weight: 400;
  margin: 0;
}
.team-card__badge {
  display: inline-block;
  font-size: 0.75em;
  padding: 0.15em 0.7em;
  border-radius: 100em;
  background: #9ED56A;
  color: #012E6A;
}
.team-card--non_physician .team-card__badge {
  background: #B5E18B;
}
.team-card__meta {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 0.9em;
  color: #02142D;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
/* --------------------------------------------- Single */
.team-profile {
  padding: 3em 0;
  width: 88%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2em;
}
@media (max-width: 1080px) {
  .team-profile {
    flex-direction: column;
  }
}
.team-profile__intro {
  margin-bottom: 1em;
}
.team-profile__intro h1 {
  font-size: 2.2em;
}
.team-profile__right {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  min-width: 22em;
}
@media (max-width: 1080px) {
  .team-profile__right {
    min-width: none !important;
    width: 100%;
  }
}
.team-profile__profile {
  border: 2px solid #E9E4DB;
  border-radius: 0.5em;
  overflow: hidden;
}
.team-profile__image {
  aspect-ratio: 1.8/1;
  width: 100%;
  height: auto;
  background: #E9E4DB;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-profile__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.team-profile__contact__name {
  padding: 0.8em 0.5em;
  display: flex;
  flex-direction: column;
  line-height: 1.2em;
}
.team-profile__contact__name-full {
  font-size: 1.3em;
  color: #012E6A;
}
.team-profile__contact__pronouns {
  font-size: 1.1em;
}
.team-profile__contact__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5em;
}
.team-profile__contact__row:nth-child(even) {
  background: rgba(233, 228, 219, 0.5);
}
.team-profile__contact__row:nth-child(odd) {
  background: white;
}
.team-profile__contact__value a {
  color: #345D9D;
  text-decoration: none;
  font-weight: 600;
}
.team-profile__contact__value a:hover {
  color: #9ED56A;
}
.team-profile__contact__value--address {
  width: 180px;
  text-align: right;
  line-height: 1.4;
}
.team-profile__contact a.team-profile__contact__value {
  color: #345D9D;
  text-decoration: none;
  font-weight: 600;
}
.team-profile__contact a.team-profile__contact__value:hover {
  color: #9ED56A;
}
.team-profile__contact__vcard {
  padding: 0.5em;
  border-top: 2px solid #E9E4DB;
}
.team-profile__contact__vcard-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  border-radius: 100em;
  background: #9ED56A;
  color: #02142D;
  transition: all 0.3s ease-in-out;
}
.team-profile__contact__vcard-link i {
  font-size: 1.1em;
}
.team-profile__contact__vcard-link:hover {
  background: #02142D !important;
  color: white !important;
}
.team-profile__roles, .team-profile__org-chart {
  width: 100%;
  border-radius: 0.5em;
  border: 2px solid #E9E4DB;
  overflow: hidden;
}
.team-profile__roles h2, .team-profile__org-chart h2 {
  font-size: 1.5em;
  line-height: 1em;
  padding: 0.5rem;
}
.team-profile__roles__item, .team-profile__org-chart__item {
  padding: 0.5em;
}
.team-profile__roles__item a, .team-profile__org-chart__item a {
  color: #345D9D;
  text-decoration: none;
  font-weight: 600;
}
.team-profile__roles__item a:hover, .team-profile__org-chart__item a:hover {
  color: #9ED56A;
}
.team-profile__roles__item:nth-child(even), .team-profile__org-chart__item:nth-child(even) {
  background: rgba(233, 228, 219, 0.5);
}
.team-profile__roles__item:nth-child(odd), .team-profile__org-chart__item:nth-child(odd) {
  background: white;
}
.team-profile__roles__panel .org-branch, .team-profile__org-chart__panel .org-branch {
  padding: 0.5em;
  line-height: 1.4em;
}
.team-profile__roles__panel .org-branch ul, .team-profile__org-chart__panel .org-branch ul {
  list-style: none;
  padding-left: 1rem;
}
.team-profile__roles__panel .org-branch a, .team-profile__org-chart__panel .org-branch a {
  color: #345D9D;
  text-decoration: none;
  font-weight: 300;
}
.team-profile__roles__panel .org-branch a:hover, .team-profile__org-chart__panel .org-branch a:hover {
  color: #9ED56A;
}

button.accordion {
  background: white;
  border: none;
  font-size: 1.5em;
  font-family: "freight-display-pro", serif;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em;
  line-height: 1.1em;
  color: #012E6A;
}
button.accordion:hover {
  background: #E9E4DB;
}
button.accordion i {
  color: #9ED56A;
  transition: all 0.3s ease-in-out;
}
button.accordion i.active {
  transform: rotate(180deg);
}

.panel {
  display: none;
  border-top: 2px solid #E9E4DB;
  font-size: 0.9em;
}
.panel.active {
  display: block !important;
}

.tabcontent {
  padding-top: 1.5em;
}
.tabcontent h2 {
  margin-bottom: 1.1rem;
  font-size: 1.8em;
}
.tabcontent p {
  line-height: 1.4em;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
.section-category {
  padding: 3em 0;
}
.section-category__wrapper {
  width: 88%;
  max-width: 1440px;
  margin: 0 auto;
}
.section-category__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5em;
}
@media (max-width: 1280px) {
  .section-category__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1080px) {
  .section-category__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 797px) {
  .section-category__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .section-category__row {
    grid-template-columns: 1fr;
  }
}
.section-category__card {
  color: #02142D;
  background: linear-gradient(180deg, rgb(233, 228, 219) 0%, rgb(246, 245, 242) 100%);
  border-radius: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: 0.3s ease-in;
  overflow: hidden;
}
.section-category__card:hover {
  transform: scale(1.035);
}
.section-category__card:hover .learn-more-link {
  background: #345D9D;
  color: white;
}
.section-category__card__top {
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.section-category__card__icon {
  width: 3em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #345D9D;
  padding: 0.4em;
  border-radius: 0.5em;
}
.section-category__card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-category__card__title {
  font-weight: 400;
  color: #345D9D;
  font-family: "freight-display-pro", serif;
  font-size: 1.3em;
}
.section-category__card__desc {
  font-size: 0.9em;
  color: #02142D;
  line-height: 1.4em;
}
.section-category__card__btn {
  border-top: 2px solid white;
  padding: 0.5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
.image-text {
  padding: 3em 0;
}
.image-text__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 50px;
}
@media (max-width: 797px) {
  .image-text__wrapper {
    grid-template-rows: repeat(2, auto);
    gap: 25px;
  }
}
.image-text__image {
  grid-column: span 3/span 3;
  border-radius: 0 100em 100em 0;
}
@media (max-width: 797px) {
  .image-text__image {
    grid-column: span 6/span 6;
    padding-right: 20px;
  }
}
.reverse_order .image-text__image {
  border-radius: 100em 0 0 100em;
}
@media (min-width: 796px) {
  .reverse_order .image-text__image {
    grid-column-start: 4;
    grid-row-start: 1;
  }
}
@media (max-width: 797px) {
  .reverse_order .image-text__image {
    padding-right: 0;
    padding-left: 20px;
  }
}
.image-text__content {
  grid-column: span 2/span 3;
  grid-column-start: 4;
  padding-right: 13%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 797px) {
  .image-text__content {
    grid-column: span 6/span 6;
    grid-column-start: 1;
    padding-right: 0;
    width: 88%;
    margin: 0 auto;
  }
}
@media (min-width: 796px) {
  .reverse_order .image-text__content {
    grid-column: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 1;
    padding-right: 0;
    padding-left: 13%;
  }
}
.image-text__heading {
  margin-bottom: 0.5em;
}
.image-text__text {
  margin-bottom: 0.5em;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/
.features-bar {
  display: flex;
  justify-content: center;
  width: 88%;
  max-width: 1440px;
  padding: 2em 4em;
  margin: 0 auto;
  border-radius: 100em;
}
@media (max-width: 1080px) {
  .features-bar {
    flex-wrap: wrap;
    border-radius: 5em;
    padding: 2em;
  }
}
@media (max-width: 580px) {
  .features-bar {
    border-radius: 2em;
  }
}
.features-bar__feature {
  flex: 1;
  max-width: 275px;
  margin: 0 0.75em;
}
@media (max-width: 1080px) {
  .features-bar__feature {
    flex: 1 0 40%;
    margin: 0.5em 0.75em;
  }
}
@media (max-width: 580px) {
  .features-bar__feature {
    flex: 1 0 100%;
    max-width: inherit;
    margin: 0.75em 0;
  }
}
.features-bar__feature-heading {
  margin-bottom: 0.15em;
  font-family: "roboto", sans-serif;
  font-weight: 600;
}
.features-bar__feature-text {
  margin-bottom: 0;
  line-height: 1.4;
}

/*
 * Theme Name: Hello Theme
 * Description: Custom WordPress theme built by Hello Digital Marketing
 * Author: Hello Digital Marketing
 * Author URI: https://www.hellodigital.marketing/
*/

/*# sourceMappingURL=style.css.map */
