/*
 * All Care - Elementor compatibility layer.
 *
 * GENERATED FILE - do not edit by hand.
 * Regenerate with: python tools\build-elementor-compat-css.py
 */

/* Elementor's own width and padding must not sit on top of the design. */
.elementor .e-con.wp-block-group,
.elementor .e-con.wp-block-columns,
.elementor .e-con.wp-block-column.ac-col-auto,
.elementor .e-con.wp-block-buttons {
  --width: 100%;
  --content-width: 100%;
  max-width: none;
}

.elementor .e-con.wp-block-group,
.elementor .e-con.wp-block-columns,
.elementor .e-con.wp-block-column,
.elementor .e-con.wp-block-buttons {
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
}

/* Widget wrappers are layout-transparent. */
.elementor .elementor-widget-container { margin: 0; }
.elementor .e-con > .elementor-widget { width: 100%; }

/* Boxed group containers stand in for .wp-block-group__inner-container.
   Only Elementor's own defaults are neutralised here - width and max-width
   are left alone so the design's own inner-container rules still decide them. */
.elementor .e-con.wp-block-group > .e-con-inner {
  --content-width: 100%;
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
}

/* Columns behave like Gutenberg columns. */
.elementor .e-con.wp-block-columns {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: normal;
}
/* Columns with no explicit width share the row equally, as Gutenberg did.
   Columns that carried a width attribute keep it - Elementor writes that as
   --width on the element, so flex must not stretch them. */
.elementor .e-con.wp-block-columns > .e-con.wp-block-column.ac-col-auto {
  flex: 1 1 0%;
  min-width: 0;
}
/* Gutenberg expressed a column width as flex-basis, which grid layouts ignore.
   Elementor stores it as --width and applies it with `width`, which grid items
   DO obey - that collapses the design's grid sections. Map it back to
   flex-basis and release `width` so grid tracks decide again. */
.elementor .e-con.wp-block-column.ac-col-fixed {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: var(--width, auto);
  width: auto;
  min-width: 0;
}
.elementor .e-con.wp-block-columns.are-vertically-aligned-center
  > .e-con.wp-block-column { justify-content: center; }

/* Buttons sit in a row, as the block editor rendered them. */
.elementor .e-con.wp-block-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: auto;
}
.elementor .e-con.wp-block-buttons > .elementor-widget { width: auto; }


/* ---- structural rules, rewritten ---- */

