/* ========================================
   DB Football Landing Page
   ======================================== */

:root {
  --dbf-gold: #fbc02d;
  --dbf-gold-dark: #e6a800;
  --dbf-navy: #0b1a33;
  --dbf-navy-mid: #132744;
  --dbf-blue: #214790;
  --dbf-text: #4a5568;
  --dbf-muted: #718096;
  --dbf-white: #ffffff;
  --dbf-surface: #f7f9fc;
  --dbf-radius: 16px;
  --dbf-radius-sm: 10px;
  --dbf-shadow: 0 10px 40px rgba(11, 26, 51, 0.08);
  --dbf-shadow-lg: 0 20px 60px rgba(11, 26, 51, 0.14);
}

/* --- Header --- */
.dbf-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.dbf-header .menu-area {
  background: rgba(11, 26, 51, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Solid header on non-landing (legal) pages */
body:not(.dbf-landing) .dbf-header {
  position: relative;
}

body:not(.dbf-landing) .dbf-header .menu-area {
  background: rgba(11, 26, 51, 0.98);
}

.dbf-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  min-height: 72px;
}

.dbf-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.dbf-logo img {
  width: 56px;
  height: auto;
  display: block;
}

.dbf-nav-wrap {
  margin-left: auto;
}

.dbf-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dbf-nav li a {
  display: inline-block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.dbf-nav li a:hover {
  color: var(--dbf-gold);
  background: rgba(251, 192, 45, 0.08);
}

.dbf-nav .nav-cta a {
  background: var(--dbf-gold);
  color: var(--dbf-navy) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 6px;
}

.dbf-nav .nav-cta a:hover {
  background: var(--dbf-gold-dark);
  color: var(--dbf-navy) !important;
}

.dbf-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--dbf-white);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* --- Hero --- */
.dbf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 26, 51, 0.94) 0%, rgba(33, 71, 144, 0.82) 55%, rgba(11, 26, 51, 0.9) 100%),
    url(../images/home4-banner.jpg) center center / cover no-repeat;
  overflow: hidden;
  padding: 140px 0 100px;
}

.dbf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(251, 192, 45, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(33, 71, 144, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.dbf-hero .container {
  position: relative;
  z-index: 2;
}

.dbf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 192, 45, 0.12);
  border: 1px solid rgba(251, 192, 45, 0.35);
  color: var(--dbf-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.dbf-hero-badge i {
  font-size: 12px;
}

.dbf-hero-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--dbf-white);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.dbf-hero-title span {
  color: var(--dbf-gold);
  display: inline-block;
}

.dbf-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 32px;
}

.dbf-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}

.dbf-stat {
  min-width: 100px;
}

.dbf-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--dbf-gold);
  line-height: 1.1;
}

.dbf-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dbf-store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.dbf-store-btn {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dbf-store-btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.dbf-store-btn img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.dbf-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.dbf-hero-visual-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(251, 192, 45, 0.22) 0%, rgba(33, 71, 144, 0.16) 48%, transparent 72%);
  filter: blur(48px);
  z-index: 0;
  animation: dbf-glow-pulse 6s ease-in-out infinite;
}

.dbf-hero-visual img,
.dbf-hero-players {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
  /* Soft edge dissolve like epl-top */
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%),
    radial-gradient(ellipse 92% 88% at 50% 42%, #000 58%, rgba(0, 0, 0, 0.75) 78%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0.55) 88%, transparent 100%),
    radial-gradient(ellipse 92% 88% at 50% 42%, #000 58%, rgba(0, 0, 0, 0.75) 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
  animation: dbf-hero-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) both,
             dbf-float 7s ease-in-out 1.1s infinite;
  will-change: transform, opacity;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.dbf-hero-visual:hover .dbf-hero-players {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.5));
}

@keyframes dbf-hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dbf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dbf-glow-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.dbf-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dbf-scroll-hint:hover {
  color: var(--dbf-gold);
}

