/* KJFPHONE — Swiss Grid Template AP
   Palette: #18181B / #DC2626 / #F59E0B
   Fonts: Montserrat 700 (display) / Source Sans 3 (body)
*/

/* ── Design Tokens ── */
:root {
  --c-dark:   #18181B;
  --c-red:    #DC2626;
  --c-amber:  #F59E0B;
  --c-bg:     #FFFFFF;
  --c-text:   #111827;
  --c-muted:  #6B7280;
  --c-light:  #F4F4F5;
  --c-border: #E5E7EB;

  --f-display: "Montserrat", system-ui, sans-serif;
  --f-body:    "Source Sans 3", system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: 1rem;
  --col-gap: 1.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Swiss Grid Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* 12-column Swiss grid */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
}
.col-12 { grid-column: span 12; }
.col-8  { grid-column: span 12; }
.col-7  { grid-column: span 12; }
.col-6  { grid-column: span 12; }
.col-5  { grid-column: span 12; }
.col-4  { grid-column: span 12; }
.col-3  { grid-column: span 12; }
@media (min-width: 768px) {
  .col-8  { grid-column: span 8; }
  .col-7  { grid-column: span 7; }
  .col-6  { grid-column: span 6; }
  .col-5  { grid-column: span 5; }
  .col-4  { grid-column: span 4; }
  .col-3  { grid-column: span 3; }
}

