/* ============================================================================
   Kandamal Nexus — public website
   Theme lifted from the KN BMS app (client/src/styles.css):
     navy  #0F2A5F   primary brand surface
     green #5DA427   accent / CTA
     cream #FAF1DD   brand light text on navy
   The marketing canvas extends the navy downward (#081633, #050D1F) for depth;
   every hue on the page is one of the brand three or a tint of them.
   ========================================================================== */

:root {
  --navy: #0F2A5F;
  --navy-2: #0A1F47;
  --navy-3: #081633;
  --ink: #050D1F;          /* deepest canvas */
  --green: #5DA427;
  --green-2: #4A8520;
  --green-bright: #7BC93E; /* large-type accent on dark only */
  --cream: #FAF1DD;
  --cream-60: rgba(250, 241, 221, 0.62);
  --cream-45: rgba(250, 241, 221, 0.5);  /* smallest readable text on ink (AA) */
  --cream-30: rgba(250, 241, 221, 0.28); /* decorative strokes ONLY, not text */
  --cream-12: rgba(250, 241, 221, 0.12);
  --cream-06: rgba(250, 241, 221, 0.06);
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip, not hidden — keeps position:sticky alive */
}

/* Film-grain warmth over the whole page */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--green-bright); text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--green); color: var(--ink); }

/* ---------------------------------------------------------------- nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  /* Semi-opaque by default so links stay legible over content even when the
     scroll listener never runs (no-JS). JS only upgrades this to glass. */
  background: rgba(5, 13, 31, 0.6);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(5, 13, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-12);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand .k {
  /* Circular brand logo: navy disc + green ring, matching the printed logo. */
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border: 2px solid var(--green);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  flex: none;
}
.brand .k img { width: 24px; height: 24px; }
.brand b { font-size: 15px; letter-spacing: 0.14em; font-weight: 800; }
.brand small { display: block; font-size: 10.5px; letter-spacing: 0.22em; color: var(--cream-60); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--cream-60); font-size: 14.5px; font-weight: 600;
  padding: 10px 14px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--cream); background: var(--cream-06); }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; margin: 1px 2px 0;
  background: var(--green); border-radius: 2px;
}
.nav-cta {
  margin-left: 10px;
  background: var(--green); color: var(--ink) !important;
  font-weight: 800; padding: 11px 18px !important; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(93, 164, 39, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(93, 164, 39, 0.45); background: var(--green) !important; }

/* Mobile nav */
.nav-burger {
  display: none;
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--cream-06); color: var(--cream);
  cursor: pointer; place-items: center;
}
.nav-burger svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 60;
  background: rgba(5, 13, 31, 0.97);
  backdrop-filter: blur(10px);
  padding: 96px 32px 40px;
  flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); font-size: 28px; font-weight: 800; letter-spacing: -0.01em;
  padding: 12px 4px; border-bottom: 1px solid var(--cream-06);
  opacity: 0; transform: translateY(14px);
  animation: menuIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.mobile-menu a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(6) { animation-delay: 0.25s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--cream-06); color: var(--cream); font-size: 22px; cursor: pointer;
}

