.elementor-18 .elementor-element.elementor-element-10c08b2{--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-47f6a4b *//* =========================================================
   ASC HEADER v5.4 — fixed top, correct menu logo size,
   smoother hover feel
   ========================================================= */

.asc-hdr{ position: relative; z-index: 9999; }

/* Spacer prevents content going under fixed header */
.asc-hdr__spacer{ height: 0px !important; }

/* FIX: header flush to top */
.asc-hdr__bar{
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  margin: 0 !important;

  z-index: 9999;

  /* tighter header padding (less “float” feeling) */
  padding: 14px 28px;

  background: #000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.00);

  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.asc-hdr.is-scrolled .asc-hdr__bar{
  background: rgba(7,7,10,0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 70px rgba(0,0,0,0.38);
}

@media (max-width: 767px){
  .asc-hdr__bar{ padding: 10px 16px; }
}

.asc-hdr__row{
  max-width: 1240px;
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo (header) */
.asc-hdr__logo{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: rgba(247,247,247,0.92) !important;
}
.asc-hdr__logo:hover{ color: rgba(247,247,247,0.98) !important; }
.asc-hdr__logo img{ height: 70px; width:auto; display:block; }
.asc-hdr__brand{
  font-family:"Bricolage Grotesque",sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:18px;
}

@media (max-width: 767px){
  .asc-hdr__logo img{
    height: 40px;
  }

  .asc-hdr__btn{
    height: 40px;
    padding: 0 14px;
  }
}
@media (max-width: 520px){ .asc-hdr__brand{ display:none; } }

/* Menu button — primary yellow */
.asc-hdr__btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 16px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 12px;

  cursor:pointer;
  user-select:none;

  background: rgba(220,254,4,0.10);
  border: 1px solid rgba(220,254,4,0.35);
  color: rgba(247,247,247,0.96);

  box-shadow: 0 20px 70px rgba(0,0,0,0.35), 0 0 40px rgba(220,254,4,0.10);
  transition: transform .22s cubic-bezier(.2,.9,.2,1), border-color .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
}

.asc-hdr__btn:hover{
  transform: translateY(-1px);
  background: rgba(220,254,4,0.14);
  border-color: rgba(220,254,4,0.52);
  box-shadow: 0 26px 92px rgba(0,0,0,0.55), 0 0 52px rgba(220,254,4,0.14);
}
.asc-hdr__btn:active{ transform: translateY(0); }
.asc-hdr.is-open .asc-hdr__btn{
  background: rgba(220,254,4,0.16);
  border-color: rgba(220,254,4,0.60);
}

.asc-hdr__btnDot{
  width: 8px; height: 8px; border-radius: 50%;
  background: #dcfe04;
  box-shadow: 0 0 18px rgba(220,254,4,0.28);
}
.asc-hdr__btnText{
  font-family:"Albert Sans",sans-serif;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* Overlay */
.asc-hdr__overlay{
  position: fixed;
  inset: 0;
  z-index: 2147483645;

  background: rgba(0,0,0,0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.asc-hdr.is-open .asc-hdr__overlay,
.asc-hdr.is-closing .asc-hdr__overlay{
  opacity: 1;
  pointer-events: auto;
}

/* Panel base */
.asc-hdr__panel{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 2147483646;

  width: min(640px, calc(100vw - 28px));
  height: auto;
max-height: calc(100vh - 28px);
overflow: hidden;

  background: rgba(10,10,12,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  box-shadow: 0 42px 120px rgba(0,0,0,0.78), 0 0 60px rgba(220,254,4,0.10);

  opacity: 0;
  pointer-events: none;

  transform: translateX(18px) scale(0.985);
  clip-path: circle(0% at 92% 8%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: transform, opacity, clip-path;
}

/* OPEN */
.asc-hdr.is-open .asc-hdr__panel{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  clip-path: circle(140% at 92% 8%);

  transition:
    opacity .20s ease,
    transform .65s cubic-bezier(.2,.85,.2,1),
    clip-path .75s cubic-bezier(.2,.9,.2,1);
}

/* CLOSE */
.asc-hdr.is-panel-closing .asc-hdr__panel{
  opacity: 1;
  pointer-events: auto;

  transform: translateX(18px) scale(0.985);
  clip-path: circle(0% at 92% 8%);

  transition:
    clip-path .62s cubic-bezier(.2,.9,.2,1),
    transform .55s cubic-bezier(.2,.85,.2,1),
    opacity .18s ease .20s;
}

.asc-hdr__panelInner{
  overflow: auto;
  max-height: calc(100vh - 28px);
  padding: 30px 30px 26px;
}
@media (max-width: 767px){
  .asc-hdr__panel{
    top: 10px;
    right: 10px;
    width: min(640px, calc(100vw - 20px));
    height: auto;
    max-height: calc(100vh - 20px);
    overflow: hidden;
  }
  .asc-hdr__panelInner{
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 22px 18px 18px;
  }
}

/* Top area */
.asc-hdr__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* FIX: menu logo sizing + balance */
.asc-hdr__brandTop{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.asc-hdr__brandMark{
  width: auto;
  max-width: 60px !important;          /* prevents giant logo */
  object-fit: contain;
  display:block;
  opacity: 0.95;
}
.asc-hdr__brandMeta{ display:flex; flex-direction: column; gap: 6px; min-width: 0; }

.asc-hdr__brandName{
  font-family:"Bricolage Grotesque",sans-serif;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: rgba(247,247,247,0.94);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.asc-hdr__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-family:"Albert Sans",sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(247,247,247,0.68);
}
.asc-hdr__pillDot{
  width: 7px; height: 7px; border-radius: 50%;
  background: #dcfe04;
  box-shadow: 0 0 16px rgba(220,254,4,0.22);
}

.asc-hdr__close{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  cursor:pointer;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(247,247,247,0.90) !important;

  font-family:"Albert Sans",sans-serif;
  font-weight: 750;

  transition: transform .22s cubic-bezier(.2,.9,.2,1), border-color .22s ease, background .22s ease;
}
.asc-hdr__close:hover{
  transform: translateY(-1px);
  border-color: rgba(220,254,4,0.35);
  background: rgba(255,255,255,0.06);
}

/* NAV */
.asc-hdr__nav{
  list-style:none;
  padding: 0;
  margin: 22px 0 0;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

/* theme hover kill */
.asc-hdr__navLink,
.asc-hdr__navLink:visited,
.asc-hdr__navLink:hover,
.asc-hdr__navLink:focus,
.asc-hdr__navLink:active{
  color: rgba(247,247,247,0.92) !important;
  -webkit-text-fill-color: rgba(247,247,247,0.92);
  text-decoration: none !important;
  outline: none;
}

.asc-hdr__navItem{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity .35s ease, transform .65s cubic-bezier(.2,.85,.2,1), filter .65s ease;
}
.asc-hdr.is-open .asc-hdr__navItem{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Phase A close (items leave first) */
.asc-hdr.is-closing .asc-hdr__navItem{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  transition: opacity .22s ease, transform .30s ease, filter .30s ease;
}

/* smoother hover feeling */
.asc-hdr__navLink{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;

  padding: 20px 20px 24px;
  border-radius: 20px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);

  transition:
    background .28s ease,
    border-color .28s ease,
    transform .28s cubic-bezier(.2,.9,.2,1),
    box-shadow .28s ease;
  overflow: hidden;
}

.asc-hdr__navLink:before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 20px;
  pointer-events:none;
  opacity: 0;
  transition: opacity .28s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 0 50px rgba(220,254,4,0.08);
}

.asc-hdr__navLink:hover{
  background: rgba(255,255,255,0.045);
  border-color: rgba(220,254,4,0.18);
  transform: translateY(-1px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}
.asc-hdr__navLink:hover:before{ opacity: 1; }

/* bottom sweep */
.asc-hdr__navLink:after{
  content:"";
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  border-radius: 2px;

  background: rgba(220,254,4,0.92);
  box-shadow: 0 0 22px rgba(220,254,4,0.18);

  opacity: 0;
  transform: translateX(-14px) scaleX(0.62);
  transform-origin: left;

  transition: opacity .28s ease, transform .55s cubic-bezier(.2,.9,.2,1);
}
.asc-hdr__navLink:hover:after{
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.asc-hdr__navLeft{ display:flex; flex-direction:column; gap: 6px; min-width: 0; }
.asc-hdr__navLabel{
  font-family:"Albert Sans",sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.asc-hdr__navHint{
  font-family:"Albert Sans",sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(247,247,247,0.58) !important;
  max-width: 460px;
}

.asc-hdr__navRight{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 56px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(247,247,247,0.82);

  transition:
    transform .28s cubic-bezier(.2,.9,.2,1),
    border-color .28s ease,
    background .28s ease,
    color .28s ease;
  flex: 0 0 auto;
}
.asc-hdr__navRight i{
  width: 22px; height: 2px; background: currentColor;
  position: relative; display:block;
}
.asc-hdr__navRight i:before,
.asc-hdr__navRight i:after{
  content:"";
  position:absolute;
  right: 0;
  width: 45%;
  height: 2px;
  background: currentColor;
}
.asc-hdr__navRight i:before{ transform: rotate(45deg) translateX(1px); transform-origin: right center; }
.asc-hdr__navRight i:after { transform: rotate(-45deg) translateX(1px); transform-origin: right center; }

.asc-hdr__navLink:hover .asc-hdr__navRight{
  transform: translateX(2px);
  border-color: rgba(220,254,4,0.22);
  background: rgba(220,254,4,0.08);
  color: rgba(247,247,247,0.95);
}

/* CTA */
.asc-hdr__cta{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;

  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.85,.2,1), filter .55s ease;
}
.asc-hdr.is-closing .asc-hdr__cta{
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition: opacity .22s ease, transform .30s ease, filter .30s ease;
}

.asc-hdr__ctaText{ display:flex; flex-direction: column; gap: 6px; min-width: 220px; }
.asc-hdr__ctaTitle{
  font-family:"Bricolage Grotesque",sans-serif;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: rgba(247,247,247,0.94);
}
.asc-hdr__ctaSub{
  font-family:"Albert Sans",sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(247,247,247,0.62);
  line-height: 1.4;
}

.asc-hdr__ctaBtn{
  height: 46px;
  padding: 0 16px;
  border-radius: 16px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  background: rgba(220,254,4,0.12);
  border: 1px solid rgba(220,254,4,0.28);
  color: rgba(247,247,247,0.96) !important;
  -webkit-text-fill-color: rgba(247,247,247,0.96);
  text-decoration: none !important;

  font-family:"Albert Sans",sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;

  box-shadow: 0 26px 90px rgba(0,0,0,0.45);
  transition: transform .22s cubic-bezier(.2,.9,.2,1), background .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.asc-hdr__ctaBtn:hover{
  transform: translateY(-1px);
  background: rgba(220,254,4,0.16);
  border-color: rgba(220,254,4,0.40);
  box-shadow: 0 32px 110px rgba(0,0,0,0.55);
}

/* =======================
   CTA (Start your project)
   ======================= */
.asc-hdr__cta{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;

  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.85,.2,1), filter .55s ease;
}
.asc-hdr.is-closing .asc-hdr__cta{
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition: opacity .22s ease, transform .30s ease, filter .30s ease;
}

.asc-hdr__ctaText{ display:flex; flex-direction: column; gap: 6px; min-width: 240px; }
.asc-hdr__ctaTitle{
  font-family:"Bricolage Grotesque",sans-serif;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: rgba(247,247,247,0.94);
}
.asc-hdr__ctaSub{
  font-family:"Albert Sans",sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(247,247,247,0.62);
  line-height: 1.4;
}

.asc-hdr__ctaBtn{
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  background: rgba(220,254,4,0.14);
  border: 1px solid rgba(220,254,4,0.35);
  color: rgba(247,247,247,0.96) !important;
  -webkit-text-fill-color: rgba(247,247,247,0.96);
  text-decoration: none !important;

  font-family:"Albert Sans",sans-serif;
  font-weight: 850;
  font-size: 14px;
  letter-spacing: 0.01em;

  box-shadow: 0 26px 90px rgba(0,0,0,0.45), 0 0 40px rgba(220,254,4,0.10);
  transition: transform .22s cubic-bezier(.2,.9,.2,1), background .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}

.asc-hdr__ctaBtn:before{
  content:"";
  position:absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 180%;
  background: rgba(255,255,255,0.16);
  transform: rotate(20deg) translateX(-120%);
  transition: transform .7s cubic-bezier(.2,.9,.2,1);
  pointer-events:none;
}
.asc-hdr__ctaBtn:hover{
  transform: translateY(-1px);
  background: rgba(220,254,4,0.18);
  border-color: rgba(220,254,4,0.48);
  box-shadow: 0 34px 120px rgba(0,0,0,0.58), 0 0 52px rgba(220,254,4,0.14);
}
.asc-hdr__ctaBtn:hover:before{
  transform: rotate(20deg) translateX(220%);
}

.asc-hdr__ctaArrow{
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display:block;
}
.asc-hdr__ctaArrow:before,
.asc-hdr__ctaArrow:after{
  content:"";
  position:absolute;
  right: 0;
  width: 55%;
  height: 2px;
  background: currentColor;
}
.asc-hdr__ctaArrow:before{ transform: rotate(45deg) translateX(1px); transform-origin: right center; }
.asc-hdr__ctaArrow:after { transform: rotate(-45deg) translateX(1px); transform-origin: right center; }


body.asc-lock{ overflow: hidden !important; }

.asc-hdr,
.asc-hdr__bar,
.asc-hdr__overlay,
.asc-hdr__panel {
  z-index: 2147483647 !important;
}

.asc-hdr__overlay,
.asc-hdr__panel {
  position: fixed !important;
}

.elementor-location-footer,
.elementor-location-footer .e-con,
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-container {
  z-index: 1 !important;
  transform: none !important;
}

/* =========================================
   KILL unwanted pink focus / active styles
   ========================================= */

/* Base interactive elements */
.asc-hdr a,
.asc-hdr button,
.asc-hdr [role="button"],
.asc-hdr__btn,
.asc-hdr__close,
.asc-hdr__navLink,
.asc-hdr__ctaBtn {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

/* All states */
.asc-hdr a:focus,
.asc-hdr a:focus-visible,
.asc-hdr a:active,
.asc-hdr button:focus,
.asc-hdr button:focus-visible,
.asc-hdr button:active,
.asc-hdr [role="button"]:focus,
.asc-hdr [role="button"]:focus-visible,
.asc-hdr [role="button"]:active,
.asc-hdr__btn:focus,
.asc-hdr__btn:focus-visible,
.asc-hdr__btn:active,
.asc-hdr__close:focus,
.asc-hdr__close:focus-visible,
.asc-hdr__close:active,
.asc-hdr__navLink:focus,
.asc-hdr__navLink:focus-visible,
.asc-hdr__navLink:active,
.asc-hdr__ctaBtn:focus,
.asc-hdr__ctaBtn:focus-visible,
.asc-hdr__ctaBtn:active {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: rgba(247,247,247,0.96) !important;
  -webkit-text-fill-color: rgba(247,247,247,0.96) !important;
}

/* Firefox inner focus ring */
.asc-hdr button::-moz-focus-inner,
.asc-hdr a::-moz-focus-inner {
  border: 0 !important;
}

/* Optional: keep a custom clean keyboard focus instead of pink */
.asc-hdr__btn:focus-visible,
.asc-hdr__close:focus-visible,
.asc-hdr__navLink:focus-visible,
.asc-hdr__ctaBtn:focus-visible {
  outline: 2px solid rgba(220,254,4,0.45) !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}/* End custom CSS */