/*
    Dynamiq Designs — coming soon site
    https://dynamiqdesigns.ca

    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. Header
     3. Countdown
     4. Services
     5. About
     6. Subscribe
     7. Contact
     8. Google map
     9. Footer
     10. Responsive CSS
*/


/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */

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

/* Kill stray horizontal scroll + hide scrollbars (scroll still works). */
html {
  overflow-x: clip;
  overflow-y: auto;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  overflow-x: clip;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

html, body {
  font-family: 'Exo', sans-serif!important;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  /* Matches `#about` so tunnel tail + collapsed hero are not harsh pure white. */
  background-color: #fafbff;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lenis uses native window scroll (`document.documentElement` = `html`). */
html.lenis-root {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  overflow-y: auto;
  touch-action: pan-y;
  min-height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
}

/* About layout (replaces Bootstrap grid on this site) */
.about-inner {
  width: 100%;
  max-width: min(42rem, 92vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse a .mouse-chevron {
  display: inline-block;
  vertical-align: middle;
}

/* Home: no document scroll — hero is wheel-scrubbed; About is fixed under the hero. */
html.home-scroll-locked,
html.home-scroll-locked body {
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
  padding: 0;
  height: 100dvh;
  max-height: 100dvh;
  touch-action: none;
  overscroll-behavior: none;
}

html.home-scroll-locked #hero-logo-scene {
  position: fixed;
  inset: 0;
  z-index: 10;
  box-sizing: border-box;
}

html.home-scroll-locked #hero-logo-scene.hero-logo-scene:not(.hero-logo-scene--portal-exit) {
  opacity: 1;
  visibility: visible;
}

html.home-scroll-locked #about.about {
  position: fixed;
  inset: 0;
  z-index: 5;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
  overflow: hidden;
}

html.home-scroll-locked #about.about .about-inner {
  flex: 0 1 auto;
  max-height: 100%;
  overflow: hidden;
}

/*
 * Home index (`/?`): About is a full-viewport layer under the hero — wheel/Lenis drive GSAP opacity only.
 * `#home-about-scroll-proxy` supplies document scroll distance (pinned). Without this, About was in normal flow
 * and slid up from below with visible padding (“white banner”).
 */
html.home-pinned-layers #about.about:not(.about--standalone) {
  position: fixed;
  inset: 0;
  z-index: 5;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
  overflow: visible;
  padding: 0;
  margin: 0;
  background-color: #fafbff;
}

html.home-pinned-layers #about.about:not(.about--standalone) .about-inner {
  flex: 0 1 auto;
  max-height: min(100%, 100dvh);
  overflow: visible;
}

html.home-pinned-layers #contact.contact-section:not(.contact-section--standalone) {
  position: fixed;
  inset: 0;
  z-index: 4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
  overflow: visible;
  padding: 0;
  margin: 0;
  background-color: #fafbff;
}

html.home-pinned-layers #contact.contact-section:not(.contact-section--standalone) .contact-section__inner {
  max-width: min(780px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 4.75rem) clamp(1.25rem, 3vw, 2rem);
}

html.home-pinned-layers #hero-logo-scene.hero-logo-scene {
  z-index: 10;
}

.home-about-scroll-proxy {
  width: 100%;
  height: 115vh;
  pointer-events: none;
  flex-shrink: 0;
}

.home-contact-scroll-proxy {
  width: 100%;
  height: 115vh;
  pointer-events: none;
  flex-shrink: 0;
}

/*
 * Mobile: the desktop pinned/fixed layered hero fights touch scrolling and the collapsing address bar
 * (background appears to slide). On small screens we drop it entirely — sections stack in normal flow
 * and scroll natively, no animation. (The boot script also bails out of Lenis + ScrollTrigger here.)
 */
