:root {
  --supernova:   #FCCC00;
  --cloud-burst: #203053;
  --cloud-mid:   #2d3f6b;
  --luxor-gold:  #9d8030;
  --cloud-light: #eef1f7;
  --white:       #FFFFFF;
  --text-dark:   #243459;
  --text-mid:    #4a5568;
  --text-light:  #8a94a6;
  --pad:         clamp(20px, 5vw, 80px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CHROME ── */
.top-bar { background: var(--cloud-burst); padding: 9px var(--pad); display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.top-bar a { background: rgba(252,204,0,0.12); border: 1px solid rgba(252,204,0,0.35); color: var(--supernova); padding: 3px 12px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; white-space: nowrap; transition: background 0.2s; }
.top-bar a:hover { background: rgba(252,204,0,0.25); }
.top-bar-label { white-space: nowrap; }
.top-bar .sep { color: rgba(255,255,255,0.15); }
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(32,48,83,0.1); padding: 0 var(--pad); display: flex; align-items: center; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-wordmark { font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; color: var(--cloud-burst); }
.nav-wordmark span { color: var(--luxor-gold); }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links li a { display: block; padding: 0 14px; height: 64px; line-height: 64px; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-links li a:hover, .nav-links li a.active { color: var(--cloud-burst); border-bottom-color: var(--supernova); }
.nav-cta-btn { background: var(--cloud-burst) !important; color: var(--white) !important; padding: 0 20px !important; height: 38px !important; line-height: 38px !important; font-weight: 700 !important; font-size: 0.76rem !important; letter-spacing: 0.06em !important; border-bottom: none !important; margin-left: 16px; transition: background 0.2s !important; }
.nav-cta-btn:hover { background: var(--cloud-mid) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cloud-burst); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid rgba(32,48,83,0.1); padding: 12px 0; z-index: 99; }
  .nav-links.open li a { height: auto; line-height: 1; padding: 14px var(--pad); border-bottom: 1px solid rgba(32,48,83,0.06) !important; }
  .nav-hamburger { display: flex; }
}

/* ── DROPDOWN ── */
.nav-logo { text-decoration: none; }
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex !important; align-items: center; gap: 5px; }
.nav-arrow { font-size: 0.6rem; opacity: 0.55; transition: transform 0.2s; display: inline-block; }
.has-dropdown:hover .nav-arrow, .has-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid rgba(32,48,83,0.12); border-top: 2px solid var(--supernova); min-width: 190px; list-style: none; box-shadow: 0 8px 24px rgba(32,48,83,0.1); z-index: 200; }
.nav-dropdown li a { display: block !important; padding: 12px 18px !important; height: auto !important; line-height: 1.4 !important; font-size: 0.79rem !important; font-weight: 600 !important; color: var(--text-mid) !important; border-bottom: 1px solid rgba(32,48,83,0.06) !important; transition: color 0.2s, background 0.2s !important; white-space: nowrap !important; }
.nav-dropdown li:last-child a { border-bottom: none !important; }
.nav-dropdown li a:hover, .nav-dropdown li a.active { color: var(--cloud-burst) !important; background: rgba(32,48,83,0.03); }
.has-dropdown:hover .nav-dropdown { display: block; }
@media (max-width: 768px) {
  .nav-dropdown { position: static; border: none; box-shadow: none; display: none; min-width: 0; border-top: 1px solid rgba(32,48,83,0.06); background: rgba(32,48,83,0.02); }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { padding-left: calc(var(--pad) + 16px) !important; }
}

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(160deg, #203053 0%, #2d3f6b 100%); padding: clamp(60px,10vw,110px) var(--pad) clamp(50px,8vw,90px); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(252,204,0,0.08) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 20px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--supernova); }
.breadcrumb span { color: var(--supernova); }
.page-hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--supernova); }
.page-hero-lead { font-size: clamp(1rem,1.6vw,1.15rem); color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 620px; }

/* ── SHARED ── */
.section-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--luxor-gold); margin-bottom: 10px; }
.section-title { font-family: 'Raleway', sans-serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; color: var(--cloud-burst); line-height: 1.15; margin-bottom: 18px; }
.section-lead { font-size: clamp(0.9rem,1.4vw,1rem); color: var(--text-mid); line-height: 1.8; max-width: 680px; }
.gold-rule { width: 44px; height: 3px; background: var(--supernova); margin-bottom: 24px; }
.section { padding: clamp(56px,8vw,100px) var(--pad); }
.section-tinted { background: var(--cloud-light); padding: clamp(56px,8vw,100px) var(--pad); }
.section-dark { background: var(--cloud-burst); padding: clamp(56px,8vw,100px) var(--pad); }

/* ── STAT BAR ── */
.stat-bar { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(32,48,83,0.08); margin-top: 48px; }
@media (max-width:540px) { .stat-bar { grid-template-columns: 1fr; } }
.sb-item { background: var(--white); padding: 28px 24px; }
.sb-n { font-family: 'Raleway', sans-serif; font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: var(--supernova); line-height: 1; margin-bottom: 4px; }
.sb-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.sb-body { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ── TEAM PHOTO BANNER ── */
.team-photo-banner {
  width: 100%;
  height: clamp(260px, 30vw, 420px);
  overflow: hidden;
  position: relative;
}
.team-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(32,48,83,0.4));
}

