/* =========================
   styles/_variables.scss
   ========================= */
:root {
  /* Colors */
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-dark-teal: #1E95A7;
  --color-light-teal: #D2E6EB;
  --color-light-grey: #F9F9F9;
  --color-surface: #ffffff;
  /* Your Figma colors */
  --color-feature-bg: rgba(130, 183, 200, 0.30); /* #82b7c8 @ 30% */
  --color-cards-section-bg: #d2e6eb;
  /* Borders / radii */
  --radius-card: 10px;
  --border-card: 0.5px solid rgba(15, 23, 42, 0.25);
  --border-card-dark-teal: 0.5px solid --color-dark-teal ;
  /* Layout */
  --container-max: 1200px; /* adjust */
  --container-pad: 64px;
  /* Spacing scale (tweak as you go) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 22px;
  --space-6: 28px;
  --space-7: 40px;
  --space-8: 52px;
  --space-9: 60px;
  --space-8: 70px;
  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Merriweather", Georgia, serif;
  --text-base: 14px;
  --line-base: 1.5;
}

/* =========================
   styles/_base.scss
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--line-base);
  font-weight: 400;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #ddd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =========================
   styles/_mixins.scss
   ========================= */
/* =========================
   styles/_ada.scss
   ========================= */
:root {
  --site-max-width: 1200px;
  --site-header-height: 96px;
  --site-header-height: 96px;
  --z-base: 0;
  --z-raised: 10;
  --z-header: 100;
  --z-nav-dropdown: 200;
  --z-mobile-menu: 300;
  --z-skip-link: 1100;
  --z-above-all: 2000;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: var(--z-skip-link);
  transform: translateY(-150%);
  transition: transform 0.15s ease;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  border: 2px solid #000;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.site-nav__toggle {
  display: none;
}

.site-nav__toggle-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.site-nav__toggle-icon::before {
  top: -8px;
}

.site-nav__toggle-icon::after {
  top: 8px;
}

.site-nav__toggle-text {
  margin-left: 10px;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav {
  display: none;
}

a.btn-clearchoice {
  font-size: 18px;
}

.location-selection-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.location-card {
  min-width: 0;
  text-align: left;
}

.location-title-block-2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: static;
}

.location-title-block-2 p {
  position: static;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.location-img-div {
  position: static;
  margin-top: auto;
}

.location-img-div a {
  position: static;
}

.location-card__button {
  display: inline-block;
  margin: 1rem 0;
  position: static;
}

.location-select-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  position: static;
}

.site-footer {
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 2rem 1rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-widget {
  min-width: 0;
}

.footer-widget ul {
  font-size: 14px;
}

.footer-badge img {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.footer-nav__heading,
.footer-locations__heading {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: white;
  text-align: center;
}

.footer-locations__heading {
  text-align: center;
  font-size: 1.6rem;
}

.footer-link-list,
.social-icons,
.footermenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li + li {
  margin-top: 0.35rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-social {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-social .footer-nav__heading {
  text-align: center;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
}

.footer-divider {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.25;
}

.footer-locations__grid {
  display: grid;
  gap: 2rem;
}

.footer-locations__grid--up-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-locations__grid--up-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-locations__grid--up-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-location-card {
  text-align: center;
}

.footer-location-card__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 2.6em;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: white;
}

.footer-location-card__image {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.footer-location-card__contact {
  margin-top: 1rem;
  font-style: normal;
  font-size: 1.2rem;
}

.footer-location-card__badges {
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.footer-back-top,
.footer-copyright {
  margin: 0;
}

.footermenu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.box1 h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-top: -28px;
  margin-bottom: 31px;
}

.box1 h3 {
  font-size: 16px;
}

.flex-control-nav {
  z-index: 10;
}

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-locations__grid--up-3,
.footer-locations__grid--up-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer__top,
.footer-locations__grid--up-2,
.footer-locations__grid--up-3,
.footer-locations__grid--up-4 {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    justify-content: center;
  }
  .footermenu {
    justify-content: center;
  }
}
.os-team-box {
  width: 150px;
  max-width: 150px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.os-team-title,
.os-team-image {
  width: 100%;
  text-align: center;
}

.os-team-image img {
  display: block;
  margin: 0 auto;
  max-width: 120px;
  height: auto;
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
.cert-image {
  max-width: 100px;
  display: inline;
}

@media (max-width: 800px) {
  :root {
    --site-header-height: 67px;
  }
  .location-title-block-2 {
    text-align: center;
  }
  .negmtop {
    margin-top: -130px;
    background-color: #458794;
    height: 90px;
    display: flex;
    align-items: center;
    padding-block: 2rem;
  }
  .desktop-row-separator hr {
    margin: 0;
  }
  .row-separator {
    border-bottom: 2px #888;
  }
  img.location-select-img {
    max-width: 215px;
  }
  h1 {
    font-weight: bold;
    margin: 0;
  }
  h2 {
    text-align: center;
  }
  .location-img-div {
    text-align: center;
  }
  img.location-img {
    max-width: 350px;
  }
  mapbox {
    max-width: 350px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .location-select-img {
    display: block;
    margin: 0 auto;
  }
  .site-header {
    position: relative;
    z-index: var(--z-header);
  }
  .quick-menu {
    margin-top: 100px;
  }
  .site-header__bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--site-max-width));
    min-height: var(--site-header-height);
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .site-header__logo {
    display: block;
    flex: 0 0 auto;
  }
  .site-header__logo img {
    display: block;
    max-width: 165px;
    height: auto;
  }
  body {
    padding-top: var(--site-header-height);
  }
  .site-nav {
    display: none !important;
  }
  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 10px;
  }
  .mobile-nav:not([hidden]) {
    display: block;
    position: fixed;
    top: var(--site-header-height);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-mobile-menu);
    width: min(100%, var(--site-max-width));
    max-height: calc(100vh - var(--site-header-height));
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }
  .mobile-nav__list,
.mobile-nav__sublist,
.mobile-nav__service-list,
.mobile-nav__utility-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-nav__list {
    padding: 12px 18px;
  }
  .mobile-nav__list > li {
    border-bottom: 1px solid #e5e5e5;
  }
  .mobile-nav__list > li:last-child {
    border-bottom: 0;
  }
  .mobile-nav a,
.mobile-nav__trigger {
    display: block;
    width: 100%;
    padding: 14px 0;
    color: inherit;
    text-align: center;
    text-decoration: none;
  }
  .mobile-nav__trigger {
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
  }
  .mobile-nav__panel {
    padding: 4px 0 18px;
  }
  .mobile-nav__heading {
    margin: 14px 0 12px;
    font-size: 20px;
    text-align: center;
  }
  .mobile-nav__subheading {
    margin: 18px 0 6px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #222;
  }
  .mobile-nav__sublist a,
.mobile-nav__utility-links a {
    padding: 8px 0;
    text-align: left;
  }
  .mobile-nav__service-list a {
    padding: 8px 0;
    text-align: left;
  }
  .mobile-nav__item-title {
    display: block;
    font-weight: 600;
  }
  .mobile-nav__description {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.35;
    color: #555;
  }
  .mobile-nav__utility-links {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
  }
  .mobile-nav__list.is-panel-open > li {
    display: none;
  }
  .mobile-nav__list.is-panel-open > li.is-active {
    display: block;
    border-bottom: 0;
  }
  .mobile-nav__list.is-panel-open > li.is-active > .mobile-nav__trigger {
    display: none;
  }
  .mobile-nav__list.is-panel-open {
    padding-top: 0;
  }
  .mobile-nav__list.is-panel-open > li {
    display: none;
    border-bottom: 0;
  }
  .mobile-nav__list.is-panel-open > li.is-active {
    display: block;
  }
  .mobile-nav__list.is-panel-open > li.is-active > .mobile-nav__trigger {
    display: none;
  }
  .mobile-nav__panel {
    position: relative;
    padding: 18px 0 22px;
  }
  .mobile-nav__panel-close {
    position: absolute;
    top: 8px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    font: inherit;
    font-size: 30px;
    line-height: 1;
    color: inherit;
    cursor: pointer;
  }
  .mobile-nav__heading {
    padding-right: 48px;
  }
}
@media (min-width: 801px) {
  .mobile-only {
    display: none;
  }
  .desktop-row-separator {
    display: block;
    width: 100%;
    clear: both;
    padding: 30px 15px;
  }
  .desktop-row-separator hr {
    margin: 0;
    border-top: 2px solid #aaa;
  }
  .site-nav__toggle,
.mobile-nav {
    display: none !important;
  }
  .site-header {
    position: relative;
    z-index: var(--z-header);
  }
  /* fixed top header, constrained to 1200px */
  .site-header__bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--site-max-width));
    min-height: var(--site-header-height);
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  /* prevents content from sliding under the fixed header */
  body {
    padding-top: var(--site-header-height);
  }
  .site-header__logo {
    display: block;
    flex: 0 0 auto;
  }
  .site-header__logo img {
    display: block;
    max-width: 220px;
    height: auto;
  }
  .site-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }
  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-nav__trigger {
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
  }
  /* dropdown panel, also constrained to 1200px */
  .site-nav__panel {
    position: fixed;
    top: var(--site-header-height);
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--site-max-width));
    max-height: calc(100vh - var(--site-header-height));
    z-index: var(--z-nav-dropdown);
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }
  img.location-select-img {
    max-width: 215px;
    display: block;
  }
  .location-img-div {
    float: none;
    padding-bottom: 30px;
  }
  h1 {
    font-weight: bold;
    margin: 0;
  }
  h2 {
    text-align: left;
  }
  .align-left {
    text-align: left;
  }
  .location-img-div {
    text-align: left;
  }
  img.location-img {
    max-width: 350px;
  }
  mapbox {
    max-width: 350px;
  }
  .site-nav__panel-inner {
    padding: 28px 32px;
  }
  .team-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 24px 18px;
    align-items: stretch;
  }
  .team-menu__item {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
  }
  .team-menu__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }
  .os-team-box {
    width: 150px;
    max-width: 150px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .os-team-title,
.os-team-image {
    width: 100%;
    text-align: center;
  }
  .os-team-image img {
    display: block;
    margin: 0 auto;
    max-width: 120px;
    height: auto;
  }
  .team-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: inherit;
  }
  .os-team-image img {
    display: block;
    margin: 0 auto;
    max-width: 120px;
    height: auto;
  }
  .team-menu__footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
  }
  .services-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 24px;
  }
  .services-menu__link {
    display: grid;
    grid-template-columns: 1fr 110px;
    align-items: center;
    gap: 16px;
    min-height: 105px;
    padding: 14px 18px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .services-menu__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
  }
  .services-menu__image {
    display: block;
    text-align: center;
  }
  .services-menu__image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .services-menu__link:hover,
