.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-78 .elementor-element.elementor-element-7f66847{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4b7cb3f *//* =====================================================
   HEADER + TOP STRIP — CSS
   White background · Blue text & accents · #2A94DD / #FFD700
   Paste: Elementor Custom CSS  OR  Customize > Additional CSS
===================================================== */

/* ---- Variables ---- */
:root {
  --h-blue:      #2A94DD;
  --h-blue-dk:   #1878be;
  --h-blue-pale: #e8f4fc;
  --h-blue-mid:  #d0eaf8;
  --h-yellow:    #FFD700;
  --h-dark:      #0d1e35;
  --h-text:      #1a3a58;
  --h-text-mid:  #3a6080;
  --h-white:     #ffffff;
  --h-height:    74px;
  --h-font:      'Barlow', sans-serif;
  --h-font-cond: 'Barlow Condensed', sans-serif;
}

/* Reset margins on our elements */
.hdr-strip, .hdr, .hdr * { box-sizing: border-box; }

/* =====================================================
   TOP STRIP
===================================================== */


header{
    padding-bottom: 0px !important;
}
.hdr-strip {
  background: var(--h-blue);
  font-family: var(--h-font);
}
.hdr-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hdr-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  flex-wrap: wrap;
  overflow: hidden;
}
.hdr-strip-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hdr-strip-left i { color: var(--h-yellow); font-size: 11px; }
.hdr-strip-div {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.35);
  display: inline-block;
  flex-shrink: 0;
}
.hdr-strip-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.hdr-strip-right strong {
  color: var(--h-yellow);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hdr-strip-phone-ic {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--h-white);
  border-bottom: 3px solid var(--h-blue);
  font-family: var(--h-font);
  transition: box-shadow 0.3s;
}
.hdr--scrolled {
  box-shadow: 0 4px 20px rgba(42,148,221,0.18), 0 1px 0 rgba(42,148,221,0.1);
}

/* Blue accent stripe — left edge */
.hdr::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--h-blue), var(--h-yellow));
  z-index: 1;
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 0 32px;
  height: var(--h-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ---- Logo ---- */
.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.hdr-logo img {
  width: auto;
  height: 56px;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* ---- Desktop nav ---- */
.hdr-nav { flex: 1; }
.hdr-menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.hdr-menu li a {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--h-text);
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.hdr-menu li a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 15px; right: 15px;
  height: 2px;
  background: var(--h-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.hdr-menu li a:hover {
  color: var(--h-blue);
  background: var(--h-blue-pale);
}
.hdr-menu li a:hover::after { transform: scaleX(1); }

/* ---- Actions ---- */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* CTA phone button */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--h-blue);
  color: var(--h-white);
  font-family: var(--h-font-cond);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 3px 14px rgba(42,148,221,0.35);
}
.hdr-cta i {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.hdr-cta:hover {
  background: var(--h-blue-dk);
  box-shadow: 0 5px 20px rgba(42,148,221,0.5);
  transform: translateY(-1px);
  color: #fff;
}

/* ---- Burger ---- */
.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--h-blue-pale);
  border: 1.5px solid var(--h-blue-mid);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.hdr-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--h-blue);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s;
}
.hdr-burger:hover {
  background: var(--h-blue-mid);
  border-color: var(--h-blue);
}
.hdr-burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   MOBILE DRAWER
===================================================== */
.hdr-drawer {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--h-white);
  border-top: 1px solid var(--h-blue-mid);
  transition: max-height 0.35s ease;
}
.hdr-drawer--open { max-height: 600px; }

.hdr-drawer-menu {
  list-style: none;
  margin: 0; padding: 8px 0 0;
}
.hdr-drawer-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--h-text);
  text-decoration: none;
  border-bottom: 1px solid var(--h-blue-pale);
  transition: background 0.2s, color 0.2s;
}
.hdr-drawer-menu li a:hover {
  background: var(--h-blue-pale);
  color: var(--h-blue);
}
.hdr-d-ic {
  width: 30px; height: 30px;
  background: var(--h-blue-pale);
  border: 1px solid var(--h-blue-mid);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hdr-d-ic i {
  color: var(--h-yellow);
  font-size: 13px;
}

/* Drawer CTA */
.hdr-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 20px 0;
  background: var(--h-blue);
  color: #fff;
  font-family: var(--h-font-cond);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(42,148,221,0.3);
  transition: background 0.2s;
}
.hdr-drawer-cta:hover { background: var(--h-blue-dk); color: #fff; }
.hdr-drawer-cta i {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Drawer trust badges */
.hdr-drawer-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 20px 20px;
}
.hdr-drawer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--h-text-mid);
  background: var(--h-blue-pale);
  border: 1px solid var(--h-blue-mid);
  border-radius: 20px;
  padding: 5px 12px;
}
.hdr-drawer-trust i {
  color: var(--h-blue);
  font-size: 11px;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* ── Tablet (≤ 960px): hide nav, show burger ── */
@media (max-width: 960px) {
  .hdr-nav       { display: none; }
  .hdr-burger    { display: flex; }
  .hdr-drawer    { display: block; }
}

/* ── Medium mobile (≤ 640px): shrink CTA to icon only ── */
@media (max-width: 640px) {
  .hdr-cta-text { display: none; }
  .hdr-cta {
    width: 42px; height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .hdr-cta i {
    width: auto; height: auto;
    background: none;
    font-size: 16px;
    margin: 0;
  }
  :root { --h-height: 62px; }
  .hdr-logo img { height: 46px; }
}

/* ── Small mobile (≤ 480px): simplify top strip ── */
@media (max-width: 480px) {
  .hdr-strip-left .hdr-strip-div,
  .hdr-strip-left span:last-child { display: none; }
  .hdr-strip-inner { padding: 0 16px; }
  .hdr-inner { padding: 0 16px 0 20px; gap: 10px; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-7f66847 *//* =========================================================
           HEADER & TOP STRIP
        ========================================================= */
        .top-strip { background:#2B96E0 !important; color: var(--white); padding: 8px 0; font-size: 13px; font-weight: 500; }
        .top-strip .container { display: flex; justify-content: space-between; align-items: center; }
        .top-strip-info { display: flex; gap: 20px; }
        .top-strip-info span i { color: var(--yellow); margin-right: 6px; }

        header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding-bottom: 15px;}
        .nav-flex { display: flex; justify-content: space-between; align-items: center;padding-top:15px}
        .logo { font-size: 24px; font-weight: 800; color: var(--blue); text-decoration: none; }
        .main-menu { display: flex; list-style: none; gap: 25px; }
        .main-menu a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 14px; transition: var(--transition); }
        .main-menu a:hover { color: var(--blue); }
        .nav-cta { background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 13px; }/* End custom CSS */