.header-wrap {
    position: sticky;
    z-index: 100;
    top: 0;
    background: transparent;
    transition: background-color .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease, box-shadow .25s ease;
}
.header-wrap.scrolled{
    background: var(--glass-bg);                 
    -webkit-backdrop-filter: saturate(140%) blur(var(--glass-blur));
    backdrop-filter: saturate(140%) blur(var(--glass-blur));
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 8px 24px rgba(0,0,0,.25);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
@supports not (backdrop-filter: blur(1px)) {
  .header-wrap.scrolled{
    background: rgba(0,0,0,.6);
  }
}
@media (prefers-reduced-transparency: reduce){
  .header-wrap.scrolled{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(0,0,0,.75);
  }
}
.header-wrap .header-inner {
    width: 1000px;
    height: var(--header-h);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
}
.header-inner .menu-logo {
    margin-right: 25px;
    color: rgb(var(--header-logo));
}
.header-inner .menu-logo span {
    font-weight: bold;
    font-size: 30px;
}
.header-inner .menu-items {
    justify-content: center;
}
.header-inner .menu-items ul {
    display: inline-flex;
}
.header-inner .menu-items ul li {
    list-style: none;
    padding: 0 10px 0 10px;
}
.header-inner .menu-items ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgb(var(--header-logo));
    font-size: 13px;
    text-transform: uppercase;
}
.header-inner .menu-items ul li a:hover {
    color: rgb(var(--maincolor));
}
.header-inner .menu-items ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(var(--maincolor));
    bottom: -10px;
    opacity: 0;
    transform: scaleX(0.5);
    transform-origin: left center;
    transition: opacity .3s, transform .5s;
}
.header-inner .menu-items ul li a:hover::after,
.header-inner .menu-items ul li a:focus-visible,
.header-inner .menu-items ul li a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}
.header_img .img {
    width: 270px;
}
.header_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(100px + 80px);
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
    z-index: 1;
}
.header-inner .social-icons {
    margin-left: auto;
}
.header-inner .social-icons a {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}
.header-inner .social-icons img {
    width: 22px;
    height: 22px;
    display: block;
    color: white;
    filter: invert(1);
}
.header-inner .burger {
    position: absolute;
    right: 20px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin-left: 12px;
    display: none;
    transition: transform .25s ease;
    transform-origin: center;
}
.header-inner .burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(var(--header-logo,255 255 255));
    transition: transform .25s, opacity .2s, top .25s, bottom .25s;
    border-radius: 20px;
}
.header-inner .burger span:nth-child(1) {
    top: 8px;
}
.header-inner .burger span:nth-child(2) {
    top: 16px;
}
.header-inner .burger span:nth-child(3) {
    bottom: 8px;
}
.header-wrap.is-open .burger span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}
.header-wrap.is-open .burger span:nth-child(2) {
    opacity: 0;
}
.header-wrap.is-open .burger span:nth-child(3) {
    bottom: 16px;
    transform: rotate(-45deg);
}
.header-wrap.is-open .burger:hover {
    transform: rotate(90deg);
}
.header-wrap.is-open .burger:focus-visible {
    transform: rotate(90deg);
    outline: 2px solid rgba(0,0,0,0.25);
    outline-offset: 4px;
}
.header-inner .backdrop {
    position: fixed;
    inset: 0;
    background: rgb(var(--lass-bg));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
    z-index: 900;
}
.header-wrap.is-open .backdrop {
    opacity: 1;
    pointer-events: auto;
}
.backdrop[hidden] {
    display: none;
}



@media (max-width: 1080px) {
    .header-inner {
        width: 211%;
        padding-inline: 16px;
        display: flex;
        align-items: center;
        overflow-x: hidden;
    }
    .header-inner .burger {
        display: inline-block;
    }
    .header-inner .social-icons {
        margin-left: auto;
    }
    .header-inner .menu-items {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(86vw, 200px);
        background: #fff;
        color: #111;
        transform: translateX(100%);
        transition: transform .32s ease;
        z-index: 1100;
        padding: 24px 20px;
        display: block;
    }
    .header-wrap.is-open .menu-items {
        transform: translateX(0);
    }
    .header-inner .menu-items ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0;
        padding: 0;
        margin-top: 50px;
    }
    .header-inner .menu-items ul li {
        list-style: none;
    }
    .header-inner .menu-items ul li a {
        color: #111;
        padding: 12px 4px;
        text-decoration: none;
    }
    .header-inner .menu-items ul li a:hover {
        color: rgb(var(--maincolor));
    }
    .header-inner .menu-items a::after {
        bottom: 0;
        background: #111;
    }
    .header-inner .social-icons {
        display: none;
    }
    .header-wrap.is-open .burger {
        z-index: 1200;
        width: 20px;
    }
    .header-wrap.is-open .burger span {
        background: #111;
    }
}