.services-menu__link:focus-visible {
    text-decoration: none;
    border-color: #333;
  }
  .services-menu__link:focus-visible {
    outline: 3px solid #333;
    outline-offset: 3px;
  }
  .more-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
  .more-menu__heading {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
  }
  .more-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .more-menu__list li {
    margin: 0;
  }
  .more-menu__list a {
    display: block;
    padding: 8px 0;
    color: inherit;
    text-decoration: none;
    line-height: 1.35;
  }
  .more-menu__list a:hover,
.more-menu__list a:focus-visible {
    text-decoration: underline;
  }
  .more-menu__list a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
  }
  .more-menu__list .fa {
    margin-left: 6px;
    font-size: 0.85em;
  }
  .site-header .site-nav__list,
.site-header .team-menu,
.site-header .services-menu,
.site-header .more-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
.location-overview {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.5fr) minmax(280px, 1.5fr);
  gap: 2rem;
  align-items: stretch;
  text-align: left;
  margin: 2rem 0;
}

.location-overview__info,
.location-overview__image,
.location-overview__map {
  min-width: 0;
}

.location-overview address {
  font-style: normal;
  line-height: 1.6;
}

.location-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.mapbox {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  min-height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

/* Tablet */
@media (max-width: 991px) {
  .location-overview {
    grid-template-columns: 1fr 1fr;
  }
  .location-overview__info {
    grid-column: 1/-1;
  }
}
/* Phone */
@media (max-width: 640px) {
  .location-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mapbox {
    min-height: 260px;
  }
}
.location-selection-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.location-card {
  text-align: left;
  min-width: 0;
}

.location-title-block-2 {
  height: 100%;
}

.location-img-div {
  margin-top: 1rem;
}

.location-select-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-top: 1rem;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Phone: 1 column */
@media (max-width: 640px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   styles/ada_style.scss
   ========================= */

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