@media only screen and (max-width: 767px) {
  html.home-pinned-layers #about.about:not(.about--standalone),
  html.home-pinned-layers #contact.contact-section:not(.contact-section--standalone) {
    position: relative;
    inset: auto;
    display: block;
    min-height: auto;
    z-index: auto;
  }

  html.home-pinned-layers #about.about:not(.about--standalone) .about-inner,
  html.home-pinned-layers #contact.contact-section:not(.contact-section--standalone) .contact-section__inner {
    max-height: none;
    overflow: visible;
  }

  html.home-pinned-layers .home-about-scroll-proxy,
  html.home-pinned-layers .home-contact-scroll-proxy {
    display: none;
  }

  /* Keep the hero a full, stable screen (svh avoids URL-bar resize jumps), then About flows below. */
  html.home-pinned-layers #hero-logo-scene.hero-logo-scene {
    min-height: 100svh;
  }

  /* Legacy `.welcome { padding-top: 120px }` (≤1036px) also hit the visible hero overlay and pushed the
   * logo low. Reset it on mobile so the logo + "Coming Soon" sit centered in the hero. */
  .hero-overlay .welcome {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/*
 * Mobile crossfade (added by `initMobileHeroCrossfade.ts` via `html.home-mobile-crossfade`):
 * the hero scene — backdrop + static blue corner art — is pinned full-screen and never moves.
 * Only the centered logo lockup fades OUT while the About text fades IN over the same backdrop
 * (transparent, so the corners stay visible the whole time). Scroll distance comes from the proxy.
 * Falls back to the stacked layout above when JS is off or reduced-motion is on.
 */
@media only screen and (max-width: 767px) {
  /* Hero scene = a 100svh spacer that holds the first screen; its backdrop + logo are fixed (below). */
  html.home-mobile-crossfade #hero-logo-scene.hero-logo-scene {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    z-index: 1;
    overflow: visible;
  }

  html.home-mobile-crossfade #hero-logo-scene .hero-clip {
    position: static;
    min-height: 0;
    height: 100svh;
  }

  /* Backdrop (background image + static blue corner art) is pinned and never moves.
     `100lvh` (largest viewport) keeps it covering the bottom even as the mobile URL bar collapses — no white gap. */
  html.home-mobile-crossfade #hero-logo-scene header.hero-site-bg {
    position: fixed;
    inset: 0;
    bottom: auto;
    min-height: 0;
    height: 100lvh;
    z-index: 0;
  }

  /* Logo lockup is pinned over the backdrop and fades OUT on scroll. */
  html.home-mobile-crossfade #hero-logo-scene .hero-overlay {
    position: fixed;
    inset: 0;
    height: 100svh;
    z-index: 2;
    will-change: opacity;
  }

  /* About flows in normally over the static backdrop (transparent so the corners stay visible), fading IN. */
  html.home-mobile-crossfade #about.about:not(.about--standalone) {
    position: relative;
    z-index: 5;
    background-color: transparent;
    opacity: 0;
    padding: clamp(1.5rem, 6vw, 2.5rem) 0;
    will-change: opacity;
  }

  /* Readable frosted card so text never collides with the dark corner art; corners frame it at the edges. */
  html.home-mobile-crossfade #about.about:not(.about--standalone) .about-inner {
    width: calc(100% - 2rem);
    max-width: 24rem;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: clamp(1.1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 1.35rem);
    box-shadow: 0 14px 44px rgba(16, 24, 48, 0.12);
  }

  /* Tighten internal vertical rhythm so the card is shorter overall. */
  html.home-mobile-crossfade #about .about-heading {
    margin-bottom: 0.85rem;
  }

  html.home-mobile-crossfade #about .about-body p {
    margin-bottom: 0.85rem;
    line-height: 1.5;
  }

  html.home-mobile-crossfade #about .about-divider {
    margin: 0.9rem auto;
  }

  html.home-mobile-crossfade #about .about-offer {
    gap: 0.5rem;
  }

  html.home-mobile-crossfade #about .about-offer li {
    line-height: 1.4;
  }

  html.home-mobile-crossfade #about .about-contact {
    margin-top: 1.2rem;
    gap: 0.4rem;
  }

  html.home-mobile-crossfade .home-about-scroll-proxy {
    display: none;
  }
}

html.lenis-root body.lenis-root {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
}

/* Hero / header band: always full browser width (does not change `.logo` / SVG size). */
#hero-logo-scene.hero-logo-scene {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Matches tunnel/header white — avoids `#fafbff` body bleeding through the Q counter */
  background-color: #ffffff;
}

.hero-logo-scene > .hero-clip,
.hero-logo-scene .hero-overlay,
.hero-logo-scene header.hero-site-bg {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*
 * ScrollTrigger wraps the hero in `body > .pin-spacer` and may set a pixel width.
 * Only the hero is pinned on this site — force the spacer + section to full viewport width.
 */
body > .pin-spacer {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  background-color: #fafbff;
}

body > .pin-spacer > #hero-logo-scene {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
}

/* Scroll-driven crossfades (sectionScrollFades.ts) — tight bands, no forced full viewport */
.scroll-fade-page {
  position: relative;
  box-sizing: border-box;
  padding-block: clamp(1.5rem, 4vh, 2.75rem);
}

