.elementor-37 .elementor-element.elementor-element-6ec2ead{--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;}/* Start custom CSS for html, class: .elementor-element-a6f0c5d */.fm-header-root,
.fm-header-root *{
  box-sizing:border-box;
}

.fm-header-root{
  --fm-void:#0a0a0a;
  --fm-panel:#131311;
  --fm-hair:#2a2a25;
  --fm-green:#28b463;
  --fm-green-dim:#1c8a4b;
  --fm-ink:#f3f1ea;
  --fm-ink-muted:#a6a297;

  width:100%;
  position:relative;
  z-index:9999;
  font-family:'Inter',sans-serif;
}

.fm-header{
  width:100%;
  min-height:86px;
  padding:18px 5vw;
  display:flex;
  align-items:center;
  background:rgba(10,10,10,.88);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--fm-hair);
}

/* Exact desktop structure:
   LOGO        MENU        BUTTON
   left        center      right
*/
.fm-header-inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;

  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  column-gap:30px;
}

/* LEFT */
.fm-brand{
  justify-self:start;
  display:flex;
  align-items:center;
}

.fm-brand a{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.fm-brand img{
  display:block;
  width:auto;
  max-width:190px;
  height:auto;
}

/* CENTER */
.fm-desktop-nav{
  justify-self:center;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;

  color:var(--fm-ink-muted);
  font-size:14px;
  line-height:1;
}

.fm-desktop-nav a{
  color:var(--fm-ink-muted);
  text-decoration:none;
  white-space:nowrap;
  transition:color .2s ease;
}

.fm-desktop-nav a:hover{
  color:var(--fm-green);
}

/* RIGHT */
.fm-nav-cta{
  justify-self:end;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;
  border:1px solid var(--fm-hair);
  border-radius:999px;

  color:var(--fm-ink-muted);
  font-size:13px;
  line-height:1;
  white-space:nowrap;
  text-decoration:none;

  transition:
    color .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    transform .25s ease;
}

.fm-nav-cta:hover{
  color:var(--fm-ink);
  border-color:var(--fm-green);
  background:rgba(40,180,99,.08);
  transform:translateY(-1px);
}

/* MOBILE HAMBURGER */
.fm-menu-btn{
  display:none;
  align-items:center;
  justify-content:center;

  width:42px;
  height:42px;
  padding:0;
  margin:0;

  border:1px solid var(--fm-hair);
  border-radius:8px;
  background:transparent;
  color:#fff !important;

  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}

.fm-menu-btn svg,
.fm-mobile-close svg{
  display:block;
  width:22px;
  height:22px;
  stroke:#fff !important;
  fill:none !important;
  transition:stroke .25s ease;
}

.fm-menu-btn:hover{
  background:rgba(40,180,99,.12);
  border-color:var(--fm-green);
}

.fm-menu-btn:hover svg{
  stroke:var(--fm-green) !important;
}

/* MOBILE SCRIM */
.fm-nav-scrim{
  display:none;
  position:fixed;
  inset:0;
  z-index:99998;
  background:rgba(0,0,0,.58);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.fm-nav-scrim.fm-open{
  display:block;
  opacity:1;
  pointer-events:auto;
}

/* MOBILE PANEL */
.fm-mobile-nav{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  z-index:99999;

  width:min(82vw,320px);
  padding:22px;

  display:flex;
  flex-direction:column;
  gap:6px;

  background:var(--fm-panel);
  border-left:1px solid var(--fm-hair);

  transform:translateX(100%);
  visibility:hidden;
  pointer-events:none;

  overflow-y:auto;
  -webkit-overflow-scrolling:touch;

  transition:
    transform .3s ease,
    visibility 0s linear .3s;
}

.fm-mobile-nav.fm-open{
  transform:translateX(0);
  visibility:visible;
  pointer-events:auto;
  transition:
    transform .3s ease,
    visibility 0s linear 0s;
}

/* CLOSE BUTTON */
.fm-mobile-close{
  display:flex;
  align-items:center;
  justify-content:center;

  width:38px;
  height:38px;
  padding:0;
  margin:0 0 20px auto;

  border:1px solid var(--fm-hair);
  border-radius:8px;
  background:transparent;
  color:#fff !important;

  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;

  transition:
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.fm-mobile-close:hover{
  background:var(--fm-green);
  border-color:var(--fm-green);
  transform:rotate(3deg);
}

.fm-mobile-close:hover svg{
  stroke:#0a0a0a !important;
}

.fm-mobile-nav a{
  display:block;
  padding:14px 6px;
  color:var(--fm-ink-muted);
  font-size:15px;
  line-height:1.3;
  text-decoration:none;
  border-bottom:1px solid var(--fm-hair);

  transition:
    color .2s ease,
    padding-left .2s ease,
    border-color .2s ease;
}

.fm-mobile-nav a:hover{
  color:var(--fm-green);
  padding-left:12px;
  border-color:var(--fm-green-dim);
}


/* MOBILE */
@media (max-width:900px){
  .fm-header{
    min-height:76px;
    padding:14px 5vw;
  }
  
  .fm-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }

  .fm-brand{
    justify-self:auto;
  }

  .fm-desktop-nav,
  .fm-nav-cta{
    display:none;
  }

  .fm-menu-btn{
    display:flex;
    margin-left:auto;
    flex-shrink:0;
  }

  .fm-brand img{
    max-width:160px;
  }
}

@media (max-width:480px){
  .fm-header{
    padding:14px 5vw;
  }

  .fm-brand img{
    max-width:140px;
  }

  .fm-menu-btn{
    width:40px;
    height:40px;
  }

  .fm-mobile-nav{
    width:min(84vw,320px);
    padding:18px;
  }
}/* End custom CSS */