/* ── PEOPLE GRID ── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(32,48,83,0.08);
  margin-top: 40px;
}
@media (max-width:900px) { .people-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:640px) { .people-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:400px) { .people-grid { grid-template-columns: 1fr; } }

.person-card { background: var(--white); display: flex; flex-direction: column; transition: background 0.2s; }
.person-card:hover { background: rgba(32,48,83,0.02); }
.person-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cloud-light);
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}
.person-card:hover .person-photo img { transform: scale(1.03); }
.person-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cloud-burst) 0%, var(--cloud-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-initials {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: rgba(252,204,0,0.35);
  letter-spacing: 0.05em;
}
.person-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag-vet { background: var(--supernova); color: var(--cloud-burst); }
.tag-mgmt { background: rgba(32,48,83,0.85); color: rgba(255,255,255,0.75); }
.tag-board { background: rgba(32,48,83,0.7); color: rgba(255,255,255,0.7); }
.person-info { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.person-name { font-size: 0.92rem; font-weight: 700; color: var(--cloud-burst); margin-bottom: 3px; line-height: 1.3; }
.person-title { font-size: 0.74rem; color: var(--text-mid); line-height: 1.4; margin-bottom: 8px; }
.person-bio { font-size: 0.76rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.person-quote {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(32,48,83,0.07);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.55;
}
.person-li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--luxor-gold);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.person-li:hover { color: var(--cloud-burst); }

/* ── ZERO TURNOVER STRIP ── */
.turnover-strip {
  background: var(--cloud-burst);
  padding: clamp(36px,5vw,56px) var(--pad);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px,4vw,64px);
  align-items: center;
}
@media (max-width:640px) { .turnover-strip { grid-template-columns: 1fr; } }
.ts-n { font-family: 'Raleway', sans-serif; font-size: clamp(3.5rem,8vw,5.5rem); font-weight: 700; color: var(--supernova); line-height: 1; text-align: center; }
.ts-sublabel { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; text-align: center; }
.ts-title { font-family: 'Raleway', sans-serif; font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.ts-text { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 560px; }

/* ── BOARD GOVERNANCE INTRO ── */
.board-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width:768px) { .board-intro { grid-template-columns: 1fr; } }
.bi-stat {
  background: var(--supernova);
  padding: 32px 36px;
}
.bi-n { font-family: 'Raleway', sans-serif; font-size: 4rem; font-weight: 700; color: var(--cloud-burst); line-height: 1; margin-bottom: 4px; }
.bi-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(32,48,83,0.6); margin-bottom: 14px; }
.bi-body { font-size: 0.86rem; color: rgba(32,48,83,0.72); line-height: 1.7; }
.bi-quote { border-left: 3px solid var(--supernova); padding: 24px 28px; background: rgba(32,48,83,0.04); }
.biq-text { font-family: 'Raleway', sans-serif; font-style: italic; font-size: clamp(1rem,1.6vw,1.15rem); color: var(--cloud-burst); line-height: 1.65; margin-bottom: 12px; }
.biq-attr { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

/* ── PARTNER TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(32,48,83,0.08);
  margin-top: 48px;
}
@media (max-width:640px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card { background: var(--white); padding: 28px 28px; }
.t-initials { width: 40px; height: 40px; background: var(--cloud-burst); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: var(--supernova); letter-spacing: 0.05em; margin-bottom: 14px; flex-shrink: 0; }
.t-text { font-family: 'Raleway', sans-serif; font-style: italic; font-size: 0.95rem; color: var(--cloud-burst); line-height: 1.65; margin-bottom: 14px; }
.t-name { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.t-role { font-size: 0.7rem; color: var(--text-light); }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(32,48,83,0.08); margin-top: 40px; }
@media (max-width:540px) { .locations-grid { grid-template-columns: 1fr; } }
.lc { background: var(--white); padding: 28px 32px; }
.lc-flag { font-size: 2rem; margin-bottom: 12px; }
.lc-country { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.lc-name { font-size: 1rem; font-weight: 700; color: var(--cloud-burst); margin-bottom: 8px; }
.lc-address { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; }
.lc-detail { font-size: 0.78rem; color: var(--text-mid); padding-top: 10px; border-top: 1px solid rgba(32,48,83,0.07); line-height: 1.6; }
.lc-detail strong { color: var(--cloud-burst); font-weight: 700; }

/* ── CTA ── */
.page-cta { background: var(--supernova); padding: clamp(48px,7vw,80px) var(--pad); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
@media (max-width:640px) { .page-cta { grid-template-columns: 1fr; } }
.page-cta .section-title { color: var(--cloud-burst); }
.page-cta .section-lead { color: rgba(32,48,83,0.68); }
.page-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; min-width: 200px; }
.btn-dark { display: inline-block; background: var(--cloud-burst); color: var(--white); padding: 13px 26px; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.btn-dark:hover { background: var(--cloud-mid); }
.btn-text-dark { font-size: 0.78rem; font-weight: 700; color: rgba(32,48,83,0.65); border-bottom: 1px solid rgba(32,48,83,0.3); padding-bottom: 2px; display: inline-block; transition: color 0.2s; }
.btn-text-dark:hover { color: var(--cloud-burst); }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: clamp(40px,6vw,64px) var(--pad) 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px,4vw,48px); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
@media (max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-wordmark { font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; color: var(--white); }
.footer-wordmark span { color: var(--supernova); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.65; margin-top: 10px; max-width: 220px; }
.fc-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--supernova); }
.footer-links a.hl { color: rgba(255,255,255,0.82); font-weight: 600; }
.footer-base { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.footer-langs { display: flex; gap: 14px; }
.footer-langs a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-langs a:hover, .footer-langs a.act { color: var(--supernova); }

/* ── LANGUAGE SWITCHER ── */





@media (max-width: 768px) {  }

/* ── BOARD MEMBER MODAL ── */
.person-card.clickable { cursor: pointer; }
.person-card.clickable:hover { background: rgba(32,48,83,0.03); }
.person-card.clickable .person-info::after { content: 'View profile →'; display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: var(--luxor-gold); margin-top: 10px; text-transform: uppercase; opacity: 0.7; transition: opacity 0.2s; }
.person-card.clickable:hover .person-info::after { opacity: 1; }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(20,32,64,0.65); z-index: 500; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(2px); }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); max-width: 520px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; display: flex; flex-direction: column; }
.modal-header { background: var(--cloud-burst); padding: 28px 32px; display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.modal-photo { width: 72px; height: 72px; object-fit: cover; object-position: center top; flex-shrink: 0; }
.modal-initials { width: 72px; height: 72px; background: rgba(252,204,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: var(--supernova); flex-shrink: 0; }
.modal-header-text { flex: 1; }
.modal-name { font-family: 'Raleway', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.modal-role-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(252,204,0,0.7); }
.modal-body { padding: 28px 32px; }
.modal-title-text { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 16px; line-height: 1.4; }
.modal-bio-text { font-size: 0.9rem; color: var(--text-dark); line-height: 1.8; }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 1.5rem; cursor: pointer; color: rgba(255,255,255,0.5); background: none; border: none; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--white); }

