.elementor-103 .elementor-element.elementor-element-7650f41{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-7650f41 *//* ================= HEADER ================= */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:rgba(10,16,28,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 0;
}

/* Top row */
.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* Logo */
.header-logo img{
  height:42px;
  width:auto;
}

/* Navigation */
.header-nav{
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:center;
}

.header-nav a{
  color:var(--text);
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  position:relative;
  padding:6px 0;
  transition:.2s;
}

.header-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--pink));
  transition:.25s;
}

.header-nav a:hover{
  color:var(--gold-2);
}

.header-nav a:hover::after{
  width:100%;
}

/* CTA button */
.header-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--pink));
  color:#06111e;
  font-weight:800;
  text-decoration:none !important;
  transition:.2s;
}

.header-button:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
}

/* ================= DESKTOP ================= */

@media (min-width:769px){

  .header-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .header-top{
    flex:0 0 auto;
  }

  .header-nav{
    flex:1;
    justify-content:center;
  }
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .header-logo img{
    height:34px;
  }

  .header-nav{
    justify-content:space-around;
    padding-top:6px;
    border-top:1px solid rgba(255,255,255,.06);
  }

  .header-nav a{
    font-size:.9rem;
  }

  .header-button{
    padding:10px 14px;
    font-size:.85rem;
  }
}/* End custom CSS */