.fp-menu {
  --fp-navy: #1d2551;
  --fp-yellow: #ffc700;
  --fp-cream: #f8f5ee;
  --fp-line: rgba(29, 37, 81, .12);
  --fp-shadow: 0 22px 60px rgba(29, 37, 81, .16);
  position: relative;
  z-index: 50;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.fp-menu * {
  box-sizing: border-box;
}

.fp-menu-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.fp-logo-link {
  display: none;
  color: var(--fp-navy);
  font-size: 0;
  text-decoration: none;
}

.fp-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fp-nav-list a {
  color: var(--fp-navy);
  text-decoration: none;
}

.fp-nav-list > li > a:not(.fp-cta):not(.fp-linkedin) {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: color .18s ease;
}

.fp-nav-list > li > a:not(.fp-cta):not(.fp-linkedin)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--fp-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.fp-nav-list > li > a:hover,
.fp-nav-list > li > a:focus,
.fp-nav-list > li > a.is-active,
.fp-nav-list > li.current-menu-item > a,
.fp-nav-list > li.current_page_item > a {
  color: var(--fp-yellow) !important;
}

.fp-nav-list > li > a:hover::after,
.fp-nav-list > li > a:focus::after,
.fp-nav-list > li > a.is-active::after,
.fp-nav-list > li.current-menu-item > a::after,
.fp-nav-list > li.current_page_item > a::after {
  transform: scaleX(1);
  background: var(--fp-yellow) !important;
}

.fp-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.fp-has-mega:hover > a .fp-chevron,
.fp-has-mega:focus-within > a .fp-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.fp-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 3px;
  background: #0a66c2;
  color: #fff !important;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.fp-linkedin:hover,
.fp-linkedin:focus {
  color: #fff !important;
}

.fp-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--fp-navy) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.fp-menu-cta::after {
  content: "";
  position: absolute;
}

.fp-menu-cta span {
  color: var(--fp-yellow);
  font-size: 1.05em;
  transition: transform .18s ease;
}

.fp-menu-cta:hover,
.fp-menu-cta:focus {
  color: var(--fp-yellow) !important;
}

.fp-menu-cta:hover span,
.fp-menu-cta:focus span {
  transform: translateX(3px);
}

.fp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--fp-yellow);
  color: var(--fp-navy) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(255, 199, 0, .24);
}

.fp-cta:hover,
.fp-cta:focus {
  background: var(--fp-navy);
  color: #fff !important;
}

.fp-has-mega {
  position: static;
}

.fp-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(1600px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid var(--fp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--fp-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 22px;
}

.fp-has-mega:hover .fp-mega,
.fp-has-mega:focus-within .fp-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.fp-mega::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.fp-mega-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--fp-line);
  border-radius: 7px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fp-mega-intro:hover,
.fp-mega-intro:focus-within {
  border-color: rgba(255, 199, 0, .8);
  box-shadow: 0 14px 34px rgba(29, 37, 81, .13);
  transform: translateY(-2px);
}

.fp-mega-intro img,
.fp-hub-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.fp-mega-intro img {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
}

.fp-mega-intro > div {
  padding: 0 2px 2px;
}

.fp-kicker {
  margin: 0 0 5px;
  color: var(--fp-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.fp-mega-title {
  margin: 0;
  color: var(--fp-navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.fp-mega-text {
  margin: 8px 0 13px;
  color: rgba(29, 37, 81, .78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.fp-mega-all {
  display: inline-flex;
  color: var(--fp-navy) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline !important;
  text-decoration-color: var(--fp-yellow) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 5px;
}

.fp-mega-all:hover,
.fp-mega-all:focus {
  color: var(--fp-yellow) !important;
}

.fp-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fp-hub-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--fp-line);
  border-radius: 7px;
  background: #fff;
  color: var(--fp-navy) !important;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fp-hub-card:hover,
.fp-hub-card:focus {
  border-color: rgba(255, 199, 0, .8);
  box-shadow: 0 14px 34px rgba(29, 37, 81, .13);
  transform: translateY(-2px);
}

.fp-hub-card img {
  aspect-ratio: 3 / 2;
  border-radius: 5px;
}

.fp-hub-card span {
  align-self: flex-start;
  color: var(--fp-navy);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
  text-decoration: underline;
  text-decoration-color: var(--fp-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.fp-hub-card:hover span,
.fp-hub-card:focus span {
  color: var(--fp-yellow) !important;
}

.fp-menu-toggle,
.fp-mobile-panel {
  display: none;
}

body.fp-menu-open {
  overflow: hidden;
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .fp-nav-list {
    gap: 18px;
  }

  .fp-nav-list > li > a:not(.fp-cta):not(.fp-linkedin) {
    font-size: 15px;
  }

  .fp-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1024px) {
  .fp-menu {
    position: static;
    z-index: 1000;
  }

  .fp-menu-inner {
    min-height: 44px;
    justify-content: flex-end;
  }

  .fp-nav-list {
    display: none;
  }

  .fp-logo-link {
    display: none;
  }

  .fp-menu-toggle {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    width: 35px;
    height: 35px;
    margin-left: auto;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: var(--fp-navy);
    cursor: pointer;
    z-index: 2147483647;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
  }

  .fp-menu-toggle img {
    width: 30px !important;
    height: 30px !important;
    max-width: none !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
  }

  .fp-menu-toggle .fp-icon-hamburger {
    display: block !important;
  }

  .fp-menu-toggle .fp-icon-close {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    display: none !important;
  }

  .fp-menu.is-open .fp-menu-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    display: inline-flex !important;
  }

  .fp-menu.is-open .fp-icon-hamburger {
    display: none !important;
  }

  .fp-menu.is-open .fp-icon-close {
    display: block !important;
  }

  .fp-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    display: block;
    width: 100vw;
    height: 100vh;
    max-height: none;
    padding: 78px 0 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: var(--fp-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transform-origin: top;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    overflow: hidden;
    z-index: 99999;
  }

  .fp-menu.is-open .fp-mobile-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .fp-mobile-scroll {
    height: calc(100vh - 78px);
    max-height: none;
    padding: 18px 22px 34px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fp-mobile-scroll > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--fp-line);
    background: transparent;
    color: var(--fp-navy);
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
  }

  .fp-mobile-scroll > a:hover,
  .fp-mobile-scroll > a:focus,
  .fp-mobile-scroll > a.is-active,
  .fp-mobile-scroll > a.active {
    color: var(--fp-yellow) !important;
  }

  .fp-mobile-scroll > a span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--fp-yellow);
    color: var(--fp-navy);
    font-size: 12px;
    font-weight: 900;
  }

  .fp-mobile-linkedin {
    color: #0a66c2 !important;
  }
}

@media (max-width: 520px) {
  .fp-mobile-scroll {
    padding: 14px;
  }

  .fp-mobile-scroll > a {
    font-size: 16px;
  }
}

/* Theme shell: the original menu lived inside an Elementor header. These
   small rules provide the equivalent shell without bringing Elementor back. */
.fogel-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 37, 81, .12);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(29, 37, 81, .03);
  backdrop-filter: blur(12px);
}

.fogel-header .fp-menu-inner {
  width: min(1600px, calc(100% - clamp(2rem, 7vw, 7rem)));
  min-height: 76px;
}

.fogel-header .fp-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(10.5rem, 13vw, 13.5rem);
  line-height: 0;
}

.fogel-header .fp-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .fogel-header .fp-menu-inner {
    min-height: 62px;
  }

  .fogel-header .fp-logo-link {
    display: inline-flex;
    width: 10rem;
  }
}