.dbf-scroll-hint i {
  animation: dbf-bounce 1.6s infinite;
}

@keyframes dbf-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Sections shared --- */
.dbf-section {
  padding: 100px 0;
}

.dbf-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.dbf-section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dbf-blue);
  margin-bottom: 12px;
}

.dbf-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dbf-navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.dbf-section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dbf-muted);
  margin: 0;
}

/* --- Features --- */
.dbf-features {
  background: var(--dbf-surface);
}

.dbf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dbf-feature-card {
  background: var(--dbf-white);
  border-radius: var(--dbf-radius);
  padding: 36px 28px;
  box-shadow: var(--dbf-shadow);
  border: 1px solid rgba(11, 26, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.dbf-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dbf-shadow-lg);
}

.dbf-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(251, 192, 45, 0.18), rgba(251, 192, 45, 0.05));
  color: var(--dbf-gold-dark);
}

.dbf-feature-card:nth-child(2) .dbf-feature-icon {
  background: linear-gradient(135deg, rgba(33, 71, 144, 0.16), rgba(33, 71, 144, 0.04));
  color: var(--dbf-blue);
}

.dbf-feature-card:nth-child(3) .dbf-feature-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.04));
  color: #059669;
}

.dbf-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dbf-navy);
  margin: 0 0 12px;
}

.dbf-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dbf-text);
  margin: 0;
}

/* --- Apps (MyApp) --- */
.dbf-apps {
  background: var(--dbf-white);
}

.dbf-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dbf-app-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--dbf-surface);
  border: 1px solid rgba(11, 26, 51, 0.06);
  border-radius: var(--dbf-radius);
  padding: 24px;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.dbf-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dbf-shadow-lg);
  border-color: rgba(251, 192, 45, 0.35);
}

.dbf-app-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dbf-white);
  box-shadow: 0 6px 18px rgba(11, 26, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbf-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dbf-app-body {
  min-width: 0;
  flex: 1;
}

.dbf-app-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dbf-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.dbf-app-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dbf-muted);
  margin: 0 0 12px;
}

.dbf-app-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dbf-blue);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dbf-app-card:hover .dbf-app-link {
  color: var(--dbf-gold-dark);
}

.dbf-app-link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.dbf-app-card:hover .dbf-app-link i {
  transform: translateX(3px);
}

/* --- Why / highlights --- */
.dbf-highlights {
  background: var(--dbf-surface);
}

.dbf-highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dbf-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dbf-highlight-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 26, 51, 0.06);
}

.dbf-highlight-list li:last-child {
  border-bottom: none;
}

.dbf-highlight-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(251, 192, 45, 0.15);
  color: var(--dbf-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.dbf-highlight-list h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dbf-navy);
  margin: 0 0 4px;
}

.dbf-highlight-list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dbf-muted);
  margin: 0;
}

.dbf-highlight-panel {
  background: linear-gradient(160deg, var(--dbf-navy) 0%, var(--dbf-blue) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  color: var(--dbf-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--dbf-shadow-lg);
}

.dbf-highlight-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(251, 192, 45, 0.12);
  top: -60px;
  right: -40px;
}

.dbf-highlight-panel h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.dbf-highlight-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.dbf-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.dbf-panel-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dbf-radius-sm);
  padding: 18px 16px;
}

.dbf-panel-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--dbf-gold);
  margin-bottom: 4px;
}

.dbf-panel-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* --- CTA --- */
.dbf-cta {
  background:
    linear-gradient(135deg, rgba(11, 26, 51, 0.96), rgba(33, 71, 144, 0.9)),
    url(../images/home4-banner.jpg) center / cover no-repeat;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.dbf-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dbf-white);
  margin: 0 0 14px;
}

.dbf-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.dbf-cta .dbf-store-buttons {
  justify-content: center;
}

/* --- Contact strip --- */
.dbf-contact {
  background: var(--dbf-surface);
  padding: 72px 0;
}