/* Section spacing */
.section { padding: 3.5rem 0; }
.section--alt  { background: var(--c-light); }
.section--dark { background: var(--c-dark); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark p { color: #fff; }
.section--red  { background: var(--c-red); color: #fff; }
.section--red h2, .section--red p { color: #fff; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

/* ── Typography — Swiss hierarchy ── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); letter-spacing: -0.03em; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); margin-bottom: 0.625rem; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
}

/* Swiss rule — horizontal accent bar */
.rule {
  display: block;
  width: 3rem;
  height: 4px;
  background: var(--c-red);
  margin-bottom: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.875rem 1.75rem;
  font-family: var(--f-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.btn-primary:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: #fff;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--c-dark);
  text-decoration: none;
}
.btn-phone {
  background: var(--c-amber);
  color: var(--c-dark);
  border-color: var(--c-amber);
  font-size: 1.0625rem;
}
.btn-phone:hover {
  background: #D97706;
  border-color: #D97706;
  color: var(--c-dark);
  text-decoration: none;
}
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  background: var(--c-red);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.skip-link:focus { left: 0.5rem; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-dark);
  border-bottom: 3px solid var(--c-red);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo svg { height: 36px; width: auto; }

.nav-cta-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta-mobile .btn-phone {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: 63px;
  left: 0;
  right: 0;
  background: var(--c-dark);
  padding: 1rem 0 1.5rem;
  border-bottom: 3px solid var(--c-red);
}
.nav-menu.is-open { display: block; }
.nav-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  border-left: 3px solid transparent;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] {
  border-left-color: var(--c-red);
  color: var(--c-red);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    background: transparent;
    gap: 0;
  }
  .nav-menu a {
    padding: 0 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    border-left: none;
    border-bottom: 3px solid transparent;
    font-size: 0.875rem;
  }
  .nav-menu a:hover, .nav-menu a[aria-current="page"] {
    border-left-color: transparent;
    border-bottom-color: var(--c-red);
    color: var(--c-red);
  }
  .nav-cta-mobile .btn-phone { font-size: 0.95rem; padding: 0.625rem 1.25rem; }
  .nav-cta-mobile .hamburger { display: none; }
}

/* ── Sticky phone CTA (mobile) ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  text-decoration: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}
.sticky-cta:hover { background: #B91C1C; color: #fff; text-decoration: none; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ── Hero Section ── */
.hero {
  background: var(--c-dark);
  color: #fff;
  padding: 4rem 0 3.5rem;
  border-bottom: 4px solid var(--c-red);
}
@media (min-width: 768px) { .hero { padding: 6rem 0 5rem; } }
.hero h1 { color: #fff; }
.hero .lead { color: #D4D4D8; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--c-amber);
  color: var(--c-dark);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-stat {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-left: 4px solid var(--c-amber);
  max-width: 480px;
}
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--c-amber);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat-label { font-size: 0.9rem; color: #D4D4D8; line-height: 1.4; }

/* ── USP Grid ── */
.usp-grid {
  display: grid;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
@media (min-width: 600px)  { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp-card {
  background: var(--c-bg);
  padding: 2rem 1.5rem;
  border-top: 4px solid transparent;
}
.usp-card:hover { border-top-color: var(--c-red); }
.usp-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.usp-card h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.usp-card p { font-size: 0.9rem; color: var(--c-muted); margin: 0; }

/* ── Services Cards ── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 600px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 1.75rem;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  border-color: var(--c-red);
  box-shadow: 0 4px 16px rgba(220,38,38,0.1);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  display: block;
}
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 0.875rem; }
.service-card ul { margin: 0; padding: 0; }
.service-card li {
  font-size: 0.875rem;
  color: var(--c-muted);
  padding: 0.2rem 0 0.2rem 1.1em;
  position: relative;
}
.service-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-size: 0.75rem;
  top: 0.3rem;
}

/* ── Testimonial ── */
.testimonial-block {
  border-left: 4px solid var(--c-red);
  padding: 1.25rem 1.5rem;
  background: var(--c-light);
  margin: 0;
}
.testimonial-block blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.testimonial-block cite {
  font-size: 0.875rem;
  color: var(--c-muted);
  font-style: normal;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); }
.faq-item { background: var(--c-bg); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { background: var(--c-light); }
.faq-question[aria-expanded="true"] { color: var(--c-red); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--c-red);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.65;
}
.faq-answer.is-open { display: block; }

/* ── Contact form ── */
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--c-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 2px solid var(--c-border);
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-bg);
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--c-red); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-notice { font-size: 0.8125rem; color: var(--c-muted); margin-top: 0.75rem; }

/* ── Info blocks ── */
.info-box {
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}
.info-box h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.info-box p, .info-box li { font-size: 0.9375rem; color: var(--c-muted); }
.info-box li { padding: 0.2rem 0; }

/* ── Hours table ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--c-border); }
.hours-table td:first-child { font-weight: 600; color: var(--c-dark); width: 50%; }
.hours-table td:last-child { color: var(--c-muted); }
.hours-table tr:last-child td { border-bottom: none; }

/* ── Map embed ── */
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── About section ── */
.about-values {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-values { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: 1.5rem;
  border-top: 3px solid var(--c-red);
  background: var(--c-light);
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--c-muted); margin: 0; }

/* ── Stat bar ── */
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--c-dark);
}
.stat-item {
  flex: 1 1 150px;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--c-amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.875rem; color: #D4D4D8; }

/* ── Google CTA strip ── */
.google-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-amber);
}
.google-strip-score {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--c-dark);
}
.google-strip-score span { color: var(--c-amber); }
.google-strip p { font-size: 0.9rem; color: var(--c-muted); margin: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--c-dark);
  color: #D4D4D8;
  padding: 3rem 0 5rem;
  border-top: 3px solid var(--c-red);
}
@media (min-width: 768px) { .site-footer { padding: 3rem 0; } }
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: #A1A1AA; margin-bottom: 1rem; }
.footer-col h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col a { color: #A1A1AA; text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--c-red); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #71717A;
}
.footer-bottom a { color: #71717A; }
.footer-bottom a:hover { color: var(--c-red); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb span { margin: 0 0.375rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--c-dark);
  padding: 2.5rem 0 2rem;
  border-bottom: 3px solid var(--c-red);
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: #A1A1AA; font-size: 1.0625rem; margin: 0; }

/* ══════════════════════════════════════════════
   ANIMATION PASS · Template AP Motion Kit
   WEB-3097 · 2026-06-30
   ══════════════════════════════════════════════ */

/* Kill-switch accessibilité — WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: no-preference) {

  /* ── Keyframes ── */

  @keyframes ap-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes ap-slide-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  @keyframes ap-rule-grow {
    from { width: 0; }
    to   { width: 3rem; }
  }

  /* ── 1. Hero — entrée séquentielle (premier écran, time-based) ── */

  .hero-badge {
    animation: ap-fade-up 0.5s ease-out both;
  }
  .hero h1 {
    animation: ap-fade-up 0.6s ease-out 0.10s both;
  }
  .hero .lead {
    animation: ap-fade-up 0.55s ease-out 0.20s both;
  }
  .hero-actions {
    animation: ap-fade-up 0.5s ease-out 0.32s both;
  }
  .hero-stat {
    animation: ap-fade-up 0.6s ease-out 0.44s both;
  }

  /* ── 2. Sticky CTA — glisse depuis le bas après 0.8 s ── */

  .sticky-cta {
    animation: ap-slide-up 0.4s ease-out 0.8s both;
  }

  /* ── 3. Scroll-reveal CSS scroll-driven (Chromium 115+) ── */

  @supports (animation-timeline: view()) {

    .rule {
      width: 0;
      animation: ap-rule-grow 0.4s ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }

    .usp-card,
    .service-card,
    .value-card,
    .testimonial-block,
    .google-strip {
      animation: ap-fade-up 0.65s ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }

    .stat-item {
      animation: ap-fade-up 0.65s ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
  }

  /* ── 4. IO Fallback — navigateurs sans animation-timeline ── */

  @supports not (animation-timeline: view()) {
    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease-out, transform 0.65s ease-out;
    }
    [data-reveal].is-visible {
      opacity: 1;
      transform: none;
    }
    [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
    [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
    [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
    [data-reveal]:nth-child(5) { transition-delay: 0.08s; }
    [data-reveal]:nth-child(6) { transition-delay: 0.16s; }
  }

  /* ── 5. Hover — lift + halo GPU-friendly ── */

  .usp-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
  }
  .usp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .service-card {
    transition: border-color 0.15s, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .service-card:hover {
    transform: translateY(-2px);
  }

  .value-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .btn {
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  }
  .btn:hover {
    transform: translateY(-1px);
  }
  .btn:active {
    transform: translateY(0);
  }

  /* ── 6. Focus visible — ring amber animé ── */

  :focus-visible {
    outline: 2px solid var(--c-amber);
    outline-offset: 3px;
    transition: outline-offset 0.15s ease;
  }
}

/* ── Utility ── */
.text-red    { color: var(--c-red); }
.text-amber  { color: var(--c-amber); }
.text-muted  { color: var(--c-muted); }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 1rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