/* ===== Smartemis design-system alignment (auto-applied) ===== */
html{font-size:115%;}
.btn-primary,.btn-dark,.btn-outline,.nav-cta-btn,.form-submit{border-radius:8px!important;text-transform:none!important;letter-spacing:.01em!important;font-weight:700!important}
.btn-primary,.btn-dark,.nav-cta-btn,.form-submit{transition:transform .2s cubic-bezier(.4,0,.2,1),box-shadow .2s,background .2s!important}
.btn-primary:hover,.nav-cta-btn:hover,.form-submit:hover{transform:translateY(-2px) scale(1.03)!important;box-shadow:0 10px 24px rgba(252,204,0,.28)!important}
.btn-dark:hover{transform:translateY(-2px) scale(1.03)!important}
.btn-primary:active,.btn-dark:active,.nav-cta-btn:active{transform:scale(.97)!important}
.quote-card,.vet-card,.founder-quote-box,.gov-quote-block,.bi-quote,.value-card,.name-word,.name-together,.t-card,.form-card,.sidebar-card,.form-input,.form-textarea,.contact-form input,.contact-form textarea,.contact-form select{border-radius:12px!important}
.quote-card,.vet-card,.t-card{box-shadow:0 8px 30px rgba(32,48,83,.07)!important}
.vet-card{transition:transform .2s,box-shadow .2s!important}
.vet-card:hover{transform:translateY(-4px)!important;box-shadow:0 16px 40px rgba(32,48,83,.12)!important}
.chart-image-wrap{border-radius:14px!important}
.nav-logo img{height:34px!important;width:auto!important}
.footer-logo-img{height:34px!important;width:auto!important;display:block}
.hero::before,.page-hero::before{background-image:url('images/circle-symbol.png')!important;background-repeat:no-repeat!important;background-position:right -150px center!important;background-size:560px auto!important;opacity:.5!important}

/* === elementor-overrides (generated) === */
.elementor-section img { display: block; max-width: 100%; }
.elementor-section .nav-logo img { height: 40px; width: auto; }
.elementor-section .team-photo-banner { width: 100%;
  height: clamp(260px, 30vw, 420px);
  overflow: hidden;
  position: relative; }
.elementor-section .team-photo-banner img { width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; }
.elementor-section .team-photo-banner-overlay { position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(32,48,83,0.4)); }
.elementor-section .person-photo { width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cloud-light); }
.elementor-section .person-photo img { width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s; }
.elementor-section .person-card:hover .person-photo img { transform: scale(1.03); }
.elementor-section .modal-photo { width: 72px; height: 72px; object-fit: cover; object-position: center top; flex-shrink: 0; }
.elementor-section .nav-logo img { height:34px!important;width:auto!important }
.elementor-section .footer-logo-img { height:34px!important;width:auto!important;display:block }
/* === /elementor-overrides === */