.dbf-contact-card {
  background: var(--dbf-white);
  border-radius: var(--dbf-radius);
  box-shadow: var(--dbf-shadow);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(11, 26, 51, 0.04);
}

.dbf-contact-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dbf-navy);
  margin: 0 0 8px;
}

.dbf-contact-card p {
  font-size: 15px;
  color: var(--dbf-muted);
  margin: 0;
}

.dbf-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dbf-navy);
  color: var(--dbf-white) !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dbf-contact-email:hover {
  background: var(--dbf-blue);
  color: var(--dbf-white) !important;
  transform: translateY(-2px);
}

.dbf-contact-email i {
  color: var(--dbf-gold);
}

/* --- Footer --- */
.dbf-footer {
  background: var(--dbf-navy);
  padding: 56px 0 0;
}

.dbf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dbf-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dbf-footer-brand img {
  width: 44px;
  height: auto;
}

.dbf-footer-brand span {
  font-size: 18px;
  font-weight: 800;
  color: var(--dbf-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dbf-footer-brand span em {
  font-style: normal;
  color: var(--dbf-gold);
}

.dbf-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 280px;
}

.dbf-footer h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dbf-white);
  margin: 0 0 16px;
}

.dbf-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dbf-footer-links li {
  margin-bottom: 10px;
}

.dbf-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dbf-footer-links a:hover {
  color: var(--dbf-gold);
}

.dbf-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.dbf-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  max-width: none;
}

.dbf-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dbf-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dbf-social a:hover {
  background: var(--dbf-gold);
  border-color: var(--dbf-gold);
  color: var(--dbf-navy);
}

/* --- Shared legal / inner pages --- */
section.breadcrumbs {
  background: var(--dbf-navy);
  padding: 28px 0;
  margin: 0;
}

section.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

section.breadcrumbs ol li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
}

section.breadcrumbs a {
  color: var(--dbf-gold);
  text-decoration: none;
}

section.breadcrumbs a:hover {
  text-decoration: underline;
}

section.inner-page {
  padding: 48px 0 80px;
  background: var(--dbf-surface);
  color: var(--dbf-text);
  line-height: 1.7;
}

section.inner-page h1 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--dbf-navy);
  margin: 0 0 24px;
  line-height: 1.25;
}

section.inner-page h2,
section.inner-page h3,
section.inner-page strong {
  color: var(--dbf-navy);
}

section.inner-page p {
  margin: 0 0 14px;
  font-size: 15px;
}

section.inner-page a {
  color: var(--dbf-blue);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .dbf-feature-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .dbf-apps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dbf-highlight-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dbf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dbf-hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .dbf-hero-visual {
    margin-top: 48px;
  }

  .dbf-menu-toggle {
    display: inline-flex;
  }

  .dbf-nav-wrap {
    display: none;
    width: 100%;
    margin-left: 0;
    order: 3;
    padding: 8px 0 12px;
  }

  .dbf-nav-wrap.open {
    display: block;
  }

  body.dbf-landing .dbf-header .menu-area {
    background: rgba(11, 26, 51, 0.96);
  }

  .dbf-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .dbf-nav li a {
    padding: 12px 16px;
  }

  .dbf-nav .nav-cta a {
    text-align: center;
    border-radius: 10px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .dbf-section {
    padding: 72px 0;
  }

  .dbf-apps-grid {
    grid-template-columns: 1fr;
  }

  .dbf-hero-stats {
    gap: 20px;
  }

  .dbf-stat-value {
    font-size: 22px;
  }

  .dbf-store-btn img {
    height: 46px;
  }

  .dbf-highlight-panel {
    padding: 32px 24px;
  }

  .dbf-contact-card {
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  .dbf-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dbf-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .dbf-scroll-hint {
    display: none;
  }
}

/* Smooth scroll for in-page anchors */
html {
  scroll-behavior: smooth;
}

/* Override old template footer padding when using new footer */
footer.dbf-footer.rs-footer {
  padding-top: 56px !important;
}
