/* ============================================
   BV HERO BANNER — PayPal Palette
   #003087 primary | #0070e0 accent/hover
   Syne + DM Sans | Centred layout | No card
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500&display=swap');

:root {
  --bv-bg:          #f5f7fa;
  --bv-surface:     #ffffff;
  --bv-border:      #d8e0ed;
  --bv-blue:        #003087;
  --bv-blue-hover:  #0070e0;
  --bv-blue-soft:   rgba(0,48,135,0.07);
  --bv-blue-mid:    rgba(0,48,135,0.13);
  --bv-text:        #0d1b3e;
  --bv-text-dim:    #4a5568;
  --bv-text-faint:  #8fa3bf;
  --bv-green:       #00a651;
  --bv-green-bg:    rgba(0,166,81,0.1);
  --bv-font-head:   'Playfair Display', sans-serif;
  --bv-font-body:   'DM Sans', sans-serif;
  --bv-radius:      16px;
  --bv-radius-sm:   10px;
}

/* ── Hero Wrapper ── */
.bv-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;       /* centred */
  min-height: 88vh;
  padding: 120px 7vw 96px;
  background-color: var(--bv-bg);
  background-image:
    radial-gradient(ellipse 60% 55% at 50% 60%, rgba(0,112,224,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 15% 80%, rgba(0,48,135,0.05) 0%, transparent 60%);
  overflow: hidden;
  font-family: var(--bv-font-body);
  box-sizing: border-box;
  text-align: center;            /* centred */
}

.bv-hero__grid { display: none; }

/* Rings — now centred */
.bv-hero__ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 780px; height: 780px;
  border-radius: 50%;
  border: 1px solid rgba(0,112,224,0.07);
  pointer-events: none; z-index: 0;
  animation: bv-pulse 4s ease-in-out infinite;
}
.bv-hero__ring--2 {
  width: 560px; height: 560px;
  border-color: rgba(0,48,135,0.06);
  animation-delay: 1.5s;
}
@keyframes bv-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.025); }
}

/* Badge */
.bv-hero__badge {
  position: absolute;
  top: 32px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,48,135,0.07);
  border: 1px solid rgba(0,48,135,0.18);
  color: var(--bv-blue);
  font-family: var(--bv-font-body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; z-index: 2;
  white-space: nowrap;
  animation: bv-fadein 0.6s ease both;
}
.bv-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bv-blue-hover);
  box-shadow: 0 0 6px rgba(0,112,224,0.5);
  animation: bv-blink 1.8s ease-in-out infinite;
}
@keyframes bv-blink  { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes bv-fadein { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* Content — full centred column */
.bv-hero__content {
  position: relative; z-index: 2;
  max-width: 780px;
  display: flex; flex-direction: column;
  align-items: center;
  animation: bv-fadein-plain 0.7s ease both 0.1s;
}
@keyframes bv-fadein-plain { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.bv-hero__headline {
  font-family: var(--bv-font-head);
  font-size: clamp(44px, 6.5vw, 82px); font-weight: 800;
  line-height: 1.07; color: var(--bv-text);
  margin: 0 0 8px; letter-spacing: -0.025em;
}
.bv-hero__headline-accent { color: var(--bv-blue); }

.bv-hero__sub {
  font-size: clamp(15px, 1.3vw, 18px); font-weight: 300;
  color: var(--bv-text-dim); line-height: 1.75;
  margin: 22px 0 40px; max-width: 580px;
}

/* Buttons — centred */
.bv-hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}
.bv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--bv-radius-sm);
  font-family: var(--bv-font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all 0.22s ease; white-space: nowrap;
}
.bv-btn--primary {
  background: var(--bv-blue); color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,48,135,0.28);
}
.bv-btn--primary:hover {
  color: #fff; background: var(--bv-blue-hover);
  box-shadow: 0 6px 28px rgba(0,112,224,0.38);
  transform: translateY(-2px);
}
.bv-btn--ghost {
  background: #ffffff; border: 1.5px solid var(--bv-border); color: var(--bv-text);
}
.bv-btn--ghost:hover {
  border-color: var(--bv-blue-hover); color: var(--bv-blue-hover);
  transform: translateY(-2px);
}

/* Stats — centred */
.bv-hero__stats {
  display: flex; align-items: center;
  justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.bv-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.bv-stat__number {
  font-family: var(--bv-font-head); font-size: clamp(22px, 2vw, 28px);
  font-weight: 700; color: var(--bv-text); letter-spacing: -0.02em;
}
.bv-stat__label { font-size: 12px; color: var(--bv-text-faint); letter-spacing: 0.03em; }
.bv-stat__divider { width: 1px; height: 38px; background: var(--bv-border); }

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .bv-hero {
    padding: 90px 6vw 64px;
    min-height: unset;
  }
  .bv-hero__headline { font-size: clamp(38px, 9vw, 56px); }
  .bv-hero__sub { font-size: 15px; margin: 18px 0 32px; }
  .bv-hero__ring, .bv-hero__ring--2 { display: none; }
}

@media (max-width: 480px) {
  .bv-hero { padding: 80px 5vw 52px; }
  .bv-hero__badge { font-size: 11px; top: 20px; }
  .bv-hero__actions { flex-direction: column; width: 100%; }
  .bv-btn { justify-content: center; width: 100%; }
  .bv-hero__stats { gap: 18px; }
  .bv-stat__divider { height: 28px; }
}

/* ============================================
   BV SERVICES SECTION — PayPal Palette
   #003087 primary | #0070e0 hover | No grid
   ============================================ */

.bvs-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 7vw 80px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

.bvs-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,48,135,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* NO .bvs-bg-grid — keep empty rule so HTML class doesn't error */
.bvs-bg-grid { display: none; }

.bvs-header { position: relative; z-index: 2; text-align: center; max-width: 660px; margin: 0 auto 64px; }

.bvs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #003087; margin-bottom: 18px;
}
.bvs-eyebrow__line { display: block; width: 28px; height: 1px; background: #003087; opacity: 0.4; }

.bvs-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  color: #0d1b3e; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 18px;
}
.bvs-heading--accent { color: #003087; }

.bvs-subtext { font-size: clamp(14px, 1.1vw, 16.5px); font-weight: 300; color: #4a5568; line-height: 1.75; margin: 0; }

.bvs-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}

.bvs-card {
  position: relative; background: #ffffff;
  border: 1px solid #d8e0ed; border-radius: 16px;
  padding: 28px 26px 24px; display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bvs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,112,224,0.3);
  box-shadow: 0 20px 48px rgba(0,48,135,0.1);
}

.bvs-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.bvs-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,48,135,0.07); border: 1px solid rgba(0,48,135,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--card-accent, #003087); flex-shrink: 0; transition: background 0.25s ease;
}
.bvs-card:hover .bvs-card__icon { background: rgba(0,112,224,0.1); }

.bvs-card__tag {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
  background: rgba(0,48,135,0.07); border: 1px solid rgba(0,48,135,0.18); color: #003087;
}
.bvs-card__tag--gold { background: rgba(180,100,0,0.08); border-color: rgba(180,100,0,0.2); color: #b46400; }
.bvs-card__tag--red  { background: rgba(194,36,36,0.08); border-color: rgba(194,36,36,0.2); color: #c22424; }

.bvs-card__title { font-family: var(--bv-font-head); font-size: 18px; font-weight: 700; color: #0d1b3e; margin: 0; letter-spacing: -0.01em; line-height: 1.25; }
.bvs-card__desc  { font-size: 13.5px; font-weight: 300; color: #4a5568; line-height: 1.65; margin: 0; }

.bvs-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bvs-card__list li { font-size: 13px; color: #4a5568; padding-left: 18px; position: relative; line-height: 1.5; }
.bvs-card__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--card-accent, #003087); opacity: 0.7;
}

.bvs-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f4f8; margin-top: auto;
}
.bvs-card__turnaround { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #8fa3bf; }
.bvs-card__link { font-size: 12.5px; font-weight: 500; color: #003087; text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.bvs-card__link:hover { opacity: 1; color: #0070e0; }

.bvs-card__glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 120px;
  background: radial-gradient(ellipse, var(--card-accent, #003087) 0%, transparent 70%);
  opacity: 0; filter: blur(30px); pointer-events: none;
  transition: opacity 0.35s ease; z-index: 0;
}
.bvs-card:hover .bvs-card__glow { opacity: 0.07; }

.bvs-cta { position: relative; z-index: 2; margin-top: 52px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center; }
.bvs-cta__text { font-size: 15px; color: #4a5568; margin: 0; }
.bvs-cta__btn {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: #003087; text-decoration: none;
  border: 1px solid rgba(0,48,135,0.3); padding: 10px 24px; border-radius: 100px;
  background: rgba(0,48,135,0.05); transition: all 0.22s ease; white-space: nowrap;
}
.bvs-cta__btn:hover { background: rgba(0,112,224,0.1); border-color: #0070e0; color: #0070e0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,48,135,0.12); }

@media (max-width: 1024px) { .bvs-section { padding: 80px 5vw 64px; } .bvs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bvs-section { padding: 64px 5vw 52px; } .bvs-grid { grid-template-columns: 1fr; } .bvs-header { margin-bottom: 40px; } .bvs-cta { flex-direction: column; gap: 16px; } }



/* ============================================
   BV SERVICES PAGE — PayPal Palette
   #003087 primary | #0070e0 hover | No grids
   Syne + DM Sans
   ============================================ */

/* ============================================
   BV SERVICES SECTION — PayPal Palette
   #003087 primary | #0070e0 hover | No grid
   ============================================ */

.bvs-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 7vw 80px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

.bvs-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,48,135,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.bvs-bg-grid { display: none; }

/* ── Section Header ── */
.bvs-header {
  position: relative; z-index: 2;
  text-align: center; max-width: 660px;
  margin: 0 auto 64px;
}

.bvs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #003087; margin-bottom: 18px;
}
.bvs-eyebrow__line { display: block; width: 28px; height: 1px; background: #003087; opacity: 0.4; }

.bvs-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  color: #0d1b3e; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 18px;
}
.bvs-heading--accent { color: #003087; }

.bvs-subtext {
  font-size: clamp(14px, 1.1vw, 16.5px); font-weight: 300;
  color: #4a5568; line-height: 1.75; margin: 0;
}

/* ══════════════════════════════════════════
   CATEGORY WRAPPERS
   Groups cards under a labelled section header
══════════════════════════════════════════ */

.bvs-category {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto 72px;
}
.bvs-category:last-of-type { margin-bottom: 0; }

/* Category header block */
.bvs-category__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 24px 28px;
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #003087;
  border-radius: 0 14px 14px 0;
}

/* Category label */
.bvs-category__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bv-font-head);
  font-size: 14px;
  font-weight: 800;
  color: #003087;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.bvs-category__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 3px;
  background: #003087;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Category description */
.bvs-category__desc {
  font-size: 14px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  max-width: 820px;
}

/* Sub-label — sits between main label and description */
.bvs-category__sublabel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0070e0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0,112,224,0.07);
  border: 1px solid rgba(0,112,224,0.2);
  padding: 3px 12px;
  border-radius: 100px;
  width: fit-content;
}
.bvs-category__sublabel::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #0070e0;
  flex-shrink: 0;
}

/* ── Cards Grid ── */
.bvs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card ── */
.bvs-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d8e0ed;
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bvs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,112,224,0.3);
  box-shadow: 0 20px 48px rgba(0,48,135,0.1);
}

.bvs-card__top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
}

/* Icon */
.bvs-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,48,135,0.07);
  border: 1px solid rgba(0,48,135,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--card-accent, #003087);
  flex-shrink: 0; transition: background 0.25s ease;
}
.bvs-card:hover .bvs-card__icon { background: rgba(0,112,224,0.1); }

/* Tag badges */
.bvs-card__tag {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
  background: rgba(0,48,135,0.07);
  border: 1px solid rgba(0,48,135,0.18);
  color: #003087;
}
.bvs-card__tag--gold {
  background: rgba(180,100,0,0.08);
  border-color: rgba(180,100,0,0.2);
  color: #b46400;
}
.bvs-card__tag--red {
  background: rgba(194,36,36,0.08);
  border-color: rgba(194,36,36,0.2);
  color: #c22424;
}

/* Text */
.bvs-card__title {
  font-family: var(--bv-font-head);
  font-size: 18px; font-weight: 700; color: #0d1b3e;
  margin: 0; letter-spacing: -0.01em; line-height: 1.25;
}
.bvs-card__desc {
  font-size: 13.5px; font-weight: 300;
  color: #4a5568; line-height: 1.65; margin: 0;
}

