@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════
   KERVIX  style.css  v5
   Font    : Kanit (ฟ้อนด์คณิต)
   Layout  : Centered blocks, max 1000px image
   Label   : Modern pill design with hue-based color
   Mobile  : No label, no frame, full-width
   ═══════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────── */
:root {
  --gold:        #C8960C;
  --gold-lt:     #F0C740;
  --green:       #1A3A2A;
  --green-mid:   #2D5A3D;
  --cream:       #FAF7F0;
  --white:       #FFFFFF;
  --text-1:      #111111;
  --text-2:      #444444;
  --text-3:      #888888;
  --line-green:  #06C755;
  --call-red:    #E53935;
  --border:      rgba(0,0,0,0.08);
  --shadow-1:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-2:    0 4px 16px rgba(0,0,0,0.09);
  --shadow-3:    0 8px 32px rgba(0,0,0,0.12);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --font:        'Kanit', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:  'Kanit', Georgia, serif;
  --sticky-h:    68px;
  --page-max:    680px;   /* content max width */
  --img-max:     1000px;  /* image max width on desktop */
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Force Kanit font everywhere ────────────────────── */
*,
html, body,
h1, h2, h3, h4, h5, h6,
p, span, a, li, ul, ol,
div, section, header, footer, nav, main,
input, textarea, select, button,
.prose, .prose *,
.block-body, .block-body *,
.site-header, .site-header *,
.sticky-bar, .sticky-bar *,
.btn-cta, .nav-fb-btn {
  font-family: 'Kanit', 'Helvetica Neue', Arial, sans-serif !important;
}
html   { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body   {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-1);
  background: #F6F4EF;
  overflow-x: hidden;
}
img    { max-width: 100%; height: auto; display: block; }
a      { color: var(--gold); text-decoration: none; }
a:hover{ color: #8B6508; }

/* ── Utility ─────────────────────────────────────────── */
.content-wrap {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: .88rem;
}
.nav-tel:hover { color: #fff; }
.nav-tel__icon { font-size: 1rem; }
.nav-tel__num  { white-space: nowrap; }
@media (max-width: 400px) { .nav-tel__num { display: none; } }
.nav-line-btn {
  background: var(--line-green);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  transition: opacity .15s;
}
.nav-line-btn:hover { opacity: .88; color: #fff; }

/* ════════════════════════════════════════════════════════
   BLOCK SYSTEM
════════════════════════════════════════════════════════ */
.page-main { padding: 0; }

.kv-block { width: 100%; }

/* Block wrapper — centers content on desktop */
.kv-block__wrap {
  width: 100%;
}

.nav-fb-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #1877F2 !important;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  transition: background .15s, box-shadow .15s, transform .15s;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(24,119,242,.35);
  border: none;
}
.nav-fb-btn:hover,
.nav-fb-btn:visited,
.nav-fb-btn:active {
  background: #1464D2 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(24,119,242,.5);
}
.fb-icon  { flex-shrink: 0; fill: #fff; }
.fb-label { white-space: nowrap; color: #fff; }
/* แสดง fb-label ทุก screen size */

/* ── Label Bar — สีดำ ตัวหนังสือขาว โดดเด่น ────────── */
.block-label {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  height: 38px;
  background: #111111;
  position: relative;
}
/* Gold left stripe */
.block-label::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-lt);
}
/* Gold dot pulse */
.block-label__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-lt);
  flex-shrink: 0;
  animation: dot-pulse 3s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.5); }
}
/* Label name — ขาว */
.block-label__name {
  font-size: .82rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
/* show-on-mobile class — แสดงบนมือถือด้วย */
.block-label.show-mobile {
  display: flex !important;
}

/* ── Block body ──────────────────────────────────────── */
.block-body { width: 100%; }

/* ════════════════════════════════════════════════════════
   IMAGE BLOCK
════════════════════════════════════════════════════════ */
.bk-image { background: #fff; }
.bk-image__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bk-image__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.bk-image__caption {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  color: var(--text-3);
  padding: 6px 16px;
  width: 100%;
  background: rgba(0,0,0,.02);
}
.caption-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
}
.bk-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-3);
  font-size: .95rem;
  background: #f5f5f5;
}

/* ════════════════════════════════════════════════════════
   TEXT / HTML BLOCK
════════════════════════════════════════════════════════ */
.bk-prose {
  background: var(--cream);
  padding: 36px 20px;
}

/* Prose typography */
.prose { max-width: 640px; margin: 0 auto; }
.prose h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: .8rem;
}
.prose h2 {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--green);
  margin: 1.4rem 0 .55rem;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-mid);
  margin: 1.1rem 0 .4rem;
}
.prose p  { color: var(--text-2); margin-bottom: .9rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: .9rem; }
.prose li { color: var(--text-2); margin-bottom: .3rem; }
.prose strong { color: var(--green); font-weight: 700; }
.prose em     { color: var(--gold); font-style: normal; font-weight: 600; }
.prose a      { color: var(--gold); border-bottom: 1px solid rgba(200,150,12,.3); }

