/* ============================================================
   BRIGHT 'LITES ACADEMY — GLOBAL DESIGN SYSTEM
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --blue:        #1A5091;
  --blue-dark:   #123a6b;
  --blue-light:  #1e5fa8;
  --gold:        #F1CE34;
  --gold-muted:  #d4ae16;
  --gold-dark:   #c9a800;
  --ivory:       #FAF8F3;
  --ivory-deep:  #F3EFE6;
  --white:       #FFFFFF;
  --charcoal:    #1C1C1C;
  --slate:       #4A4A5A;
  --slate-light: #6B6B7B;
  --border:      #E0D9CC;
  --border-light:#EDE8DC;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --hero-size:    clamp(40px, 6vw, 72px);
  --h1-size:      clamp(32px, 4.5vw, 56px);
  --h2-size:      clamp(26px, 3.5vw, 44px);
  --h3-size:      clamp(20px, 2.5vw, 28px);
  --body-size:    clamp(16px, 1.4vw, 18px);

  --section-pad:  clamp(64px, 8vw, 120px);
  --content-max:  1200px;
  --radius:       4px;
  --radius-lg:    8px;

  --shadow-sm:    0 2px 8px rgba(26,80,145,0.08);
  --shadow-md:    0 8px 32px rgba(26,80,145,0.12);
  --shadow-lg:    0 20px 60px rgba(26,80,145,0.16);

  --transition:   0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--body-size); color: var(--charcoal); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: var(--h1-size); font-weight: 700; }
h2 { font-size: var(--h2-size); font-weight: 700; }
h3 { font-size: var(--h3-size); font-weight: 600; }
p  { line-height: 1.75; color: var(--slate); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Layout ── */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.section { padding: var(--section-pad) 0; }
.section--ivory { background: var(--ivory); }
.section--blue  { background: var(--blue); }
.section--dark  { background: var(--charcoal); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn--primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--charcoal); border: 2px solid var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(241,206,52,0.3); }
.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: 12px; }
.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav__link:hover { color: var(--blue); }
.nav__link--active { color: var(--blue); }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

/* Dropdown */
.nav__dropdown { 
  position: relative;
  padding-bottom: 12px; /* creates hover bridge so dropdown doesn't disappear */
  margin-bottom: -12px;
}
.nav__dropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:12px;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px 0;
}
.nav__dropdown-toggle:hover { color: var(--blue); }
.nav__dropdown-toggle svg { transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle { color: var(--blue); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown.open .nav__dropdown-toggle { color: var(--blue); }
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav__dropdown-item {
  display: block;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  transition: all var(--transition);
}
.nav__dropdown-item:hover { color: var(--blue); background: var(--ivory); padding-left: 26px; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 4vw, 60px) 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--blue); }
.nav__mobile .btn { margin-top: 16px; display: inline-flex; width: 100%; justify-content: center; }

/* ── Footer ── */
.footer { background: var(--charcoal); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__logo img { height: 52px; width: auto; margin-bottom: 16px; background: #fff; padding: 6px; border-radius: 4px; }
.footer__tagline { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__info { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; line-height: 1.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── Section Headers ── */
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header--center { text-align: center; }
.section-header__eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; max-width: 620px; }
.section-header--center p { margin: 0 auto; }

/* ── Divider ── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 24px; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card__body { padding: 32px; }
.card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,80,145,0.08);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 20px; font-size: 15px; }
.card__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--ivory-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.trust-bar__item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 28px;
  white-space: nowrap;
}
.trust-bar__sep { width: 1px; height: 18px; background: var(--border); }

/* ── Page Hero (interior) ── */
.page-hero {
  background: var(--blue);
  padding: clamp(110px, 14vw, 160px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(241,206,52,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__eyebrow { color: var(--gold); margin-bottom: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero__sub { font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.75); max-width: 600px; margin-bottom: 28px; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__sub { margin-left: auto; margin-right: auto; }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  gap: 16px;
}
.accordion-trigger:hover { color: var(--blue); }
.accordion-trigger svg { flex-shrink: 0; transition: transform var(--transition); }
.accordion-trigger.open { color: var(--blue); }
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 0 24px; color: var(--slate); font-size: 15px; line-height: 1.75; }
.accordion-body.open { display: block; }

/* ── PDF Modal ── */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  padding: 20px;
}
.pdf-modal.open { display: flex; }
.pdf-modal__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.pdf-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pdf-modal__title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; }
.pdf-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--ivory);
  line-height: 1;
}
.pdf-modal__close:hover { background: var(--border); }
.pdf-modal__embed { flex: 1; min-height: 500px; position: relative; }
.pdf-modal__embed iframe { width: 100%; height: 100%; min-height: 500px; border: none; display: block; }
.pdf-modal__mobile-fallback { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 40px 24px; text-align: center; }
.pdf-modal__mobile-fallback p { font-size: 15px; color: var(--slate); max-width: 300px; margin: 0; }
@media (max-width: 768px) {
  .pdf-modal { padding: 10px; align-items: center; }
  .pdf-modal__inner { width: 96vw; height: 88vh; max-height: 88vh; border-radius: var(--radius-lg); }
  .pdf-modal__embed { flex: 1; min-height: 0; overflow: hidden; }
  .pdf-modal__embed iframe { display: block; width: 100%; height: 100%; min-height: 0; }
  .pdf-modal__mobile-fallback { display: none !important; }
}

/* ── Forms ── */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 7px; }
.form-label .req { color: #c0392b; margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,80,145,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--slate-light); margin-top: 5px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--slate); cursor: pointer; margin-bottom: 12px; line-height: 1.5; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--blue); flex-shrink: 0; }
.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item, .checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--slate); cursor: pointer; }
.radio-item input, .checkbox-item input { accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }

/* ── Progress Stepper ── */
.progress-stepper { display: flex; align-items: center; margin-bottom: 48px; }
.step { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate-light); white-space: nowrap; }
.step.active { color: var(--blue); }
.step.done { color: var(--gold-dark); }
.step__num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; }
.step.active .step__num { background: var(--blue); color: var(--white); border-color: var(--blue); }
.step.done .step__num { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.step__line { flex: 1; height: 2px; background: var(--border); margin: 0 12px; }
.step__line.done { background: var(--gold); }

/* ── Table ── */
.bla-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.bla-table th { background: var(--blue); color: var(--white); padding: 14px 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: left; }
.bla-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-light); color: var(--slate); }
.bla-table tr:last-child td { border-bottom: none; }
.bla-table tbody tr:hover td { background: var(--ivory); }

/* ── Alert ── */
.alert-banner { padding: 14px 20px; border-radius: var(--radius); font-size: 14px; line-height: 1.55; margin-bottom: 20px; }
.alert-banner--info { background: rgba(26,80,145,0.07); border-left: 3px solid var(--blue); color: var(--blue-dark); }
.alert-banner--warn { background: rgba(241,206,52,0.15); border-left: 3px solid var(--gold-dark); color: #7a6200; }
.alert-banner--success { background: rgba(39,174,96,0.1); border-left: 3px solid #27ae60; color: #1a7a40; }

/* ── Utilities ── */
.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold-dark); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .trust-bar__sep { display: none; }
  .trust-bar__item { padding: 6px 12px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ── Image display fix ── */
.about__image-frame img,
.hero__image-frame img,
.house-img-wrap img,
.testimonial-block img,
.grad-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.about__image-frame { min-height: 300px; }
.house-img-wrap { min-height: 200px; }

/* ── Additional Mobile Responsive Fixes ── */
@media (max-width: 768px) {
  /* PDF modal full screen on mobile */
  .pdf-modal { padding: 0; align-items: flex-end; }
  .pdf-modal__inner { max-height: 85vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  
  /* Form row single column on small screens */
  .form-row { grid-template-columns: 1fr !important; }
  
  /* Trust bar wraps cleanly */
  .trust-bar__inner { gap: 4px; }
  
  /* DOB 3-col row on mobile */
  .form-row[style*="1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  /* Prevent horizontal scroll */
  .container { padding: 0 16px; }
  
  /* Nav logo smaller on very small screens */
  .nav__logo img { height: 44px; }
  
  /* Section padding reduced */
  .section { padding: 48px 0; }
  
  /* Buttons full width in groups */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

/* Final launch QA fixes */
.pdf-modal__mobile-fallback{display:none!important;}
@media (min-width:961px){
  .hero{min-height:680px!important;padding:140px 0 90px!important;}
  .hero__inner{max-width:720px!important;margin-left:4vw!important;padding:42px 48px!important;border-left:4px solid var(--gold)!important;background:rgba(0,0,0,.08)!important;border-radius:var(--radius-lg)!important;box-shadow:0 22px 70px rgba(0,0,0,.08)!important;}
  .portal-callout__inner{grid-template-columns:minmax(0,720px)!important;justify-content:center!important;text-align:left!important;}
  .portal-callout__visual{display:none!important;}
}
.about__image-frame{aspect-ratio:auto!important;background:var(--ivory);}
.about__image-frame img{height:auto!important;object-fit:contain!important;object-position:center!important;}
.med-details-group{display:none;}


/* Logo display fix: prevent black logo background on desktop/footer */
.nav__logo,
.footer__logo {
  background: transparent !important;
}

.nav__logo img {
  background: #fff !important;
  object-fit: contain;
}

.footer__logo img {
  background: #fff !important;
  object-fit: contain;
}