.map-only.scroll-fade-page {
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-only.scroll-fade-page .map-only__frame {
  width: 100%;
}

.map-only.scroll-fade-page iframe {
  height: clamp(220px, 38dvh, 400px);
}

footer.scroll-fade-page {
  padding-block: clamp(1rem, 3vh, 1.5rem);
}

footer.scroll-fade-page .container {
  flex: 0 0 auto;
}

.page-loader {
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

/* main.js also fades the loader; this guarantees it never blocks the hero if jQuery is slow or 404. */
body.is-page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-icon {
  top: 50%;
    left: 50%;
    right: 0;
    position: absolute;
    margin: -20px 0 0 -20px;
    bottom: 0;
}

.backstretch:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/overlay.png');
	background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

header.hero-site-bg .backstretch:after {
  background-image: none;
  background-color: rgba(255, 255, 255, 0);
}

header.hero-site-bg h1 {
  color: #242831;
}

header.hero-site-bg p {
  color: #3d4453;
}

header.hero-site-bg .time_circles > div > h4 {
  color: #5c6578;
}

header.hero-site-bg .time_circles > div > span {
  color: #1a1f2e;
}

header.hero-site-bg .mouse a {
  color: #242831;
  border: 2px solid rgba(36, 40, 49, 0.45);
}

header.hero-site-bg .hero-coming-soon {
  position: relative;
  z-index: 2;
  margin: 1.35rem 0 0;
  padding: 0 1rem;
  font-family: 'Aldrich', sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-align: center;
  color: #242831;
}

.hero-overlay .hero-coming-soon {
  position: relative;
  z-index: 2;
  margin: 1.35rem 0 0;
  padding: 0 1rem;
  font-family: 'Aldrich', sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-align: center;
  color: #242831;
}

/* Long disclaimer + wide tracking overflows narrow phones — tighten + constrain so it wraps cleanly. */
@media only screen and (max-width: 767px) {
  header.hero-site-bg .hero-coming-soon,
  .hero-overlay .hero-coming-soon {
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
}

.video-box {
  background: transparent;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.video-box:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/overlay.png');
	background-color: rgba(0, 0, 0, 0.4);
  background-repeat: repeat;
  z-index: 1;
}


a,
a:active,
a:focus,
a:active {
  text-decoration: none!important;
  color: #000;
  transition: all 0.4s;
}
/* ================================= */
/* :::::::::: 2. Header :::::::::::: */
/* ================================= */

header {
  height: auto;
  margin-top: 0;
}

/* Hero: hero-background.png (your Artboard export — bump ?v= after replacing file) */
header.hero-site-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: #ffffff;
  background-image: url("../images/hero-background.png?v=4");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: normal;
  isolation: isolate;
  backface-visibility: hidden;
}

/*
 * Tunnel / Q-zoom: default overflow:hidden + isolation draws a hard rectangular clip around the mask.
 * Let scaled IQ + radial mask extend cleanly (no “bounding box” wrecking the transition).
 */
.hero-logo-scene header.hero-site-bg {
  overflow: visible !important;
  isolation: auto;
}

.hero-logo-scene header.hero-site-bg > .welcome {
  overflow: visible !important;
}

/* Mobile corner overlays: images/website optimization/ */
header.hero-site-bg::before,
header.hero-site-bg::after {
  content: none;
}

@media only screen and (max-width: 767px) {
  header.hero-site-bg {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    min-height: 100dvh;
  }

  header.hero-site-bg::before,
  header.hero-site-bg::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    --corner-w: min(80vw, 58vmin, 400px);
    width: var(--corner-w);
    height: calc(var(--corner-w) * 2210 / 2355);
    background-repeat: no-repeat;
    background-size: contain;
  }

  header.hero-site-bg::before {
    top: env(safe-area-inset-top, 0px);
    left: env(safe-area-inset-left, 0px);
    background-image: url("../images/website%20optimization/left-mobile-01.png");
    background-position: left top;
  }

  header.hero-site-bg::after {
    bottom: env(safe-area-inset-bottom, 0px);
    right: env(safe-area-inset-right, 0px);
    background-image: url("../images/website%20optimization/mobile%20right-01.png");
    background-position: right bottom;
  }
}
header .row {
  justify-content: center;
  align-items: center;
  align-content: center;
}
.welcome {
  min-height: 100vh;
  position: relative;
  z-index: 5;
  overflow: hidden;
  text-align: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

/* Logo + tunnel zoom extend past 100vh — generic `.welcome` overflow/height would slit-crop the IQ. */
.hero-overlay .welcome {
  overflow: visible !important;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  height: auto;
  max-height: none;
  /* Full width inside the hero overlay (avoid 100vw — it causes a horizontal scrollbar on Windows). */
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

header .logo,
.hero-overlay .logo {
  background: transparent;
  margin: 0 auto;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img,
header .logo svg,
.hero-overlay .logo img,
.hero-overlay .logo svg {
    position: relative;
    z-index: 2;
    max-width: min(92vw, 520px);
    width: min(92vw, 520px);
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent !important;
    box-shadow: none;
}

/* Q tunnel: scaled `#IQ_INNER` must paint outside the SVG layout box — default SVG clipping wrecks full-screen zoom */
.hero-logo-scene .hero-overlay .logo {
  overflow: visible !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.hero-logo-scene .hero-overlay .logo svg {
  overflow: visible !important;
  max-width: min(88vw, 780px);
  width: min(88vw, 780px);
  height: auto;
  clip-path: none;
}

/* Pinned hero: clip sideways bleed; allow vertical overflow for the Q tunnel scale. */
#hero-logo-scene {
  overflow-x: clip !important;
  overflow-y: visible !important;
  max-width: 100%;
}

.hero-logo-scene {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip !important;
  overflow-y: visible !important;
  max-width: 100%;
}

/* After tunnel-through-Q: collapse hero so the viewport lands on real content like a new page (not an empty 100vh gap). */
.hero-logo-scene.hero-logo-scene--portal-exit {
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Fixed full-screen hero: height:0 nukes the overlay — wheel scrub can’t bring it back. Collapse in-flow only. */
html.home-scroll-locked .hero-logo-scene.hero-logo-scene--portal-exit {
  height: 100dvh !important;
  min-height: 100dvh !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

.hero-logo-scene.hero-logo-scene--portal-exit .hero-clip {
  min-height: 0 !important;
}

html.home-scroll-locked .hero-logo-scene.hero-logo-scene--portal-exit .hero-clip {
  min-height: 100dvh !important;
}

/* Wraps hero visuals; radial mask opens from the Q hole as you zoom through into partners below */
.hero-clip {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
}

/*
 * Masked header pixels are “cut out” — transparent Q counter sits above; radial mask also cuts header.
 * Paint `#ffffff` here so the hole matches `header.hero-site-bg` / body hero white, not `html` `#fafbff`.
 */
.hero-logo-scene > .hero-clip {
  background-color: #ffffff;
}

.hero-clip.hero-clip--masked {
  --hero-mask-r: 0%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  /* Allow scaled IQ to extend past overlay box edges toward viewport corners */
  width: 100%;
  max-width: none;
  left: 0;
  right: 0;
}

/* Clip horizontal bleed from the hero; vertical overflow stays visible for the Q tunnel. */
.pin-spacer {
  overflow-x: clip !important;
  overflow-y: visible !important;
  max-width: 100%;
}

.hero-clip.hero-clip--masked [data-hero-mask-target] {
  -webkit-mask-image: radial-gradient(
    circle at var(--hero-mask-x, 50%) var(--hero-mask-y, 45%),
    transparent 0%,
    transparent var(--hero-mask-r, 0%),
    #000 calc(var(--hero-mask-r, 0%) + 1.5%)
  );
  mask-image: radial-gradient(
    circle at var(--hero-mask-x, 50%) var(--hero-mask-y, 45%),
    transparent 0%,
    transparent var(--hero-mask-r, 0%),
    #000 calc(var(--hero-mask-r, 0%) + 1.5%)
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Site content after `#hero-logo-scene` stays in normal document flow (partners → services → …). */

/* Standalone /about after tunnel-through-Q (`?from=q`) */
body.about-page.from-q-tunnel {
  opacity: 0;
}

body.about-page.from-q-tunnel.from-q-tunnel--visible {
  opacity: 1;
  transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  body.about-page.from-q-tunnel {
    opacity: 1;
  }

  body.about-page.from-q-tunnel.from-q-tunnel--visible {
    transition: none;
  }
}

body.about-page.about-page--document {
  margin: 0;
  min-height: 100%;
  background: #fafbff;
}

.about-page-skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100000;
  padding: 0.5rem 1rem;
  background: #242831;
  color: #fff;
  font-size: 0.85rem;
}

.about-page-skip:focus {
  left: 0.5rem;
}

.about-page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(36, 40, 49, 0.1);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.about-page-topbar__logo-link {
  display: block;
  max-width: min(72vw, 360px);
  line-height: 0;
  color: inherit;
  text-decoration: none;
}

.about-page-topbar__logo-link svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-page-topbar__brand {
  font-family: "Aldrich", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #242831;
}

.about-page-topbar__brand:hover {
  color: #000;
}

.about-page-topbar__link {
  font-family: "Aldrich", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}

.about-page-topbar__link:hover {
  color: #1d4ed8;
}

.about-page-topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.about-page-main {
  display: block;
}

[data-about-copy],
[data-contact-copy] {
  will-change: transform, opacity;
}

.about-page-footer {
  padding: 1rem 0 1.25rem;
  background: #242830;
  color: rgba(236, 240, 241, 0.95);
  text-align: center;
}

.about-page-footer__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.about-page-footer a {
  color: rgba(236, 240, 241, 0.98);
}

.about-page-footer a:hover {
  color: #fff;
}

/* About section after Q portal navigation (home → /#about) */
section#about.from-q-portal-target {
  animation: fromQAboutIn 0.55s ease forwards;
}

@keyframes fromQAboutIn {
  from {
    opacity: 0.88;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  section#about.from-q-portal-target {
    animation: none;
  }
}

@media only screen and (max-width: 767px) {
  header.hero-site-bg .welcome {
    transform: translateY(min(-4.25rem, -11dvh));
  }

  header .logo {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  header .logo img,
  header .logo svg {
    max-width: min(80vw, 440px);
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
header h1 {
  font-size: 2.5em;
  text-align: center;    
  color: #FFFFFF;
  font-weight: 400;
  padding: 20px;
  text-transform: uppercase;
  font-family: 'Aldrich', sans-serif;
}

header p {
    padding: 15px 10px 5px 10px;
    margin: 0px;
    font-weight: 400;
    font-size: 1.1em;
    margin-top: -40px;
    margin-bottom: 15px;
    word-spacing: 1px;
    color: #fff;
}



header .mouse {
  margin-left: -20px;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 50%;
      animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
}

header .mouse a {
  color: #F9F9F9;
  position: relative;
  bottom: 20px;
  line-height: 45px;
  font-size: 9px;
  text-align: center;
  width: 22px;
  height: 36px;
  border-radius: 10px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);

}



@-webkit-keyframes wobbleArrow
 {
 from   { 

 bottom: 40px; 

 }
 to { 

 bottom: 50px; 

 }
 }

@-webkit-keyframes scrolls {
  0%
  {
    top:10px;
    opacity:1;
    height:4px;
  }
  95%
  {
    top:18px;
    opacity:0;
    height:10px;
  }
  100%
  {
    top:8px;
    opacity:1;
    height:4px;
  }
}

/* ================================= */
/* :::::::::: 3. Countdown ::::::::: */
/* ================================= */

.time_circles {
    position: relative;
    width: 100%;
    height: 100%;
}


.time_circles > div {
    position: absolute;
    text-align: center;
}


.time_circles > div > h4 {
    margin: 0px;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #eee;
    font-weight: 200;
}


.time_circles > div > span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 300%;
    margin-top: 0.5em;
    font-weight: 400;
    color: #fff;
}



/* ================================= */
/* :::::: 3b. Trusted partners :::::: */
/* ================================= */

.partners {
  position: relative;
  z-index: 1;
  padding: 1.35rem 0 1.75rem;
  margin: 0;
  background: #ffffff !important;
  background-image: none !important;
  color: #000000;
  border: none;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

.partners .container {
  background: transparent;
  overflow: visible;
}

.partners-title {
  margin: 0 0 0.75rem;
  padding: 0 0.5rem;
  font-family: 'Exo', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #000000;
}

.partners-title-dark {
  color: #000000;
}

.partners-title-accent {
  color: #2563eb;
}

.partners-row {
  margin-top: 0;
  overflow: visible;
}

.partners-row > [class*="col"] {
  overflow: visible;
}

.partners-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.3rem 0.5rem;
  margin: 0;
  background: transparent !important;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.partners-logo-slot img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Wide wordmarks (e.g. iLertify): room for baked-in glow/shadow without clipping */
.partners-logo-slot--wide {
  padding: 0.65rem 1.1rem 0.85rem;
  min-height: unset;
}

.partners-logo-slot--wide img {
  max-height: 76px;
}

/* iLertify: trim a hair vs other wide wordmarks */
.partners-logo-slot--wide.partners-logo-slot--ilertify img {
  max-height: 72px;
}

/* Slightly larger than default 60px */
.partners-logo-slot--praevista img {
  max-height: 72px;
}

@media only screen and (max-width: 767px) {
  .partners {
    padding: 1.1rem 0 1.5rem;
  }
  .partners-title {
    margin-bottom: 0.65rem;
  }
}

/* ================================= */
/* :::::::::: 4. Services :::::::::: */
/* ================================= */

.services {
  padding: 100px 0 100px;
  background-color: #fff;
  z-index: 10;
}

.services.scroll-fade-page {
  padding-top: 0;
  padding-bottom: 0;
}

.services h2.services-main-heading,
.services h3.services-main-heading {
  font-weight: 500;
  font-size: 25px;
  color: #000000;
  text-align: left;
  border-left: 9px solid #EDEDED;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  font-family: 'Aldrich', sans-serif;
}

/* “What we do” — intro + grid (first section after hero) */
.services--what-we-do .services-what__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 992px) {
  .services--what-we-do .services-what__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 3rem 3.5rem;
  }

  .services--what-we-do .services-what__intro {
    position: sticky;
    top: clamp(3.5rem, 10vh, 6rem);
  }
}

.services-what__eyebrow {
  font-family: "Exo", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 0.6rem;
}

.services--what-we-do .services-main-heading {
  margin-top: 0;
  margin-bottom: 1rem;
}

.services-what__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.6;
  color: #3d4453;
  max-width: 32rem;
}

.services--what-we-do .services-what__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .services--what-we-do .services-what__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Process block title: keep subhead styling, not the main section stripe */
.services--process h2.services-subhead,
.services--process h3.services-subhead {
  margin-top: 0;
  margin-bottom: 1.35rem;
  text-align: left;
}

.services-panel {
  padding: 0;
}

/* Process block follows About — no extra top rule; About provides the break */
.services--process {
  padding-top: 2.5rem;
}

.services--process .process-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services--process .process-flow__step {
  position: relative;
}

.services-card--process {
  border-color: #dbe4ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

@media (min-width: 992px) {
  .services--process .process-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  .services--process .process-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.9rem;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid #2563eb;
    border-right: 2px solid #2563eb;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.7;
  }
}

.services-subhead {
  font-family: 'Exo', sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin: 0 0 1.35rem;
  text-align: left;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e6e9ef;
}

.services-grid {
  margin-bottom: 0;
}

.services-card {
  text-align: left;
  height: 100%;
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid #e8eaef;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.06);
}

.services-card__head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.services-card__num {
  flex-shrink: 0;
  font-family: 'Exo', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: 0.9;
}

.services-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #242831;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

h3.services-card__title,
h4.services-card__title {
  font-size: 15px;
}

.services-card__text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #303440;
  text-align: left;
  max-width: 42rem;
}

.services .services-tagline-wrap {
  margin-top: 3rem;
  text-align: center;
}

.services .services-tagline {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #242831;
  letter-spacing: 0.02em;
}

/* ================================= */
/* :::::::::: 5. About ::::::::::::: */
/* ================================= */

.about {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background-color: #fafbff;
  text-align: center;
  z-index: 10;
}

.about.about--standalone {
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.about h2.about-heading,
.about h3,
.about h3.about-heading {
  font-weight: 500;
  font-size: 25px;
  color: #303440;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  border-left: none;
  padding-left: 0;
  font-family: 'Aldrich', sans-serif;
}

.about-stage {
  width: 100%;
}

.about-stage--overview {
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.about-stage--timeline {
  margin-top: 0;
}

.about-capabilities {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  width: 100%;
  text-align: left;
}

.about-process {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  width: 100%;
  text-align: left;
}

.about-process.services {
  padding: 0;
  background: transparent;
}

.about .services-tagline-wrap {
  margin-top: 1.15rem;
  text-align: center;
}

.about .services--what-we-do .services-what__intro {
  position: static;
}

.about .services--what-we-do .services-what__layout {
  gap: 1.25rem 1.5rem;
}

@media (min-width: 992px) {
  .about .services--what-we-do .services-what__layout {
    gap: 1.5rem 2rem;
  }
}

.about .about-process.services--process {
  padding-top: 0;
}

.about .about-body {
  max-width: 42rem;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  width: 100%;
}

.about .about-body p {
  text-align: center;
  margin: 0 0 1.1rem;
}

.about .about-body p:last-child {
  margin-bottom: 0;
}

.about .about-body .about-divider {
  width: 110px;
  height: 2px;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.about .about-body .about-offer {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}

.about .about-body .about-offer li {
  position: relative;
  padding-left: 1.7rem;
  line-height: 1.5;
}

.about .about-body .about-offer li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

.about .about-body .about-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1.5rem 0 0;
}

.about .about-body .about-contact__label {
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .about {
    padding: 3rem 0 3.25rem;
  }

  .about h2.about-heading,
  .about h3,
  .about h3.about-heading {
    margin-bottom: 1.6rem;
  }

  .about .about-body {
    margin-bottom: 0;
  }

  .about .about-body p {
    margin-bottom: 1.35rem;
    line-height: 1.7;
  }

  .about .about-body .about-contact {
    gap: 0.6rem;
    margin-top: 2.25rem;
  }
}

/* ================================= */
/* ::::::::: Contact Section :::::::: */
/* ================================= */

.contact-section {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 0;
  background-color: #fafbff;
  text-align: center;
  z-index: 10;
}

.contact-section.contact-section--standalone {
  min-height: calc(100dvh - 68px);
  display: grid;
  align-content: center;
}

.contact-section__inner {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
}

.contact-section__heading {
  font-family: "Aldrich", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #303440;
  letter-spacing: -1px;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem);
}

.contact-section__lead {
  margin: 0 auto clamp(1.1rem, 3vw, 1.5rem);
  max-width: 38rem;
  color: #3d4452;
  line-height: 1.65;
}

.contact-section__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
  max-width: 34rem;
}

.contact-section__list li {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: #303440;
}

.contact-section__list li span {
  font-family: "Aldrich", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  font-size: 0.72rem;
}

.contact-section__list a {
  color: #1d4ed8;
}

.contact-section__note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  padding: 0 1.25rem clamp(0.9rem, 3vw, 1.6rem);
  max-width: 48rem;
  color: #9aa1b0;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* On short/narrow screens, absolute bottom can overlap the centered card — drop into normal flow instead. */
@media only screen and (max-width: 767px) {
  .contact-section__note {
    position: static;
    margin-top: 1.75rem;
    padding-bottom: 0;
  }
}

/* Intro copy inside the timeline card */
.about-wheel__frame > .about-body {
  max-width: none;
  margin: 0;
  padding: 1.2rem 1.35rem 1.35rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  text-align: center;
}

.about-wheel__frame > .about-body p {
  text-align: center;
  color: #3d4452;
  font-size: 14px;
  line-height: 1.65;
}

/* iOS-style scroll wheel timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.about-wheel {
  width: 100%;
  max-width: 100%;
  align-self: center;
}

.about-wheel__scroller-area {
  position: relative;
  flex: 0 0 auto;
  max-width: 22rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Year + title + body: one continuous column under the picker (main-site style) */
.about-timeline__story {
  width: 100%;
  margin: 0;
  padding: 0.35rem 0.95rem 1rem;
  border-top: none;
  background: transparent;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.about-timeline__story.is-dimmed {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-timeline__story {
    transition: none;
  }

  .about-timeline__story.is-dimmed {
    transform: none;
  }
}

.about-timeline__label {
  font-family: 'Exo', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 0.85rem;
  width: 100%;
  text-align: center;
}

.about-wheel__frame > .about-timeline__label {
  margin-top: 0.5rem;
}

.about-wheel .about-wheel__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
}

.about-wheel__highlight {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  top: 50%;
  height: var(--wheel-item, 44px);
  margin-top: calc(var(--wheel-item, 44px) / -2);
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.06);
  pointer-events: none;
  z-index: 1;
}

.about-wheel__viewport {
  --wheel-item: 44px;
  --wheel-visible: 220px;
  position: relative;
  z-index: 2;
  height: var(--wheel-visible);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.about-wheel__viewport::-webkit-scrollbar {
  display: none;
}

.about-wheel__track {
  list-style: none;
  margin: 0;
  padding: calc((var(--wheel-visible) - var(--wheel-item)) / 2) 0.85rem;
}

.about-wheel__item {
  height: var(--wheel-item);
  line-height: var(--wheel-item);
  scroll-snap-align: center;
  font-family: 'Aldrich', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: rgba(48, 52, 64, 0.38);
  text-align: center;
  cursor: default;
  user-select: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.about-wheel__item.is-active {
  color: #1d4ed8;
  transform: scale(1.04);
}

.about-timeline__story .about-timeline__year {
  font-family: 'Aldrich', sans-serif;
  font-size: clamp(1.85rem, 5vw, 2.15rem);
  color: #2563eb;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  line-height: 1.05;
  text-align: center;
}

.about-timeline__story .about-timeline__slide-title {
  font-family: 'Exo', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #242831;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
}

.about .about-timeline__story .about-timeline__detail {
  font-size: 14px;
  line-height: 1.65;
  color: #3d4452;
  margin: 0;
  text-align: center;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-wheel__item {
    transition: none;
  }
}

.about img {
  width: 65%;
}

.about h2 {
    font-size: 16px;
    color: #303440;
    font-weight: 600;
    padding-top: 40px;
}

.about h2:after {
  font-size: 13px;
  display: block;
  content: '//';
  letter-spacing: -0.05em;
  text-align: center;
  margin: 13px 0px;
}

.about p {
  word-spacing: 1px;
  line-height: 25px;
  font-size: 14px;
  text-align: center;
  padding: 0 0 5px 0;
  color: #303440;
  margin-top: -3px;
}

.about  i {     
  background: #303440;
  text-align: center;
  line-height: 37px;
  list-style: none;
  font-size: 15px;     
  border-bottom: none;
  color: #FFFFFF;
  margin: 10px 10px 15px auto;
  display: inline-block;
  float: left;
  border-radius: 50%;
  border: 2px solid #303440;
  height: 40px;
  width: 40px;
  transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
}

.about .social-icons li {
  list-style: none;
  float: left;
}

.about i:hover {
  background: #2CC9B4;
  border: 2px solid #2CC9B4;
  color:#fff;
}

.about .social-icons {
  z-index: 999;
  display: flex;
  justify-content: center;
}

.about .social-icons ul {
    padding-left: 0;
}

/* ================================= */
/* :::::::::: 6. Subscribe ::::::::: */
/* ================================= */

.subscribe {
  padding: 72px 0 72px;
  z-index: 10;
  background: #242831;         
}

.subscribe h2 {
  font-weight: 500;
  font-size: 25px;
  color: #FFFFFF;
  margin: 0px;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 22px;
  border-left: 9px solid #FFFFFF;
  font-family: 'Aldrich', sans-serif;
}

.subscribe .subscribe-contact {
  max-width: 640px;
  margin: 0 auto;
}

.subscribe .subscribe-contact p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.subscribe .subscribe-contact a {
  color: #ffffff;
}

.subscribe .subscribe-contact a:hover {
  color: #bde9ff;
}

.subscribe .contact-map {
  position: relative;
  margin-top: 18px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  outline: none;
  width: 100%;
}

.subscribe .contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.02);
}

.subscribe--map-only {
  padding: 48px 0 56px;
}

.subscribe--map-only .contact-map {
  max-width: 720px;
  margin: 0 auto;
}

.map-only {
  margin: 0;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.map-only .map-only__frame {
  position: relative;
  outline: none;
}

.map-only iframe {
  width: 100vw;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.02);
  pointer-events: none;
  transition: filter 0.25s ease;
}

.map-only .map-only__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  background: rgba(23, 28, 38, 0.28);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease, visibility 0.25s ease;
}

.map-only .map-only__overlay p {
  margin: 0;
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.map-only .map-only__overlay a {
  color: #ffffff;
  text-decoration: underline;
}

.map-only .map-only__frame:hover .map-only__overlay,
.map-only .map-only__frame:focus .map-only__overlay,
.map-only .map-only__frame:focus-within .map-only__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.map-only .map-only__frame:hover iframe,
.map-only .map-only__frame:focus iframe,
.map-only .map-only__frame:focus-within iframe {
  filter: grayscale(100%) contrast(1.02) blur(2px);
}

.subscribe .contact-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  background: transparent;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.subscribe .contact-map__overlay p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.subscribe .contact-map__social {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.subscribe .contact-map__social li {
  margin: 0;
}

.subscribe .contact-map__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.subscribe .contact-map__social a:hover,
.subscribe .contact-map__social a:focus {
  color: #ffffff;
  opacity: 0.75;
}

.subscribe .contact-map:hover .contact-map__overlay,
.subscribe .contact-map:focus .contact-map__overlay,
.subscribe .contact-map:focus-within .contact-map__overlay {
  opacity: 1;
}


.subscribe #ajaxChimp {
  text-align:center;
}

.subscribe input[type=text] { 
  background-color: rgba(255, 255, 255, 0); 
  border: solid 1px rgba(255, 255, 255, 1);
  height: 55px;
  width: 30%; 
  color: #fff;
  border-right: none;
  word-spacing: 1px;
  padding-left: 20px;
  font-size: 13px;
  outline: none;
}

.subscribe button { 
  background-color: rgba(44, 201, 180, 0); 
  border: 1px solid;
  color: #fff; 
  width: 65px;
  word-spacing: 1px;
  outline: none;
  font-size: 17px;
  font-weight: 700;
  left: -4px;      position: relative;
  top: 1px;
  height: 55px;
  transition: all 0.5s ease; 
  -moz-transition: all 0.5s ease; 
  -webkit-transition: all 0.5s ease; 
  -o-transition: all 0.5s ease; 
}

.subscribe button:hover { 
  background: #2CC9B4; 
  color: #fff; 
}

.subscribe label {
  height: 2.5em;
  padding: 15px 20px;
  color: #ecf0f1;
  font-size: 13px;
  float: none;
  top: 0;
  display: block!important;
  font-weight: 100;
}

.subscribe label i {
    color: #FFFFFF;
    padding-right: 5px;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #FFFFFF;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #FFFFFF;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #FFFFFF;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:  #FFFFFF;
}


/* ================================= */
/* :::::::::: 7. Contact ::::::::::: */
/* ================================= */

.contact {
  background-color: #f3f5f8;
  z-index: 10;
  width: 100%;
  text-align: center;
  position: relative;
}

.contact.contact--standalone {
  min-height: calc(100dvh - 68px);
  display: grid;
  align-items: center;
}
.contact-box-form {
  position: absolute;
  display: flex;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.contact h2 {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  text-align:center;
  letter-spacing: 1px;  
  text-transform: uppercase;
  padding: 0 0 57px 0;
  font-family: "Iceberg", sans-serif;
}

.contact .contact-direct {
  max-width: 700px;
  margin: 0 auto;
  padding: 90px 20px;
}

.contact .contact-direct h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-family: 'Aldrich', sans-serif;
  color: #242831;
  text-transform: uppercase;
}

.contact .contact-direct p {
  margin: 0;
  font-size: 18px;
  color: #303440;
}

.contact .contact-direct a {
  color: #1d4ed8;
}
.contact .ajax-contact-form {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px 20px 15px 20px;
}

.contact input[type='text'], .contact input[type='email'] {
   width: 49%;
   background: transparent;
   height: 50px;
   border: 1px solid #EDEDED;
   font-size: 13px;
   padding: 15px;
   outline: none;
   -webkit-transition: all 0.3s!important;
   -moz-transition: all 0.3s!important;
   transition: all 0.3s!important;
}

.contact input[type='email'] {
margin-left: auto;
}

.contact textarea {
  width: 100%;
  background: transparent;
  font-size: 13px;
  padding: 15px;
  height: 100px;
  border: 1px solid #EDEDED;
  outline: none;
  margin: 20px 0;
    resize: none;
  -webkit-transition: all 0.3s!important;
    -moz-transition: all 0.3s!important;
    transition: all 0.3s!important;
}

.contact input[type='submit'] {
  background-color: #24B7A4;
  border: 1px solid #24B7A4;
  color: #FFFFFF;
  width: auto;
  display:block;
  word-spacing: 1px;
  padding: 12px 20px 10px 20px;
  outline: none;
  font-size: 14px;
  float: left;
  font-weight: 300;
  height: 50px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.contact input[type="submit"]:hover {
    color: #676767;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #EDEDED;
}

.contact label.error {
    position: relative;
}
.contact label.error i.message {
  position: absolute;
  right: 15px;
  bottom: 30px;
}
.contact label.error i.email {
  position: absolute;
  right: 15px;
  bottom: 18px;
}
.contact label.error i.name {
  right: 15px;
  bottom: 18px;
  position: absolute;
}
.contact .ajax-contact-form i {
  color: #24B7A4;
}

.contact .notification_ok {
  text-align: center;
  color: #000000;
  font-weight: 300;
  margin-bottom: 10px;
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.contact .notification_ok i {
  color: #000000;
    padding-right: 5px;
}
.contact .contact-box {
    padding-left: 15px;
}
.contact ul {
  list-style: none;
  line-height: 25px;
  padding: 0px;
  text-align: left;
  position: relative;
  margin-bottom: 0;
}

.contact h3 {
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact ul li {
  margin-top: 0px;
  font-weight: 400;
  color: rgb(0 0 0);
  font-size: 13px;
}

.contact ul li i {
  padding-right: 25px;
  color: #000000;
  margin-bottom: 10px;
  width: 0;
}

.contact ul a {
  max-width: 100%;
  color: #000;
}

.contact ul a:hover {
  text-decoration: none;
}

.contact-form {
    position: absolute;
    bottom: 20px;
    background: #FFF;
    display: flex;
    border-radius: 3px;
    align-items: center;
    z-index: 2;
}

.contact ::-webkit-input-placeholder { /* WebKit browsers */
   color:  rgba(0, 0, 0, 0.81)!important;
}
.contact :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color:  rgba(0, 0, 0, 0.81)!important;
   opacity:  1;
}
.contact ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:  rgba(0, 0, 0, 0.81)!important;
   opacity:  1;
}
.contact :-ms-input-placeholder { /* Internet Explorer 10+ */
   color:  rgba(0, 0, 0, 0.81)!important;
}
.contact .message-box {
  text-align: left;
  color: #000000;
  font-weight: 500;
  width: 100%;
  margin-top: 20px;
  display: none;
  background-color: #fff;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
}

.contact .message-box.is-visible {
  display: block;
}

.contact .message-box.success {
	border: 1px solid #84e11f;
	padding: 8px 12px 8px 12px;
}

.contact .message-box.danger {
	border: 1px solid #cc0404;
	padding: 8px 12px 8px 12px;
}

.contact .message-box.success i {
    color: #84e11f;
    padding-right: 5px;
}

.contact .message-box.danger i {
    color: #cc0404;
    padding-right: 5px;
}

/* ================================= */
/* :::::::::: 8. Google map :::::::: */
/* ================================= */

#google-container {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #e7eaf0;
  z-index: 1;
}

.google-map {
  position: relative;
}

#zoom-in, #zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 50px;
  background-color: rgba(36,183,164, 0.9);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../images/icon-controller.svg");
    transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#zoom-in:hover, #zoom-out:hover {
  background-color: #24B7A4;

}

#zoom-in {
  background-position: 50% 0;
  margin-top: 50px;
  margin-bottom: 1px;
}

#zoom-out {
  background-position: 50% -32px;
}