/* ════════════════════════════════════════════════════════
   YOUTUBE BLOCK — เต็มจอ + ขอบสีดำ
════════════════════════════════════════════════════════ */
.bk-video {
  background: #000000;
  padding: 0;
  position: relative;
}

/* ขอบสีดำ Desktop */
.bk-video__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  padding: 12px 12px;  /* ขอบดำรอบวิดีโอ */
}

.video-ratio {
  position: relative;
  padding-bottom: 56.25%;  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ════════════════════════════════════════════════════════
   CTA BUTTON BLOCK
════════════════════════════════════════════════════════ */
.bk-cta {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 36px 20px;
  display: flex;
  justify-content: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 40px;
  background: linear-gradient(135deg, #D4A017 0%, #F0C740 50%, #D4A017 100%);
  color: #1A2800 !important;
  font-family: var(--font);
  font-size: clamp(.95rem, 3vw, 1.2rem);
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: .03em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200,150,12,.4);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: cta-glow 2.8s ease-in-out infinite;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(200,150,12,.6);
  color: #1A2800 !important;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,150,12,.4); }
  50%       { box-shadow: 0 4px 30px rgba(200,150,12,.68); }
}

/* ════════════════════════════════════════════════════════
   DIVIDER BLOCK
════════════════════════════════════════════════════════ */
.bk-divider {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  margin: 0 auto;
}
.bk-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,12,.35), transparent);
}
.bk-divider__gem {
  font-size: .8rem;
  color: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIAL BLOCK
════════════════════════════════════════════════════════ */
.bk-review {
  background: #F7F4EE;
  padding: 36px 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-2);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--gold-lt);
  font-family: var(--font-serif);
  line-height: 1;
  opacity: .35;
}
.review-stars {
  color: #F0C740;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-lt);
  margin-bottom: 10px;
}
.review-content .review-text {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.review-content .reviewer {
  font-weight: 700;
  color: var(--green-mid);
  font-size: .88rem;
}

/* ════════════════════════════════════════════════════════
   PRODUCT CARD BLOCK
════════════════════════════════════════════════════════ */
.bk-product {
  background: var(--white);
  padding: 36px 20px;
}
.product-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  max-width: 660px;
  margin: 0 auto;
}
.product-card__img-wrap { flex-shrink: 0; }
.product-card__img      { width: 180px; height: 180px; object-fit: cover; }
.product-card__body     { padding: 20px 20px 20px 0; flex: 1; }

/* ════════════════════════════════════════════════════════
   VIDEO MP4 BLOCK — สัดส่วน 3:4 เต็มจอ ขอบดำ
════════════════════════════════════════════════════════ */
.bk-video-mp4 {
  background: #000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 8px solid #000;  /* ขอบสีดำ */
  box-sizing: border-box;
}

.bk-video-mp4__player {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 4;     /* สัดส่วน 3:4 */
  object-fit: contain;
  background: #000;
  display: block;
}

/* Desktop: จำกัดความสูงสูงสุด */
@media (min-width: 768px) {
  .bk-video-mp4 {
    border-width: 12px;
  }
  .bk-video-mp4__player {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
  }
}

/* Mobile: เต็มความกว้าง */
@media (max-width: 767px) {
  .bk-video-mp4 {
    border-width: 6px;
  }
  .bk-video-mp4__player {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════
   BLOG SECTION — List Layout
════════════════════════════════════════════════════════ */
.blog-section {
  background: var(--green);
  padding: 48px 0 64px;
}
.blog-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Heading */
.blog-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: var(--gold-lt);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.blog-heading__icon { font-size: 1.3rem; }
.blog-heading__count {
  margin-left: auto;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Blog list */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Blog row item */
.blog-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .15s;
}
.blog-row:last-child { border-bottom: none; }
.blog-row:hover { background: rgba(255,255,255,.03); }

/* Thumbnail 60x60 */
.blog-row__img-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.blog-row__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
  transition: transform .2s;
}
.blog-row__img-wrap:hover .blog-row__img { transform: scale(1.06); }
.blog-row__img-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: var(--radius-sm);
}

/* Body */
.blog-row__body {
  flex: 1;
  min-width: 0;
}
.blog-row__title {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color .15s;
  /* ตัดข้อความเกิน 2 บรรทัด */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-row__title:hover { color: var(--gold-lt); }
.blog-row__excerpt {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-bottom: 6px;
  /* 100 chars จัดการโดย PHP แล้ว */
}
.blog-row__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.blog-row__date {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.blog-row__read-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-lt);
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .15s;
}
.blog-row__read-more:hover { opacity: .8; color: var(--gold-lt); }