.elementor > .wp-block-group:first-child {
  margin-top: 0;
}
.elementor > .ac-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.elementor > .ac-section > .e-con-inner {
  max-width: var(--ac-content-max);
  margin-left: auto;
  margin-right: auto;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child {
  padding: 0;
  min-height: clamp(500px, 62vh, 680px);
  overflow: hidden;
  background: var(--ac-deep-teal);
  border-bottom: 1px solid rgba(111, 201, 242, .38);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child > .e-con-inner {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero.wp-block-columns {
  display: grid !important;
  grid-template-columns: minmax(420px, .43fr) minmax(0, .57fr);
  gap: 0;
  width: 100%;
  max-width: none !important;
  min-height: clamp(500px, 62vh, 680px);
  align-items: stretch !important;
  background:
    linear-gradient(150deg, rgba(44, 139, 190, .97), rgba(17, 95, 145, .99) 58%, rgba(31, 45, 64, .96)),
    var(--ac-deep-teal);
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero h1 {
  font-size: clamp(2.65rem, 4vw, 4.1rem);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child {
  position: relative;
  z-index: 2;
  align-self: stretch;
  max-width: none;
  padding: clamp(3rem, 5vw, 5.5rem) clamp(1.5rem, 4.6vw, 5.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0;
  background:
    linear-gradient(150deg, rgba(44, 139, 190, .97), rgba(17, 95, 145, .99) 58%, rgba(31, 45, 64, .96)),
    var(--ac-deep-teal);
  box-shadow: 18px 0 70px rgba(17, 95, 145, .22);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  inset: 0 -4rem 0 auto;
  width: 8rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 95, 145, .72), rgba(17, 95, 145, 0));
  pointer-events: none;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero h1, body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero p, body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .ac-kicker {
  color: #fff;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, .9);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .ac-kicker {
  color: #d4f3ff;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-button:not(.is-style-outline) .elementor-button {
  background: #fff;
  color: var(--ac-deep-teal);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-button.is-style-outline .elementor-button {
  border-color: rgba(255, 255, 255, .82);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero > .wp-block-column:last-child {
  min-width: 0;
  height: 100%;
  align-self: stretch;
  display: flex;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 62vh, 680px);
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image img {
  height: 100%;
  min-height: clamp(500px, 62vh, 680px);
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.035);
  box-shadow: none;
  filter: brightness(.96) contrast(1.12) saturate(1.1);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 95, 145, .18), rgba(255,255,255,0) 22%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(17, 95, 145, .08));
}
body:not(.home) .elementor > .ac-section:not(.ac-band):nth-child(odd) {
  background:
    linear-gradient(115deg, rgba(243, 245, 247, .98), rgba(255,255,255,.96) 48%, rgba(237, 248, 252, .98)),
    #fff;
}
body:not(.home) .elementor > .ac-section:not(.ac-band):nth-child(even) {
  background:
    radial-gradient(circle at 8% 10%, rgba(111, 201, 242, .14), transparent 30%),
    var(--ac-soft-grey);
}
body:not(.home) .elementor > .ac-section:not(.ac-band) > .e-con-inner {
  max-width: var(--ac-content-max);
}
body:not(.home) .elementor > .ac-section:not(.ac-band) .wp-block-columns {
  gap: clamp(1rem, 2vw, 1.4rem);
}
body:not(.home) .elementor > .ac-section:not(.ac-band) > .e-con-inner h2:first-child {
  max-width: 760px;
}
body:not(.home) .elementor > .ac-section:not(.ac-band) > .e-con-inner h2:first-child + .wp-block-columns {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.home .elementor > .ac-section:not(.ac-band) {
  background:
    linear-gradient(115deg, rgba(243, 245, 247, .98), rgba(255,255,255,.96) 46%, rgba(237, 248, 252, .98)),
    #fff;
}
.home .elementor > .ac-section:has(.ac-intro-panel) {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ac-soft-grey) 100%);
}
.home .elementor > .ac-section:has(.ac-editorial), .home .elementor > .ac-section:has(.ac-community) {
  background:
    linear-gradient(115deg, var(--ac-grey-panel) 0%, #f7fdff 45%, #ffffff 100%);
  border-top: 1px solid rgba(111, 201, 242, .34);
  border-bottom: 1px solid rgba(111, 201, 242, .34);
}
.home .elementor > .ac-section:has(.ac-split) {
  background:
    linear-gradient(135deg, rgba(17, 95, 145, .08), rgba(255,255,255,.96) 42%, rgba(111, 201, 242, .16));
}
.home .elementor > .ac-section:has(.ac-split:nth-child(1)) {
  background:
    linear-gradient(135deg, rgba(17, 95, 145, .1), rgba(247,253,255,.98) 42%, rgba(255,255,255,.98));
}
.elementor > .ac-band.ac-section:first-child {
  padding-top: clamp(1.2rem, 2.8vw, 2rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.home .elementor > .ac-blue-band.ac-section {
  background:
    linear-gradient(120deg, rgba(17, 95, 145, .98), rgba(42, 139, 193, .94) 48%, rgba(111, 201, 242, .78)),
    var(--ac-deep-teal);
  border-top: 0;
  border-bottom: 0;
}
.ac-blue-band .wp-block-button:not(.is-style-outline) .elementor-button {
  background: #fff;
  color: var(--ac-deep-teal);
}
.ac-blue-band .wp-block-button.is-style-outline .elementor-button {
  border-color: rgba(255,255,255,.78) !important;
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}
.home .elementor > .ac-band.ac-section:first-child {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  min-height: clamp(620px, 74vh, 790px);
  overflow: hidden;
  background: var(--ac-deep-teal);
}
.home .elementor > .ac-band.ac-section:first-child > .e-con-inner {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
}
.home .elementor > .ac-band.ac-section:first-child > .e-con-inner > .ac-hero {
  display: grid !important;
  grid-template-columns: minmax(420px, .42fr) minmax(0, .58fr);
  gap: 0;
  width: 100%;
  max-width: none !important;
  min-height: clamp(620px, 74vh, 790px);
  align-items: stretch !important;
}
.home .ac-hero .wp-block-button:not(.is-style-outline) .elementor-button {
  background: #fff;
  color: var(--ac-deep-teal);
}
.home .ac-hero .wp-block-button.is-style-outline .elementor-button {
  border-color: rgba(255, 255, 255, .82);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
.ac-trust-bar > .e-con-inner {
  max-width: var(--ac-content-max);
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(243,245,247,.94));
  border: 1px solid rgba(142, 146, 152, .22);
  border-radius: 24px;
  padding: .75rem;
  box-shadow: 0 26px 74px rgba(17, 95, 145, .11);
}
.ac-process-step > .e-con-inner {
  position: relative;
  padding-left: 1.1rem;
  border-left: 4px solid rgba(111, 201, 242, .72);
}
.ac-cta .wp-block-button:not(.is-style-outline) .elementor-button {
  background: #fff !important;
  color: var(--ac-deep-teal) !important;
  box-shadow: 0 14px 34px rgba(7, 50, 80, .22);
}
.ac-cta .wp-block-button.is-style-outline .elementor-button {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .8) !important;
  color: #fff !important;
}
.ac-cta .wp-block-button.is-style-outline .elementor-button:hover, .ac-cta .wp-block-button.is-style-outline .elementor-button:focus {
  background: rgba(255, 255, 255, .18) !important;
  border-color: #fff !important;
}
.elementor-button {
  border-radius: 6px;
  font-weight: 700;
  padding: .82rem 1.25rem;
}
.wp-block-button:not(.is-style-outline) .elementor-button {
  background: var(--ac-teal);
}
.wp-block-button.is-style-outline .elementor-button {
  border-color: var(--ac-teal);
  color: var(--ac-teal);
  background: #fff;
}
.elementor > .wp-block-group > .e-con-inner, .elementor > .wp-block-group > * {
  max-width: var(--ac-content-max);
  margin-left: auto;
  margin-right: auto;
}
.elementor > .wp-block-group.alignfull > * {
  max-width: var(--ac-content-max);
}
@media (max-width: 780px) {
  .home .elementor > .ac-band.ac-section:first-child {
    min-height: auto;
    padding: 0;
    background: var(--ac-deep-teal);
  }
  .home .elementor > .ac-band.ac-section:first-child > .e-con-inner > .ac-hero {
    display: flex !important;
    flex-direction: column;
    min-height: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child {
    min-height: auto;
    padding: 0;
    background: var(--ac-deep-teal);
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero.wp-block-columns {
    display: flex !important;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child {
    max-width: 100%;
    width: 100% !important;
    box-sizing: border-box;
    padding: 2.45rem 1.5rem 1.85rem;
    border-left: 0;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child::before {
    display: none;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image, body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image img {
    min-height: 310px;
    height: 310px;
  }
  .elementor > .wp-block-group > * {
    max-width: 100% !important;
    width: auto !important;
  }
  .ac-trust-bar > .e-con-inner {
    padding: .55rem;
    border-radius: 20px;
  }
}
.elementor .e-con-inner:has(> .ac-faq) {
  --row-gap: .7rem;
  --gap: .7rem;
  gap: .7rem;
}

/* ---- spacing re-asserted over Elementor's vars ---- */

.elementor .ac-section {
  overflow: hidden;
  padding: clamp(2.1rem, 4vw, 3.9rem) max(1.25rem, 2.2vw);
}
.elementor > .ac-section {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.elementor > .ac-section > .e-con-inner {
  margin-left: auto;
  margin-right: auto;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child {
  padding: 0;
  overflow: hidden;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child > .e-con-inner {
  margin: 0 !important;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero.wp-block-columns {
  gap: 0;
  border-radius: 0;
  padding: 0;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child {
  padding: clamp(3rem, 5vw, 5.5rem) clamp(1.5rem, 4.6vw, 5.2rem);
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  inset: 0 -4rem 0 auto;
  width: 8rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 95, 145, .72), rgba(17, 95, 145, 0));
  pointer-events: none;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image {
  border-radius: 0;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image img {
  border-radius: 0;
}
body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 95, 145, .18), rgba(255,255,255,0) 22%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(17, 95, 145, .08));
}
body:not(.home) .elementor > .ac-section:not(.ac-band) .wp-block-columns {
  gap: clamp(1rem, 2vw, 1.4rem);
}
body:not(.home) .elementor > .ac-section:not(.ac-band) > .e-con-inner h2:first-child + .wp-block-columns {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.elementor > .ac-band.ac-section:first-child {
  padding-top: clamp(1.2rem, 2.8vw, 2rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.elementor .ac-section-tight {
  padding: clamp(1.6rem, 3vw, 2.6rem) max(1.25rem, 2.2vw);
}
.elementor .ac-premium-panel {
  margin: 0 auto;
  border-radius: 28px;
  padding: clamp(1.4rem, 3.2vw, 3rem);
  overflow: hidden;
}
.elementor .ac-premium-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}
.elementor .ac-why.wp-block-columns {
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 0;
}
.elementor .ac-proof-grid.wp-block-columns {
  gap: 1rem;
  margin-bottom: 1rem;
}
.elementor .ac-proof-grid.wp-block-columns:last-child {
  margin-bottom: 0;
}
.elementor .ac-proof-card.ac-card {
  border-radius: 18px;
}
.home .elementor > .ac-band.ac-section:first-child {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
}
.home .elementor > .ac-band.ac-section:first-child > .e-con-inner {
  margin: 0 !important;
}
.home .elementor > .ac-band.ac-section:first-child > .e-con-inner > .ac-hero {
  gap: 0;
}
.home .elementor .ac-hero > .wp-block-column:first-child {
  padding: clamp(3.2rem, 6vw, 6.5rem) clamp(1.5rem, 5vw, 6rem);
}
.home .elementor .ac-hero > .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  inset: 0 -4rem 0 auto;
  width: 8rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 95, 145, .72), rgba(17, 95, 145, 0));
  pointer-events: none;
}
.home .elementor .ac-hero .ac-image {
  border-radius: 0;
}
.home .elementor .ac-hero .ac-image img {
  border-radius: 0;
}
.home .elementor .ac-hero .ac-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 95, 145, .18), rgba(255,255,255,0) 22%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(17, 95, 145, .08));
}
.elementor .ac-hero.wp-block-columns {
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 0;
  margin-bottom: 0;
}
.elementor .ac-hero .wp-block-column:first-child {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}
.elementor .ac-hero .wp-block-buttons {
  margin-top: 1.7rem;
}
.elementor .ac-trust-bar {
  margin: 0 auto;
  border-radius: 0;
  padding: clamp(1.2rem, 2.4vw, 2rem) max(1.25rem, 4vw) clamp(1.35rem, 2.8vw, 2.35rem);
}
.elementor .ac-trust-bar > .e-con-inner {
  margin: 0 auto;
  border-radius: 24px;
  padding: .75rem;
}
.home .elementor .ac-trust-bar + .ac-section {
  padding-top: clamp(3.6rem, 5.4vw, 5.1rem);
}
.elementor .ac-trust-bar .wp-block-columns {
  margin-bottom: 0;
  gap: .7rem;
}
.elementor .ac-trust-item {
  padding: 1.2rem 1.15rem 1.15rem;
  border-radius: 18px;
}
.elementor .ac-trust-item::before {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  margin-bottom: .95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ac-logo-blue), rgba(142, 146, 152, .45));
}
.elementor .ac-trust-item h3 {
  margin-bottom: .35rem;
}
.elementor .ac-trust-item p {
  margin-bottom: 0;
}
.elementor .ac-intro-panel.wp-block-columns, .elementor .ac-editorial.wp-block-columns, .elementor .ac-community.wp-block-columns {
  gap: clamp(2rem, 5vw, 4.5rem);
}
.elementor .ac-intro-panel.wp-block-columns, .elementor .ac-editorial.wp-block-columns, .elementor .ac-community.wp-block-columns, .elementor /* Booking chooser ------------------------------------------------------- Two booking systems live on one page: HotDoc for medical, .elementor Core Practice for dental. Neither widget is requested until one of these is clicked - see mu-plugins/all-care-booking.php. */ .ac-booking__choice {
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.elementor .ac-booking__tab {
  column-gap: 1rem;
  row-gap: .3rem;
  padding: 1.1rem 1.25rem;
  border-radius: 6px;
}
.elementor /* Points right when closed, .elementor down once the calendar is open below. */ .ac-booking__tab::after {
  content: "";
  grid-area: chevron;
  width: .55rem;
  height: .55rem;
  border-right: 2px solid var(--ac-teal);
  border-bottom: 2px solid var(--ac-teal);
  transform: rotate(-45deg);
  transition: transform .18s ease;
}
.elementor .ac-booking__tab.is-active::after {
  transform: rotate(45deg);
}
.elementor .ac-booking__panel-heading {
  margin-top: 0;
  margin-bottom: .75rem;
}
.elementor .ac-booking__status {
  margin: 0;
}
.elementor /* Third-party widgets bring their own look; give them room and a plain surface rather than trying to restyle another company's markup. */ .ac-booking__panel iframe {
  border-radius: 6px;
}
.elementor .ac-intro-panel.wp-block-columns {
  border-radius: 18px;
  padding: clamp(1.6rem, 3.4vw, 3rem);
}
.elementor .ac-editorial.wp-block-columns, .elementor .ac-community.wp-block-columns {
  border-radius: 22px;
  padding: clamp(1.3rem, 2.8vw, 2.4rem);
}
.elementor .ac-editorial.wp-block-columns::before, .elementor .ac-community.wp-block-columns::before, .elementor .ac-split.wp-block-columns::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(111, 201, 242, .18), rgba(255,255,255,0) 48%);
  pointer-events: none;
}
.elementor .ac-pathways .wp-block-columns {
  gap: 0;
  margin-bottom: 0;
}
.elementor .ac-pathways {
  border-radius: 18px;
  overflow: hidden;
}
.elementor .ac-pathway {
  border-radius: 0;
  padding: clamp(1.25rem, 2vw, 1.65rem);
}
.elementor .ac-pathway::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 3px;
  background: var(--ac-logo-blue);
}
.elementor .ac-pathway-label, .elementor .ac-process-number {
  margin-bottom: .7rem;
}
.elementor .ac-text-link a::after {
  content: "";
}
.elementor .ac-feature-list {
  margin: 1.25rem 0 1.6rem;
  padding-left: 0;
}
.elementor .ac-feature-list li {
  margin-bottom: .85rem;
  padding-left: 1.65rem;
}
.elementor .ac-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--ac-blue);
  box-shadow: 0 0 0 4px rgba(140, 210, 244, .2);
}
.elementor .ac-process {
  gap: .9rem;
  margin-top: 1.4rem;
}
.elementor .ac-process-step {
  padding-top: 1rem;
}
.elementor .ac-process-step > .e-con-inner {
  padding-left: 1.1rem;
}
.elementor .ac-card {
  border-radius: 6px;
  padding: 1.25rem;
}
.elementor .ac-card::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  margin-bottom: .95rem;
  border-radius: 999px;
  background: var(--ac-logo-blue);
}
.elementor .ac-card h3 {
  margin-top: 0;
  margin-bottom: .55rem;
  padding-top: .35rem;
}
.elementor .ac-card p {
  margin-bottom: 0;
}
.elementor .ac-split.wp-block-columns {
  gap: clamp(2rem, 5vw, 4.5rem);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 2.6rem);
}
.elementor .ac-split > .wp-block-column > .wp-block-columns {
  gap: 0;
  margin-top: 1.45rem;
}
.elementor .ac-split > .wp-block-column > .wp-block-columns > .wp-block-column {
  margin-left: 0 !important;
}
.elementor .ac-split .ac-card {
  padding: 1rem 0 1.05rem 1rem;
  border-radius: 0;
}
.elementor .ac-split .ac-card::before {
  display: none;
}
.elementor .ac-cta {
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.5rem);
  margin-inline: auto;
  overflow: hidden;
}
.elementor .ac-image img {
  border-radius: 8px;
}
.elementor .ac-image {
  overflow: hidden;
  border-radius: 8px;
}
.elementor .ac-list-check {
  padding-left: 1.2rem;
}
.elementor .ac-list-check li {
  margin-bottom: .45rem;
}
.elementor /* FAQ accordion - see the accordion block further down for the open/closed states. Deliberately no border-top here and no border-bottom on the heading: the two together produced a doubled rule with a gap between the question and its own underline. The values below deliberately mirror .ac-card exactly - same border, .elementor radius, .elementor gradient and shadow - with the 4px blue rule borrowed from .ac-process-step. Every other block on the site carries a blue accent; without one an FAQ list reads as a generic accordion dropped into the design rather than part of it. */ .ac-faq {
  border-radius: 6px;
  overflow: hidden;
}
.elementor .ac-local-strip {
  border-radius: 18px;
  padding: 1.3rem 1.55rem;
  margin-inline: auto;
}
.elementor .ac-emergency {
  padding: 1rem 1.2rem;
}
.elementor .ac-site-footer {
  padding: clamp(3rem, 6vw, 5rem) max(1.25rem, 4vw) 6rem;
}
.elementor .ac-site-footer__inner {
  margin: 0 auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.elementor .ac-site-footer a {
  margin: .35rem 0;
}
@media (max-width: 780px) {
  .home .elementor > .ac-band.ac-section:first-child {
    padding: 0;
  }
  .home .elementor > .ac-band.ac-section:first-child > .e-con-inner > .ac-hero {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .home .elementor .ac-hero > .wp-block-column:first-child {
    padding: 2.6rem 1.5rem 1.9rem;
  }
  .home .elementor .ac-hero > .wp-block-column:first-child::before {
    display: none;
  }
  .elementor .ac-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child {
    padding: 0;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero.wp-block-columns {
    padding: 0;
    border-radius: 0;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child {
    padding: 2.45rem 1.5rem 1.85rem;
  }
  body:not(.home) .elementor > .ac-band.ac-section:first-child .ac-hero .wp-block-column:first-child::before {
    display: none;
  }
  .elementor .ac-kicker {
    overflow-wrap: anywhere !important;
  }
  .elementor .ac-hero p, .elementor .ac-trust-item p, .elementor .ac-card p {
    overflow-wrap: anywhere;
  }
  .elementor .ac-hero.wp-block-columns {
    gap: 1.5rem;
  }
  .elementor .ac-hero .wp-block-column:first-child {
    padding-right: 0;
  }
  .elementor .ac-trust-item {
    padding-right: 1rem;
  }
  .elementor .ac-hero .ac-image {
    margin-right: 0;
  }
  .elementor .ac-trust-bar {
    margin-top: 0;
    border-radius: 0;
  }
  .elementor .ac-trust-bar > .e-con-inner {
    padding: .55rem;
    border-radius: 20px;
  }
  .elementor .ac-trust-bar .wp-block-columns {
    gap: .55rem;
  }
  .elementor .ac-trust-item::before {
    width: 1.85rem;
    height: 1.85rem;
    margin-bottom: .7rem;
  }
  .elementor .ac-split.wp-block-columns {
    gap: 1.4rem;
  }
  .elementor .ac-intro-panel.wp-block-columns, .elementor .ac-editorial.wp-block-columns, .elementor .ac-community.wp-block-columns {
    gap: 1.5rem;
  }
  .elementor .ac-card {
    padding: 1.1rem;
  }
  .elementor .ac-mobile-actions {
    overflow: hidden;
  }
}
.elementor .ac-team-photo img {
  border-radius: 10px;
}
.elementor .ac-team-role {
  margin: 0 0 .9rem;
}
.elementor .ac-team-bio h3 {
  margin-top: 0;
  margin-bottom: .25rem;
}
.elementor .ac-team-bio p {
  margin-bottom: .85rem;
}
@media (max-width: 780px) {
  .elementor .ac-team-photo {
    margin-bottom: 1.2rem;
  }
}
.elementor /* ---- Why All Care: four proof cards on one symmetrical 2x2 grid ---- */ /* The markup is two separate column rows, .elementor so their heights used to differ. Collapsing the wrappers with display:contents lets all four cards share a single grid with equal rows. */ .ac-why > .wp-block-column:last-child {
  gap: 1rem;
}
.elementor .ac-why .ac-proof-card.ac-card {
  margin: 0;
}
.elementor /* ---- FAQ accordion ---- */ /* Progressive enhancement: without JavaScript every answer stays visible. */ .ac-faq h3 {
  margin: 0;
}
.elementor .ac-faq p {
  margin: 0;
}
.elementor .ac-faq.is-collapsible h3:focus-visible {
  border-radius: 5px;
}
.elementor /* Chevron, .elementor drawn rather than an icon font. */ .ac-faq.is-collapsible h3::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: .55rem;
  height: .55rem;
  margin-top: -.38rem;
  border-right: 2px solid var(--ac-teal);
  border-bottom: 2px solid var(--ac-teal);
  transform: rotate(45deg);
  transition: transform .2s ease, margin-top .2s ease;
}
.elementor .ac-faq.is-collapsible.is-open h3::after {
  transform: rotate(-135deg);
  margin-top: -.12rem;
}
.elementor .ac-faq.is-collapsible .ac-faq-answer {
  overflow: hidden;
  padding: 0 1.25rem;
}
.elementor .ac-faq.is-collapsible.is-open .ac-faq-answer {
  padding: 0 1.25rem 1.25rem;
}
.elementor .e-con-inner:has(> .ac-faq) {
  gap: .7rem;
}
@media (prefers-reduced-motion: reduce) {
  .elementor .ac-faq.is-collapsible .ac-faq-answer, .elementor .ac-faq.is-collapsible h3::after, .elementor .ac-faq {
    transition: none;
  }
}
