.elementor-66 .elementor-element.elementor-element-b157778{--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-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-fad953d */.sdg-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 5, 10, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Manrope', sans-serif;
  }

  .sdg-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO */

  .sdg-header__logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
  }

  .sdg-header__logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0 22px rgba(108, 99, 255, 0.22);
  }

  .sdg-header__brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .sdg-header__brand strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .sdg-gradient-text {
    background: linear-gradient(
      135deg,
      #25c7ff,
      #7b61ff,
      #ff2d8f,
      #ffb000
    );
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @keyframes gradientMove {

    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }

  }

  /* NAVIGATION */

  .sdg-header__nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
  }

  .sdg-header__nav a {
    position: relative;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    transition: all .25s ease;
  }

  .sdg-header__nav a:hover,
  .sdg-header__nav a.current {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }

  .sdg-header__cta {
    background: linear-gradient(
      135deg,
      #25c7ff,
      #7b61ff,
      #ff2d8f,
      #ffb000
    ) !important;

    color: #fff !important;

    box-shadow: 0 8px 26px rgba(255,45,143,0.22);
  }

  /* TOGGLE */

  .sdg-header__toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
  }

  .sdg-header__toggle:hover {
    background: rgba(255,255,255,0.1);
  }

  .sdg-menu-icon {
    font-size: 1.5rem;
    line-height: 1;
  }

  /* CLOSE BUTTON */

  .sdg-header__close {
    display: none;
  }

  /* OVERLAY */

  .sdg-header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 998;
  }

  .sdg-header__overlay.is-open {
    display: block;
  }

  /* MOBILE */

  @media (max-width: 768px) {

    .sdg-header__inner {
      padding: 0.75rem 1rem;
    }

    .sdg-header__logo img {
      width: 50px;
      height: 50px;
    }

    .sdg-header__brand strong {
      font-size: 0.95rem;
    }

    .sdg-header__toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sdg-header__nav {
      position: fixed;
      top: 0;
      right: -310px;
      width: 300px;
      height: 100vh;
      padding: 6rem 1.25rem 2rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      border-radius: 0;
      border: none;

      background:
        radial-gradient(circle at top right, rgba(255,45,143,0.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(37,199,255,0.16), transparent 35%),
        #08080d;

      transition: right .3s ease;
      z-index: 999;
    }

    .sdg-header__nav.is-open {
      right: 0;
    }

    .sdg-header__nav a {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
      border-radius: 14px;
      background: rgba(255,255,255,0.04);
    }

    .sdg-header__close {
      position: fixed;
      top: 18px;
      right: 18px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      background: rgba(255,255,255,0.06);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      z-index: 1001;

      display: none;
      align-items: center;
      justify-content: center;
    }

    .sdg-header__close.is-open {
      display: flex;
    }

  }/* End custom CSS */