/* Empty */
.blog-empty {
  text-align: center;
  color: rgba(255,255,255,.4);
  padding: 32px 0;
  font-size: .9rem;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.blog-pag__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.blog-pag__btn--prev,
.blog-pag__btn--next {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.blog-pag__btn--prev:hover,
.blog-pag__btn--next:hover {
  background: var(--gold);
  color: #1A2800;
  border-color: var(--gold);
}
.blog-pag__btn--disabled {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.08);
  cursor: not-allowed;
}
.blog-pag__pages {
  display: flex;
  gap: 6px;
  align-items: center;
}
.blog-pag__num {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255,255,255,.6);
  transition: all .15s;
}
.blog-pag__num:hover { background: rgba(255,255,255,.12); color: #fff; }
.blog-pag__num--active {
  background: var(--gold);
  color: #1A2800 !important;
  pointer-events: none;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #0d1108;
  color: #666;
  text-align: center;
  padding: 22px 16px;
  font-size: .8rem;
}

/* ════════════════════════════════════════════════════════
   STICKY BAR
════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  z-index: 9999;
  box-shadow: 0 -3px 16px rgba(0,0,0,.2);
}
.sticky-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font);
  padding: 8px 6px;
  -webkit-tap-highlight-color: transparent;
  transition: filter .15s;
}
.sticky-bar__btn:active { filter: brightness(.82); }
.sticky-bar__btn--call  { background: var(--call-red); }
.sticky-bar__btn--line  { background: var(--line-green); }
.sb-icon  { font-size: 1.35rem; line-height: 1; }
.sb-label { font-size: .86rem; font-weight: 700; line-height: 1; color: #fff; }
.sb-sub   { font-size: .68rem; opacity: .82; line-height: 1; color: #fff; }
.sticky-spacer { height: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px)); }

/* ════════════════════════════════════════════════════════
   DESKTOP  ≥ 768px
   – Show label bar
   – Frame each block
   – Image centered max 1000px
════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* Show label */
  .block-label { display: flex; }

  /* Outer spacing between blocks */
  .kv-block {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .kv-block:last-child { margin-bottom: 40px; }

  /* Frame */
  .kv-block__wrap {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--white);
  }

  /* IMAGE: centered 1000px */
  .bk-image { background: #ECEAE4; }
  .bk-image__figure {
    align-items: center;
    padding: 20px 0 0;
  }
  .bk-image__img {
    width: 100%;
    max-width: var(--img-max);   /* 1000px */
    max-height: 500px;
    object-fit: contain;         /* ไม่ตัดขอบ */
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .bk-image__caption {
    max-width: var(--img-max);
    display: flex;
  }

  /* TEXT */
  .bk-prose { padding: 40px 48px; }
  .prose { max-width: 680px; }

  /* VIDEO — เต็มความกว้าง block ไม่มี padding ด้านข้าง */
  .bk-video { padding: 0 !important; background: #000 !important; }
  .bk-video__inner {
    padding: 16px;  /* ขอบดำรอบวิดีโอ */
  }

  /* CTA */
  .bk-cta { padding: 44px 40px; }

  /* REVIEW */
  .bk-review { padding: 48px 40px; }

  /* PRODUCT */
  .bk-product { padding: 48px 40px; }
  .product-card__img { width: 220px; height: 220px; }
  .product-card__img-wrap { flex-shrink: 0; }

  /* Sticky center */
  .sticky-bar {
    max-width: 460px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
  }
}

/* ════════════════════════════════════════════════════════
   MOBILE  < 768px
   – No label, no frame, full-width
════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .block-label:not(.show-mobile) { display: none !important; }
  .block-label.show-mobile { display: flex !important; }

  .kv-block { padding: 0; margin-bottom: 0; }
  .kv-block__wrap {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  /* Thin separator between blocks */
  .kv-block + .kv-block .block-body { border-top: 1px solid rgba(0,0,0,.06); }

  .bk-image__img  { max-height: none; border-radius: 0; }
  .bk-image__caption { display: none; }

  .bk-prose  { padding: 28px 20px; }
  .bk-video  { padding: 20px; }
  .bk-cta    { padding: 28px 20px; }
  .bk-review { padding: 28px 20px; }
  .bk-product{ padding: 24px 20px; }

  .product-card { flex-direction: column; }
  .product-card__img { width: 100%; height: 220px; }
  .product-card__img-wrap { width: 100%; }
  .product-card__body { padding: 16px; }

  .btn-cta { max-width: 100%; width: 100%; }
}

/* ── Fade-in animation ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kv-block {
  animation: fadeUp .45s ease both;
}
.kv-block:nth-child(1)  { animation-delay: .04s; }
.kv-block:nth-child(2)  { animation-delay: .08s; }
.kv-block:nth-child(3)  { animation-delay: .12s; }
.kv-block:nth-child(4)  { animation-delay: .16s; }
.kv-block:nth-child(n+5){ animation-delay: .20s; }