.elementor-kit-7{--e-global-color-primary:#003A8C;--e-global-color-secondary:#F4F4F4;--e-global-color-text:#474747;--e-global-color-accent:#FFC300;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ---- CONFIG ------------------------------------------------------------ */
:root {
  --aue-marker-bg: #003A8C; /* your blue highlight color */
  --aue-marker-text-hover: #ffffff !important;
  --aue-marker-radius: 4px; /* tweak to taste (0 for square) */
  --aue-marker-speed: 0.30s;
}

/* Scope to your overlay menu UL (menu class you added in WP). */
.aue-marker-menu a {
  position: relative;           /* needed so ::before positions to this link */
  display: inline-block;        /* so padding & background behave predictably */
  padding: .15em .35em;         /* gives the highlight some breathing room */
  color: inherit;               /* start with whatever your theme uses */
  text-decoration: none;
  transition: color var(--aue-marker-speed) ease; /* smooth text color swap */
  z-index: 0;                   /* create stacking context for ::before */
}

/* The “marker stroke” */
.aue-marker-menu a::before {
  content: "";
  position: absolute;
  inset: 0;                     /* cover the padded link box */
  background: var(--aue-marker-bg);
  border-radius: var(--aue-marker-radius);
  transform-origin: left center;
  transform: scaleX(0);         /* hidden (collapsed to left edge) */
  transition: transform var(--aue-marker-speed) ease;
  z-index: -1;                  /* sit behind link text */
}

/* Hover / focus states */
.aue-marker-menu a:hover,
.aue-marker-menu a:focus {
  color: var(--aue-marker-text-hover);
}

.aue-marker-menu a:hover::before,
.aue-marker-menu a:focus::before {
  transform: scaleX(1);         /* “draw” highlight across text */
}/* End custom CSS */