:root{--navy-deepest:#050D24;--navy-deep:#0A1633;--navy:#14264F;--navy-elevated:#08112B;--navy-glow:rgba(20, 38, 79, 0.6);--gold:#C9A227;--gold-light:#E6BC3A;--gold-deep:#8E6F18;--gold-bright:#F2CC3D;--gold-glow:rgba(201, 162, 39, 0.4);--gold-soft:rgba(201, 162, 39, 0.18);--gold-mid:rgba(201, 162, 39, 0.4);--ivory:#ECEEF5;--ivory-veil:#B8C0D4;--ivory-quiet:#6B7691;--ivory-trace:#3D4A65;--ease:cubic-bezier(0.22, 1, 0.36, 1);--ease-slow:cubic-bezier(0.16, 1, 0.3, 1);--grain:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.93  0 0 0 0 0.96  0 0 0 0 0.22'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    linear-gradient(180deg,
      var(--navy-deepest) 0%,
      var(--navy-deep) 25%,
      var(--navy) 55%,
      var(--navy-deep) 100%);
  background-attachment: fixed;
  color: var(--ivory);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Spotlight vignette — subtle gold light at viewport center, darker at edges */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, transparent 0%, rgba(5, 13, 36, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Grain — almost imperceptible */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
body > * { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ============================================================================
   GOLD GUIDE RAIL — vertical scroll progress + section navigation
   Lives on the right edge of the viewport. Fills with gold as you scroll.
   Section markers serve as click-to-jump nav.
============================================================================ */
.guide-rail {
  position: fixed;
  top: 50%;
  right: clamp(18px, 3vw, 36px);
  transform: translateY(-50%);
  height: 60vh;
  width: 24px;
  z-index: 40;
  pointer-events: none;
}
.guide-rail-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(201, 162, 39, 0.22);
  transform: translateX(-50%);
}
.guide-rail-fill {
  position: absolute;
  top: 0; left: 50%;
  width: 1.5px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  height: 0%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold-glow);
  transition: height 120ms linear;
}
.guide-marker {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-marker::before {
  content: '';
  width: 8px; height: 1.5px;
  background: rgba(201, 162, 39, 0.4);
  transition: width 280ms var(--ease), background 280ms var(--ease);
}
.guide-marker:hover::before,
.guide-marker.active::before {
  width: 16px;
  background: var(--gold);
}
.guide-marker.active::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
}
.guide-label {
  position: absolute;
  right: 24px;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-quiet);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), color 240ms var(--ease);
  pointer-events: none;
}
.guide-marker:hover .guide-label,
.guide-marker.active .guide-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

@media (max-width: 900px) {
  .guide-rail { display: none; }
}

/* ============================================================================
   TOP ORNAMENT BAND
============================================================================ */
.ornament {
  padding: 2.2rem clamp(1.5rem, 4vw, 4rem);
}
.ornament-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.ornament-mark {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ornament-mark .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.ornament-mark.right { justify-content: flex-end; }
.ornament-deco-bar svg { display: block; height: 24px; width: auto; }

/* ============================================================================
   NAV — non-sticky, scrolls away with the page
============================================================================ */
.nav {
  padding: 0.4rem clamp(1.5rem, 4vw, 4rem) 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gold-soft);
  max-width: 1320px;
  margin: 0 auto;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-transform: uppercase;
}
.wordmark .v-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold-deep);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3);
}
.wordmark .v-disc::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.35;
}
.wordmark .gp { color: var(--gold); }
.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: center;
}
.nav-links a {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-veil);
  transition: color 240ms var(--ease);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  color: var(--gold);
  padding: 0.65rem 1.3rem;
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 320ms var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 320ms var(--ease);
  z-index: -1;
}
.nav-cta:hover { color: var(--navy-deep); border-color: var(--gold-deep); }
.nav-cta:hover::before { transform: translateY(0); }

/* ============================================================================
   HERO — proscenium ornament + Poiret H1 with subtle gold glow
============================================================================ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.proscenium {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  margin-top: clamp(0.5rem, 2vw, 1.4rem);
  position: relative;
}
.proscenium::before {
  content: '';
  position: absolute;
  inset: -25% -30%;
  background:
    radial-gradient(ellipse 50% 55% at 50% 50%, rgba(242, 204, 61, 0.28), rgba(230, 188, 58, 0.14) 32%, transparent 68%),
    radial-gradient(ellipse 85% 85% at 50% 50%, rgba(201, 162, 39, 0.09), transparent 72%);
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}
.proscenium svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter:
    drop-shadow(0 0 36px rgba(242, 204, 61, 0.38))
    drop-shadow(0 0 80px rgba(201, 162, 39, 0.22));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.hero-content { padding-top: 0.4rem; position: relative; }

/* H1 with subtle gold radial glow behind */
.hero-h1 {
  position: relative;
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 8.4vw, 7.2rem);
  line-height: 0.98;
  color: var(--ivory);
  letter-spacing: 0.075em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  text-wrap: balance;
}
.hero-h1::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 50% 50% at 35% 50%, rgba(201, 162, 39, 0.08), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.hero-h1 .gp { color: var(--gold); }

/* Subhead with gold drop cap */
.hero-subhead {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--ivory-veil);
  margin-bottom: 2.6rem;
  max-width: 60ch;
  position: relative;
}
.hero-subhead::first-letter {
  font-family: 'Poiret One', sans-serif;
  font-style: normal;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--gold);
  font-weight: 400;
}
.hero-subhead em {
  color: var(--gold-light);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

.hero-ctas {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.4rem;
}

/* Primary CTA — Cormorant SC heavy, gold fill, light-expand on hover */
.cta-primary {
  position: relative;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1.05rem 2.2rem;
  font-family: 'Cormorant SC', serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--gold-deep);
  transition: all 320ms var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  overflow: visible;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse 50% 50% at center, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 380ms var(--ease);
  pointer-events: none;
  z-index: -1;
}
.cta-primary:hover {
  background: var(--gold-bright);
  letter-spacing: 0.36em;
  transform: translateY(-2px);
}
.cta-primary:hover::before { opacity: 1; }

.cta-ghost {
  color: var(--ivory);
  padding: 1.05rem 0.4rem;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  border-bottom: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 280ms var(--ease);
  position: relative;
}
.cta-ghost::after {
  content: '';
  position: absolute;
  bottom: -1.5px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 380ms var(--ease);
}
.cta-ghost:hover { gap: 0.9rem; color: var(--gold-light); }
.cta-ghost:hover::after { transform: scaleX(1); transform-origin: left; }
.cta-ghost .arrow { color: var(--gold); }

.hero-foot {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  flex-wrap: wrap;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-veil);
  padding-top: 1.6rem;
  border-top: 1px solid var(--gold-soft);
}
.hero-foot .sep { color: var(--gold); margin: 0 0.4em; }
.hero-foot .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  margin-right: 0.6em;
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}

/* ============================================================================
   THE PLATE — Poiret deco panel with stepped corners
============================================================================ */
.plate {
  background: var(--navy-elevated);
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold);
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 4px var(--navy-elevated),
    0 0 0 5px var(--gold-soft);
}
.plate::before,
.plate::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.plate::before { top: -7px; left: -7px; border-right: none; border-bottom: none; }
.plate::after  { bottom: -7px; right: -7px; border-left: none; border-top: none; }

.plate-flourish {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: var(--navy-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.plate-flourish svg { width: 100%; height: 18px; }

.p-label {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-soft);
  margin-bottom: 1.2rem;
}
.p-headline {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 0.7rem;
}
.p-headline .gp { color: var(--gold); }
.p-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ivory-veil);
  margin-bottom: 1.4rem;
  text-align: center;
}
.p-sub em { color: var(--gold-light); font-style: italic; }

.form-fields { display: flex; flex-direction: column; gap: 0.95rem; }
.field { display: flex; flex-direction: column; gap: 0.34rem; }
.field label {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ivory-trace);
  color: var(--ivory);
  padding: 0.65rem 0;
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  transition: border-color 240ms var(--ease);
}
.field input::placeholder { color: var(--ivory-quiet); font-style: italic; }
.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field select { color: var(--ivory-veil); cursor: pointer; }

.p-cta {
  position: relative;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.95rem 1rem;
  font-family: 'Cormorant SC', serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--gold-deep);
  width: 100%;
  margin-top: 1.4rem;
  transition: all 320ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: visible;
}
.p-cta::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(ellipse 60% 60% at center, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 380ms var(--ease);
  pointer-events: none;
  z-index: -1;
}
.p-cta:hover { background: var(--gold-bright); letter-spacing: 0.36em; }
.p-cta:hover::before { opacity: 1; }

.p-foot {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-soft);
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-veil);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-foot .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ============================================================================
   DECO DIVIDER between major sections
============================================================================ */
.deco-divider {
  padding: clamp(2.2rem, 4vw, 3.4rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: center;
}
.deco-divider svg { width: 100%; max-width: 280px; height: auto; }

/* ============================================================================
   SCROLL REVEAL — fade-up with subtle gold glow when section enters viewport
============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms var(--ease-slow), transform 1000ms var(--ease-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-glow {
  position: relative;
}
.reveal-glow::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 162, 39, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 1400ms var(--ease-slow);
  pointer-events: none;
  z-index: -1;
}
.reveal-glow.visible::before { opacity: 1; }

/* ============================================================================
   DELIVERABLES — three Poiret-titled cards
============================================================================ */
.deliverables {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
}
.deliverables::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 92%;
  max-width: 1100px;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 75% at 50% 35%, rgba(236, 238, 245, 0.11), rgba(230, 188, 58, 0.05) 42%, transparent 78%);
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}
.deliverables-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.deliverables-header {
  text-align: center;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.deliverables-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.deliverables-eyebrow::before,
.deliverables-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.deliverables-title {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.deliverables-title .gp { color: var(--gold); }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.4rem);
}

