*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1b2e;
  --navy2: #112240;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fef3c7;
  --text-dark: #0d1b2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --bg: #f0f4fa;
  --surface: #ffffff;
  --border: #e5e7eb;
  --green: #16a34a;
  --purple: #7c3aed;
  --blue: #2563eb;
  --teal: #0d9488;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Inter", sans-serif; */
  background: var(--surface);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ═══════════════ NAV ═══════════════ */

/* ═══════════════ HERO ═══════════════ */
#dv-hero {
  background: linear-gradient(
    135deg,
    #f59e0b4d 0%,
    #f59e0b30 50%,
    #f0eeff 100%
  );
  padding: 80px 56px 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

/* Decorative circle — same as reference image */
.dv-hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dv-hero-circle-1 {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.07);
  top: -80px;
  right: 180px;
}

.dv-hero-circle-2 {
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.1);
  bottom: -60px;
  right: 80px;
}

.dv-hero-circle-3 {
  width: 180px;
  height: 180px;
  background: rgba(124, 58, 237, 0.07);
  top: 60px;
  right: 40px;
  font-family: ui-sans-serif;
}

#dv-hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

#dv-hero-left {
  padding-bottom: 64px;
  animation: dv-up 0.65s ease both;
}

.dv-hero-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv-hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

#dv-hero-headline {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: serif;
}

#dv-hero-headline .dv-hl-amber {
  color: var(--amber-dark);
}

#dv-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 36px;
  font-family: sans-serif;
}

/* Stat pills — same as reference */
#dv-hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.dv-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.dv-stat-pill strong {
  color: var(--amber-dark);
  font-weight: 800;
}

.dv-stat-pill-icon {
  font-size: 16px;
}

/* Quick nav buttons — "What brings you here today?" */
#dv-quick-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#dv-qn-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  font-family: ui-sans-serif;
}

.dv-qn-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  font-family: ui-sans-serif;
}

.dv-qn-btn:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-1px);
}

.dv-qn-btn span {
  font-size: 15px;
}

/* Hero right — pipeline card */
#dv-hero-right {
  position: relative;
  align-self: flex-end;
  animation: dv-up 0.65s 0.15s ease both;
  opacity: 1;
}

#dv-pipeline-card {
  background: var(--navy);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 28px 24px 0;
  position: relative;
  overflow: hidden;
}

#dv-pipeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

#dv-pc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

#dv-pc-header h3 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dv-pc-badge {
  margin-left: auto;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dv-pc-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: dv-pulse 2s infinite;
}

.dv-flow-steps {
  position: relative;
  z-index: 1;
}

.dv-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
  cursor: default;
}

.dv-flow-step:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}

.dv-flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.dv-flow-text {
}

.dv-flow-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2px;
}

.dv-flow-step-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}

.dv-flow-step-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.42);
}

.dv-flow-arrow {
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* connector between steps */
.dv-step-connector {
  width: 2px;
  height: 12px;
  background: linear-gradient(
    to bottom,
    rgba(245, 158, 11, 0.4),
    rgba(245, 158, 11, 0.1)
  );
  margin: 0 0 8px 25px;
}

/* ═══════════════ WHAT WE OFFER (Key Focus / Capabilities) ═══════════════ */
#dv-offer-section {
  background: var(--bg);
  padding: 72px 56px;
}

#dv-offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dv-section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv-section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.dv-section-title {
  font-family: ui-sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.dv-section-desc {
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 48px;
  font-size: 18.5px;
  font-family: sans-serif;
}

/* 4-col card grid — same as reference */
#dv-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dv-cap-card {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(22px);
  cursor: default;
}

.dv-cap-card.dv-in {
  opacity: 1;
  transform: translateY(0);
}

.dv-cap-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Colored top image area — same as reference */
.dv-cap-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 58px;
}

.dv-cap-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.dv-cap-body {
  padding: 20px 18px 24px;
}

.dv-cap-prod-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dv-cap-prod-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.dv-cap-prod-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.dv-cap-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: ui-sans-serif;
}

.dv-cap-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  font-family: sans-serif;
}

.dv-cap-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #cda31d;
  margin-bottom: 14px;
}

.dv-cap-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.dv-cap-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ═══════════════ STATS ═══════════════ */
#dv-stats-section {
  background: #010203;
  padding: 56px;
}

#dv-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dv-stat-blk {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dv-stat-blk:last-child {
  border-right: none;
}

.dv-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.dv-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ═══════════════ WHO WE SERVE ═══════════════ */
#dv-serve-section {
  background: var(--surface);
  padding: 72px 56px;
}

#dv-serve-inner {
  max-width: 1200px;
  margin: 0 auto;
}

#dv-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.dv-serve-card {
  background: #f59e0b0f;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
  opacity: 1;
  transform: translateY(20px);
  cursor: default;
}

.dv-serve-card.dv-in {
  opacity: 1;
  transform: translateY(0);
}

.dv-serve-card:hover {
  background: #000000;
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dv-serve-card:hover .dv-serve-title {
  color: #fff;
}

.dv-serve-card:hover .dv-serve-sub {
  color: rgba(255, 255, 255, 0.55);
}

.dv-serve-card:hover .dv-serve-icon-wrap {
  background: rgba(245, 158, 11, 0.15);
}

.dv-serve-icon-wrap {
  width: 88px;
  height: 85px;
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0px auto 16px;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s;
}

.dv-serve-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.3s;
  font-family: ui-sans-serif;
}