/* ---------------------------------------------------------------- hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; align-items: center;
  overflow: clip;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(15, 42, 95, 0.55), transparent 65%),
    radial-gradient(800px 500px at -10% 110%, rgba(93, 164, 39, 0.12), transparent 60%),
    var(--ink);
  perspective: 1200px;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--cream-06) 1px, transparent 1px),
    linear-gradient(90deg, var(--cream-06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 600px at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 40%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 140px 24px 80px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--green); }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 0.98; letter-spacing: -0.03em; font-weight: 800;
  color: var(--cream);
}
.hero h1 .accent { color: var(--green-bright); }
.hero-as {
  margin-top: 18px;
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 600;
  color: var(--green-bright); letter-spacing: 0.02em;
}
.hero-sub {
  margin-top: 18px; max-width: 46ch;
  font-size: clamp(17px, 1.6vw, 20px); color: var(--cream-60);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 14px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 52px;
}
.btn svg { width: 19px; height: 19px; }
.btn-green { background: var(--green); color: var(--ink); box-shadow: 0 10px 30px rgba(93, 164, 39, 0.35); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(93, 164, 39, 0.45); }
.btn-ghost { background: var(--cream-06); color: var(--cream); border: 1px solid var(--cream-12); }
.btn-ghost:hover { background: var(--cream-12); transform: translateY(-2px); }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 44px;
  font-size: 13.5px; font-weight: 600; color: var(--cream-60);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 15px; height: 15px; color: var(--green-bright); flex: none; }

/* The 3D roofing-sheet fan */
.sheet-stage {
  position: relative; height: 480px;
  transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(-32deg);
  transition: transform 0.25s ease-out;
}
.sheet {
  position: absolute; left: 8%; right: 4%; top: 40%;
  height: 78px; border-radius: 8px;
  transform-style: preserve-3d;
  box-shadow: -18px 26px 40px rgba(0, 0, 0, 0.45);
  /* corrugation via repeating gradient over the per-sheet base color */
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.24) 0 6px,
      rgba(255, 255, 255, 0.02) 6px 20px,
      rgba(0, 0, 0, 0.22) 20px 34px,
      rgba(255, 255, 255, 0.02) 34px 48px),
    var(--sheet-color, #7a1f1f);
}
.sheet::after { /* sheet edge/thickness */
  content: ''; position: absolute; left: 0; right: 0; bottom: -10px; height: 10px;
  border-radius: 0 0 8px 8px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateZ(-1px);
}
.sheet:nth-child(1) { --sheet-color: #8C2B2B; transform: translateZ(0px); }
.sheet:nth-child(2) { --sheet-color: #1F5F3D; transform: translateZ(56px); }
.sheet:nth-child(3) { --sheet-color: #2E5F8C; transform: translateZ(112px); }
.sheet:nth-child(4) { --sheet-color: #8C7B2B; transform: translateZ(168px); }
.sheet:nth-child(5) { --sheet-color: #9aa3ad; transform: translateZ(224px); }
.hero-scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: var(--cream-30); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-hint::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(var(--cream-30), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 50% { transform: scaleY(0.55); transform-origin: top; } }

/* ------------------------------------------------------------- sections --- */
.section { position: relative; padding: 110px 0; }
.section-num {
  font-size: clamp(90px, 14vw, 180px); font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--cream-12);
  position: absolute; right: 2%; top: 34px;
  user-select: none; pointer-events: none;
}
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-bright); display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.kicker::before { content: ''; width: 26px; height: 2px; background: var(--green); }
h2.title {
  font-size: clamp(32px, 4.4vw, 54px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--cream);
  max-width: 20ch;
}
.lede { margin-top: 20px; max-width: 60ch; color: var(--cream-60); font-size: 18px; }

/* Reveal-on-scroll — hidden state applies ONLY when JS is running (site.js
   stamps .js on <html>). No JS = no observer = everything must stay visible. */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ bento -------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 54px; }
.tile {
  position: relative; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(15, 42, 95, 0.35), rgba(8, 22, 51, 0.65));
  border: 1px solid var(--cream-12);
  padding: 30px 28px;
  min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  overflow: clip;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.tile:hover { border-color: var(--cream-30); box-shadow: var(--shadow-deep); }
.tile .shine {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px 260px at var(--mx, 50%) var(--my, 50%), rgba(250, 241, 221, 0.12), transparent 60%);
  transition: opacity 0.3s;
}
.tile:hover .shine { opacity: 1; }
.tile h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: var(--cream); }
.tile p { font-size: 14.5px; color: var(--cream-60); max-width: 40ch; }
.tile .glyph {
  position: absolute; top: 24px; left: 26px;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--cream-06); border: 1px solid var(--cream-12);
  display: grid; place-items: center; color: var(--green-bright);
}
.tile .glyph svg { width: 23px; height: 23px; }
.tile .go {
  position: absolute; top: 28px; right: 24px;
  font-size: 13px; font-weight: 800; color: var(--cream-30); letter-spacing: 0.06em;
  transition: color 0.2s, transform 0.2s;
}
.tile:hover .go { color: var(--green-bright); transform: translateX(3px); }
.t-6 { grid-column: span 6; } .t-4 { grid-column: span 4; }
.t-8 { grid-column: span 8; } .t-12 { grid-column: span 12; }

/* Numbered service cards */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 54px; }
.step {
  border-radius: var(--radius); border: 1px solid var(--cream-12);
  background: linear-gradient(160deg, rgba(15, 42, 95, 0.3), rgba(8, 22, 51, 0.6));
  padding: 34px 30px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, border-color 0.3s, box-shadow 0.3s;
}
.step:hover { border-color: var(--cream-30); box-shadow: var(--shadow-deep); }
.step .n {
  font-family: var(--serif); font-size: 46px; color: var(--green-bright);
  line-height: 1; margin-bottom: 18px; display: block;
}
.step h3 { font-size: 21px; font-weight: 800; color: var(--cream); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--cream-60); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--cream-60); background: var(--cream-06);
  border: 1px solid var(--cream-12); border-radius: 999px;
  padding: 6px 13px;
}
.chip i { /* colour swatch dot (roofing colours) */
  display: inline-block; width: 11px; height: 11px; border-radius: 3px;
  margin-right: 7px; vertical-align: -1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Trust band */
.band {
  border-top: 1px solid var(--cream-12); border-bottom: 1px solid var(--cream-12);
  background: linear-gradient(90deg, rgba(15, 42, 95, 0.25), rgba(93, 164, 39, 0.07));
}
.band-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 34px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.band-item { text-align: center; }
.band-item b { display: block; font-size: 17px; font-weight: 800; color: var(--cream); }
.band-item span { font-size: 13px; color: var(--cream-60); }

/* CTA banner */
.cta-banner { margin: 0 24px; }
.cta-card {
  max-width: var(--maxw); margin: 0 auto;
  border-radius: 26px; padding: clamp(40px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(93, 164, 39, 0.25), transparent 70%),
    linear-gradient(160deg, var(--navy), var(--navy-3));
  border: 1px solid var(--cream-12);
  box-shadow: var(--shadow-deep);
}
.cta-card h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.02em; color: var(--cream); }
.cta-card p { margin: 16px auto 0; max-width: 52ch; color: var(--cream-60); }
.cta-card .hero-ctas { justify-content: center; }

