header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header .main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    max-width:1884px;
    margin: auto;
    padding: var(--space-45) 0px;
}
header .logo {
    position: relative;
    z-index: 100;
}

header .logo a {
    color: var(--white);
    font-family: var(--font);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

header .menu nav {
    display: flex;
    align-items: center;
    gap: var(--space-35);
}
header .menu a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-second);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-5);
    z-index: 1001;
}
.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
.burger {
    display: flex;
    position: absolute;
    left: auto;
    top: 50%;
    right: var(--space-sm);
    transform: translateY(-50%);
}
header .main_header {
    padding: var(--space-15) 0;
}
header .logo a {
    font-size: 30px;
}
header .menu {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/wp-content/uploads/2026/05/background_hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    z-index: 10;
    transform: translateX(-100%);
    transition: .5s all ease-in-out;
}

header .menu.open {
    transform: translateX(0);
    transition: .5s all ease-in-out;
}

header .menu nav {
    flex-direction: column;
    margin: auto;
    height: 100%;
    justify-content: center;
}
}