.deliverable-card {
  background: var(--navy-elevated);
  padding: 1px;
  position: relative;
  background-image: linear-gradient(180deg, var(--gold) 0%, transparent 14%, transparent 86%, var(--gold) 100%);
  transition: transform 480ms var(--ease);
}
.deliverable-card:hover { transform: translateY(-4px); }
.deliverable-card-inner {
  background: var(--navy-elevated);
  padding: clamp(1.8rem, 2.4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 300px;
  position: relative;
  text-align: center;
  transition: box-shadow 480ms var(--ease);
}
.deliverable-card:hover .deliverable-card-inner {
  box-shadow: inset 0 0 60px rgba(201, 162, 39, 0.08);
}
.deliverable-card-inner::before,
.deliverable-card-inner::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 320ms var(--ease);
}
.deliverable-card-inner::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.deliverable-card-inner::after  { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.deliverable-card:hover .deliverable-card-inner::before,
.deliverable-card:hover .deliverable-card-inner::after { opacity: 1; }

.deliverable-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.deliverable-ornament svg { width: 42px; height: 42px; }
.deliverable-label {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.deliverable-name {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.deliverable-name .gp { color: var(--gold); }
.deliverable-desc {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ivory-veil);
}
.deliverable-meta {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-quiet);
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gold-soft);
}
.deliverable-meta .gold { color: var(--gold); }

/* ============================================================================
   CONTRAST SECTION — The Pain / The Practice (Metropolis-inspired)
   Six pain-point cards + six solution cards. Visual contrast: the agency
   reality vs. the Veritas reality. Each card has a deco-industrial SVG icon.
============================================================================ */
.contrast {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
}
.contrast::after {
  content: '';
  position: absolute;
  top: 5%; left: 50%;
  width: 90%;
  max-width: 1100px;
  height: 35%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 75% at 50% 30%, rgba(236, 238, 245, 0.08), rgba(230, 188, 58, 0.04) 42%, transparent 78%);
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}
.contrast-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contrast-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.4rem);
}
.contrast-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.contrast-eyebrow::before,
.contrast-eyebrow::after {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold);
}
.contrast-title {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.contrast-title .gp { color: var(--gold); }
.contrast-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gold-light);
}

.contrast-block { margin-bottom: clamp(2.6rem, 4vw, 3.6rem); }
.contrast-block:last-child { margin-bottom: 0; }
.block-label {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  width: 100%;
  justify-content: center;
}
.block-label::before,
.block-label::after {
  content: '';
  width: clamp(40px, 8vw, 80px);
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.block-label .label-inner {
  display: inline-block;
}
.block-label .gold { color: var(--gold); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.contrast-card {
  background: var(--navy-elevated);
  padding: 1px;
  background-image: linear-gradient(180deg, var(--gold) 0%, transparent 14%, transparent 86%, var(--gold) 100%);
  position: relative;
  transition: transform 480ms var(--ease);
}
.contrast-card:hover { transform: translateY(-3px); }
.contrast-card-inner {
  background: var(--navy-elevated);
  padding: 1.7rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  min-height: 252px;
  position: relative;
  transition: box-shadow 480ms var(--ease);
}
.contrast-card:hover .contrast-card-inner {
  box-shadow: inset 0 0 50px rgba(201, 162, 39, 0.07);
}
.contrast-card-inner::before,
.contrast-card-inner::after {
  content: '';
  position: absolute;
  width: 11px; height: 11px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.55;
}
.contrast-card-inner::before { top: 7px; left: 7px; border-right: none; border-bottom: none; }
.contrast-card-inner::after  { bottom: 7px; right: 7px; border-left: none; border-top: none; }

.card-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 100%; height: 100%; display: block; }
.pain-card .card-icon svg { opacity: 0.86; }

.card-title {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
}
.pain-card .card-title { color: var(--ivory-veil); }
.practice-card .card-title { color: var(--ivory); }

.card-desc {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ivory-veil);
}

/* Transition between Pain and Practice */
.contrast-pivot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(2.6rem, 4.5vw, 3.8rem) 0;
  gap: 1.4rem;
}
.contrast-pivot .rule {
  width: clamp(60px, 12vw, 140px);
  height: 1px;
  background: var(--gold);
}
.contrast-pivot .label {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0.6em;
  text-shadow: 0 0 18px rgba(242, 204, 61, 0.4);
}
.contrast-pivot .diamond {
  width: 12px; height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
}
.imperatives {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 4rem);
}
.imperatives-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.imp-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.imp-eyebrow::before,
.imp-eyebrow::after {
  content: '';
  width: 56px; height: 1px;
  background: var(--gold);
}

.imp-poem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.8rem, 3.4vw, 3rem);
}
.imp-line {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
  transition: color 380ms var(--ease), letter-spacing 380ms var(--ease), text-shadow 380ms var(--ease);
}
.imp-line:hover {
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px rgba(230, 188, 58, 0.25);
}
.imp-line em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}
.imp-ornament {
  display: flex;
  justify-content: center;
}
.imp-ornament svg { width: clamp(42px, 6vw, 60px); height: auto; }

/* ============================================================================
   CLOSING — marquee moment with pulsing V-mark
============================================================================ */
.closing {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  border-top: 1px solid var(--gold-soft);
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 3px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Decorative framed pulsing V mark */
.closing-mark-frame {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 2rem;
  margin-bottom: 2.4rem;
}
.closing-mark-frame::before,
.closing-mark-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.closing-mark-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.closing-mark-frame::after  { bottom: 0; right: 0; border-left: none; border-top: none; }
.closing-mark-frame svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter:
    drop-shadow(0 0 30px rgba(242, 204, 61, 0.32))
    drop-shadow(0 0 70px rgba(201, 162, 39, 0.18));
  animation: mark-pulse 4.5s ease-in-out infinite;
}
@keyframes mark-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 26px rgba(242, 204, 61, 0.26))
      drop-shadow(0 0 60px rgba(201, 162, 39, 0.14));
  }
  50%      {
    filter:
      drop-shadow(0 0 48px rgba(242, 204, 61, 0.46))
      drop-shadow(0 0 100px rgba(201, 162, 39, 0.28));
  }
}

