.elementor-35 .elementor-element.elementor-element-5c32cb3{--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;}@media(min-width:768px){.elementor-35 .elementor-element.elementor-element-5c32cb3{--content-width:1200px;}}/* Start custom CSS for container, class: .elementor-element-5c32cb3 *//* =========================
   HEADER — WINHERO DK
   ========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,12,18,.68);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.header-logo{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.header-logo img{
  display:block;
  width:auto;
  height:52px;
  max-width:141px;
}

/* nav */
.header-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
}

.header-nav > a{
  color:rgba(255,255,255,.84);
  font-size:14px;
  font-weight:700;
  letter-spacing:.01em;
  text-decoration:none;
  position:relative;
  transition:color .2s ease, opacity .2s ease;
}

.header-nav > a:not(.header-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(226,192,98,.9), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}

.header-nav > a:not(.header-cta):hover{
  color:#fff;
}

.header-nav > a:not(.header-cta):hover::after{
  transform:scaleX(1);
}

/* cta in header */
.header-cta{
  min-height:46px;
  padding:13px 22px;
  white-space:nowrap;
  margin-left:8px;
}

/* burger */
.header-burger{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}

.header-burger span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .2s ease, opacity .2s ease;
}

.header-burger.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.header-burger.is-active span:nth-child(2){
  opacity:0;
}
.header-burger.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* mobile */
@media (max-width:900px){
  .header-inner{
    min-height:72px;
  }

  .header-burger{
    display:flex;
    margin-left:auto;
  }

  .header-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:14px 16px 18px;
    background:rgba(14,16,24,.96);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 40px rgba(0,0,0,.28);

    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .header-nav.is-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .header-nav > a{
    padding:14px 6px;
    font-size:15px;
  }

  .header-nav > a:not(.header-cta)::after{
    display:none;
  }

  .header-cta{
    width:100%;
    margin:10px 0 0;
    justify-content:center;
  }
}

@media (max-width:768px){
  .header-logo img{
    height:46px;
    max-width:126px;
  }

  .header-inner{
    gap:14px;
  }
}/* End custom CSS */