/* ================================= */
/* :::::::::: 9. Footer :::::::::::: */
/* ================================= */

footer {
  background-color: #242830;
  padding: 16px 0 16px;
  z-index: 10;
  position: relative;
  color: rgba(236, 240, 241, 0.98);
}

footer .social-icons li {
  float:left;
  margin-right: 12px;
  list-style: none;
}

footer .social-icons li i.fa {
  color: rgb(236, 240, 241);
  transition: all 0.5s ease; 
  -moz-transition: all 0.5s ease; 
  -webkit-transition: all 0.5s ease; 
  -o-transition: all 0.5s ease; 
}

footer .social-icons li:hover i.fa {
  color: #D5D5D5;
}

footer .footer-content {
  display: flex;
}

footer .footer-content:has(.copyright:only-child) {
  justify-content: center;
}

footer .footer-content:has(.copyright:only-child) .copyright {
  margin-right: 0;
}

footer a {
  transition: all 0.5s ease; 
  -moz-transition: all 0.5s ease; 
  -webkit-transition: all 0.5s ease; 
  -o-transition: all 0.5s ease; 
  color: rgb(243, 246, 247);
}

footer .social-icons {
  order: 2;
  margin-bottom: 0;
}
footer .copyright {
  margin-right: auto;
  order: 1;
  line-height: 1.2;
  font-size: 13px;
}

