.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-22c34e6 */:root {
  --stc-primary: #021b5b;
  --stc-accent: #1e73ff;
  --stc-bg-glass: rgba(255, 255, 255, 0.75);
  --stc-text: #07122f;
  --stc-muted: #667085;
  --stc-line: rgba(2, 27, 91, 0.1);
  --stc-shadow-nav: 0 18px 50px rgba(2, 27, 91, 0.12);
  --stc-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.stc-nav,
.stc-nav * {
  box-sizing: border-box;
}

.stc-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--stc-text);
  font-family: var(--stc-font);
}

.stc-nav__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1200px, 100%);
  height: 80px;
  margin: 0 auto;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), var(--stc-bg-glass)),
    radial-gradient(circle at 80% 0%, rgba(30, 115, 255, 0.12), transparent 34%);
  box-shadow: var(--stc-shadow-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.stc-nav__container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 46%);
}

.stc-nav__logo,
.stc-nav__menu,
.stc-nav__cta,
.stc-nav__toggle {
  position: relative;
  z-index: 1;
}

.stc-nav__logo {
  justify-self: start;
  color: var(--stc-primary);
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 220ms ease;
}

.stc-nav__logo:hover {
  color: var(--stc-accent);
}

.stc-nav__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  justify-self: center;
  min-height: 48px;
  padding: 5px;
  border: 1px solid rgba(2, 27, 91, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.stc-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--stc-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.stc-nav__link:hover,
.stc-nav__link.is-active {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(2, 27, 91, 0.08);
  color: var(--stc-primary);
}

.stc-nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-accent));
  box-shadow: 0 16px 36px rgba(30, 115, 255, 0.26);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.stc-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(30, 115, 255, 0.34);
}

.stc-nav__toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(2, 27, 91, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(2, 27, 91, 0.08);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.stc-nav__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 115, 255, 0.28);
}

.stc-nav__toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--stc-primary);
  transition:
    transform 220ms ease,
    top 220ms ease;
}

.stc-nav__toggle span:first-child {
  top: 18px;
}

.stc-nav__toggle span:last-child {
  top: 26px;
}

.stc-nav.is-open .stc-nav__toggle span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.stc-nav.is-open .stc-nav__toggle span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.stc-nav__mobile {
  display: none;
  width: min(1200px, 100%);
  max-height: 0;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 80% 0%, rgba(30, 115, 255, 0.12), transparent 34%);
  box-shadow: var(--stc-shadow-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition:
    max-height 280ms ease,
    padding 280ms ease;
}

.stc-nav.is-open .stc-nav__mobile {
  max-height: 420px;
  padding: 10px;
}

.stc-nav__mobile-link,
.stc-nav__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.stc-nav__mobile-link {
  color: var(--stc-primary);
}

.stc-nav__mobile-link:hover,
.stc-nav__mobile-link.is-active {
  background: rgba(30, 115, 255, 0.08);
  color: var(--stc-accent);
}

.stc-nav__mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-accent));
  box-shadow: 0 16px 36px rgba(30, 115, 255, 0.22);
  color: #ffffff;
}

.stc-nav__mobile-cta:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .stc-nav {
    padding: 10px 16px;
  }

  .stc-nav__container {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 12px 0 20px;
  }

  .stc-nav__menu,
  .stc-nav__cta {
    display: none;
  }

  .stc-nav__toggle,
  .stc-nav__mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .stc-nav {
    padding-inline: 12px;
  }

  .stc-nav__container {
    height: 66px;
  }

  .stc-nav__logo {
    font-size: 17px;
  }
}/* End custom CSS */