.closing-caption {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.closing-descriptor {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.closing-descriptor .dm-sm {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.65;
  display: inline-block;
}
.closing-descriptor .dm {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.closing-descriptor-rule {
  width: 90px; height: 1px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
  opacity: 0.55;
}
.closing-lead {
  font-family: 'Poiret One', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  color: var(--ivory);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.closing-lead .gp { color: var(--gold); }
.closing-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--gold-light);
  margin-bottom: 2.6rem;
}
.closing-ctas {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   FOOTER
============================================================================ */
.footer {
  background: var(--navy-deepest);
  padding: 3.2rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  border-top: 1px solid var(--gold-soft);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 200px; height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 18px var(--gold-glow);
  z-index: 2;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 85% at 50% 0%, rgba(242, 204, 61, 0.14), rgba(201, 162, 39, 0.06) 40%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer .wm {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer .wm .gp { color: var(--gold); }
.footer .meta {
  font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ivory-quiet);
}
.footer .meta .sep { color: var(--gold); margin: 0 0.6em; }
.footer .bilingue {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory-veil);
  letter-spacing: 0;
  text-transform: none;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .plate { max-width: 460px; margin: 0 auto; width: 100%; }
  .nav-links a:not(.nav-cta) { display: none; }
  .ornament-inner { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .ornament-mark.right { justify-content: center; }
  .hero-foot { font-size: 0.78rem; }
  .deliverables-eyebrow::before, .deliverables-eyebrow::after { width: 24px; }
  .imp-eyebrow::before, .imp-eyebrow::after { width: 30px; }
}

/* ENTRANCE — only on first paint, gentle */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.ornament, .nav, .proscenium {
  animation: fadeIn 700ms var(--ease) both;
}
.proscenium { animation-delay: 80ms; }
.nav { animation-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/*FILESTART   */

/* 10Web Booster optimized this CSS file */

img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */


/*FILESTART   */

/* 10Web Booster optimized this CSS file */


	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */


/*FILESTART   */

/* 10Web Booster optimized this CSS file */

:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */


/*FILESTART   */

/* 10Web Booster optimized this CSS file */

/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */


/*FILESTART   */

/* 10Web Booster optimized this CSS file */

:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
/*# sourceURL=global-styles-inline-css */


/*FILESTART  /home/wplive/web/wp-live/wp-content/themes/veritas-theme/style.css */
/*
Theme Name: Veritas — Poiret Cinematic
Theme URI: https://veritasconsulting.ai
Author: Margaux Penichet
Author URI: https://margauxpenichet.com
Description: Poiret Cinematic — French Art Deco / cinematic restraint visual system for Veritas, the AI-augmented marketing practice. Self-contained page templates (front-page, page-about, page-services, page-work, page-contact, three case studies, 404). Each page carries its own inline styles for design-fidelity and isolation. Lead forms render the Fluent Forms shortcode, styled to match.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: All Rights Reserved
License URI:
Text Domain: veritas-poiret
Tags: marketing-practice, art-deco, poiret, navy, gold, ivory, miami, custom-design
*/

/* ============================================================================
   SELF-HOSTED FONTS (2026-05-29) — replaces the Google Fonts CDN.
   Latin subset (covers English + Spanish accents). Files in /assets/fonts/.
   EB Garamond is the variable 400–700 file (one woff2 per style).
============================================================================ */
@font-face{font-family:'Poiret One';font-style:normal;font-weight:400;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/poiret-one-400-normal.woff2) format('woff2');}
@font-face{font-family:'Cormorant SC';font-style:normal;font-weight:400;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/cormorant-sc-400-normal.woff2) format('woff2');}
@font-face{font-family:'Cormorant SC';font-style:normal;font-weight:500;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/cormorant-sc-500-normal.woff2) format('woff2');}
@font-face{font-family:'Cormorant SC';font-style:normal;font-weight:600;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/cormorant-sc-600-normal.woff2) format('woff2');}
@font-face{font-family:'Cormorant SC';font-style:normal;font-weight:700;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/cormorant-sc-700-normal.woff2) format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:italic;font-weight:400;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/dm-serif-display-400-italic.woff2) format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/dm-serif-display-400-normal.woff2) format('woff2');}
@font-face{font-family:'EB Garamond';font-style:italic;font-weight:400 700;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/eb-garamond-400_700-italic.woff2) format('woff2');}
@font-face{font-family:'EB Garamond';font-style:normal;font-weight:400 700;font-display:swap;;src:url(https://veritasconsulting.ai/wp-content/themes/veritas-theme/assets/fonts/eb-garamond-400_700-normal.woff2) format('woff2');}

/* ============================================================================
   GLOBAL FALLBACK / RESET
   Each page template carries its own inline <style> block matching the Poiret
   Cinematic system (palette in --navy-*, --gold-*, --ivory-* variables; type
   stack Poiret One + DM Serif Display + Cormorant SC + EB Garamond). This
   file is intentionally minimal — it satisfies WordPress's requirement that
   a theme include a style.css with a theme header, and provides a tiny safety
   net for any future content (e.g. blog posts) that don't yet have a template.
============================================================================ */

body {
    margin: 0;
    background: #050D24;
    color: #ECEEF5;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============================================================================
   FLUENT FORMS — Poiret "Plate" styling
   The lead form (Contact page + homepage hero) renders [fluentform id="3"].
   These rules restyle Fluent Forms' default markup to match the locked Plate:
   transparent fields with a gold under-rule, Cormorant SC labels, EB Garamond
   inputs, and the gold "Send my Diagnosis" button. Scoped to .plate so it only
   affects the lead form, not any other Fluent Form elsewhere. Hex values are
   hardcoded (not CSS vars) so the styling holds independent of inline-style load order.
============================================================================ */
.plate .fluentform { margin: 0; }
.plate .fluentform .ff-el-group { margin-bottom: 1.15rem; }

/* Labels — Cormorant SC small-caps in gold */
.plate .fluentform .ff-el-input--label label {
    font-family: 'Cormorant SC', serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #C9A227;
    margin: 0 0 0.34rem;
    padding: 0;
    display: block;
}
.plate .fluentform .ff-el-is-required > label::after,
.plate .fluentform .ff-el-input--label.ff-el-is-required label::after { color: #C9A227; }

/* Inputs / selects / textareas — transparent with a single gold under-rule */
.plate .fluentform input[type="text"],
.plate .fluentform input[type="email"],
.plate .fluentform input[type="url"],
.plate .fluentform input[type="tel"],
.plate .fluentform select,
.plate .fluentform textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #3D4A65 !important;
    border-radius: 0 !important;
    color: #ECEEF5 !important;
    padding: 0.7rem 0 !important;
    font-family: 'EB Garamond', serif !important;
    font-size: 1.1rem !important;
    font-style: italic;
    box-shadow: none !important;
    height: auto !important;
    transition: border-color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.plate .fluentform textarea { min-height: 80px; line-height: 1.5; resize: none; }
.plate .fluentform input::placeholder,
.plate .fluentform textarea::placeholder { color: #6B7691; font-style: italic; }
.plate .fluentform input:focus,
.plate .fluentform select:focus,
.plate .fluentform textarea:focus {
    outline: none !important;
    border-bottom-color: #C9A227 !important;
    box-shadow: none !important;
}
.plate .fluentform select { color: #B8C0D4; cursor: pointer; }
.plate .fluentform select option { color: #14264F; } /* readable in the OS dropdown */

/* Submit button — the gold .p-cta */
.plate .fluentform .ff-btn-submit,
.plate .fluentform button[type="submit"] {
    background: #C9A227 !important;
    color: #0A1633 !important;
    padding: 1.05rem 1.2rem !important;
    font-family: 'Cormorant SC', serif !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase !important;
    border: 1px solid #8E6F18 !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin-top: 1.4rem !important;
    box-shadow: none !important;
    transition: all 320ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.plate .fluentform .ff-btn-submit:hover,
.plate .fluentform button[type="submit"]:hover {
    background: #F2CC3D !important;
    letter-spacing: 0.36em !important;
}

/* Validation + success messages in-brand */
.plate .fluentform .error,
.plate .fluentform .text-danger,
.plate .fluentform .ff-el-is-error .text-danger {
    font-family: 'Cormorant SC', serif;
    color: #E6BC3A;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.plate .fluentform .ff-message-success,
.plate .ff_submit_msg,
.plate .fluentform .ff-custom-success {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: #ECEEF5;
    font-size: 1.05rem;
}

/* ============================================================================
   NEW SECTIONS (2026-05-29) — "Inside the Diagnosis" · "AI,Made Operational" · FAQ
   Ported from the design-chat spec. Everything is scoped under .veritas-new-section
   so generic selectors (.wrap, .eyebrow, details, summary) never leak elsewhere.
   Uses each page's inline :root vars (--gold, --ivory, --ease, etc.).
============================================================================ */
.veritas-new-section { padding: 110px 0; position: relative; z-index: 2; }
.veritas-new-section .wrap { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.veritas-new-section .eyebrow { display:flex; align-items:center; justify-content:center; gap:18px; font-family:'Cormorant SC',serif; text-transform:uppercase; letter-spacing:.36em; font-size:.82rem; color:var(--gold-light); margin-bottom:26px; }
.veritas-new-section .eyebrow::before, .veritas-new-section .eyebrow::after { content:''; height:1px; width:48px; background:linear-gradient(90deg,transparent,var(--gold-deep)); }
.veritas-new-section .eyebrow::after { background:linear-gradient(90deg,var(--gold-deep),transparent); }
.veritas-new-section .sec-head { font-family:'DM Serif Display',serif; font-size:clamp(2rem,5vw,3.1rem); line-height:1.1; text-align:center; color:var(--ivory); margin-bottom:22px; font-weight:400; }
.veritas-new-section .sec-head .gp, .veritas-new-section .gp { color:var(--gold); }
.veritas-new-section .sec-intro { font-size:1.15rem; color:var(--ivory-veil); text-align:center; max-width:680px; margin:0 auto 64px; line-height:1.7; }
.veritas-new-section .sec-intro em { font-family:'DM Serif Display',serif; font-style:italic; color:var(--ivory); }
/* process steps */
.veritas-new-section .steps { display:flex; flex-direction:column; gap:0; max-width:860px; margin:0 auto; border-top:1px solid var(--ivory-trace); }
.veritas-new-section .step { display:grid; grid-template-columns:84px 1fr; gap:32px; padding:38px 0; border-bottom:1px solid var(--ivory-trace); align-items:start; }
.veritas-new-section .step-num { font-family:'Poiret One',sans-serif; font-size:2.4rem; color:var(--gold); line-height:1; opacity:.85; }
.veritas-new-section .step-day { font-family:'Cormorant SC',serif; text-transform:uppercase; letter-spacing:.28em; font-size:.72rem; color:var(--ivory-quiet); margin-bottom:10px; }
.veritas-new-section .step-title { font-family:'Poiret One',sans-serif; font-size:1.45rem; letter-spacing:.04em; color:var(--ivory); margin-bottom:12px; }
.veritas-new-section .step-body { font-size:1.05rem; color:var(--ivory-veil); line-height:1.7; }
.veritas-new-section .step-body strong { color:var(--gold-light); font-weight:500; font-style:italic; font-family:'DM Serif Display',serif; }
.veritas-new-section .closing-line { text-align:center; font-family:'DM Serif Display',serif; font-style:italic; font-size:1.3rem; color:var(--ivory); max-width:680px; margin:56px auto 0; line-height:1.6; }
.veritas-new-section .closing-line .gp { font-style:normal; }
.veritas-new-section .sample-cta-wrap { text-align:center; margin-top:40px; }
/* FAQ accordion */
.veritas-new-section .faq { max-width:820px; margin:0 auto; }
.veritas-new-section details { border-bottom:1px solid var(--ivory-trace); }
.veritas-new-section details:first-of-type { border-top:1px solid var(--ivory-trace); }
.veritas-new-section summary { list-style:none; cursor:pointer; padding:26px 44px 26px 0; position:relative; font-family:'Poiret One',sans-serif; font-size:1.18rem; letter-spacing:.03em; color:var(--ivory); transition:color .3s var(--ease); }
.veritas-new-section summary::-webkit-details-marker { display:none; }
.veritas-new-section summary::after { content:'+'; position:absolute; right:6px; top:50%; transform:translateY(-50%); font-family:'Poiret One',sans-serif; font-size:1.7rem; color:var(--gold); transition:transform .35s var(--ease); line-height:1; }
.veritas-new-section details[open] summary::after { transform:translateY(-50%) rotate(45deg); }
.veritas-new-section summary:hover { color:var(--gold-light); }
.veritas-new-section .answer { padding:0 44px 30px 0; font-size:1.06rem; color:var(--ivory-veil); line-height:1.75; }
.veritas-new-section .answer em { font-family:'DM Serif Display',serif; font-style:italic; color:var(--ivory); }
/* AI grid */
.veritas-new-section .ai-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px 30px; max-width:900px; margin:0 auto 46px; }
.veritas-new-section .ai-item { border-top:1px solid var(--gold-deep); padding-top:18px; }
.veritas-new-section .ai-item h4 { font-family:'Poiret One',sans-serif; font-size:1.12rem; letter-spacing:.04em; color:var(--gold-light); margin-bottom:8px; font-weight:400; }
.veritas-new-section .ai-item p { font-size:.97rem; color:var(--ivory-veil); line-height:1.6; }
.veritas-new-section .ai-onramp { max-width:720px; margin:0 auto; text-align:center; font-size:1.08rem; color:var(--ivory-veil); line-height:1.75; }
.veritas-new-section .ai-onramp strong { color:var(--gold-light); font-weight:500; }
.veritas-new-section .ai-cta { font-family:'Cormorant SC',serif; text-transform:uppercase; letter-spacing:.2em; font-size:.85rem; color:var(--navy-deepest,#050D24); background:var(--gold); padding:14px 32px; text-decoration:none; display:inline-block; transition:background .3s var(--ease); }
.veritas-new-section .ai-cta:hover { background:var(--gold-light); }
.veritas-new-section-divider { height:1px; max-width:1080px; margin:0 auto; background:linear-gradient(90deg,transparent,var(--gold-deep),transparent); opacity:.4; }
@media (max-width:640px){
  .veritas-new-section { padding:72px 0; }
  .veritas-new-section .step { grid-template-columns:54px 1fr; gap:20px; }
  .veritas-new-section .step-num { font-size:1.8rem; }
  .veritas-new-section .ai-grid { grid-template-columns:1fr; }
}

/* ============================================================================
   FOOTER SOCIAL LINKS (2026-05-29) — LinkedIn · Instagram · TikTok · YouTube
============================================================================ */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.9rem;
}
.footer-social a {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-quiet, #6B7691);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--gold, #C9A227); }

/* ============================================================================
   EN/ES LANGUAGE TOGGLE (2026-05-29) — small gold nav link, always visible
============================================================================ */
.nav-lang {
  color: var(--gold) !important;
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block !important;
  text-decoration: none;
  border: 1px solid rgba(201,162,39,0.35);
  padding: 0.28em 0.7em;
  border-radius: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.nav-lang:hover { color: var(--gold-light) !important; border-color: var(--gold); }


/*FILESTART  /home/wplive/web/wp-live/wp-content/plugins/fluentform/assets/css/fluent-forms-public.css */
.fluentform *{box-sizing:border-box}.fluentform .clearfix:after,.fluentform .clearfix:before,.fluentform .ff-el-group:after,.fluentform .ff-el-group:before,.fluentform .ff-el-repeat .ff-el-input--content:after,.fluentform .ff-el-repeat .ff-el-input--content:before,.fluentform .ff-step-body:after,.fluentform .ff-step-body:before{content:" ";display:table}.fluentform .clearfix:after,.fluentform .ff-el-group:after,.fluentform .ff-el-repeat .ff-el-input--content:after,.fluentform .ff-step-body:after{clear:both}@media (min-width:768px){.frm-fluent-form .ff-t-container{display:flex;gap:15px;width:100%}.frm-fluent-form .ff-t-container.ff_cond_v{display:flex!important}.frm-fluent-form .ff-t-container.mobile:not(.ff_excluded){display:block!important}.frm-fluent-form .ff-name-address-wrapper .ff-t-cell,.frm-fluent-form .ff-name-field-wrapper .ff-t-cell{justify-content:flex-end}.frm-fluent-form .ff-t-cell{display:flex;flex-direction:column;vertical-align:inherit;width:100%}.frm-fluent-form .ff-t-cell:first-of-type{padding-left:0}.frm-fluent-form .ff-t-cell:last-of-type{flex-grow:1;padding-right:0}.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom{align-items:flex-end;display:flex;margin:auto 0 0}.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom.ff-text-center{justify-content:center}.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom.ff-text-right{justify-content:flex-end}.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button{margin-bottom:20px}}@media (max-width:768px){.ff-t-cell{margin-left:0!important}}.ff-cropper-lity .lity-container{max-width:960px}.ff-cropper-lity .lity-content{box-shadow:none;max-width:960px}.ff-cropper-lightbox{background:#fff;border-radius:6px;max-width:960px;overflow:hidden;width:min(960px,100vw - 40px)}.ff-cropper-lightbox__footer,.ff-cropper-lightbox__header{align-items:center;display:flex;gap:10px;justify-content:space-between;padding:16px 20px}.ff-cropper-lightbox__header{border-bottom:1px solid #ececec}.ff-cropper-lightbox__title{font-size:18px;font-weight:600;margin:0}.ff-cropper-lity .lity-close.ff-cropper-lightbox__close{font-family:Arial,Baskerville,monospace;font-size:28px;height:32px;line-height:32px;padding:0;position:static;right:auto;text-align:center;text-decoration:none;top:auto;width:32px;z-index:auto}.ff-cropper-lity .lity-close.ff-cropper-lightbox__close,.ff-cropper-lity .lity-close.ff-cropper-lightbox__close:active,.ff-cropper-lity .lity-close.ff-cropper-lightbox__close:focus,.ff-cropper-lity .lity-close.ff-cropper-lightbox__close:hover,.ff-cropper-lity .lity-close.ff-cropper-lightbox__close:visited{background:none;border:0;box-shadow:none;color:#000;text-shadow:none}.ff-cropper-lightbox__body{max-height:calc(100vh - 180px);overflow:auto;padding:20px}.ff-cropper-lightbox__canvas{align-items:center;display:flex;justify-content:center;max-height:calc(100vh - 360px);min-height:320px;overflow:hidden}.ff-cropper-lightbox__canvas img{display:block;max-height:100%;max-width:100%}.ff-cropper-lightbox__error,.ff-cropper-lightbox__hint{font-size:13px;margin-top:10px}.ff-cropper-lightbox__toolbar{align-items:center;display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}.ff-cropper-lightbox__toolbar-label{color:#606266;font-size:13px;font-weight:600}.ff-cropper-lightbox__ratio-list{display:flex;flex-wrap:wrap;gap:8px}.ff-cropper-lightbox__ratio-btn{background:#fff;border:1px solid #dcdfe6;border-radius:999px;color:#606266;cursor:pointer;font-size:12px;line-height:1;padding:8px 12px}.ff-cropper-lightbox__ratio-btn.is-active{background:#ecf5ff;border-color:#1a7efb;color:#1a7efb}.ff-cropper-lightbox__error{color:#f56c6c;min-height:18px}.ff-cropper-lightbox__footer{border-top:1px solid #ececec;justify-content:flex-end}.ff-cropper-lightbox__btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #dcdfe6;border-radius:4px;color:#606266;cursor:pointer;font-family:inherit;line-height:1.2;padding:10px 16px}.ff-cropper-lightbox__btn:focus,.ff-cropper-lightbox__btn:hover{background:#f5f7fa;border-color:#c0c4cc;color:#303133}.ff-cropper-lightbox__btn--primary{background:#1a7efb;border-color:#1a7efb;color:#fff}.ff-cropper-lightbox__btn--primary:focus,.ff-cropper-lightbox__btn--primary:hover{background:#0f6fe8;border-color:#0f6fe8;color:#fff}@media (max-width:767px){.ff-cropper-lightbox{width:calc(100vw - 24px)}.ff-cropper-lightbox__body{max-height:calc(100vh - 150px);padding:16px}.ff-cropper-lightbox__footer,.ff-cropper-lightbox__header{padding:14px 16px}}.fluentform .ff-el-group{margin-bottom:20px}.fluentform .ff-el-group.ff-el-form-top .ff-el-input--label{display:block;float:none;text-align:left}.fluentform .ff-el-group.ff-el-form-top .ff-el-input--content{margin-bottom:0;margin-left:auto}@media (min-width:481px){.fluentform .ff-el-group.ff-el-form-left .ff-el-input--label{text-align:left}.fluentform .ff-el-group.ff-el-form-right .ff-el-input--label{text-align:right}}.fluentform .ff-el-input--label{display:inline-block;margin-bottom:5px;position:relative}.fluentform .ff-el-input--label.ff-el-is-required.asterisk-left label:before{color:var(--fluentform-danger);content:"* ";margin-right:3px}.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after{color:var(--fluentform-danger);content:" *";margin-left:3px}.fluentform .ff-el-form-control{display:block;width:100%}.fluentform .ff-el-ratings{--ff-rating-inactive-color:#d4d4d4;--ff-rating-active-color:#ffb100;display:inline-flex;gap:3px;line-height:40px}.fluentform .ff-el-ratings input[type=radio]{display:none;height:0!important;visibility:hidden!important;width:0!important}.fluentform .ff-el-ratings label{align-items:center;border-radius:4px;display:inline-flex;justify-content:center;margin-right:3px;outline:none}.fluentform .ff-el-ratings label:focus,.fluentform .ff-el-ratings label:focus-within{box-shadow:0 0 0 2px rgba(255,177,0,.25)}.fluentform .ff-el-ratings label .ff-rating-icon{color:var(--ff-rating-inactive-color);display:inline-flex}.fluentform .ff-el-ratings label .ff-rating-icon-svg{display:block;height:22px;transition:all .3s;vertical-align:middle;width:22px}.fluentform .ff-el-ratings label .ff-rating-icon-svg.scale{transition:all .15s}.fluentform .ff-el-ratings label .ff-rating-icon-svg [fill]:not([fill=none]){fill:currentColor!important}.fluentform .ff-el-ratings label .ff-rating-icon-svg [stroke]:not([stroke=none]){stroke:currentColor!important}.fluentform .ff-el-ratings label.active .ff-rating-icon{color:var(--ff-rating-active-color)}.fluentform .ff-el-ratings label:focus,.fluentform .ff-el-ratings label:focus-within,.fluentform .ff-el-ratings label:hover{cursor:pointer}.fluentform .ff-el-ratings label:focus .ff-rating-icon-svg,.fluentform .ff-el-ratings label:focus-within .ff-rating-icon-svg,.fluentform .ff-el-ratings label:hover .ff-rating-icon-svg{transform:scale(1.1)}.fluentform .ff-el-ratings label:focus .ff-rating-icon-svg.scalling,.fluentform .ff-el-ratings label:focus-within .ff-rating-icon-svg.scalling,.fluentform .ff-el-ratings label:hover .ff-rating-icon-svg.scalling{transform:scale(1.2)}.fluentform .ff-el-repeat .ff-el-form-control{margin-bottom:10px;width:100%}.fluentform .ff-el-repeat .ff-t-cell{padding:0 10px;width:100%}.fluentform .ff-el-repeat .ff-t-cell:first-child{padding-left:0}.fluentform .ff-el-repeat .ff-t-cell:last-child{padding-right:0}.fluentform .ff-el-repeat .ff-t-container{display:flex}.fluentform .ff-el-repeat-buttons-list span{cursor:pointer}@media (min-width:481px){.fluentform .ff-el-form-left .ff-el-input--label,.fluentform .ff-el-form-right .ff-el-input--label{float:left;margin-bottom:0;padding:10px 15px 0 0;width:180px}.fluentform .ff-el-form-left .ff-el-input--content,.fluentform .ff-el-form-right .ff-el-input--content{margin-left:180px}.fluentform .ff-el-form-left .ff-t-container .ff-el-input--label,.fluentform .ff-el-form-right .ff-t-container .ff-el-input--label{float:none;margin-bottom:5px;width:auto}.fluentform .ff-el-form-left .ff-t-container .ff-el-input--content,.fluentform .ff-el-form-right .ff-t-container .ff-el-input--content{margin-left:auto}}.fluentform .ff-el-form-right .ff-el-input--label{text-align:right}.fluentform .ff-el-is-error .text-danger{font-size:12px;margin-top:4px}.fluentform .ff-el-is-error .ff-el-form-check-label,.fluentform .ff-el-is-error .ff-el-form-check-label a{color:var(--fluentform-danger)}.fluentform .ff-el-is-error .ff-el-form-control{border-color:var(--fluentform-danger)}.fluentform .ff-el-tooltip{cursor:pointer;display:inline-block;margin-left:2px;position:relative;vertical-align:middle;z-index:2}.fluentform .ff-el-tooltip:hover{color:#000}.fluentform .ff-el-tooltip svg{fill:var(--fluentform-primary)}.fluentform .ff-el-help-message{color:var(--fluentform-secondary);font-size:12px;font-style:italic;margin-top:5px}.fluentform .ff-el-help-message.ff_ahm{margin-bottom:5px;margin-top:-3px}.fluentform .ff-el-progress{background-color:#e9ecef;border-radius:.25rem;font-size:.75rem;height:1.3rem;line-height:1.2rem;overflow:hidden}.fluentform .ff-el-progress-bar{background-color:var(--fluentform-primary);color:#fff;height:inherit;text-align:right;transition:width .3s;width:0}.fluentform .ff-el-progress-bar span{display:inline-block;padding:0 5px 0 0}.fluentform .ff-el-progress-status{font-size:.9rem;margin-bottom:5px}.fluentform .ff-el-progress-title{border-bottom:2px solid #000;display:inline-block;font-weight:600;list-style-type:none;margin:8px 0 0;padding-left:15px;padding-right:15px}.fluentform .ff-el-progress-title li{display:none}.fluentform .ff-float-right{float:right}.fluentform .ff-chat-gpt-loader-svg{border:1px solid #ced4da;box-shadow:0 1px 5px rgba(0,0,0,.1);margin-top:10px;padding:15px;position:relative}.fluentform .ff-hidden{display:none!important}.fluentform .ff-step-t-container{align-items:center;display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between}.fluentform .ff-step-t-container .ff-t-cell{width:auto}.fluentform .ff-step-t-container.ff-inner_submit_container .ff-el-group{margin-bottom:0}.fluentform .ff-step-container{overflow:hidden}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left],.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left]{align-items:stretch;display:flex;gap:12px}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header{align-self:stretch;flex:0 0 30%;margin-bottom:0}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-body,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-body{flex:1 1 auto;min-width:0}.fluentform .ff-step-header{margin-bottom:20px}.fluentform .ff-step-header--tabs-left{display:flex;flex-direction:column;margin-bottom:0}.fluentform .ff-step-header--tabs{background:#f5f8ff;border-radius:8px;display:flex;flex-direction:column;padding:16px}.fluentform .ff-step-header--tabs-top .ff-step-titles{justify-content:center}.fluentform .ff-step-header--tabs-top .ff-step-titles.ff-step-titles--overflowing{justify-content:flex-start}.fluentform .ff-step-header--tabs-top .ff-step-titles li .ff-step-title-text{flex:0 1 auto;margin:0 auto;max-width:100%;width:auto}.fluentform .ff-step-header--tabs .ff-step-progress-wrap--tabs{margin-top:16px}.fluentform .ff-step-header--tabs .ff-step-progress-wrap--tabs .ff-el-progress{background:#dce7f6;border-radius:999px;height:8px}.fluentform .ff-step-header--tabs .ff-step-progress-wrap--tabs .ff-el-progress-bar{border-radius:inherit}.fluentform .ff-step-header--tabs .ff-step-progress-wrap--tabs .ff-el-progress-bar span{display:none}.fluentform .ff-step-header--tabs .ff-step-progress-wrap--tabs .ff-el-progress-status{color:#5f6f89;font-size:14px;font-weight:600;margin:8px 0 0;text-align:right}.fluentform .ff-step-header--tabs .ff-step-titles{counter-reset:none;display:flex;flex-wrap:nowrap;gap:12px;margin:0;overflow-x:auto;overflow-y:hidden;padding:0;scrollbar-width:thin;width:100%}.fluentform .ff-step-header--tabs .ff-step-titles.ff-step-titles-navs{cursor:default}.fluentform .ff-step-header--tabs .ff-step-titles li{align-items:center;background:#fff;border:1px solid #d6dee8;border-radius:14px;color:#4b5563;display:flex;flex:0 0 160px;font-size:14px;font-weight:600;gap:8px;justify-content:center;line-height:1.3;margin:0;min-height:48px;padding:12px 14px;text-align:center}.fluentform .ff-step-header--tabs .ff-step-titles li:after,.fluentform .ff-step-header--tabs .ff-step-titles li:before{display:none}.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-icon{align-items:center;color:inherit;display:inline-flex;flex:0 0 auto;font-size:16px;height:16px;justify-content:center;line-height:1;width:16px}.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-text{align-items:center;display:flex;flex:1 1 auto;gap:8px;justify-content:center;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-text i,.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-text span[class*=dashicons],.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-text svg{align-items:center;display:inline-flex;flex:0 0 auto;justify-content:center;line-height:1}.fluentform .ff-step-header--tabs .ff-step-titles li .ff-step-title-text svg{height:16px;width:16px}.fluentform .ff-step-header--tabs .ff-step-titles li:first-child,.fluentform .ff-step-header--tabs .ff-step-titles li:last-child{padding-left:14px;padding-right:14px}.fluentform .ff-step-header--tabs .ff-step-titles li:focus-visible,.fluentform .ff-step-header--tabs .ff-step-titles li:hover{background:#f8fbff;border-color:#b8d4fb;color:#007bff}.fluentform .ff-step-header--tabs .ff-step-titles li.ff_completed{background:#f8fbff;border-color:#c8dcfb;color:#007bff}.fluentform .ff-step-header--tabs .ff-step-titles li.ff_active{background:#f2f8ff;border-color:#007bff;color:#007bff}.fluentform .ff-step-header--tabs-left{background:#f5f8ff;border-radius:12px;padding:16px}.fluentform .ff-step-header--tabs-left .ff-step-titles{background:transparent;border:0;border-radius:0;counter-reset:step;display:block;flex:1 1 auto;margin-bottom:0;max-height:240px;min-height:0;overflow-x:hidden;overflow-y:auto;padding:0;scrollbar-width:thin}.fluentform .ff-step-header--tabs-left .ff-step-titles li{align-items:center;background:#fff;border:1px solid #d6dee8;border-radius:8px;box-sizing:border-box;color:#4b5563;display:flex;font-size:14px;font-weight:600;justify-content:flex-start;margin:0 0 16px;min-height:48px;overflow:hidden;padding:12px 14px 12px 48px;position:relative;text-align:left}.fluentform .ff-step-header--tabs-left .ff-step-titles li:before{align-items:center;background:#fff;border:1px solid #c8d1dc;border-radius:8px;color:#4b5563;content:counter(step);counter-increment:step;display:flex;font-size:13px;font-weight:700;height:28px;justify-content:center;left:12px;line-height:1;margin:0;position:absolute;top:50%;transform:translateY(-50%);width:28px;z-index:2}.fluentform .ff-step-header--tabs-left .ff-step-titles li:after{background:#d9e0e8;content:"";height:10px;left:34px;position:absolute;top:calc(100% + 1px);width:2px}.fluentform .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text{display:block;flex:1 1 auto;justify-content:flex-start;line-height:1.3;min-width:0;overflow:hidden;padding-left:4px;text-overflow:ellipsis;white-space:nowrap;width:auto}.fluentform .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text i,.fluentform .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text span[class*=dashicons],.fluentform .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text svg{align-items:center;display:inline-flex;flex:0 0 auto;justify-content:center;line-height:1}.fluentform .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text svg{height:16px;width:16px}.fluentform .ff-step-header--tabs-left .ff-step-titles li:focus-visible,.fluentform .ff-step-header--tabs-left .ff-step-titles li:hover{background:#f8fbff;border-color:#b8d4fb;color:#007bff}.fluentform .ff-step-header--tabs-left .ff-step-titles li.ff_completed{background:#f8fbff;border-color:#c8dcfb;color:#007bff}.fluentform .ff-step-header--tabs-left .ff-step-titles li.ff_completed:before{background:#fff;border-color:#007bff;color:#007bff}.fluentform .ff-step-header--tabs-left .ff-step-titles li.ff_completed:after{background:#9ec5fe}.fluentform .ff-step-header--tabs-left .ff-step-titles li.ff_active{background:#f2f8ff;border-color:#007bff;color:#007bff}.fluentform .ff-step-header--tabs-left .ff-step-titles li.ff_active:before{background:#007bff;border-color:#007bff;color:#fff}.fluentform .ff-step-header--tabs-left .ff-step-titles li:first-child{padding-left:48px}.fluentform .ff-step-header--tabs-left .ff-step-titles li:last-child{margin-bottom:0;padding-left:48px;padding-right:14px}.fluentform .ff-step-header--tabs-left .ff-step-titles li:last-child:after{display:none}.fluentform .ff-step-titles{counter-reset:step;display:table;margin:0 0 20px;overflow:hidden;padding:0;position:relative;table-layout:fixed;text-align:center;width:100%}.fluentform .ff-step-titles--clickable li,.fluentform .ff-step-titles-navs{cursor:pointer}.fluentform .ff-step-titles li{color:#333;display:table-cell;font-size:12px;list-style-type:none;padding:0 10px;position:relative;vertical-align:top;width:auto}.fluentform .ff-step-titles li.ff_active,.fluentform .ff-step-titles li.ff_completed{color:#007bff}.fluentform .ff-step-titles li.ff_active:before,.fluentform .ff-step-titles li.ff_completed:before{background:#007bff;border:1px solid transparent;color:#fff}.fluentform .ff-step-titles li.ff_active:after,.fluentform .ff-step-titles li.ff_completed:after{background:#007bff}.fluentform .ff-step-titles li.ff_active:after{right:0}.fluentform .ff-step-titles li:before{background:#fff;border:1px solid;border-radius:3px;color:#333;content:counter(step);counter-increment:step;display:block;font-size:10px;line-height:20px;margin:0 auto 5px;position:relative;vertical-align:top;width:20px;z-index:10}.fluentform .ff-step-titles li:after{background:#000;content:"";height:2px;left:-50%;position:absolute;top:9px;width:100%;z-index:1}.fluentform .ff-step-titles li:first-child{padding-left:0}.fluentform .ff-step-titles li:first-child:after{left:50%}.fluentform .ff-step-titles li:last-child{padding-right:0}.fluentform .ff-step-titles li:last-child:after{left:-50%}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .fluentform .ff-step-titles,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .fluentform .ff-step-titles{margin-bottom:0}.fluentform .ff-step-body{left:0;margin-bottom:15px;position:relative;top:0}@media (max-width:767px){.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left],.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left]{display:block}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header{flex:unset;margin-bottom:20px}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles{background:transparent;border:0;border-radius:0;display:flex;gap:10px;max-height:none;overflow-x:auto;overflow-y:hidden;padding:0}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li{border-radius:12px;justify-content:center;margin:0;min-height:56px;padding:14px 12px;text-align:center}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li:after,.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li:before,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li:after,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li:before{display:none}.fluentform .ff-step-container[data-progress_indicator=steps_with_nav][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text,.fluentform .ff-step-container[data-progress_indicator=tabs][data-progress_layout=left] .ff-step-header--tabs-left .ff-step-titles li .ff-step-title-text{justify-content:center}}.fluentform .ff-upload-progress{margin:10px 0}.fluentform .ff-upload-progress-inline{border-radius:3px;height:6px;margin:4px 0;position:relative}.fluentform .ff-upload-preview{border:1px solid #ced4da;border-radius:3px;margin-top:5px}.fluentform .ff-upload-preview:first-child{margin-top:0}.fluentform .ff-upload-preview-img{background-position:50%;background-repeat:no-repeat;background-size:cover;height:70px;width:70px}.fluentform .ff-upload-container-small-column-image{display:flex;flex-wrap:wrap-reverse;justify-content:center;text-align:center}.fluentform .ff-upload-details,.fluentform .ff-upload-preview{zoom:1;overflow:hidden}.fluentform .ff-upload-details,.fluentform .ff-upload-thumb{display:table-cell;vertical-align:middle}.fluentform .ff-upload-thumb{background-color:#eee}.fluentform .ff-upload-details{border-left:1px solid #ebeef0;padding:0 10px;position:relative;width:10000px}.fluentform .ff-upload-details .ff-inline-block,.fluentform .ff-upload-details .ff-upload-error{font-size:11px}.fluentform .ff-upload-remove{box-shadow:none!important;color:var(--fluentform-danger);cursor:pointer;font-size:16px;line-height:1;padding:0 4px;position:absolute;right:0;top:3px}.fluentform .ff-upload-remove:hover{color:var(--fluentform-danger);text-shadow:1px 1px 1px #000!important}.fluentform .ff-upload-filename{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fluentform .ff-table{margin-bottom:0}.fluentform .ff-checkable-grids{border:1px solid #f1f1f1;border-collapse:collapse}.fluentform .ff-checkable-grids thead>tr>th{background:#f1f1f1;border:0;padding:7px 5px;text-align:center}.fluentform .ff-checkable-grids tbody>tr>td{border:0;padding:7px 5px}.fluentform .ff-checkable-grids tbody>tr>td:not(:first-of-type){text-align:center}.fluentform .ff-checkable-grids tbody>tr:nth-child(2n)>td{background:#f1f1f1}.fluentform .ff-checkable-grids tbody>tr:nth-child(2n-1)>td{background:#fff}.fluentform .ff-screen-reader-element{clip:rect(0,0,0,0)!important;word-wrap:normal!important;border:0!important;height:1px!important;margin:0!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.fluentform .ff_upload_btn.ff-btn{background:#6f757e;border-color:#6f757e;color:#fff;cursor:pointer;display:inline-block;padding:10px 20px}.fluentform .ff_upload_btn.ff-btn:hover{background-color:#91959b;outline:none}.fluentform .ff_upload_btn.ff-btn:focus-visible{background-color:#91959b;outline:none}.fluentform .ff-el-tc{border:none;border-collapse:collapse;display:table;width:100%}.fluentform .ff-el-tc label.ff_tc_label{display:table-row}.fluentform .ff-el-tc label.ff_tc_label>span{padding-top:8px!important;width:20px}.fluentform .ff-el-tc label.ff_tc_label>div,.fluentform .ff-el-tc label.ff_tc_label>span{display:table-cell}.fluentform .ff-saved-state-input .ff_input-group-text{background-color:#1a7efb;border-color:#1a7efb;margin-left:-1px}.fluentform .ff-saved-state-input .ff_input-group-text:hover{background-color:#4898fc;border-color:#4898fc;opacity:1}.fluentform .ff-saved-state-input .ff_input-group-text img{width:28px}.fluentform .ff-saved-state-link input{text-overflow:ellipsis}.fluentform .ff-hide-group{display:none}.fluentform .ff_t_c{margin:0;padding:0 5px 0 0}.fluentform .ff_t_c p{margin:0;padding:0}.fluentform .force-hide{border:0;display:block;height:0;margin:0;opacity:0;padding:0;visibility:hidden}.fluentform input[type=checkbox],.fluentform input[type=radio]{display:inline-block;margin:0}.fluentform .text-danger{color:var(--fluentform-danger)}.fluentform .iti{width:100%}.fluentform .iti__selected-flag{background:rgba(0,0,0,.1);border-bottom-left-radius:6px;border-top-left-radius:6px}.fluentform .ff_gdpr_field{margin-right:5px}.fluentform form.ff-form-has-steps .ff-btn-submit{visibility:hidden}.fluentform form.ff-form-has-steps .ff_submit_btn_wrapper{text-align:right}.fluentform textarea{max-width:100%}.fluentform .ff-el-form-check{margin-bottom:5px}.fluentform .ff-el-form-check span.ff_span{margin-left:6px}.fluentform .ff-el-form-check-label .ff-el-form-check-input{position:relative;top:-2px;vertical-align:middle}.fluentform .ff-inline-block{display:inline-block}.fluentform .ff-inline-block+.ff-inline-block{margin-left:10px}.fluentform .ff-text-left{text-align:left}.fluentform .ff-text-center{text-align:center}.fluentform .ff-text-right{text-align:right}.fluentform .ff-el-form-control:focus~.ff-el-help-message{display:block!important}.fluentform .ff-el-form-control::-moz-placeholder{color:#868e96;opacity:1}.fluentform .ff-el-form-control::placeholder{color:#868e96;opacity:1}.fluentform .ff-el-form-control:disabled,.fluentform .ff-el-form-control[readonly]:not(.flatpickr-input){background-color:#e9ecef;opacity:1}.fluentform .iti__search-input{min-height:30px}.fluentform-step{float:left;height:1px;overflow-x:hidden;padding:3px}.fluentform-step.active{height:auto;width:100%}.fluentform-step .ff_summary_container{font-size:14px;margin-top:10px}.step-nav .next{float:right}.fluentform .has-conditions{display:none}.ff-message-success{border:1px solid #ced4da;box-shadow:0 1px 5px rgba(0,0,0,.1);margin-top:10px;padding:15px;position:relative}.ff-errors-in-stack{display:none;margin-top:15px}.ff-errors-in-stack .error{font-size:14px;line-height:1.7}.ff-errors-in-stack .error-clear{cursor:pointer;margin-left:5px;padding:0 5px}.ff-chat-reply-container div p{border-radius:6px;margin-top:12px;padding:20px 16px}.ff-chat-reply-container div .skeleton{animation:skeleton-loading 2s linear infinite alternate;padding:24px}@keyframes skeleton-loading{0%{background-color:#e3e6e8}to{background-color:#f0f3f5}}.ff-el-chat-container{position:relative}.ff-el-chat-container textarea{outline:none;position:relative;resize:none}.ff-el-chat-container .ff_btn_chat_style{background:transparent;border:none;position:absolute;right:10px;top:38%}.ff-el-chat-container .ff_btn_chat_style svg:hover{cursor:pointer;opacity:.8;outline:0;text-decoration:none;transition:all .4s}.iti-mobile .iti--container{z-index:9999}.fluentform .hidden_field{display:none!important}.fluentform .ff_force_hide{display:none!important;visibility:hidden!important}.fluentform .ff_scrolled_text{background:#e9ebed;height:200px;overflow:scroll;padding:10px 15px}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label{margin:0}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label:focus-within span{background-color:#b3d4fc}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check{display:-moz-inline-stack;display:inline-block;float:none!important;margin:0 0 10px;position:relative;width:auto!important}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check input{margin:0;opacity:0;outline:none;position:absolute;z-index:-1}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span{-webkit-appearance:none;background:#fff;border:1px solid #dcdfe6;border-left:0;border-radius:0;box-sizing:border-box;color:#606266;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;line-height:1;margin:0;outline:none;padding:12px 20px;position:relative;text-align:center;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;vertical-align:middle;white-space:nowrap}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span:hover{color:#1a7efb}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder{border:1px solid #dcdfe5;overflow:hidden}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder span{border:none!important;border-radius:0!important;margin-left:-1px;width:100%}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder.ff_item_selected{border-color:#1a7efb}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:first-child label>span{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;box-shadow:none!important}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:last-child label>span{border-radius:0 4px 4px 0}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label>span{background-color:#1a7efb;border-color:#1a7efb;box-shadow:-1px 0 0 0 #8cc5ff;color:#fff}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected:first-child label>span{border-left-color:#1a7efb}@media only screen and (max-width:768px){.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check{display:block;width:100%}.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span{border:1px solid!important;border-radius:4px!important;box-shadow:none!important;display:block;width:100%}}.fluentform .ff-el-group.ff-hpsf-container{display:none!important;position:absolute!important;transform:translateX(1000%)!important}.fluentform div.ff-el-form-hide_label>.ff-el-input--label{display:none;visibility:hidden}.fluentform .ff_file_upload_holder{margin-bottom:0}.fluentform .ff-dropzone .ff_upload_btn.ff-btn{background:rgba(223,240,255,.13);border:1px dashed var(--fluentform-primary);border-radius:var(--fluentform-border-radius);color:var(--fluentform-secondary);display:block;padding:35px;text-align:center;transition:all .2s ease;width:100%}.fluentform .ff-dropzone .ff_upload_btn.ff-btn:hover{background:rgba(223,240,255,.49)}.fluentform .ff-dropzone .ff-uploaded-list{margin-top:10px}.fluentform .ff_center{text-align:center}.fluentform .ff_right{text-align:right}.fluentform .ff_left{text-align:left}.fluentform .ff-form-inline .ff-t-container,.fluentform .ff-form-inline>.ff-el-group,.fluentform .ff-form-inline>.ff-name-field-wrapper{display:inline-block;margin-right:10px;vertical-align:top}.fluentform .ff-form-inline .ff-t-container .ff-t-cell .ff-el-input--label,.fluentform .ff-form-inline .ff-t-container>.ff-el-input--label,.fluentform .ff-form-inline>.ff-el-group .ff-t-cell .ff-el-input--label,.fluentform .ff-form-inline>.ff-el-group>.ff-el-input--label,.fluentform .ff-form-inline>.ff-name-field-wrapper .ff-t-cell .ff-el-input--label,.fluentform .ff-form-inline>.ff-name-field-wrapper>.ff-el-input--label{display:none}.fluentform .ff-form-inline .ff-t-container .ff-el-input--content,.fluentform .ff-form-inline>.ff-el-group .ff-el-input--content,.fluentform .ff-form-inline>.ff-name-field-wrapper .ff-el-input--content{margin-left:0}.fluentform .ff-form-inline .ff-t-container:last-child,.fluentform .ff-form-inline>.ff-el-group:last-child,.fluentform .ff-form-inline>.ff-name-field-wrapper:last-child{margin-right:0}.fluentform .ff-t-container .ff-name-title{width:40%}.fluentform .ff_hide_label .ff-el-input--label{display:none}.fluentform .field-value{white-space:pre-line}.fluentform .ff-el-group .ff-read-only{background-color:#e9ecef!important;opacity:1;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.fluentform .ff-el-group .ff-read-only:focus{outline:none}.fluentform label.ff-el-image-input-src{background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;display:block;height:200px;width:200px}.fluentform .ff-el-image-holder{float:left;margin-bottom:20px;margin-right:20px;width:200px}.fluentform .ff-el-image-holder .ff-el-form-check-label{padding-left:1px}.fluentform .ff_el_checkable_photo_holders{display:block;margin-bottom:-20px;overflow:hidden}.fluentform .ff-other-input-wrapper input{background:inherit}.fluentform .ff-other-input-wrapper{display:none;margin-top:8px}.fluentform .select2-container{width:100%!important}.fluentform .select2-container .select2-selection__rendered li{margin:0}.fluentform .select2-container .select2-search--inline>input{height:calc(2.25rem + 2px);line-height:1.5;margin-top:0;padding:.375rem 1.75rem .375rem .75rem}.fluentform .ff-el-form-bottom{display:flex;flex-direction:column-reverse}.fluentform .ff-el-form-bottom .ff-el-input--label{margin-bottom:0;margin-top:5px}.fluentform .mce-tinymce.mce-container.mce-panel{border:1px solid #ced4da}.fluentform .ff_input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.fluentform .ff_input-group>.ff-el-form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;display:inline-block;width:auto}.fluentform .ff_input-group>.ff-el-form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.fluentform .ff_input-group .ff-el-form-control{flex:1 1 auto;margin-bottom:0;position:relative;width:1%}.fluentform .ff_input-group-prepend{margin-right:-1px}.fluentform .input-group-append{margin-left:-1px}.fluentform .ff_input-group-append,.fluentform .ff_input-group-prepend{display:flex}.fluentform .ff_input-group>.ff_input-group-prepend>.ff_input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.fluentform .ff_input-group>.ff_input-group-append>.ff_input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.fluentform .ff_input-group-text{align-items:center;background-color:#e9ecef;border-radius:.25rem;color:#495057;display:flex;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.fluentform .ff_coupon_wrapper .ff_input-group-append{cursor:pointer}.fluentform .ff_coupon_wrapper .ff_input-group-append:hover .ff_input-group-text{background:#e3e8ed}.fluentform ul.ff_coupon_responses{list-style:none;margin:0;padding:0}.fluentform ul.ff_coupon_responses li{padding-top:5px}.fluentform ul.ff_coupon_responses span.error-clear{color:#ff5050;font-weight:700;margin-right:10px}.fluentform ul.ff_coupon_responses .ff_error{color:#f56c6c;cursor:pointer}.fluentform ul.ff_coupon_responses .ff_success{color:#28a745}.fluentform .ff-btn.disabled{opacity:.65}.fluentform .ff-btn.ff-working{position:relative;transition:all .3s ease}.fluentform .ff-btn.ff-working:after{animation:ff-progress-anim 4s 0s infinite;background:hsla(0,0%,100%,.4);bottom:0;content:"";height:5px;left:0;position:absolute;right:0}.fluentform .ff-btn-block{display:block;width:100%}.fluentform .ff-btn-block+.ff-el-btn-block{margin-top:8px}.fluentform .ff_submitting{pointer-events:none}@keyframes ff-progress-anim{0%{width:0}5%{width:0}10%{width:15%}30%{width:40%}50%{width:55%}80%{width:100%}95%{width:100%}to{width:0}}.ff_modal_container{background:#fff;max-height:90vh!important;max-width:900px;overflow:auto;padding:30px}@media only screen and (min-width:1000px){.ff_modal_container{width:900px}}.select2-results__option{margin:0}.fluentform span.select2.select2-container:after{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #495057;content:"";position:absolute;right:10px;top:50%;transform:translateY(-50%)}.ff_pointer{cursor:pointer}.ff_net_table{border:0;border-collapse:separate;border-spacing:0;line-height:1.4;margin:0;padding:0;table-layout:fixed;width:100%}.ff_net_table th{border:none;font-size:13px;font-weight:400;padding:8px 0;text-align:center;vertical-align:bottom}.ff_net_table th .ff_not-likely{float:left;text-align:left}.ff_net_table th .ff_extremely-likely{float:right;text-align:right}.ff_net_table tbody tr{background:none;border:0}.ff_net_table tbody tr td{background-color:#fff;border:1px solid #ddd;border-left:0;padding:0;text-align:center;vertical-align:middle}.ff_net_table tbody tr td input[type=radio]:checked+label{background-color:#4caf50;color:#fff}.ff_net_table tbody tr td:first-of-type{border-left:1px solid #ddd;border-radius:5px 0 0 5px}.ff_net_table tbody tr td:last-child{border-radius:0 5px 5px 0}.ff_net_table tbody tr td label{border:0;color:#444;cursor:pointer;display:block;font-size:16px;font-weight:700;height:40px;line-height:40px;margin:0;position:relative;width:100%}.ff_net_table tbody tr td label:after{border:0;content:"";height:100%;left:0;position:absolute;top:0;width:100%}.ff_net_table tbody tr td label:hover:after{border:2px solid #4caf50}.ff-el-pop-content{background-color:#000;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.2);color:#fff;font-size:11px;line-height:1.2;padding:10px;position:absolute;text-align:center;transform-origin:center bottom;z-index:9999}.ff-checkable-grids.mobile{border:0}.ff-checkable-grids.mobile tbody tr{padding-top:0!important}.ff-checkable-grids.mobile tbody tr:nth-child(2n)>td{background:transparent}.ff-checkable-grids.mobile tbody td{padding-left:10px!important;text-align:left!important}.ff-checkable-grids.mobile tbody td.ff_grid_header{background-color:#eee!important;margin:0}.ff-checkable-grids.mobile tbody td:after{content:attr(data-label);display:inline-block;letter-spacing:.5pt;padding-left:10px;white-space:nowrap}span.ff-el-rating-text{line-height:100%;padding-left:5px;vertical-align:bottom}table.ff_repeater_table{background:transparent!important;border:0;border-collapse:collapse;border-spacing:0;margin:0 0 5px;padding:0;table-layout:auto!important;vertical-align:middle;width:100%}table.ff_repeater_table th{font-size:90%;padding:0;text-align:left}table.ff_repeater_table th,table.ff_repeater_table tr{background:transparent!important;border:0;padding-top:5px}table.ff_repeater_table td{background:transparent!important;border:0;max-width:100%;padding:0 15px 15px 0;text-align:left;width:282px}table.ff_repeater_table tbody tr:only-child td .repeat-minus{visibility:hidden}table.ff_repeater_table .ff-el-group{margin:0;padding:0}table.ff_repeater_table .repeat_btn{padding-right:0;vertical-align:middle;width:30px}table.ff_repeater_table .repeat_btn span.ff-icon{cursor:pointer;margin-right:10px}table.ff_repeater_table .repeat_btn span.ff-icon.icon-minus-circle{margin-right:0}table.ff_repeater_table.repeat-maxed .repeat_btn .repeat-plus{visibility:hidden}.ff-repeater-container{display:flex;flex-direction:column}.ff-repeater-container .repeat_btn{align-self:center;display:flex}.ff-repeater-container .ff_repeater_cont_row,.ff-repeater-container .ff_repeater_header{display:flex;flex-wrap:nowrap}.ff-repeater-container .ff_repeater_cont_row:only-child .repeat-minus{visibility:hidden}.ff-repeater-container .ff_repeater_cell,.ff-repeater-container .ff_repeater_header_item{box-sizing:border-box;padding:0 15px 0 0;text-align:left}.ff-repeater-container .ff-el-repeat-buttons-list{display:flex;margin-top:34%}.ff_repeater_table.mobile tbody td{display:block;padding:10px;width:100%}.ff_repeater_table.mobile tbody td .ff-el-group{margin-top:6px}.ff_repeater_table.mobile tbody td:before{clear:both;content:attr(data-label);display:block;font-size:.875em;letter-spacing:.5pt;white-space:nowrap}.ff-el-section-break .ff-el-section-title{font-weight:600;margin-bottom:5px}.ff-el-section-break hr{background-color:#dadbdd;border:none;height:1px;margin-bottom:10px}table.ff_flexible_table.ff-checkable-grids{width:100%}.ff_flexible_table.mobile thead{left:-9999px;position:absolute;top:-9999px}.ff_flexible_table.mobile tbody td{display:block;padding:10px;width:100%}.ff_flexible_table.mobile tbody tr{background:#fff;border-bottom:1px solid #ced4da;border-top:1px solid #ced4da;border-color:#ced4da;border-style:solid;border-width:2px 1px 4px;display:block;margin:16px 0 10px;position:relative}@media only screen and (max-width:400px){.ff_repeater_table{width:100%}.ff_repeater_table thead{display:none}.ff_repeater_table tbody tr{border:1px solid #ddd;display:block;margin-bottom:15px;padding:10px}.ff_repeater_table tbody td{display:block;padding:5px 0;text-align:left;width:100%!important}.ff_repeater_table tbody td .ff-el-input--content{width:100%}.ff_repeater_table .repeat_btn{margin-top:10px;padding:10px 0;text-align:center;width:100%}.ff_repeater_table .repeat_btn .ff-el-repeat-buttons-list{display:flex;justify-content:space-between}.ff_repeater_table .repeat_btn .ff-el-repeat-buttons-list span{background-color:#f0f0f0;border-radius:3px;cursor:pointer;padding:5px 10px}}@media only screen and (min-width:641px){.fluentform .ff-el-group.ff_list_3col .ff-el-form-check{display:-moz-inline-stack;display:inline-block;margin:0 0 2px;min-height:28px;padding-right:16px;vertical-align:top;width:33.3%}.fluentform .ff-el-group.ff_list_2col .ff-el-form-check{display:-moz-inline-stack;display:inline-block;margin:0;min-height:28px;padding-right:16px;vertical-align:top;width:50%}.fluentform .ff-el-group.ff_list_4col .ff-el-form-check{display:-moz-inline-stack;display:inline-block;margin:0;min-height:28px;padding-right:16px;vertical-align:top;width:25%}.fluentform .ff-el-group.ff_list_5col .ff-el-form-check{display:-moz-inline-stack;display:inline-block;margin:0;min-height:28px;padding-right:16px;vertical-align:top;width:20%}.fluentform .ff-el-group.ff_list_inline .ff-el-form-check{display:-moz-inline-stack;display:inline-block;float:none!important;margin:0 15px 10px 0;width:auto!important}}@media (max-width:767px){table.ff_flexible_table,table.ff_flexible_table.ff-checkable-grids{border:0}table.ff_flexible_table.ff-checkable-grids tbody tr{padding-top:0!important}table.ff_flexible_table.ff-checkable-grids tbody tr td.ff_grid_header{background-color:#eee!important;margin:0;text-align:center}table.ff_flexible_table.ff-checkable-grids tbody tr td{text-align:left!important}table.ff_flexible_table.ff-checkable-grids tbody tr td:before{content:none!important}table.ff_flexible_table.ff-checkable-grids tbody tr td:after{content:attr(data-label);display:inline-block;letter-spacing:.5pt;padding-left:10px;white-space:nowrap}table.ff_flexible_table.ff-checkable-grids tbody tr:nth-child(2n)>td{background:transparent}table.ff_flexible_table thead{left:-9999px;position:absolute;top:-9999px}table.ff_flexible_table tbody tr{background:#fff;border-bottom:1px solid #ced4da;border-top:1px solid #ced4da;border-color:#ced4da;border-style:solid;border-width:2px 1px 4px;display:block;margin:16px 0 10px;padding-top:12px!important;position:relative}table.ff_flexible_table tbody tr td{display:block;margin-left:8px;margin-right:8px;padding:5px}table.ff_flexible_table tbody tr td:before{clear:both;content:attr(data-label);display:block;font-size:.875em;letter-spacing:.5pt;white-space:nowrap}table.ff_flexible_table tbody tr td.repeat_btn{background-color:#eee;margin-left:0;padding:10px!important;width:100%!important}table.ff_flexible_table tbody tr td.repeat_btn .ff-el-repeat-buttons-list{float:none;width:100%}}@media only screen and (max-width:768px){.lity-container{width:96%}.fluentform .ff-t-container .ff-name-title{width:100%}.ff_repeater_cont_row{background:#fff;border-bottom:1px solid #ced4da;border-top:1px solid #ced4da;border-color:#ced4da;border-style:solid;border-width:2px 1px 4px;display:flex;flex-direction:column;margin:16px 0 10px;padding-top:12px}.ff_repeater_cont_row .ff_repeater_cell{display:block;margin-left:8px;margin-right:8px;padding:5px}.ff_repeater_cont_row .ff-t-cell{flex-basis:100%!important;max-width:100%;width:100%}.ff_repeater_cont_row .ff_repeater_body[role=rowgroup]{display:flex;flex-direction:column}.ff-repeater-container .ff-el-repeat-buttons-list{margin-top:-28px}.ff-el-repeat-buttons-list{margin-top:0}}


/*FILESTART  /home/wplive/web/wp-live/wp-content/plugins/fluentform/assets/css/fluentform-public-default.css */
:root{--fluentform-primary:#1a7efb;--fluentform-secondary:#606266;--fluentform-danger:#f56c6c;--fluentform-border-color:#dadbdd;--fluentform-border-radius:7px;--fluentform-input-select-height:auto}.ff-default .ff_btn_style{border:1px solid transparent;border-radius:7px;cursor:pointer;display:inline-block;font-size:16px;font-weight:500;line-height:1.5;padding:8px 20px;position:relative;text-align:center;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.ff-default .ff_btn_style:focus,.ff-default .ff_btn_style:hover{opacity:.8;outline:0;text-decoration:none}.ff-default .ff-btn-primary:not(.ff_btn_no_style){background-color:#007bff;border-color:#007bff;color:#fff}.ff-default .ff-btn-primary:not(.ff_btn_no_style):focus,.ff-default .ff-btn-primary:not(.ff_btn_no_style):hover{background-color:#0069d9;border-color:#0062cc;color:#fff}.ff-default .ff-btn-secondary:not(.ff_btn_no_style){background-color:#606266;border-color:#606266;color:#fff}.ff-default .ff-btn-secondary:not(.ff_btn_no_style):focus,.ff-default .ff-btn-secondary:not(.ff_btn_no_style):hover{background-color:#727b84;border-color:#6c757d;color:#fff}.ff-default .ff-btn-lg{border-radius:6px;font-size:18px;line-height:1.5;padding:8px 16px}.ff-default .ff-btn-sm{border-radius:3px;font-size:13px;line-height:1.5;padding:4px 8px}.ff-default .ff-el-form-control{background-clip:padding-box;background-image:none;border:1px solid var(--fluentform-border-color);border-radius:var(--fluentform-border-radius);color:var(--fluentform-secondary);font-family:-apple-system,"system-ui",Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1;margin-bottom:0;max-width:100%;padding:11px 15px;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.ff-default .ff-el-form-control:focus{background-color:#fff;border-color:var(--fluentform-primary);color:var(--fluentform-secondary);outline:none}.ff-default .ff-el-form-check label.ff-el-form-check-label{cursor:pointer;margin-bottom:7px}.ff-default .ff-el-form-check label.ff-el-form-check-label>span:after,.ff-default .ff-el-form-check label.ff-el-form-check-label>span:before{content:none}.ff-default .ff-el-form-check:last-child label.ff-el-form-check-label{margin-bottom:0}.ff-default textarea{min-height:90px}select.ff-el-form-control:not([size]):not([multiple]){height:var(--fluentform-input-select-height,auto)}.elementor-editor-active .ff-form-loading .ff-step-container .fluentform-step:first-child{height:auto}.ff-upload-preview.ff_uploading{opacity:.8}@keyframes ff_move{0%{background-position:0 0}to{background-position:50px 50px}}.ff_uploading .ff-el-progress .ff-el-progress-bar{animation:ff_move 2s linear infinite;background-image:linear-gradient(-45deg,hsla(0,0%,100%,.2) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.2) 75%,transparent 0,transparent);background-size:50px 50px;border-bottom-left-radius:20px;border-bottom-right-radius:8px;border-top-left-radius:20px;border-top-right-radius:8px;bottom:0;content:"";left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:1}.ff_payment_summary{overflow-x:scroll}.pac-container{z-index:99999!important}.ff-support-sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.ff-default{font-family:inherit}.ff-default .ff-el-input--label label{display:inline-block;font-weight:500;line-height:inherit;margin-bottom:0}form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style){background-color:var(--fluentform-primary);color:#fff}