.dv-serve-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color 0.3s;
  font-family: sans-serif;
}

/* ═══════════════ STANDARDS ═══════════════ */
#dv-std-section {
  background: var(--bg);
  padding: 72px 56px;
}

#dv-std-inner {
  max-width: 1200px;
  margin: 0 auto;
}

#dv-std-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.dv-std-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  opacity: 1;
  transform: translateY(20px);
}

.dv-std-card.dv-in {
  opacity: 1;
  transform: translateY(0);
}

.dv-std-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dv-std-card-top {
  padding: 22px 24px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.dv-std-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dv-std-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  font-family: ui-sans-serif;
}

.dv-std-auth {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.dv-std-body {
  padding: 20px 24px;
}

.dv-std-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  font-family: sans-serif;
}

.dv-std-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.dv-std-chip::before {
  content: "✓";
  font-size: 10px;
}

/* ═══════════════ INTEGRATION ROW ═══════════════ */
#dv-int-section {
  background: var(--surface);
  padding: 64px 56px;
  border-top: 1.5px solid var(--border);
}

#dv-int-inner {
  max-width: 1200px;
  margin: 0 auto;
}

#dv-int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.dv-int-card {
  background: #f59e0b0a;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s;
  opacity: 1;
  transform: translateY(16px);
  cursor: default;
}

.dv-int-card.dv-in {
  opacity: 1;
  transform: translateY(0);
}

.dv-int-card:hover {
  border-color: var(--amber);
  background: var(--amber-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dv-int-emoji {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.dv-int-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: ui-sans-serif;
}

.dv-int-sub {
  font-size: 16.5px;
  color: var(--text-muted);
}

/* ═══════════════ FOOTER CTA ═══════════════ */

.dv-btn-amber {
  padding: 13px 28px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.dv-btn-amber:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
}

.dv-btn-ghost {
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.dv-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes dv-up {
  from {
    opacity: 1;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dv-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  #dv-cap-grid,
  #dv-serve-grid,
  #dv-int-grid {
    grid-template-columns: 1fr 1fr;
  }

  #dv-hero-inner {
    grid-template-columns: 1fr;
  }

  #dv-hero-right {
    display: none;
  }

  #dv-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  #dv-nav,
  #dv-breadcrumb,
  #dv-hero,
  #dv-offer-section,
  #dv-stats-section,
  #dv-serve-section,
  #dv-std-section,
  #dv-int-section,
  #dv-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  #dv-cap-grid,
  #dv-serve-grid,
  #dv-int-grid,
  #dv-std-grid {
    grid-template-columns: 1fr;
  }

  #dv-nav-links {
    display: none;
  }

  #dv-quick-nav {
    padding: 14px 20px;
  }
}

.dv-cap-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.dv-cap-img {
  height: 190px;
}

.dv-cap-img img {
  object-fit: cover;
  object-position: center;
}

/* -------------------------new footer css */
/* ===========================
    FOOTER CTA SECTION
  =========================== */

#dv-footer {
  padding: 41px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    179deg,
    #f5ba07 0%,
    #faaf0c 35%,
    #fcab00 70%,
    #e67e22 100%
  );
}

#dv-footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #050505;
  opacity: 0.07;
  top: -100px;
  right: -100px;
}

#dv-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.06;
  bottom: -80px;
  left: -60px;
}

.dv-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.dv-footer-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

#dv-footer h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

#dv-footer p {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.dv-footer-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary Button */

.dv-btn-amber {
  background: #212529;
  color: #fff;
  border: none;
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dv-btn-amber:hover {
  background: #111;
  transform: translateY(-3px);
}

/* Secondary Button */

.dv-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dv-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {
  #dv-footer {
    padding: 60px 24px;
  }

  .dv-footer-btns {
    flex-direction: column;
  }

  .dv-btn-amber,
  .dv-btn-ghost {
    width: 100%;
  }
}

/* ==================================== */
@media (max-width: 768px) {
  .dv-cap-card.dv-in {
    flex-direction: column !important;
    margin-top: 30px !important;
  }

  .dv-cap-card.dv-in .dv-cap-img {
    width: 100% !important;
    min-width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }

  .dv-cap-card.dv-in .dv-cap-body {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 20px !important;
  }

  /* Four Boxes */
  .dv-cap-card.dv-in .dv-cap-body > div:nth-child(2) {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dv-cap-card.dv-in .dv-cap-body > div:nth-child(2) > div {
    width: 100%;
    padding: 16px 10px !important;
  }

  .dv-cap-card.dv-in .dv-cap-desc {
    max-width: 100% !important;
  }

  .dv-cap-card.dv-in .dv-cap-tag {
    align-self: flex-start !important;
  }
}

@media (max-width: 480px) {
  .dv-cap-card.dv-in .dv-cap-img {
    height: 180px !important;
    min-height: 180px !important;
  }

  .dv-cap-card.dv-in .dv-cap-body {
    padding: 16px !important;
  }

  .dv-cap-card.dv-in .dv-cap-body > div:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