footer a:hover, footer a:focus {
  color: rgba(236, 240, 241, 1);
  text-decoration: none;
}


/* ================================= */
/* :::::: 10. Responsive CSS ::::::: */
/* ================================= */

@media only screen and  (max-width: 1036px) {

  header {
    height: auto;
}
.welcome {
    padding-top: 120px;
}


  .subscribe button {
    width: 10%;
  }


    footer .social-icons {
    float: none;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-left: -10px;
    display: inline-block;
    width: 100%;
  }

  footer .social-icons ul {
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    float: none;
  }

  footer .copyright {
    margin: 0;
    float: none;
    text-align: center;
}

  .notification_ok {
    font-size: 15px;
    top: -29px;
    left: 0;
    background: #fff;
    width: 100%;
    padding-top: 16px;
}

.mouse {
  display: none!important;
}

.contact-form {
    width: 75%;
}

footer .footer-content {
  flex-direction: column;
  align-items: center;
}
footer .social-icon {
  margin-bottom: 10px;
  margin-right: 0;
}

}

@media only screen and  (max-width: 768px) {
  .subscribe input[type="email"] {
    margin-bottom: 10px;
  }

    .subscribe button, .subscribe input[type="text"] {
    width: 60%;
  }

  .subscribe button, .subscribe input[type="email"] {
    width: 20%;
  }

  .google-map .phone, .google-map .email {
    position: absolute;
  }

  .contact input[type="submit"] {
    width: 100%;
  }

	.about .col-md-4 {
		padding-bottom: 50px!important;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

}

@media only screen and  (max-width: 540px) {
  .contact input[type="submit"] {
    width: 100%;
  }

  .contact-form {
    width: 100%;
}

}

