.elementor-775 .elementor-element.elementor-element-c59e914{width:var( --container-widget-width, 114.482% );max-width:114.482%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;--container-widget-width:114.482%;--container-widget-flex-grow:0;}.elementor-775 .elementor-element.elementor-element-c59e914.elementor-element{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   MaroonPixel — TechNova Case Study
   Brand Colors: Maroon #7B1F2E, Gold #C9A84C
   Dark panel: #0F0A0A | Off-white: #FAF8F5
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon:        #7B1F2E;
  --maroon-deep:   #5C1621;
  --maroon-light:  #9E2B3D;
  --gold:          #C9A84C;
  --gold-light:    #E2C47A;
  --dark:          #0F0A0A;
  --dark-mid:      #1A1212;
  --dark-card:     #201616;
  --off-white:     #FAF8F5;
  --warm-gray:     #F2EFE9;
  --muted:         #8A8078;
  --text:          #1C1612;
  --text-body:     #3D3530;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --shadow-card:   0 2px 20px rgba(0,0,0,0.06);
  --shadow-lifted: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-dark:   0 20px 60px rgba(0,0,0,0.4);

  --max-width:     1200px;
  --section-gap:   96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Utility ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  :root { --section-gap: 64px; }
}

/* ─── Eyebrow Label ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--maroon);
  flex-shrink: 0;
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
}

/* Subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  z-index: 0;
}

/* Maroon radial glow, top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at top right, rgba(123,31,46,0.28) 0%, transparent 65%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* LEFT — dark quote panel */
.hero-left {
  padding: 80px 56px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--maroon), transparent);
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  background: var(--maroon);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.client-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.client-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.hero-quote-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.hero-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--maroon);
  font-family: var(--font-display);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
}

/* RIGHT — headline + stats panel */
.hero-right {
  padding: 80px 48px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-headline em {
  font-style: italic;
  color: var(--maroon-light);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-cell {
  background: var(--dark-card);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.stat-cell:hover { background: rgba(123,31,46,0.15); }

.stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--maroon-light);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ============================================
   SECTION 2 — CHALLENGE
   ============================================ */
.section-challenge {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.challenge-label-col {
  position: sticky;
  top: 32px;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 400;
  color: rgba(123,31,46,0.08);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 8px;
}

.section-title em {
  font-style: italic;
  color: var(--maroon);
}

.challenge-content {}

.challenge-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

.challenge-intro strong {
  color: var(--text);
  font-weight: 600;
}

.challenge-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.challenge-point:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-1px);
}

.cp-icon {
  width: 36px;
  height: 36px;
  background: rgba(123,31,46,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cp-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--maroon);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.cp-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   SECTION 3 — STRATEGY
   ============================================ */
.section-strategy {
  padding: var(--section-gap) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.section-strategy::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at bottom left, rgba(123,31,46,0.18) 0%, transparent 65%);
}

.strategy-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.strategy-header .eyebrow { color: var(--gold); }
.strategy-header .eyebrow::before { background: var(--gold); }

.strategy-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 12px;
}

.strategy-headline em {
  font-style: italic;
  color: var(--maroon-light);
}

.strategy-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  align-self: end;
}

.strategy-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pillar {
  background: var(--dark-card);
  padding: 36px 32px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--maroon);
  transition: height 0.4s ease;
}

.pillar:hover { background: rgba(123,31,46,0.12); }
.pillar:hover::before { height: 100%; }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--maroon-light);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
}

.pillar-body li {
  list-style: none;
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.pillar-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--maroon);
  font-size: 12px;
}

/* ============================================
   SECTION 4 — RESULTS
   ============================================ */
.section-results {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.results-header {
  margin-bottom: 56px;
}

.results-header .section-title { margin-top: 8px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.result-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.result-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--maroon), var(--maroon-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.result-card:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-3px);
}

.result-card:hover::after { transform: scaleX(1); }

.result-card.featured {
  background: var(--maroon-deep);
  border-color: transparent;
  color: #fff;
}

.result-card.featured::after { display: none; }

.result-card.featured .result-metric { color: #fff; }
.result-card.featured .result-label { color: rgba(255,255,255,0.55); }
.result-card.featured .result-desc { color: rgba(255,255,255,0.65); }

.result-icon {
  width: 40px;
  height: 40px;
  background: rgba(123,31,46,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.result-card.featured .result-icon {
  background: rgba(255,255,255,0.12);
}

.result-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--maroon);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-card.featured .result-icon svg { stroke: rgba(255,255,255,0.8); }

.result-metric {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.result-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.result-card.featured .result-desc {
  border-top-color: rgba(255,255,255,0.12);
}

/* Timeline bar */
.results-timeline {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.tl-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tl-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tl-row {
  display: grid;
  grid-template-columns: 100px 1fr 56px;
  align-items: center;
  gap: 16px;
}

.tl-month {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.tl-track {
  height: 8px;
  background: var(--warm-gray);
  border-radius: 4px;
  overflow: hidden;
}

.tl-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--maroon-deep), var(--maroon-light));
  animation: grow-bar 1.2s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes grow-bar {
  to { transform: scaleX(1); }
}

.tl-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--maroon);
  text-align: right;
}

/* ============================================
   SECTION 5 — TESTIMONIAL
   ============================================ */
.section-testimonial {
  padding: var(--section-gap) 0;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}

.section-testimonial::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 320px;
  color: rgba(123,31,46,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.testimonial-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.testimonial-quote strong {
  font-style: normal;
  color: var(--maroon);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ta-avatar {
  width: 52px;
  height: 52px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.ta-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: block;
}

.ta-role {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.ta-stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.ta-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
}

/* ============================================
   SECTION 6 — CTA
   ============================================ */
.section-cta {
  padding: var(--section-gap) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123,31,46,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 45%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.cta-headline em {
  font-style: italic;
  color: var(--maroon-light);
}

.cta-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(123,31,46,0.35);
}

.btn-primary:hover {
  background: var(--maroon-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,31,46,0.45);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.cta-reassurance {
  margin-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-reassurance span::before {
  content: '✓ ';
  color: var(--maroon-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 56px 32px;
  }

  .hero-right {
    padding: 56px 32px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .challenge-label-col { position: static; }

  .strategy-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strategy-pillars {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .tl-row {
    grid-template-columns: 72px 1fr 44px;
  }
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }

  .hero-left,
  .hero-right { padding: 40px 24px; }

  .testimonial-wrap { text-align: left; }
  .testimonial-author { justify-content: flex-start; }

  .results-timeline { padding: 24px 20px; }

  .cta-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ─── Scroll-triggered fade-in ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }/* End custom CSS */