.site-header {
  background-color: #043266;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100; }

.home .site-header {
  /* background-color: #043266;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent; }

.home header.site-header.site-header-scrolled {
  background: #ffffff; }

.home header.site-header.site-header-scrolled a {
  color: #000; }

.home .site-header-scrolled a.header-cta {
  background: #043266;
  color: #ffff !important; }

.home .site-header-scrolled a.header-cta:hover {
  background: #c9a961;
  color: #ffff !important; }

.home .site-header-scrolled .container.header-inner {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1) !important; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-left: 50px;
  padding-right: 50px;
  max-width: 100%;
  background-color: #ffffff; }
  @media (max-width: 480px) {
    .header-inner {
      padding-left: 15px;
      padding-right: 15px; } }

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center; }

.header-center {
  flex: 1 1 auto;
  justify-content: center; }

.site-title-link {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  align-items: flex-start;
  text-decoration: none; }

/* Dynamic Logo Image in Header */
.site-title-link .header-logo-dynamic-image {
  width: 100px;
  max-width: 200px;
  object-fit: contain;
  display: block; }

.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0; }

.site-description {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6); }

.primary-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0; }

.primary-menu > li {
  display: inline-block;
  position: relative;
  margin-left: 17px;
  margin-right: 17px; }

.primary-menu > li > a {
  position: relative;
  display: block;
  font: 600 16px "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
  line-height: 1;
  color: #043266;
  padding: 40px 0;
  transition: color 0.3s ease-in-out; }

.primary-menu > li > a:hover {
  color: #c9a961;
  transition: color 0.3s ease-in-out; }

.primary-menu > li.active > a {
  color: #c9a961; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.015em;
  font-size: 1rem;
  padding: 18px 30px;
  line-height: 20px; }

.header-cta i {
  margin-left: 10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s;
  transition: all 0.35s; }

.header-cta:hover,
.header-cta:focus {
  background-color: #c9a961;
  color: #ffffff; }

.header-cta:hover i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer; }

.menu-toggle-bar {
  width: 26px;
  height: 3px;
  background-color: #222;
  display: block;
  transition: all 0.3s ease-in-out;
  transform-origin: center; }

/* Transform menu button to X when menu is open */
.mobile-menu-open .menu-toggle .menu-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg); }

.mobile-menu-open .menu-toggle .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); }

.mobile-menu-open .menu-toggle .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 90;
  display: none; }

.mobile-menu-overlay.is-active {
  display: block; }

.mobile-menu-panel {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: min(300px, 80vw);
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: scroll; }

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

.mobile-menu-panel .mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%; }

.mobile-menu-panel .mobile-menu a {
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative; }

.mobile-menu-logo {
  /* padding: 1.5rem 0;
  border-bottom: 1px solid #e5e8eb;
  margin-bottom: 1rem;
  text-align: center; */ }

.mobile-menu-logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit; }

.mobile-menu-logo-image {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto; }

.mobile-menu-site-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif; }

.mobile-menu-logo .custom-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto; }

.mobile-menu-footer {
  margin-top: auto; }

.mobile-menu-close {
  display: none; }

@media (max-width: 960px) {
  .header-center {
    display: none; }

  .menu-toggle {
    display: inline-flex;
    order: 2; }

  .header-left {
    order: 1; }

  .header-right {
    order: 3;
    margin-inline-start: auto; } }
.mobile-menu-panel .mobile-menu li {
  border-bottom: 1px solid #e5e8eb;
  margin: 0;
  padding: 0;
  position: relative;
  transition: background-color 0.2s ease-in-out; }

.mobile-menu-panel .mobile-menu li:first-child {
  /* border-top: 1px solid #e5e8eb; */ }

.mobile-menu-panel .mobile-menu li:last-child {
  border-bottom: 1px solid #e5e8eb; }

.mobile-menu-panel .mobile-menu li a {
  padding: 16px 0;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  color: #000000;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.mobile-menu-panel .mobile-menu li a:hover,
.mobile-menu-panel .mobile-menu li a:focus {
  color: #c9a961;
  padding-left: 8px; }

.mobile-menu-panel .mobile-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #c9a961;
  transition: width 0.3s ease-in-out; }

.mobile-menu-panel .mobile-menu li a:hover::before,
.mobile-menu-panel .mobile-menu li a:focus::before {
  width: 4px; }

.mobile-menu-panel .mobile-menu li.current-menu-item > a,
.mobile-menu-panel .mobile-menu li.current_page_item > a {
  color: #c9a961;
  font-weight: 700; }

.mobile-menu-panel .mobile-menu li.current-menu-item > a::before,
.mobile-menu-panel .mobile-menu li.current_page_item > a::before {
  width: 4px; }

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