/* Feature list */
.bvs-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.bvs-card__list li {
  font-size: 13px; color: #4a5568;
  padding-left: 18px; position: relative; line-height: 1.5;
}
.bvs-card__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--card-accent, #003087); opacity: 0.7;
}

/* Card footer */
.bvs-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f4f8; margin-top: auto;
}
.bvs-card__turnaround {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: #8fa3bf;
}
.bvs-card__link {
  font-size: 12.5px; font-weight: 500;
  color: #003087; text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.bvs-card__link:hover { opacity: 1; color: #0070e0; }

/* Card glow on hover */
.bvs-card__glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 120px;
  background: radial-gradient(ellipse, var(--card-accent, #003087) 0%, transparent 70%);
  opacity: 0; filter: blur(30px); pointer-events: none;
  transition: opacity 0.35s ease; z-index: 0;
}
.bvs-card:hover .bvs-card__glow { opacity: 0.07; }

/* ── Bottom CTA ── */
.bvs-cta {
  position: relative; z-index: 2;
  margin-top: 52px;
  display: flex; align-items: center;
  justify-content: center; gap: 28px;
  flex-wrap: wrap; text-align: center;
}
.bvs-cta__text { font-size: 15px; color: #4a5568; margin: 0; }
.bvs-cta__btn {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: #003087; text-decoration: none;
  border: 1px solid rgba(0,48,135,0.3); padding: 10px 24px;
  border-radius: 100px; background: rgba(0,48,135,0.05);
  transition: all 0.22s ease; white-space: nowrap;
}
.bvs-cta__btn:hover {
  background: rgba(0,112,224,0.1); border-color: #0070e0;
  color: #0070e0; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,48,135,0.12);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

@media (max-width: 1024px) {
  .bvs-section { padding: 80px 5vw 64px; }
  .bvs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .bvs-section { padding: 64px 5vw 52px; }
  .bvs-grid { grid-template-columns: 1fr; }
  .bvs-header { margin-bottom: 40px; }
  .bvs-category__header { padding: 18px 20px; }
  .bvs-cta { flex-direction: column; gap: 16px; }
}

/* ============================================
   BV HOW IT WORKS — PayPal Palette
   #003087 primary | #0070e0 hover | No grid
   ============================================ */

.bvh-section {
  position: relative;
  background-color: #f5f7fa;
  padding: 100px 7vw 0;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

/* NO grids */
.bvh-bg-grid { display: none; }
.bvh-bg-glow--left, .bvh-bg-glow--right { display: none; }

.bvh-header { position: relative; z-index: 2; text-align: center; max-width: 620px; margin: 0 auto 80px; }

.bvh-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #003087; margin-bottom: 18px;
}
.bvh-eyebrow__line { display: block; width: 28px; height: 1px; background: #003087; opacity: 0.4; }

.bvh-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(30px, 4vw, 50px); font-weight: 800;
  color: #0d1b3e; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 18px;
}
.bvh-heading--accent { color: #003087; }
.bvh-subtext { font-size: clamp(14px, 1.1vw, 16px); font-weight: 300; color: #4a5568; line-height: 1.75; margin: 0; }

.bvh-timeline {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1160px; margin: 0 auto; padding-bottom: 70px;
}

.bvh-connector {
  position: absolute; top: 36px;
  left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 2px; z-index: 1; pointer-events: none;
}
.bvh-connector__track { width: 100%; height: 100%; background: #d8e0ed; border-radius: 2px; overflow: hidden; }
.bvh-connector__fill {
  height: 100%; width: 75%;
  background: linear-gradient(90deg, #003087, #0070e0);
  border-radius: 2px;
  animation: bvh-linefill 1.4s ease both 0.4s;
}
@keyframes bvh-linefill { from { width: 0; } to { width: 75%; } }

.bvh-step {
  position: relative; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 16px; z-index: 2;
}
.bvh-step:nth-child(2) { animation: bvh-fadein 0.6s ease both 0.1s; }
.bvh-step:nth-child(3) { animation: bvh-fadein 0.6s ease both 0.2s; }
.bvh-step:nth-child(4) { animation: bvh-fadein 0.6s ease both 0.3s; }
.bvh-step:nth-child(5) { animation: bvh-fadein 0.6s ease both 0.4s; }
@keyframes bvh-fadein { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.bvh-step__node { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }

.bvh-step__ring {
  position: absolute; width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(0,48,135,0.15);
  animation: bvh-ring-pulse 3s ease-in-out infinite;
}
.bvh-step:nth-child(3) .bvh-step__ring { animation-delay: 0.5s; }
.bvh-step:nth-child(4) .bvh-step__ring { animation-delay: 1s; }
.bvh-step:nth-child(5) .bvh-step__ring { animation-delay: 1.5s; }
@keyframes bvh-ring-pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.18); opacity: 0; } }

.bvh-step__circle {
  position: relative; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  background: #ffffff; border: 1.5px solid rgba(0,48,135,0.25);
  display: flex; align-items: center; justify-content: center; color: #003087;
  box-shadow: 0 4px 16px rgba(0,48,135,0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bvh-step:hover .bvh-step__circle { border-color: #0070e0; box-shadow: 0 6px 22px rgba(0,112,224,0.2); color: #0070e0; }

.bvh-step__circle--final {
  background: linear-gradient(135deg, #003087, #0070e0);
  border-color: transparent; color: #ffffff;
  box-shadow: 0 6px 24px rgba(0,48,135,0.35);
}

.bvh-step__number {
  position: absolute; top: -10px; right: -10px;
  font-family: var(--bv-font-head); font-size: 10px; font-weight: 700;
  color: #8fa3bf; z-index: 3;
  background: #ffffff; border: 1px solid #d8e0ed;
  border-radius: 100px; padding: 2px 6px; line-height: 1.4;
}

.bvh-step__body { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bvh-step__title { font-family: var(--bv-font-head); font-size: clamp(14px, 1.2vw, 17px); font-weight: 700; color: #0d1b3e; margin: 0; letter-spacing: -0.01em; line-height: 1.3; }
.bvh-step__desc  { font-size: 13px; font-weight: 300; color: #4a5568; line-height: 1.7; margin: 0; max-width: 220px; }

.bvh-step__pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: #4a5568;
  background: #eef1f7; border: 1px solid #d8e0ed;
  padding: 5px 12px; border-radius: 100px; margin-top: 4px;
}
.bvh-step__pill--green { color: #00a651; background: rgba(0,166,81,0.07); border-color: rgba(0,166,81,0.2); }

.bvh-step__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #b0bec5; flex-shrink: 0; }
.bvh-step__pill-dot--active { background: #0070e0; box-shadow: 0 0 6px rgba(0,112,224,0.5); animation: bvh-blink 1.6s ease-in-out infinite; }
.bvh-step__pill-dot--green { background: #00a651; }
@keyframes bvh-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.bvh-band {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  border-top: 1px solid #e8edf5;
  margin: 0 -7vw; padding: 28px 7vw;
  background: #ffffff;
}
.bvh-band__item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #4a5568; padding: 8px 32px; white-space: nowrap; }
.bvh-band__item svg { color: #003087; flex-shrink: 0; opacity: 0.8; }
.bvh-band__divider { width: 1px; height: 20px; background: #d8e0ed; }

@media (max-width: 900px) {
  .bvh-section { padding: 80px 5vw 0; }
  .bvh-timeline { grid-template-columns: repeat(2, 1fr); gap: 48px 20px; padding-bottom: 56px; }
  .bvh-connector { display: none; }
  .bvh-band { gap: 12px 0; } .bvh-band__divider { display: none; }
  .bvh-band__item { width: 50%; justify-content: center; padding: 10px 16px; }
}
@media (max-width: 520px) {
  .bvh-section { padding: 64px 5vw 0; }
  .bvh-timeline { grid-template-columns: 1fr; gap: 40px; }
  .bvh-header { margin-bottom: 52px; }
  .bvh-step__desc { max-width: 100%; }
  .bvh-band__item { width: 100%; }
}

/* ============================================
   BV TRUSTED BY — PayPal Palette | No grid
   ============================================ */

.bvt-section {
  position: relative;
  background-color: #f5f7fa;
  padding: 64px 0;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

.bvt-bg-grid { display: none; }

.bvt-border-top, .bvt-border-bottom {
  position: relative; z-index: 2; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,48,135,0.15) 20%, rgba(0,112,224,0.3) 50%, rgba(0,48,135,0.15) 80%, transparent 100%);
  margin-bottom: 36px;
}
.bvt-border-bottom { margin-bottom: 0; margin-top: 36px; }

.bvt-header { position: relative; z-index: 2; text-align: center; margin-bottom: 36px; }
.bvt-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #8fa3bf;
}
.bvt-label__dash { display: block; width: 32px; height: 1px; background: #b0c4d8; }

.bvt-track-wrapper { position: relative; z-index: 2; overflow: hidden; margin-bottom: 16px; }
.bvt-track-wrapper:last-of-type { margin-bottom: 0; }

.bvt-fade { position: absolute; top: 0; bottom: 0; width: 160px; z-index: 3; pointer-events: none; }
.bvt-fade--left  { left: 0;  background: linear-gradient(to right, #f5f7fa 0%, transparent 100%); }
.bvt-fade--right { right: 0; background: linear-gradient(to left,  #f5f7fa 0%, transparent 100%); }

.bvt-track { width: 100%; overflow: hidden; }
.bvt-track__inner { display: flex; align-items: center; gap: 0; width: max-content; will-change: transform; }
.bvt-track__inner--ltr { animation: bvt-scroll-ltr 32s linear infinite; }
.bvt-track__inner--ltr:hover { animation-play-state: paused; }
.bvt-track__inner--rtl { animation: bvt-scroll-rtl 28s linear infinite; }
.bvt-track__inner--rtl:hover { animation-play-state: paused; }
@keyframes bvt-scroll-ltr { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bvt-scroll-rtl { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.bvt-logo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; margin: 0 8px;
  background: #ffffff; border: 1px solid #d8e0ed; border-radius: 100px;
  white-space: nowrap; color: #4a5568;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: all 0.25s ease; cursor: default;
  box-shadow: 0 1px 4px rgba(0,48,135,0.05);
}
.bvt-logo:hover { color: #003087; border-color: rgba(0,48,135,0.3); box-shadow: 0 4px 14px rgba(0,48,135,0.1); }

.bvt-logo--dim { color: #8fa3bf; background: #f5f7fa; border-color: #e4eaf3; box-shadow: none; }
.bvt-logo--dim:hover { color: #003087; border-color: rgba(0,112,224,0.25); box-shadow: 0 4px 14px rgba(0,48,135,0.08); }

.bvt-logo__icon { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; transition: opacity 0.25s ease; }
.bvt-logo:hover .bvt-logo__icon { opacity: 1; }

@media (max-width: 768px) {
  .bvt-section { padding: 48px 0; }
  .bvt-logo { padding: 10px 20px; font-size: 13px; margin: 0 6px; }
  .bvt-fade { width: 80px; }
  .bvt-track__inner--ltr { animation-duration: 22s; }
  .bvt-track__inner--rtl { animation-duration: 18s; }
}
@media (max-width: 480px) {
  .bvt-logo { padding: 8px 16px; font-size: 12px; margin: 0 5px; }
  .bvt-fade { width: 56px; }
  .bvt-label { font-size: 10.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .bvt-track__inner--ltr, .bvt-track__inner--rtl { animation: none; }
}

/* ============================================
   BV WHY CHOOSE US — PayPal Palette | No grid
   ============================================ */

.bvw-section {
  position: relative;
  background-color: #ffffff;
  padding: 110px 7vw 100px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

.bvw-bg-grid { display: none; }
.bvw-bg-glow--center { display: none; }

.bvw-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.bvw-left { display: flex; flex-direction: column; gap: 28px; }

.bvw-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #003087;
}
.bvw-eyebrow__line { display: block; width: 28px; height: 1px; background: #003087; opacity: 0.4; }

.bvw-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(28px, 3.2vw, 48px); font-weight: 800;
  color: #0d1b3e; line-height: 1.1; letter-spacing: -0.025em; margin: 0;
}
.bvw-heading--accent { color: #003087; }

.bvw-subtext { font-size: clamp(13.5px, 1.1vw, 15.5px); font-weight: 300; color: #4a5568; line-height: 1.8; margin: 0; }

.bvw-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px;
  padding: 28px; background: #f5f7fa; border: 1px solid #d8e0ed; border-radius: 16px;
}
.bvw-stat { display: flex; flex-direction: column; gap: 5px; }
.bvw-stat__num {
  font-family: var(--bv-font-head);
  font-size: clamp(26px, 2.4vw, 36px); font-weight: 800;
  color: #0d1b3e; letter-spacing: -0.03em; line-height: 1;
}
.bvw-stat__unit { font-size: 0.55em; color: #003087; vertical-align: super; font-weight: 700; margin-left: 1px; }
.bvw-stat__label { font-size: 11.5px; color: #8fa3bf; line-height: 1.45; }

.bvw-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: #003087; color: #ffffff;
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 600;
  padding: 13px 28px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,48,135,0.28); transition: all 0.22s ease;
}
.bvw-cta-btn:hover { color: #fff; background: #0070e0; box-shadow: 0 6px 28px rgba(0,112,224,0.35); transform: translateY(-2px); }

.bvw-right { display: flex; flex-direction: column; gap: 16px; }

.bvw-feat {
  position: relative; display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 22px; background: #ffffff;
  border: 1px solid #d8e0ed; border-radius: 16px; overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease;
}
.bvw-feat:hover { box-shadow: 0 12px 36px rgba(0,48,135,0.1); }

.bvw-feat::before {
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 3px; border-radius: 0 3px 3px 0;
}
.bvw-feat--teal::before   { background: #003087; box-shadow: 0 0 8px rgba(0,48,135,0.4); }
.bvw-feat--blue::before   { background: #0070e0; box-shadow: 0 0 8px rgba(0,112,224,0.4); }
.bvw-feat--violet::before { background: #1a3f7a; box-shadow: 0 0 8px rgba(26,63,122,0.4); }
.bvw-feat--amber::before  { background: #b46400; box-shadow: 0 0 8px rgba(180,100,0,0.4); }

.bvw-feat--teal:hover   { border-color: rgba(0,48,135,0.25); }
.bvw-feat--blue:hover   { border-color: rgba(0,112,224,0.25); }
.bvw-feat--violet:hover { border-color: rgba(26,63,122,0.25); }
.bvw-feat--amber:hover  { border-color: rgba(180,100,0,0.25); }

.bvw-feat__icon-wrap {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.bvw-feat--teal   .bvw-feat__icon-wrap { background: rgba(0,48,135,0.08);  color: #003087; border: 1px solid rgba(0,48,135,0.18); }
.bvw-feat--blue   .bvw-feat__icon-wrap { background: rgba(0,112,224,0.08); color: #0070e0; border: 1px solid rgba(0,112,224,0.18); }
.bvw-feat--violet .bvw-feat__icon-wrap { background: rgba(26,63,122,0.08); color: #1a3f7a; border: 1px solid rgba(26,63,122,0.18); }
.bvw-feat--amber  .bvw-feat__icon-wrap { background: rgba(180,100,0,0.08); color: #b46400; border: 1px solid rgba(180,100,0,0.18); }

.bvw-feat__body { flex: 1; min-width: 0; }
.bvw-feat__title { font-family: var(--bv-font-head); font-size: 16px; font-weight: 700; color: #0d1b3e; margin: 0 0 8px; letter-spacing: -0.01em; }
.bvw-feat__desc  { font-size: 13px; font-weight: 300; color: #4a5568; line-height: 1.7; margin: 0; }

.bvw-feat__badge {
  flex-shrink: 0; align-self: flex-start;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.bvw-feat--teal   .bvw-feat__badge { background: rgba(0,48,135,0.08);  color: #003087; border: 1px solid rgba(0,48,135,0.2); }
.bvw-feat--blue   .bvw-feat__badge { background: rgba(0,112,224,0.08); color: #0070e0; border: 1px solid rgba(0,112,224,0.2); }
.bvw-feat--violet .bvw-feat__badge { background: rgba(26,63,122,0.08); color: #1a3f7a; border: 1px solid rgba(26,63,122,0.2); }
.bvw-feat--amber  .bvw-feat__badge { background: rgba(180,100,0,0.08); color: #b46400; border: 1px solid rgba(180,100,0,0.2); }

@media (max-width: 900px) { .bvw-section { padding: 80px 5vw 72px; } .bvw-layout { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .bvw-section { padding: 64px 5vw 60px; } .bvw-stats { grid-template-columns: 1fr 1fr; gap: 16px 12px; padding: 20px; } .bvw-feat__badge { display: none; } }
@media (max-width: 400px) { .bvw-stats { grid-template-columns: 1fr; } }

/* ============================================
   BV TESTIMONIALS — PayPal Palette | No grid
   ============================================ */

.bvtm-section {
  position: relative;
  background-color: #f5f7fa;
  padding: 100px 7vw 0;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}

.bvtm-bg-grid { display: none; }
.bvtm-bg-glow { display: none; }

.bvtm-header { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto 56px; }

.bvtm-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #003087; margin-bottom: 18px;
}
.bvtm-eyebrow__line { display: block; width: 28px; height: 1px; background: #003087; opacity: 0.4; }

.bvtm-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(28px, 3.8vw, 50px); font-weight: 800;
  color: #0d1b3e; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 16px;
}
.bvtm-heading--accent { color: #003087; }
.bvtm-subtext { font-size: clamp(14px, 1.1vw, 16px); font-weight: 300; color: #4a5568; line-height: 1.75; margin: 0; }

/* Featured */
.bvtm-featured {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto 52px;
  background: #ffffff; border: 1px solid #c8d5e8;
  border-radius: 20px; padding: 48px 52px 40px;
  box-shadow: 0 8px 40px rgba(0,48,135,0.08), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}
.bvtm-featured__quote-mark {
  font-family: var(--bv-font-head); font-size: 120px; line-height: 0.6;
  color: #003087; opacity: 0.08;
  position: absolute; top: 36px; left: 44px;
  pointer-events: none; user-select: none;
}
.bvtm-featured__text {
  font-family: var(--bv-font-head);
  font-size: clamp(17px, 1.6vw, 22px); font-weight: 600;
  color: #0d1b3e; line-height: 1.6; margin: 0 0 32px; padding-left: 8px;
  border: none; letter-spacing: -0.01em;
}
.bvtm-featured__author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.bvtm-stars { display: flex; gap: 3px; margin-left: auto; }
.bvtm-stars span { color: #f59e0b; font-size: 18px; line-height: 1; }
.bvtm-stars--sm span { font-size: 13px; }

/* Avatars */
.bvtm-avatar {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--bv-font-head); font-weight: 700; flex-shrink: 0;
  background: rgba(0,48,135,0.08); border: 1.5px solid rgba(0,48,135,0.2); color: #003087;
}
.bvtm-avatar--lg { width: 52px; height: 52px; font-size: 15px; }
.bvtm-avatar--sm { width: 40px; height: 40px; font-size: 12px; }

.bvtm-avatar--blue   { background: rgba(0,112,224,0.1);  border-color: rgba(0,112,224,0.25);  color: #0070e0; }
.bvtm-avatar--teal   { background: rgba(0,48,135,0.1);   border-color: rgba(0,48,135,0.25);   color: #003087; }
.bvtm-avatar--violet { background: rgba(26,63,122,0.1);  border-color: rgba(26,63,122,0.25);  color: #1a3f7a; }
.bvtm-avatar--amber  { background: rgba(180,100,0,0.1);  border-color: rgba(180,100,0,0.25);  color: #b46400; }
.bvtm-avatar--green  { background: rgba(0,166,81,0.1);   border-color: rgba(0,166,81,0.25);   color: #00a651; }
.bvtm-avatar--red    { background: rgba(194,36,36,0.1);  border-color: rgba(194,36,36,0.25);  color: #c22424; }

.bvtm-author__info { display: flex; flex-direction: column; gap: 3px; }
.bvtm-author__name { font-family: var(--bv-font-head); font-size: 15px; font-weight: 700; color: #0d1b3e; }
.bvtm-author__role { font-size: 12.5px; color: #8fa3bf; }

/* Grid */
.bvtm-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 1200px; margin: 0 auto;
}

.bvtm-card {
  background: #ffffff; border: 1px solid #d8e0ed; border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.bvtm-card:hover { border-color: #b0c4d8; box-shadow: 0 12px 36px rgba(0,48,135,0.1); transform: translateY(-4px); }

.bvtm-card--highlight {
  border-color: rgba(0,48,135,0.25);
  background: linear-gradient(160deg, #ffffff 60%, rgba(0,48,135,0.03) 100%);
  box-shadow: 0 4px 20px rgba(0,48,135,0.09);
}
.bvtm-card--highlight:hover { border-color: rgba(0,112,224,0.4); box-shadow: 0 16px 40px rgba(0,48,135,0.14); }

.bvtm-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bvtm-card__tag {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.05em;
  color: #8fa3bf; background: #f0f4f8; border: 1px solid #d8e0ed;
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}
.bvtm-card__quote { font-size: 13.5px; font-weight: 300; color: #4a5568; line-height: 1.75; margin: 0; flex: 1; }
.bvtm-card__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #f0f4f8; }
.bvtm-card__name { display: block; font-family: var(--bv-font-head); font-size: 13.5px; font-weight: 700; color: #0d1b3e; }
.bvtm-card__role { display: block; font-size: 11.5px; color: #8fa3bf; margin-top: 2px; }

/* Summary bar */
.bvtm-summary {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin: 52px -7vw 0; padding: 32px 7vw;
  border-top: 1px solid #e4eaf3; background: #ffffff;
}
.bvtm-summary__item { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 8px 52px; }
.bvtm-summary__num {
  font-family: var(--bv-font-head);
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: #0d1b3e; letter-spacing: -0.03em; line-height: 1;
}
.bvtm-summary__unit { font-size: 0.5em; color: #003087; vertical-align: super; font-weight: 700; }
.bvtm-summary__label { font-size: 12px; color: #8fa3bf; letter-spacing: 0.03em; }
.bvtm-summary__divider { width: 1px; height: 40px; background: #d8e0ed; }

@media (max-width: 960px) { .bvtm-section { padding: 80px 5vw 0; } .bvtm-grid { grid-template-columns: repeat(2, 1fr); } .bvtm-featured { padding: 36px 32px 32px; } }
@media (max-width: 600px) {
  .bvtm-section { padding: 64px 5vw 0; } .bvtm-grid { grid-template-columns: 1fr; }
  .bvtm-featured { padding: 32px 24px 28px; }
  .bvtm-featured__quote-mark { font-size: 80px; top: 24px; left: 20px; }
  .bvtm-featured__author { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bvtm-stars { margin-left: 0; }
  .bvtm-summary__item { padding: 12px 28px; } .bvtm-summary__divider { display: none; } .bvtm-summary { gap: 8px; }
}

/* ============================================
   BV FINAL CTA — PayPal Palette | No grid
   ============================================ */

.bvc-section {
  position: relative;
  background-color: #003087;
  padding: 120px 7vw;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

/* Subtle radial white glow from centre — replaces grid */
.bvc-bg-grid { display: none; }

.bvc-bg-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,112,224,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

.bvc-bg-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.025) 40px, rgba(255,255,255,0.025) 41px
  );
  pointer-events: none; z-index: 0;
}

.bvc-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.bvc-ring--1 { width: 500px; height: 500px; border: 1px solid rgba(255,255,255,0.1); animation: bvc-ring-breathe 5s ease-in-out infinite; }
.bvc-ring--2 { width: 750px; height: 750px; border: 1px solid rgba(255,255,255,0.06); animation: bvc-ring-breathe 5s ease-in-out infinite 1s; }
.bvc-ring--3 { width: 1020px; height: 1020px; border: 1px solid rgba(255,255,255,0.03); animation: bvc-ring-breathe 5s ease-in-out infinite 2s; }
@keyframes bvc-ring-breathe {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

.bvc-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.bvc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff; font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  padding: 7px 16px; border-radius: 100px;
}
.bvc-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffffff; box-shadow: 0 0 8px rgba(255,255,255,0.7);
  animation: bvc-blink 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes bvc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.bvc-heading {
  font-family: var(--bv-font-head);
  font-size: clamp(36px, 6vw, 76px); font-weight: 800;
  color: #ffffff; line-height: 1.05; letter-spacing: -0.03em; margin: 0;
}
.bvc-heading--accent {
  color: #7ec8f7;
  text-shadow: 0 0 40px rgba(126,200,247,0.3);
}

.bvc-subtext {
  font-size: clamp(14px, 1.2vw, 17px); font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0; max-width: 520px;
}

.bvc-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

.bvc-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all 0.24s ease; white-space: nowrap;
}
.bvc-btn--primary {
  background: #ffffff; color: #003087;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  animation: bvc-pulse-btn 2.8s ease-in-out infinite;
}
.bvc-btn--primary:hover {
  background: #f0f4ff; color: #0070e0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transform: translateY(-3px) scale(1.02); animation: none;
}
@keyframes bvc-pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 0 rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 10px rgba(255,255,255,0); }
}
.bvc-btn--ghost {
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: #ffffff;
}
.bvc-btn--ghost:hover { color:#fff; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }

.bvc-trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 24px; padding-top: 4px; }
.bvc-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.bvc-trust-item svg { color: #7ec8f7; flex-shrink: 0; }

@media (max-width: 768px) { .bvc-section { padding: 90px 5vw; } .bvc-ring--2, .bvc-ring--3 { display: none; } }
@media (max-width: 480px) {
  .bvc-section { padding: 72px 5vw; }
  .bvc-actions { flex-direction: column; width: 100%; }
  .bvc-btn { width: 100%; justify-content: center; }
}


/* ============================================
   BV FOOTER — PayPal Palette | No grid
   Mobile overflow fixed
   ============================================ */

.bvf-footer {
  position: relative;
  background-color: #001b5e;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  overflow-x: clip;
  width: 100%;
}

/* NO bg grid */
.bvf-bg-grid { display: none; }

.bvf-border-top {
  position: relative; z-index: 2; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,112,224,0.5) 20%, rgba(126,200,247,0.7) 50%, rgba(0,112,224,0.5) 80%, transparent 100%);
}

.bvf-main {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px 40px; max-width: 1200px; margin: 0 auto;
  padding: 64px 7vw 56px; box-sizing: border-box; width: 100%;
}

.bvf-brand { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.bvf-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.bvf-logo__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,112,224,0.25); border: 1px solid rgba(126,200,247,0.3);
  display: flex; align-items: center; justify-content: center; color: #7ec8f7;
}
.bvf-logo__name { font-family: var(--bv-font-head); font-size: 20px; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; white-space: nowrap; }
.bvf-logo__image{width:95%;}
.bvf-brand__desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.75; margin: 0; max-width: 100%; }

.bvf-socials { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.bvf-social {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.22s ease;
}
.bvf-social:hover { background: rgba(0,112,224,0.3); border-color: rgba(126,200,247,0.4); color: #7ec8f7; transform: translateY(-2px); }

.bvf-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.bvf-col__heading { font-family: var(--bv-font-head); font-size: 13px; font-weight: 700; color: #ffffff; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }

.bvf-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.bvf-links a { font-size: 13.5px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s, padding-left 0.2s; display: inline-block; word-break: break-word; }
.bvf-links a:hover { color: #7ec8f7; padding-left: 4px; }

.bvf-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.bvf-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.5; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.bvf-contact svg { color: #7ec8f7; flex-shrink: 0; margin-top: 2px; opacity: 0.8; }
.bvf-contact a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; word-break: break-all; }
.bvf-contact a:hover { color: #7ec8f7; }
.bvf-contact span { word-break: break-word; }

.bvf-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.bvf-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; border-radius: 100px;
}
.bvf-badge svg { color: #7ec8f7; flex-shrink: 0; }

.bvf-bottom {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 20px 7vw;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-sizing: border-box; width: 100%;
}
.bvf-bottom__copy { font-size: 12.5px; color: rgba(255,255,255,0.22); white-space: nowrap; }
.bvf-bottom__links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bvf-bottom__links a { font-size: 12.5px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; white-space: normal; word-break: keep-all; }
.bvf-bottom__links a:hover { color: rgba(255,255,255,0.6); }
.bvf-bottom__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.18); flex-shrink: 0; }

@media (max-width: 900px) {
  .bvf-main { grid-template-columns: 1fr 1fr; gap: 40px 28px; padding: 52px 5vw 44px; }
  .bvf-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bvf-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 5vw 32px; }
  .bvf-brand { grid-column: span 1; }
  .bvf-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 5vw; }
  .bvf-bottom__dot { display: none; }
  .bvf-bottom__links { gap: 6px 12px; }
  .bvf-bottom__links a { font-size: 12px; }
}
@media (max-width: 380px) {
  .bvf-main { padding: 36px 4vw 28px; }
  .bvf-bottom { padding: 16px 4vw; }
  .bvf-logo__name { font-size: 17px; }
	.bvf-logo__image {width: 60%;}
  .bvf-brand__desc, .bvf-links a, .bvf-contact li { font-size: 13px; }
}

/* ============================================
   BV 404 PAGE + SEARCH RESULTS
   PayPal Palette: #003087 | #0070e0
   Syne + DM Sans | No background grids
   ============================================ */

/* ═══════════════════════════════════
   404 PAGE
═══════════════════════════════════ */

.bv404-page {
  position: relative;
  min-height: 80vh;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 7vw;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

/* Ambient glows */
.bv404-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(80px);
}
.bv404-glow--left {
  left: -150px; top: 30%;
  background: radial-gradient(circle, rgba(0,48,135,0.07) 0%, transparent 70%);
}
.bv404-glow--right {
  right: -150px; top: 20%;
  background: radial-gradient(circle, rgba(0,112,224,0.06) 0%, transparent 70%);
}

.bv404-inner {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}

/* ── Big 404 number with shield icon ── */
.bv404-number {
  display: flex; align-items: center; gap: 8px;
  line-height: 1;
}
.bv404-number__4 {
  font-family: var(--bv-font-head);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800; color: #003087;
  letter-spacing: -0.04em; opacity: 0.15;
}
.bv404-number__icon {
  width: clamp(80px, 14vw, 140px);
  animation: bv404-float 4s ease-in-out infinite;
}
.bv404-number__icon svg { width: 100%; height: auto; }

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

/* ── Text ── */
.bv404-title {
  font-family: var(--bv-font-head);
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  color: #0d1b3e; letter-spacing: -0.025em; margin: 0;
}
.bv404-subtitle {
  font-size: clamp(14px, 1.2vw, 17px); font-weight: 300;
  color: #4a5568; line-height: 1.75; margin: 0; max-width: 460px;
}

/* ── Search bar ── */
.bv404-search { width: 100%; max-width: 480px; }
.bv404-search__form {
  display: flex; align-items: center;
  background: #ffffff; border: 1.5px solid #d8e0ed;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,48,135,0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bv404-search__form:focus-within {
  border-color: #003087;
  box-shadow: 0 4px 20px rgba(0,48,135,0.15), 0 0 0 3px rgba(0,48,135,0.08);
}
.bv404-search__icon {
  color: #8fa3bf; flex-shrink: 0; margin-left: 16px;
}
.bv404-search__input {
  flex: 1; padding: 14px 12px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: #0d1b3e;
  border: none; outline: none; background: none; min-width: 0;
}
.bv404-search__input::placeholder { color: #b0c4d8; }
.bv404-search__btn {
  background: #003087; color: #ffffff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  border: none; padding: 14px 22px; cursor: pointer;
  transition: background 0.2s ease; white-space: nowrap; flex-shrink: 0;
}
.bv404-search__btn:hover { background: #0070e0; }

/* ── Quick links grid ── */
.bv404-links { width: 100%; }
.bv404-links__label {
  font-size: 12px; font-weight: 500; color: #8fa3bf;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px; display: block;
}
.bv404-links__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.bv404-link {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 24px; background: #ffffff;
  border: 1px solid #d8e0ed; border-radius: 14px;
  text-decoration: none; min-width: 90px;
  transition: all 0.22s ease;
  box-shadow: 0 1px 4px rgba(0,48,135,0.05);
}
.bv404-link:hover {
  border-color: rgba(0,48,135,0.3);
  box-shadow: 0 6px 20px rgba(0,48,135,0.1);
  transform: translateY(-3px);
}
.bv404-link__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,48,135,0.07); border: 1px solid rgba(0,48,135,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #003087; transition: background 0.2s;
}
.bv404-link:hover .bv404-link__icon { background: rgba(0,48,135,0.12); }
.bv404-link__label {
  font-family: var(--bv-font-head);
  font-size: 13px; font-weight: 700; color: #0d1b3e;
}

/* ── Recent posts ── */
.bv404-recent { width: 100%; }
.bv404-recent__label {
  font-size: 12px; font-weight: 500; color: #8fa3bf;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px; display: block;
}
.bv404-recent__list {
  display: flex; flex-direction: column; gap: 8px;
}
.bv404-recent__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: #003087; text-decoration: none;
  font-weight: 500; transition: gap 0.2s, color 0.2s;
  text-align: left;
}
.bv404-recent__item svg { flex-shrink: 0; transition: transform 0.2s; }
.bv404-recent__item:hover { color: #0070e0; gap: 12px; }
.bv404-recent__item:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════
   SEARCH RESULTS PAGE
═══════════════════════════════════ */

/* ── Hero ── */
.bvsr-hero {
  background: #f5f7fa;
  border-bottom: 1px solid #e8edf5;
  padding: 64px 7vw 52px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}
.bvsr-hero__inner {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.bvsr-hero__top { display: flex; flex-direction: column; gap: 6px; }
.bvsr-hero__count {
  font-size: 13px; font-weight: 500; color: #8fa3bf;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.bvsr-hero__query {
  font-family: var(--bv-font-head);
  font-size: clamp(24px, 4vw, 44px); font-weight: 800;
  color: #0d1b3e; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0;
}

/* ── Search form ── */
.bvsr-form {
  display: flex; align-items: center;
  background: #ffffff; border: 1.5px solid #d8e0ed;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,48,135,0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 600px;
}
.bvsr-form:focus-within {
  border-color: #003087;
  box-shadow: 0 4px 16px rgba(0,48,135,0.12), 0 0 0 3px rgba(0,48,135,0.08);
}
.bvsr-form__icon { color: #8fa3bf; flex-shrink: 0; margin-left: 16px; }
.bvsr-form__input {
  flex: 1; padding: 14px 12px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: #0d1b3e;
  border: none; outline: none; background: none; min-width: 0;
	outline:none!important;
	border:none!important;
}
.bvsr-form__input::placeholder { color: #b0c4d8; }
.bvsr-form__btn {
  background: #003087; color: #ffffff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  border: none; padding: 14px 24px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.bvsr-form__btn:hover { background: #0070e0; }

/* ── Results section ── */
.bvsr-section {
  background: #ffffff;
  padding: 56px 7vw 80px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}
.bvsr-inner { max-width: 820px; margin: 0 auto; }

/* ── Results grid (vertical list) ── */
.bvsr-grid {
  display: flex; flex-direction: column; gap: 0;
}

/* ── Result card ── */
.bvsr-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #eef1f7;
  transition: background 0.2s;
}
.bvsr-card:first-child { padding-top: 0; }
.bvsr-card:last-child { border-bottom: none; }
.bvsr-card:hover { background: none; }

/* Card thumbnail */
.bvsr-card__img-wrap {
  display: block; overflow: hidden;
  border-radius: 12px; background: #f0f5ff;
  height: 100px; flex-shrink: 0;
}
.bvsr-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.bvsr-card:hover .bvsr-card__img { transform: scale(1.05); }

/* No image — card goes full width */
.bvsr-card:not(:has(.bvsr-card__img-wrap)) {
  grid-template-columns: 1fr;
}

.bvsr-card__body {
  display: flex; flex-direction: column; gap: 10px; min-width: 0;
}

/* Meta row */
.bvsr-card__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.bvsr-type-tag {
  display: inline-block; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; border: 1px solid;
  white-space: nowrap;
}
.bvsr-type-tag--post {
  color: #003087; background: rgba(0,48,135,0.07);
  border-color: rgba(0,48,135,0.2);
}
.bvsr-type-tag--page {
  color: #0070e0; background: rgba(0,112,224,0.07);
  border-color: rgba(0,112,224,0.2);
}
.bvsr-meta-sep { color: #c8d5e8; font-size: 13px; }
.bvsr-cat-link {
  font-size: 13px; color: #4a5568; text-decoration: none;
  transition: color 0.2s;
}
.bvsr-cat-link:hover { color: #003087; }
.bvsr-meta-date { font-size: 13px; color: #8fa3bf; }

/* Title */
.bvsr-card__title {
  font-family: var(--bv-font-head);
  font-size: clamp(17px, 1.6vw, 21px); font-weight: 800;
  color: #0d1b3e; line-height: 1.25;
  letter-spacing: -0.01em; margin: 0;
}
.bvsr-card__title a {
  color: inherit; text-decoration: none; transition: color 0.2s;
}
.bvsr-card__title a:hover { color: #003087; }

/* Excerpt */
.bvsr-card__excerpt {
  font-size: 14px; font-weight: 300; color: #4a5568;
  line-height: 1.75; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Highlighted search term */
.bvsr-highlight {
  background: rgba(0,112,224,0.12);
  color: #003087; font-weight: 600;
  padding: 0 2px; border-radius: 3px;
  font-style: normal;
}

/* Read more link */
.bvsr-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #003087;
  text-decoration: none; transition: color 0.2s, gap 0.2s;
  width: fit-content;
}
.bvsr-card__link:hover { color: #0070e0; gap: 9px; }

/* ── Pagination ── */
.bvsr-pagination {
  margin-top: 48px; display: flex; justify-content: center;
}
.bvsr-pagination ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.bvsr-pagination ul li { display: inline-flex; }
.bvsr-pagination ul li a,
.bvsr-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  border-radius: 10px; text-decoration: none;
  border: 1px solid #d8e0ed; color: #4a5568;
  background: #ffffff; transition: all 0.2s;
}
.bvsr-pagination ul li a:hover { background: #f0f5ff; border-color: rgba(0,48,135,0.3); color: #003087; }
.bvsr-pagination ul li .current { background: #003087; border-color: #003087; color: #ffffff; font-weight: 700; }

/* ── Empty / No results ── */
.bvsr-empty {
  text-align: center; padding: 64px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.bvsr-empty__icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: #f0f5ff; border: 1px solid rgba(0,48,135,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #003087; margin-bottom: 8px;
}
.bvsr-empty__title {
  font-family: var(--bv-font-head);
  font-size: 26px; font-weight: 800; color: #0d1b3e; margin: 0;
}
.bvsr-empty__text {
  font-size: 15px; font-weight: 300; color: #4a5568;
  line-height: 1.75; margin: 0; max-width: 420px;
}
.bvsr-empty__links {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}
.bvsr-empty__btn {
  display: inline-flex; align-items: center;
  padding: 12px 24px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.22s ease;
}
.bvsr-empty__btn--primary { background: #003087; color: #ffffff; box-shadow: 0 3px 14px rgba(0,48,135,0.25); }
.bvsr-empty__btn--primary:hover { background: #0070e0; transform: translateY(-2px); }
.bvsr-empty__btn--ghost { background: #f5f7fa; border: 1px solid #d8e0ed; color: #4a5568; }
.bvsr-empty__btn--ghost:hover { border-color: rgba(0,48,135,0.3); color: #003087; transform: translateY(-2px); }

/* ═══════════════════════════════════
   RESPONSIVE — both pages
═══════════════════════════════════ */

@media (max-width: 768px) {
  /* 404 */
  .bv404-page { padding: 60px 5vw; min-height: 70vh; }
  .bv404-links__grid { gap: 10px; }
  .bv404-link { min-width: 80px; padding: 14px 16px; }

  /* Search */
  .bvsr-hero { padding: 48px 5vw 40px; }
  .bvsr-section { padding: 40px 5vw 64px; }
  .bvsr-card { grid-template-columns: 1fr; gap: 16px; }
  .bvsr-card__img-wrap { height: 180px; }
}

@media (max-width: 480px) {
  /* 404 */
  .bv404-number__4 { font-size: 72px; }
  .bv404-links__grid { gap: 8px; }
  .bv404-link { min-width: 70px; padding: 12px 14px; }
  .bv404-link__icon { width: 38px; height: 38px; border-radius: 10px; }
  .bv404-search__btn { padding: 14px 16px; font-size: 13px; }

  /* Search */
  .bvsr-hero__query { font-size: 22px; }
  .bvsr-form__btn { padding: 14px 16px; font-size: 13px; }
  .bvsr-empty__links { flex-direction: column; width: 100%; }
  .bvsr-empty__btn { justify-content: center; width: 100%; }
}

/* ============================================
   FLOATING WHATSAPP + CALL BUTTONS
   Simple, reliable, perfectly centred
   ============================================ */

/* Stack of buttons, fixed bottom-right */
.bvfab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Base button style */
.bvfab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.bvfab__btn:hover {
  transform: scale(1.1);
}

/* Force SVG to not affect layout */
.bvfab__btn svg {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

/* WhatsApp — official green */
.bvfab__btn--wa {
  background-color: #25D366;
}
.bvfab__btn--wa:hover {
  background-color: #20c05c;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* Pulse ring on WhatsApp */
.bvfab__btn--wa::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: bvfab-pulse 2.2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes bvfab-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  80%  { transform: scale(1.65); opacity: 0;   }
  100% { transform: scale(1.65); opacity: 0;   }
}

/* Need relative on the wa button for ::after to position */
.bvfab__btn--wa {
  position: relative;
}

/* Call — PayPal blue */
.bvfab__btn--call {
  background-color: #003087;
}
.bvfab__btn--call:hover {
  background-color: #0070e0;
  box-shadow: 0 6px 22px rgba(0, 48, 135, 0.45);
}

/* Admin bar offset */
.admin-bar .bvfab {
  bottom: 60px;
}

/* Mobile */
@media (max-width: 480px) {
  .bvfab {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }
  .bvfab__btn {
    width: 52px;
    height: 52px;
  }
  .bvfab__btn--wa::after {
    width: 52px;
    height: 52px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bvfab__btn--wa::after {
    animation: none;
  }
}


:root{--sydney-global-color-1:#d65050;--sydney-global-color-2:#b73d3d;--sydney-global-color-3:#233452;--sydney-global-color-4:#00102E;--sydney-global-color-5:#6d7685;--sydney-global-color-6:#00102E;--sydney-global-color-7:#F4F5F7;--sydney-global-color-8:#dbdbdb;--sydney-global-color-9:#ffffff;--sydney-headings-color:var(--sydney-global-color-4);--sydney-dark-background:var(--sydney-global-color-6);--sydney-grey-color:var(--sydney-global-color-5);--sydney-text-color:var(--sydney-global-color-3);--sydney-light-background:var(--sydney-global-color-7);--sydney-button-background:var(--sydney-global-color-1);--sydney-border-color:var(--sydney-global-color-8);--sydney-scrolltop-distance:800}.valign{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-previous,.posts-navigation .nav-previous{float:left;width:50%}.comment-navigation .nav-next,.posts-navigation .nav-next{float:right;text-align:right;width:50%}.posts-navigation .nav-previous{padding-left:15px}.posts-navigation .nav-next{padding-right:15px}.post-navigation .nav-links{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 0 60px;position:relative;border-top:1px solid var(--sydney-border-color)}.post-navigation .nav-next,.post-navigation .nav-previous{width:50%}.post-navigation .nav-next{text-align:right}.post-navigation a{color:var(--sydney-text-color)}.post-navigation .nav-next:hover span,.post-navigation .nav-previous:hover span{color:var(--sydney-text-color)}.post-navigation span{color:var(--sydney-grey-color);transition:color .3s}.post-navigation .nav-next,.post-navigation .nav-previous{padding:30px 60px}.post-navigation .nav-previous span{margin-right:10px}.post-navigation .nav-previous{border-right:1px solid var(--sydney-border-color)}.post-navigation .nav-next span{margin-left:10px}.woocommerce nav.woocommerce-pagination ul li .page-numbers{padding:0}.nav-links .page-numbers,.woocommerce nav.woocommerce-pagination ul li .page-numbers{background-color:var(--sydney-dark-background);width:60px;height:60px;line-height:60px;text-align:center;display:inline-block;color:#fff;margin-right:5px}.page-numbers.dots{background:0 0}.nav-links .page-numbers.current,.nav-links .page-numbers:not(.dots):hover,.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover{background-color:var(--sydney-grey-color);color:#fff}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:active,.screen-reader-text:focus,.screen-reader-text:hover{background-color:var(--sydney-light-background);border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}.widget select{max-width:100%}.widget_search .search-submit{display:none}.sticky{display:block}.updated:not(.published){display:none}.page .entry-header,.single .entry-header{margin-bottom:30px}.entry-footer{clear:both;margin-top:30px}.page-links{clear:both;margin:0 0 30px}.page-header{margin:0;border:0}.archive-header{margin-bottom:60px}.archive-header h1{margin-bottom:0}.archive-header .taxonomy-description{margin-top:15px}.single .meta-post .post-cat::before{content:'/';padding:0 10px}.single .meta-post .post-cat:first-of-type::before{content:'';padding:0}.single .hentry .meta-post a{color:var(--sydney-global-color-1)}.archive .format-aside .entry-title,.blog .format-aside .entry-title{display:none}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}ol.wp-block-latest-comments{padding:0}.infinite-scroll .posts-navigation,.infinite-scroll.neverending .site-footer{display:none}.infinity-end.neverending .site-footer{display:block}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}img{max-width:100%;height:auto;vertical-align:middle}.fitVids-wrapper{position:relative;padding-bottom:56.25%;height:0}.fitVids-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin:0 auto}.wp-caption-text{text-align:center}.wp-caption .wp-caption-text{margin:.8075em 0}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{font-size:16px;line-height:1.7;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;background:var(--sydney-global-color-9);color:var(--sydney-text-color)}a{text-decoration:none;transition:all .3s ease-in-out}a:focus,a:hover{color:#443f3f;text-decoration:none;outline:0;transition:all .3s ease-in-out}p{margin-block-start:0;margin-bottom:20px}.footer-widgets .widget ul,.widget-area .widget ul{list-style:none;padding:0}.widget .children{padding-left:15px}strong{font-weight:600}h1{font-size:48px}h2{font-size:38px}h3{font-size:32px}h4{font-size:24px}h5{font-size:20px}h6{font-size:18px}h1,h2,h3,h4,h5,h6{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:var(--sydney-headings-color);font-weight:600;margin:10px 0 24px;line-height:1.2}.llms-button-action,.llms-student-dashboard .llms-button-secondary,button,div.wpforms-container-full:not(.wpforms-block) .wpforms-form .wpforms-page-button,div.wpforms-container-full:not(.wpforms-block) .wpforms-form button[type=submit],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=submit],input[type=button],input[type=reset],input[type=submit]{position:relative;display:inline-block;font-size:13px;line-height:24px;padding:12px 34px;color:#fff;text-transform:uppercase;border-radius:3px;transition:all .3s;cursor:pointer}.llms-button-action:hover,.llms-student-dashboard .llms-button-secondary:hover,button:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form .wpforms-page-button:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form button[type=submit]:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=submit]:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{background-color:transparent}.select2-container--default .select2-selection--single,div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=date],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=datetime-local],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=datetime],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=email],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=month],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=number],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=password],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=range],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=search],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=tel],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=text],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=time],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=url],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=week],div.wpforms-container-full:not(.wpforms-block) .wpforms-form select,div.wpforms-container-full:not(.wpforms-block) .wpforms-form textarea,input[type=date],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:var(--sydney-grey-color);border:1px solid var(--sydney-border-color);height:50px;padding:4px 20px;border-radius:0;transition:all .3s ease-in-out}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{box-shadow:none}textarea{width:100%;height:120px;padding:15px 20px}input[type=checkbox]{display:inline}input:-moz-placeholder,input::-moz-placeholder,textarea:-moz-placeholder,textarea::-moz-placeholder{color:var(--sydney-grey-color)}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:var(--sydney-grey-color)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:var(--sydney-grey-color)}input,textarea{text-shadow:none;box-shadow:none}table{width:100%}td,th{border:1px solid #333;padding:5px;text-align:center}.site-title{font-size:32px;line-height:1.2;font-weight:600}.site-title a,.site-title a:hover{color:#fff}.site-logo{max-height:100px;width:auto;vertical-align:middle}.site-header{position:fixed;top:0;left:0;width:100%;z-index:1000;background-color:transparent;padding:20px 0;transition:all .3s ease-out}.admin-bar .site-header,.admin-bar .site-header.float-header{top:32px}.admin-bar:not(.siteScrolled) .slide-item{background-position:50% 0!important}.header-image{display:none;position:relative;height:300px;background-position:center;background-size:cover;background-repeat:no-repeat}.header-inner{display:none}.site-description:empty{margin:0}.site-header.fixed{position:fixed}.site-header .col-md-4,.site-header .col-md-8{min-height:0}.site-header .logo{margin:40px 0;float:left;transition:all .3s linear}.site-header .logo a{display:block;height:100%}.site-header .logo{width:135px;height:27px}.site-header.float-header{background-color:rgba(0,0,0,.9);padding:5px}.site-header.float-header #mainnav{padding:0}.site-header.float-header #mainnav>ul>li>a{height:70px;line-height:70px}.site-header.float-header .logo{margin:20px 0}#mainnav{display:block;float:right;transition:all .3s linear}#mainnav ul{list-style:none;margin:0;padding:0}#mainnav li{float:left;padding:0 14px;font-size:14px}#mainnav ul ul li{padding:0}#mainnav ul li a{position:relative;display:block;color:#fff;font-weight:500;text-decoration:none;outline:0}#mainnav ul li a:hover{color:var(--sydney-global-color-1)}#mainnav ul ul a{width:180px}#mainnav>ul>li:last-child{padding-right:0}#mainnav ul li{position:relative}#mainnav ul li ul{width:180px;position:absolute;top:100%;left:initial;opacity:0;visibility:hidden;border-radius:0 0 2px 2px;transition:all .3s ease}#mainnav ul li ul ul{top:0}#mainnav .dropdown-symbol{fill:#fff;margin-left:8px;position:relative;top:-2px}#mainnav ul ul .dropdown-symbol svg{transform:rotate(-90deg)}#mainnav ul li ul:after{content:"";position:absolute;left:0;width:100%;height:1px}#mainnav ul li ul ul:after{top:0}#mainnav ul li ul li ul{left:100%}#mainnav:not(.mainnav.toggled) li:hover>ul,#mainnav:not(.mainnav.toggled) li>ul.toggled{opacity:1;padding-top:10px;visibility:visible;left:auto;display:block!important;transition:all .3s ease}#mainnav:not(.mainnav.toggled) li ul.toggled ul.toggled,#mainnav:not(.mainnav.toggled) li:hover>ul ul{padding-top:0;left:100%}#mainnav .sub-menu{z-index:99999}#mainnav .sub-menu li a{color:#fff;display:block;line-height:1;background:#1c1c1c;padding:0 18px;border-top:1px solid #252525;transition:all .3s ease;word-wrap:break-word}#mainnav .sub-menu li:hover>a{color:#fff}#mainnav li:hover>.sub-menu>li>a{padding:8px 18px}#mainnav ul li::before{font-family:Fontawesome,"Font Awesome 5 Free";color:#fff;float:left;margin:5px 5px 0 0;font-size:14px;line-height:1;font-weight:400}#mainnav ul li a{float:left}#mainnav .sub-menu li:before{content:'';margin:0;transition:all .3s ease}#mainnav-mobi ul li a,.mainnav.toggled ul li a{float:none!important}#mainnav-mobi ul li::before,.mainnav.toggled ul li::before{content:''}.fw-menu-container{padding-left:60px;padding-right:60px}.main-header{transition:background-color .3s}.header-search-form,.main-header{background-color:var(--sydney-dark-background);z-index:999}.bottom-header-row #mainnav,.main-header #mainnav{float:none}.bottom-header-row #mainnav ul li ul,.main-header #mainnav ul li ul{left:-9999em}.site-header-inner{padding-top:15px;padding-bottom:15px}.bottom-header-row #mainnav a,.main-header #mainnav a{background:0 0!important;border:0!important}.bottom-header-row #mainnav ul li ul:after,.main-header #mainnav ul li ul:after{display:none!important}.bottom-header-row #mainnav ul ul li,.main-header #mainnav ul ul li{background-color:#233452;display:flex;align-items:center;padding:5px 18px;width:100%}.bottom-header-row #mainnav ul ul li:first-of-type,.main-header #mainnav ul ul li:first-of-type{padding-top:16px}.bottom-header-row #mainnav ul ul li:last-of-type,.main-header #mainnav ul ul li:last-of-type{padding-bottom:16px}.bottom-header_layout_4 #mainnav>div>ul>li:first-of-type,.bottom-header_layout_5 #mainnav>div>ul>li:first-of-type{padding-left:0}.bottom-header-row #mainnav ul li ul,.main-header #mainnav ul li ul{width:220px}.main-header ul ul a:not(.mega-menu-link){padding-left:0!important;padding-right:0!important}.header-contact i,.header-item.header-contact i{margin-right:5px}.header-item.header-woo{display:flex}.header-item:last-child{margin-right:0}.mobile-header,.sydney-offcanvas-menu{display:none}.sydney-offcanvas-menu .dropdown-symbol{margin-left:0!important}.sydney-offcanvas-menu .header-search,.sydney-offcanvas-menu .site-header-cart,.sydney-offcanvas-menu .wc-account-link{display:inline-block;vertical-align:middle}.sydney-offcanvas-menu .button{margin-top:30px}.sydney-offcanvas-menu #mainnav ul li a{float:none!important}.sydney-offcanvas-menu .header-contact a{margin-bottom:15px}.sydney-offcanvas-menu .header-contact{background-color:transparent!important;border:0!important;margin-top:30px;padding:0!important}.sydney-offcanvas-menu svg{max-height:16px}.sydney-offcanvas-menu{position:fixed;left:-100%;opacity:0;transition:all .4s;top:0;box-shadow:0 5px 15px 3px rgba(0,0,0,.07);padding:40px 30px 30px;margin:0;z-index:99999;background-color:var(--sydney-dark-background);width:100%;max-width:300px;height:100%;overflow-y:auto}.offcanvas-header-custom-text{color:#fff;font-size:18px}.sydney-offcanvas-menu .mobile-header-item{visibility:hidden}.admin-bar .sydney-offcanvas-menu{top:32px}.sydney-offcanvas-menu.toggled{left:0;opacity:1}.sydney-offcanvas-menu.toggled .mobile-header-item{visibility:visible}.sydney-offcanvas-menu #mainnav a{width:100%}.sydney-offcanvas-menu #mainnav .menu-item-has-children a{width:calc(100% - 23px)}.sydney-offcanvas-menu #mainnav ul ul a{width:calc(100% - 23px);background:0 0;border:0;padding-top:10px;padding-bottom:10px}.sydney-offcanvas-menu #mainnav ul li a,.sydney-offcanvas-menu #mainnav ul ul li a{font-size:18px}.sydney-offcanvas-menu #mainnav ul ul a:hover{background:0 0}.sydney-offcanvas-menu #mainnav ul ul li{display:flex;flex-wrap:wrap;padding:0;background-color:transparent}.sydney-offcanvas-menu #mainnav ul li ul ul:after,.sydney-offcanvas-menu #mainnav ul li ul:after{display:none}.sydney-offcanvas-menu #mainnav ul li{padding:0;margin-right:0;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) li:hover>ul{padding-top:0}.sydney-offcanvas-menu #mainnav ul ul ul{position:static}.sydney-offcanvas-menu #mainnav ul ul li:hover>ul,.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) li:hover>ul{display:none!important}.sydney-offcanvas-menu #mainnav .sub-menu{display:none;margin:0;list-style:none;padding-left:10px;position:static;float:none;box-shadow:none}.mobile-menu-close svg{fill:var(--sydney-text-color)}.menu-toggle .sydney-svg-icon{vertical-align:unset}.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) .sub-menu.toggled{display:block!important;visibility:visible;opacity:1;width:100%;margin-bottom:10px}.sydney-offcanvas-menu #mainnav li:hover>.sub-menu>li>a{padding:10px 18px}.sydney-offcanvas-menu.toggled .menu{display:block}.sydney-offcanvas-menu #mainnav{display:block;float:none}.sydney-offcanvas-menu .mainnav ul li:last-of-type{border:0!important}.sydney-offcanvas-menu #mainnav .sub-menu li:hover>a{background:0 0!important}.mobile-header-item{margin-bottom:30px}.mobile-header-item.offcanvas-items{display:flex;flex-direction:column;gap:25px}.mobile-header-item.offcanvas-items>.header-item{margin:0}.mobile-header-item.offcanvas-items .button{align-self:start}.mobile-header-item.offcanvas-items .social-profile{text-align:left}.bottom-header-row .header-contact,.main-header .header-contact,.mobile-header .header-contact{background:0 0!important;border:0!important;width:auto!important;position:static!important;padding:0!important}.mobile-header-item:last-of-type{margin-bottom:0}.mobile-header-item .align-right{text-align:right}@media (max-width:1024px){.bottom-header-row,.main-header{display:none}.mobile-header{display:block;padding-top:15px;padding-bottom:15px}.mobile-header .align-right{justify-content:flex-end;text-align:right}.mobile-header .align-center{text-align:center}.sydney-offcanvas-menu{display:block}}.site-title{margin:0}.site-title a,.site-title a:visited{color:#fff}.site-description{color:#fff;margin:5px 0 0}.header-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header-elements svg{fill:#fff;max-height:14px}.header_layout_1 .header-elements,.header_layout_2 .header-elements{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.header_layout_2 .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.header_layout_2 .menu-col{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.header_layout_2 .menu-center .mainnav>div>ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.header_layout_2 .menu-right .mainnav>div>ul{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.header_layout_2 .header-col{padding-left:15px;padding-right:15px}.header_layout_1 .site-branding,.header_layout_3 .site-branding,.header_layout_5 .site-branding{text-align:center}.bottom-header_layout_3 .mainnav>div>ul{justify-content:center}.bottom-header_layout_3 .header-elements:not(:first-of-type),.bottom-header_layout_4 .header-elements:not(:first-of-type),.bottom-header_layout_5 .header-elements:not(:first-of-type),.header_layout_3 .header-elements:not(:first-of-type),.header_layout_4 .header-elements:not(:first-of-type),.header_layout_5 .header-elements:not(:first-of-type){justify-content:flex-end}.main-header .top-header-row{padding-top:15px;padding-bottom:15px}.main-header.header_layout_3 .site-header-inner,.main-header.header_layout_5 .site-header-inner,.site-header.header_layout_4 .site-header-inner{padding:0}.transparent-header .sticky-header.sticky-scrolltop{position:static;z-index:19;width:100%;top:0;transition:all .5s}.transparent-header .bottom-header_layout_3.sticky-header.sticky-scrolltop:not(.is-sticky),.transparent-header .bottom-header_layout_4.sticky-header.sticky-scrolltop:not(.is-sticky),.transparent-header .bottom-header_layout_5.sticky-header.sticky-scrolltop:not(.is-sticky){position:static}.admin-bar.transparent-header .sticky-header.sticky-scrolltop{top:32px}.sticky-header.sticky-scrolltop{position:sticky;top:-200px;transition:top .4s}.sticky-header.is-sticky,.sticky-header.sticky-always{position:sticky;top:0}.admin-bar .sticky-header.is-sticky,.admin-bar .sticky-header.sticky-always{top:32px}.sticky-header.is-sticky,.sticky-header.sticky-shadow{box-shadow:0 0 30px rgba(0,0,0,.07)}.bottom-header-row{background-color:var(--sydney-dark-background);z-index:999}.bottom-header-inner{padding-top:15px;padding-bottom:15px}.header-item{margin-right:25px;line-height:1;font-size:14px}.header-item:last-child{margin-right:0}.header-contact a{display:block;margin-bottom:5px}.header-contact a:last-of-type{margin-bottom:0}.header-search .icon-cancel,.header-search .icon-search{display:none;cursor:pointer;position:relative;z-index:999}.header-search .icon-cancel.active,.header-search .icon-search.active{display:inline-block}.header-search .icon-cancel svg{width:20px;height:24px}.icon-cancel{cursor:pointer}.header-search-form{position:absolute;width:100%;top:auto;padding:20px;z-index:999999;left:-9999em;opacity:0;transition:opacity .3s;visibility:hidden}.header-search-form form{max-width:720px;margin-left:auto;margin-right:auto;display:flex}.header-search-form form .search-field,.header-search-form form label{width:100%}.header-search-form label{margin-bottom:0}.header-search-form form .search-field,.header-search-form form button{display:block}.header-search-form form .search-field svg,.header-search-form form button svg{fill:#fff}.header-search-form form button{padding:13px 24px!important;border-radius:0!important;font-size:14px!important}.header-search-form.active{opacity:1;left:0;visibility:visible}.search-overlay{position:fixed;top:0;height:100%;width:100%;z-index:998;background-color:rgba(0,0,0,.3);left:-100%;opacity:0;transition:opacity .3s}.search-overlay.active{opacity:1;left:0}.header-image img{width:100%;vertical-align:top}.custom-logo-link{line-height:1}.custom-logo-link img{max-width:180px}@media (max-width:1024px){.bottom-header-row,.main-header{display:none}.mobile-header{display:block;padding-top:15px;padding-bottom:15px}.mobile-header .align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.mobile-header .align-center{text-align:center}.sydney-offcanvas-menu{display:block}}.main-header.sticky-active{box-shadow:0 0 30px rgba(0,0,0,.05)}.transparent-header .header-wrapper,.transparent-header .shfb-header{position:absolute;width:100%;top:auto;z-index:999}@media (min-width:1024px){.transparent-header .bottom-header-row:not(.sticky-active):not(.is-sticky),.transparent-header .main-header:not(.sticky-active):not(.is-sticky){background-color:transparent}}.transparent-header .sticky-header.sticky-always{position:fixed;top:auto;left:0;width:100%;transition:all .3s}.transparent-header .sticky-header.sticky-always.bottom-header_layout_3,.transparent-header .sticky-header.sticky-always.bottom-header_layout_4,.transparent-header .sticky-header.sticky-always.bottom-header_layout_5{position:static}.transparent-header .sticky-header.is-sticky{position:fixed;width:100%}.transparent-header .sticky-header.sticky-always.sticky-active{position:fixed;top:0;z-index:999}.admin-bar.transparent-header .sticky-header.sticky-always.sticky-active{position:fixed;top:32px;z-index:999}.mainnav.toggled{display:block!important;top:100%}#mainnav-mobi,.mainnav.toggled{display:block;margin:0 auto;width:100%;position:absolute;background-color:#1c1c1c;margin-top:15px;z-index:1000}#mainnav-mobi{top:28px}#mainnav-mobi ul,.mainnav.toggled ul{display:block;list-style:none;margin:0;padding:0}#mainnav-mobi ul li,.mainnav.toggled ul li{margin:0;position:relative;text-align:left;border-top:1px solid #252525;cursor:pointer;float:none!important}#mainnav-mobi ul>li>a,.mainnav.toggled ul>li>a{display:block;text-decoration:none;padding:10px 50px;color:#fff}#mainnav-mobi ul.sub-menu,.mainnav.toggled ul.sub-menu{top:100%;left:0;z-index:2000;position:relative;background-color:#161625}#mainnav-mobi>ul>li>ul>li,#mainnav-mobi>ul>li>ul>li>ul>li,.mainnav.toggled>ul>li>ul>li,.mainnav.toggled>ul>li>ul>li>ul>li{position:relative;border-top:1px solid #252525;background-color:#222}#mainnav-mobi>ul>li>ul>li>a,.mainnav.toggled>ul>li>ul>li>a{padding-left:70px!important}#mainnav-mobi>ul>li>ul>li>ul>li a,.mainnav.toggled>ul>li>ul>li>ul>li a{padding-left:90px!important}#mainnav-mobi ul.sub-menu>li>a,.mainnav.toggled ul.sub-menu>li>a{display:block;text-decoration:none;padding:10px 60px;border-top-color:rgba(255,255,255,.1);transition:all .2s ease-out}#mainnav-mobi>ul>li>ul>li:first-child a,.mainnav.toggled>ul>li>ul>li:first-child a{border-top:none}#mainnav.toggled ul ul a,#mainnav.toggled ul.sub-menu{width:100%;left:0}#mainnav.toggled li>.sub-menu>li>a{padding:10px 50px}#mainnav.toggled ul li ul:after{display:none}#mainnav.toggled .sub-menu li a{background:0 0!important}#mainnav.toggled ul ul li{padding:0 14px}#mainnav-mobi ul.sub-menu>li>a:hover,#mainnav-mobi>ul>li>ul>li.active>a,.mainnav.toggled ul.sub-menu>li>a:hover,.mainnav.toggled>ul>li>ul>li.active>a{color:#fff}.btn-menu{float:right;color:#fff;text-align:center;width:28px;height:28px;cursor:pointer;transition:all .3s ease-out}.btn-submenu{position:absolute;right:20px;top:0;width:50px;text-align:center}.btn-submenu.is-amp{color:#fff;font-size:26px}@media (min-width:1025px){.btn-submenu{display:none}}.btn-menu{display:none}.overlay{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.7}.page-wrap{padding:83px 0 100px;clear:both}.page-template-page_front-page .page-wrap,.projects-template-post_full .page-wrap,.projects-template-post_full .page-wrap .content-wrapper{padding:0}.entry-post p{margin-bottom:24px}.entry-post img{margin:10px 0 20px}.header-slider,.owl-wrapper{direction:ltr}.header-slider,.owl-carousel{-webkit-transform:translate3d(0,0,0)}.header-slider{-moz-transform:none;transform:none}.parallax{width:100%;background-attachment:fixed;background-position:50% 0}.single .hentry{margin-bottom:60px}.content-area.sidebar-left .post-wrap{padding-right:0}.content-area.sidebar-left.no-sidebar{float:none;padding-left:15px}.no-sidebar .content-area.sidebar-left{padding-left:15px}.contact-form-wrap,.content-area .post-wrap{padding-right:30px}.no-sidebar .page-wrap{overflow-x:hidden}.content-area.no-sidebar{padding-left:15px;padding-right:15px}.no-sidebar .content-area .post-wrap{padding-right:0;padding-left:0}.container-narrow{max-width:730px;margin-left:auto;margin-right:auto;float:none;width:auto}.entry-content>*{margin-bottom:1.5em}.entry-content>.elementor,.entry-content>.panel-layout{margin-bottom:0}mbody:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h1{margin-top:1em;margin-bottom:.5em}body:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h2,body:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h3,body:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h4,body:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h5,body:not(.elementor-page):not(.panel-layout):not(.page-template-page_front-page) .entry-content h6{margin-top:1.2em;margin-bottom:.5em}.container-narrow .post-wrap{padding-right:0}.content-area .hentry{position:relative}.hentry .post-content{overflow:hidden}.content-area .entry-thumb{text-align:center;margin-bottom:24px}.content-area .entry-thumb:empty{margin:0!important}.single .related-post .entry-thumb{margin-bottom:12px}.hentry .title-post{margin:0}.single .entry-header .entry-title{padding:0}.posts-layout .hentry{margin-bottom:60px}.posts-layout .entry-title{font-size:32px;padding:0}.posts-layout .read-more,.single-post-author .author-link{color:var(--sydney-headings-color);text-decoration:underline;display:inline-block;margin-top:20px}.posts-layout .read-more:hover,.single-post-author .author-link:hover{color:var(--sydney-grey-color)}.posts-layout .entry-header{margin-bottom:24px}.posts-layout .entry-post p:last-of-type{margin-bottom:0}.entry-title a{color:var(--sydney-headings-color)}.posts-layout .entry-title a:hover{color:var(--sydney-grey-color)}span.author.vcard{padding:0;margin:0}.hentry .wp-block-quote.is-style-large,.hentry blockquote{background-color:var(--sydney-light-background);font-size:22px;margin:30px 0;padding:30px 30px 30px 40px;position:relative;font-style:normal;border-left:3px solid #000}.hentry .wp-block-quote.is-style-large p{font-style:normal;font-size:32px}.hentry blockquote cite{color:var(--sydney-grey-color);text-transform:uppercase;font-size:12px;font-style:normal;letter-spacing:1px}.hentry .wp-block-quote.is-style-large cite{font-size:12px}.hentry .wp-block-pullquote blockquote{padding:30px;border:3px solid #000}.hentry .wp-block-pullquote p{font-size:32px}.fullwidth{width:100%}.error-404{text-align:center}.error-404 .page-content p{margin-bottom:30px}.layout5 .hentry:after{width:0;height:0}.layout3 .row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.posts-layout .post-align-center{text-align:center}.posts-layout .post-align-center .entry-meta{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.posts-layout .post-align-center .entry-header{text-align:center}.posts-layout .post-align-right{text-align:right}.posts-layout .post-align-right .entry-header{text-align:right}.posts-layout .post-align-right .entry-meta{-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end}.posts-layout .list-image{width:35%}.posts-layout .list-content{width:65%;max-width:65%}.posts-layout article:not(.has-post-thumbnail) .list-content{width:100%;max-width:100%}.layout4 .content-inner,.layout6 .content-inner{display:-webkit-box;display:-ms-flexbox;display:flex}.layout4 .entry-thumb,.layout6 .entry-thumb{margin:0 24px 0 0;height:100%}.layout4 .entry-thumb a,.layout6 .entry-thumb a{display:block;height:100%}.layout4 .entry-thumb img,.layout6 .entry-thumb img{object-fit:cover;height:100%}.posts-layout .post-vertical-align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.posts-layout .post-vertical-align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.layout4 .image-right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.layout4 .image-right .entry-thumb{margin:0 0 0 30px}.list-image.image-left:empty{display:none}.layout6 article:nth-of-type(2n) .list-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.layout6 article:nth-of-type(2n) .list-image .entry-thumb{margin:0 0 0 24px}.no-sidebar .layout1,.no-sidebar .layout2{max-width:920px;margin-left:auto;margin-right:auto;padding-left:15px!important;padding-right:15px!important;float:none!important}.single .meta-post a{text-transform:uppercase;letter-spacing:5px;font-size:13px}.single-meta,.single-meta a{color:#68647a}.single .single-meta{text-transform:uppercase;font-size:13px}.single .single-meta{display:table}.single-meta .byline{padding-left:10px}.single-post-author{margin-bottom:60px;background-color:var(--sydney-light-background);padding:40px;text-align:center}.single-post-author .author-avatar img{border-radius:50%}.sydney-related-posts{margin-bottom:60px}.related-post .entry-meta{margin-bottom:6px}.related-post .entry-title{margin-top:6px;margin-bottom:0}.entry-meta{font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;text-transform:uppercase;letter-spacing:1px;font-size:12px;margin-bottom:15px}.entry-meta .avatar{border-radius:50%;margin-left:5px;vertical-align:middle}.entry-meta .author a.url{color:var(--sydney-headings-color)}.entry-meta,.entry-meta a{color:var(--sydney-grey-color)}.entry-meta a:hover,.posts-layout .entry-meta a:hover{color:var(--sydney-headings-color)}.entry-meta>*{margin-right:10px}.entry-meta>:last-of-type{margin-right:0}.entry-meta.delimiter-dot>*,.entry-meta.delimiter-horizontal>*,.entry-meta.delimiter-vertical>*{margin-right:0}.entry-meta.delimiter-dot>:after,.entry-meta.delimiter-horizontal>:after,.entry-meta.delimiter-vertical>:after{padding:0 10px}.entry-meta.delimiter-dot>:last-child:after,.entry-meta.delimiter-horizontal>:last-child:after,.entry-meta.delimiter-vertical>:last-child:after{display:none}.entry-meta.delimiter-dot>:after{content:'';background:var(--sydney-headings-color);opacity:.2;width:4px;height:4px;border-radius:50%;display:inline-block;vertical-align:middle;margin:0 10px;padding:0}.entry-meta.delimiter-vertical>:after{content:'\007C'}.entry-meta.delimiter-horizontal>:after{content:'\0023AF'}.single .entry-meta-below{margin-bottom:0}#secondary{padding:30px}.widget-area .widget{position:relative;margin-bottom:60px}.widget-area .widget_block{margin-bottom:30px}.widget-area .widget:last-child{margin-bottom:0}.sidebar-column .widget:last-of-type{margin-bottom:0}.footer-widgets h2,.widget-area h2{font-size:32px}.widget-area .widget-title{font-size:22px;line-height:normal;padding-bottom:24px;margin:0}.widget-area .widget ul li{padding:5px 0}.widget-area .widget ul li:first-child{padding-top:0}.widget-area .widget ul li:last-child{padding-bottom:0}.widget-categories .categories li a{position:relative;display:block}.widget-categories .categories li span{position:absolute;right:0;top:0}.widget-tags .tag-list a{display:inline-block;font-size:13px;color:var(--sydney-grey-color);border:1px solid var(--sydney-border-color);padding:7px 15px;margin:4px;margin-left:0}.widget-tags .tag-list a:hover{color:var(--sydney-dark-background)}.search-field{max-width:100%}.wp-block-search__button.has-icon{padding:12px!important}.tags-links a{display:inline-block;background-color:var(--sydney-grey-color);padding:2px 10px;color:#fff;margin:0 4px;font-size:12px;text-transform:uppercase;font-weight:600}.tags-links a:hover{background-color:var(--sydney-headings-color)}.tags-links a:first-of-type{margin-left:0}.footer-widgets{border:0;padding:0;background-color:#252525}.footer-widgets .widget{margin-bottom:30px}.footer-widgets .widget:last-of-type{margin-bottom:0}.footer-widgets .widget-title{text-transform:uppercase;color:#fff;line-height:normal;margin:5px 0 0}.footer-widgets,.footer-widgets a{color:#666}.footer-widgets-grid{padding:95px 0;display:grid;gap:30px}.footer-widgets-grid.footer-layout-2{grid-template-columns:repeat(2,1fr)}.footer-widgets-grid.footer-layout-col2-bigleft{grid-template-columns:2fr 1fr}.footer-widgets-grid.footer-layout-col2-bigright{grid-template-columns:1fr 2fr}.footer-widgets-grid.footer-layout-3{grid-template-columns:repeat(3,1fr)}.footer-widgets-grid.footer-layout-col3-bigleft{grid-template-columns:3fr 1fr 1fr}.footer-widgets-grid.footer-layout-col3-bigright{grid-template-columns:1fr 1fr 3fr}.footer-widgets-grid.footer-layout-4{grid-template-columns:repeat(4,1fr)}.footer-widgets-grid.footer-layout-col4-bigleft{grid-template-columns:2fr 1fr 1fr 1fr}.footer-widgets-grid.footer-layout-col4-bigright{grid-template-columns:1fr 1fr 1fr 2fr}.footer-widgets-grid.align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.footer-widgets-grid.align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:end}.visibility-mobile-only{display:none}@media (max-width:991px){.visibility-desktop-only{display:none}.visibility-mobile-only{display:block}}.site-info{padding:20px 0}.site-footer{background-color:#1c1c1c}.site-footer,.site-footer a{color:#666}.site-footer svg{fill:#666}.social-profile{text-align:right}.social-profile a{margin-right:20px}.social-profile a:last-of-type{margin-right:0}.preloader{background:none repeat scroll 0 0 #fff;height:100%;opacity:1;position:fixed;text-align:center;transition:opacity .2s ease 0s;width:100%;z-index:9999}.preloader.disable{opacity:0}.preloader.hide{display:none}.preloader .spinner{height:30px;left:50%;margin-left:-15px;margin-top:-15px;position:relative;top:50%;width:30px}.preloader .pre-bounce1,.preloader .pre-bounce2{-webkit-animation:2s ease 0s normal none infinite bounce;animation:2s ease 0s normal none infinite bounce;background-color:var(--sydney-global-color-1);border-radius:50%;height:100%;left:0;opacity:.6;position:absolute;top:0;width:100%}.preloader .pre-bounce2{-webkit-animation-delay:-.5s;animation-delay:-.5s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.go-top{position:fixed!important;right:20px;bottom:-45px;color:#fff;display:block;line-height:1;text-align:center;padding:15px;visibility:hidden;opacity:0;z-index:9999;cursor:pointer;font-size:14px;border-radius:2px;transition:all .5s}.go-top.position-left{right:auto;left:20px}.go-top:hover{background-color:#fff}.go-top.show{opacity:1;visibility:visible;bottom:11px}.go-top span{margin-right:7px;vertical-align:middle}.sydney_contact_info_widget span{color:var(--sydney-global-color-1);margin-right:15px}.sydney_contact_info_widget div{margin-bottom:10px}.roll-button{position:relative;display:inline-block;font-size:13px;line-height:24px;font-weight:500;padding:12px 35px;letter-spacing:1px;color:#fff;text-transform:uppercase;border-radius:3px;transition:all .3s}.roll-button:hover{background-color:transparent}.roll-button.border{background-color:transparent;text-transform:uppercase}.roll-button.border:hover{color:#fff}.roll-button.border.text-white{color:#fff}.more-button{display:table;margin:30px auto 0;clear:both}a{color:var(--sydney-global-color-1)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:var(--sydney-global-color-1)}.text-color{color:var(--sydney-global-color-1)}button,div.wpforms-container-full:not(.wpforms-block) .wpforms-form .wpforms-page-button,div.wpforms-container-full:not(.wpforms-block) .wpforms-form button[type=submit],div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=submit],input[type=button],input[type=reset],input[type=submit]{background-color:var(--sydney-global-color-1);border:1px solid var(--sydney-global-color-1)}button:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form .wpforms-page-button:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form button[type=submit]:hover,div.wpforms-container-full:not(.wpforms-block) .wpforms-form input[type=submit]:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{background-color:transparent;color:var(--sydney-global-color-1)}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border:1px solid var(--sydney-global-color-1)}#mainnav>ul>li>a.active,#mainnav>ul>li>a:hover{color:var(--sydney-global-color-1)}#mainnav ul li ul:after{background-color:var(--sydney-global-color-1);transition:all .3s ease}#mainnav .sub-menu li:hover>a{background-color:var(--sydney-global-color-1)}.error-wrap #search-submit:hover{background-color:var(--sydney-global-color-1);border-color:var(--sydney-global-color-1)}.hentry .meta-post a:hover{color:var(--sydney-global-color-1)}.sidebar .widget:before{background-color:var(--sydney-global-color-1)}.widget-tags .tag-list a:hover{border:1px solid var(--sydney-global-color-1)}.comment .comment-detail{border:1px solid var(--sydney-global-color-1)}.bottom .socials li:hover a,.go-top{background-color:var(--sydney-global-color-1)}.go-top:hover{color:var(--sydney-global-color-1)}.switcher-container .switcher-icon a:focus{color:var(--sydney-global-color-1)}.llms-student-dashboard .llms-button-secondary,.roll-button{background-color:var(--sydney-global-color-1);border:1px solid var(--sydney-global-color-1)}.llms-student-dashboard .llms-button-secondary:hover,.roll-button:hover{color:var(--sydney-global-color-1)}.roll-button.border{color:var(--sydney-global-color-1);border:1px solid var(--sydney-global-color-1)}.roll-button.border:hover{background-color:var(--sydney-global-color-1)}.wp-custom-header video{display:block;height:auto;max-width:100%;width:100%}.wp-custom-header iframe{vertical-align:top}.wp-custom-header{position:relative}.wp-custom-header .wp-custom-header-video-button{display:none}.page-template-page_front-page.elementor-page .page-wrap .content-wrapper,.page-template-page_front-page.fl-builder .page-wrap .content-wrapper{width:100%;padding:0 15px}.fl-widget .widgettitle,div[class*=elementor-widget-wp-widget-sydney] h5{text-align:center;margin-bottom:50px;position:relative;font-weight:600;line-height:normal;text-transform:uppercase;padding-bottom:10px;font-size:32px}.mc4wp-form label{display:block;width:100%}.mc4wp-form input:not([type=submit]){width:100%}.sydney-breadcrumbs{background-color:var(--sydney-light-background);padding:15px;margin-bottom:30px;margin-right:20px}.sydney-breadcrumbs,.sydney-breadcrumbs a{color:var(--sydney-grey-color)}.sydney-breadcrumbs a{text-decoration:underline;margin:0 3px;text-decoration-color:#bababa}.sydney-svg-icon{display:inline-block;width:16px;height:16px;vertical-align:middle;line-height:1}.go-top svg{stroke:#fff;width:18px;height:18px}.go-top:hover svg{fill:none;stroke:var(--sydney-global-color-1)}.meta-post .sydney-svg-icon{position:absolute;top:2px;left:0;width:14px}.posted-on .sydney-svg-icon{top:-1px}.single-meta .sydney-svg-icon{fill:var(--sydney-grey-color)}.single-meta .sydney-svg-icon{width:14px;height:20px;margin-right:7px}.wp-custom-header button{fill:#fff}.btn-menu .sydney-svg-icon{width:22px;fill:#fff}.btn-submenu svg{fill:#fff;width:20px;transform:rotate(-180deg);transition:all .4s;position:relative;top:15px}.btn-submenu.active svg{transform:rotate(0)}.visibility-mobile-only{display:none}@media (max-width:991px){.visibility-desktop-only{display:none}.visibility-mobile-only{display:block}}@media only screen and (min-width:1930px){.parallax{background-size:cover}}@media only screen and (max-width:991px){.parallax{background-size:cover;background-attachment:scroll;background-position:top center!important}.header-wrap .col-md-8{padding:0}.last{margin-bottom:0!important}.margin-bottom-device{margin-bottom:50px}.margin-top-device{margin-top:50px}.contact-form-wrap,.content-area .post-wrap{padding-right:0}.contact-form-aside,.widget-area{margin-top:50px}.footer-widgets .widget{margin-bottom:50px}}@media only screen and (max-width:1024px){.site-header.fixed{position:static!important}.site-header{position:static;background-color:rgba(0,0,0,.9)}.header-clone{display:none}.posts-navigation{overflow:hidden;margin-bottom:30px}#mainnav{display:none}.btn-menu{display:block}.fw-menu-container{padding-left:30px;padding-right:30px}}@media only screen and (max-width:780px){h1{font-size:32px}h2{font-size:28px}h3{font-size:22px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}}@media only screen and (min-device-width :768px) and (max-device-width :1024px) and (orientation :landscape){.parallax{background-size:cover;background-attachment:scroll;background-position:top center!important}.slides-container .slide-item{background-position:center center!important;background-attachment:scroll!important}}@media only screen and (max-width:1399px){.site-header #mainnav ul li ul{right:14px}.site-header #mainnav ul li ul li ul{left:-100%}}@media only screen and (max-width:767px){.layout6 article{display:block}.posts-layout .list-image{width:100%!important}.posts-layout .list-image .entry-thumb{margin:0 0 30px!important}.col-grow-mobile{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.posts-layout,.posts-layout .list-content{max-width:100%}.roll-button{padding:10px 30px}.comment-list .children{margin-left:75px}.social-menu-widget a:before{font-size:42px}.btn-menu{float:none;margin:15px auto 0}.header-wrap{text-align:center}#mainnav-mobi{top:auto}.site-header.float-header{padding-top:20px;padding-bottom:20px}.fluid-width-video-wrapper+#wp-custom-header-video-button{display:none}.footer-widgets-grid{grid-template-columns:1fr!important}.site-info .social-profile,.site-info .sydney-credits{text-align:center}.site-info .social-profile{margin-top:15px}input,optgroup,select,textarea{max-width:100%}.content-wrapper .layout4 .content-inner{display:flex;flex-direction:column}.layout4 .posts-layout .content-inner .list-content{width:100%}}@media only screen and (max-width:575px){.post-navigation .nav-next,.post-navigation .nav-previous{width:100%;float:none;text-align:left;text-align:center;padding:15px}.post-navigation .nav-previous{border:0;border-bottom:1px solid rgba(0,16,46,.1)}#commentform .comment-form-email,#commentform .comment-form-url{width:100%;margin-left:0;margin-right:0}.comment-respond{padding:20px}}@media only screen and (max-width:479px){.sidebar-column{padding:0}.roll-button{font-size:12px}}@media screen and (min-width:1025px){#mainnav>div>ul,.header-wrap .container>.row,.header-wrap .fw-menu-container>.row{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bottom-header-row #mainnav>div>ul,.main-header #mainnav>div>ul{align-items:initial}#mainnav>div>ul{-ms-flex-wrap:wrap;flex-wrap:wrap}.menu-centered #mainnav>div>ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.menu-centered .fw-menu-container>.row{-ms-flex-wrap:wrap;flex-wrap:wrap}}.mobile-slide{display:none}.sydney-hero-area{overflow:hidden}:root .site :where(a:where(:not(.wp-element-button))){text-decoration:none!important}.wp-block-post{width:100%!important}.wp-block-button__link{font-weight:600;background-color:var(--sydney-button-background)}.wp-block-button__link:hover{opacity:.85;color:#fff}.wp-block-button.is-style-outline a:not(.has-text-color){color:var(--sydney-button-background)}.wp-block-button.is-style-outline a:not(.has-text-color):hover{background-color:var(--sydney-button-background);border-color:var(--sydney-button-background);color:#fff}.post-template-post_nosidebar .content-area{max-width:805px;margin-left:auto;margin-right:auto}.post-template-post_nosidebar .alignfull,.post-template-post_nosidebar .wp-block-cover-image{max-width:100vw;width:auto;margin-left:-182px;margin-right:-182px}.post-template-post_nosidebar .alignwide{max-width:none;width:calc(100% + 200px);position:relative;left:-100px}.page-template-page_front-page .alignfull{margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important}.page-template-page_front-page.syd-has-blocks{overflow-x:hidden}.is-style-sydney-no-margin{margin:0!important}.zindex10{z-index:10;overflow:visible}@media (min-width:1024px){.no-sidebar .entry-content .alignfull{margin:20px calc(50% - 50vw);max-width:100vw;width:100vw}.no-sidebar .entry-content .alignwide{margin:20px calc(25% - 25vw);width:auto}}.wp-block-group.has-background{padding:20px 30px}.shfb-footer .shfb-row-wrapper.syd-hidden,.shfb-row-wrapper.syd-hidden{display:none}#mainnav-mobi.syd-hidden{display:none}#mainnav-mobi.toggled{display:block}.btn-submenu.toggled~.sub-menu{display:block!important;position:relative!important;opacity:1!important;visibility:visible!important}.sub-menu.toggled{display:block!important}@media (min-width:991px){.content-area.sidebar-left{padding-right:15px;padding-left:60px;float:right}}

ul#primary-menu li a {
    font-family: var(--bv-font-head)!important;
    font-weight: bold!important;
    text-transform: uppercase!important;
}
.bv-hero,
.bvs-section,
.bvh-section,
.bvt-section,
.bvw-section,
.bvtm-section,
.bvc-section,
.bvf-footer {
  max-width: 100%;
  overflow-x: clip;
}
 
/* Specific fix for Trusted By scrolling marquee */
.bvt-section,
.bvt-track-wrapper,
.bvt-track {
  overflow: hidden !important;
  max-width: 100vw !important;
}

.sydney-dropdown .sydney-dropdown-ul .sydney-dropdown-ul{
	width: 380px!important;
}