/* ------------------------------------------------------------- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 54px; }
.contact-card {
  border-radius: var(--radius); border: 1px solid var(--cream-12);
  background: linear-gradient(160deg, rgba(15, 42, 95, 0.3), rgba(8, 22, 51, 0.6));
  padding: 32px;
}
.contact-card h3 { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 14px; }
.contact-card .big { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--cream); line-height: 1.3; }
.contact-card .big a { color: var(--cream); }
.contact-card .big a:hover { color: var(--green-bright); }
.contact-card p { color: var(--cream-60); margin-top: 8px; font-size: 15px; }
.map-frame {
  grid-column: 1 / -1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--cream-12);
  height: 420px;
  filter: saturate(0.85) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------- footer ----- */
footer {
  border-top: 1px solid var(--cream-12);
  background: linear-gradient(180deg, transparent, rgba(8, 22, 51, 0.8));
  padding: 64px 0 40px; margin-top: 110px;
}
.foot { max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot .brand small { margin-top: 2px; }
.foot p { color: var(--cream-60); font-size: 14px; margin-top: 16px; max-width: 34ch; }
.foot h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-45); margin-bottom: 16px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { color: var(--cream-60); font-size: 14.5px; }
.foot ul a:hover { color: var(--cream); }
.foot-legal {
  max-width: var(--maxw); margin: 44px auto 0; padding: 22px 24px 0;
  border-top: 1px solid var(--cream-06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 12.5px; color: var(--cream-45);
}

/* Anchored sections (#roofing etc.) must clear the 72px fixed header. */
[id] { scroll-margin-top: 88px; }

/* No-JS fallback: the burger is inert without its click handler, so show the
   plain link row instead and hide the dead button. */
html:not(.js) .nav-burger { display: none !important; }
@media (max-width: 900px) {
  html:not(.js) .nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; }
  html:not(.js) .nav-inner { height: auto; padding-top: 10px; padding-bottom: 10px; }
}

/* Mobile-only sticky action bar: Call / WhatsApp always one tap away. */
.callbar { display: none; }
@media (max-width: 900px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--cream-12);
    border-top: 1px solid var(--cream-12);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 54px; font-size: 15px; font-weight: 800;
    background: var(--navy-2); color: var(--cream);
  }
  .callbar a.wa { background: var(--green); color: var(--ink); }
  .callbar svg { width: 18px; height: 18px; }
  body { padding-bottom: 54px; } /* keep footer content clear of the bar */
}

/* A rotated tablet must never keep the mobile overlay + scroll lock. */
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu .menu-cta {
  margin-top: 18px; border-bottom: 0 !important;
  display: flex; align-items: center; gap: 10px;
  font-size: 18px !important; border-radius: 14px;
  padding: 14px 18px !important;
  background: var(--cream-06);
}
.mobile-menu .menu-cta.wa { background: var(--green); color: var(--ink); }
.mobile-menu .menu-cta svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------ page hero --- */
.page-hero { padding: 170px 0 30px; }
.page-hero h1 { font-size: clamp(38px, 5.6vw, 68px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; color: var(--cream); max-width: 18ch; }

/* ------------------------------------------------------------- mobile ----- */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 116px; padding-bottom: 40px; }
  .hero-proof { margin-top: 30px; }
  /* The 3D deck spills ~90px above its own box; give it clear air below the
     proof strip instead of letting it ride over the text (mobile audit bug). */
  .sheet-stage { height: 280px; transform: rotateX(58deg) rotateZ(-32deg) scale(0.62); margin-top: 64px; }
  .hero-scroll-hint { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .bento { grid-template-columns: 1fr; }
  .t-4, .t-6, .t-8, .t-12 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .band-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 80px 0; }
  .section-num { display: none; }
}

/* ------------------------------------------------------ reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .sheet-stage, .tile, .step { transition: none !important; }
  .mobile-menu a { animation: none; opacity: 1; transform: none; }
  .hero-scroll-hint::after { animation: none; }
}

/* Focus visibility (keyboard users) */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 8px;
}
