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:1860px;
    margin: auto;
    padding: 30px;
}
header .logo {
    position: relative;
    z-index: 110;
    line-height: 0;
}
 
header .logo a {
    color: var(--white);
    font-family: var(--font);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    line-height: 0;
}

header .menu nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
header .menu a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-second);
    font-size: var(--size-14);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
}

header.black a,
header.black .logo svg path {
    fill: var(--black);
    color: var(--black);
}

.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 (min-width: 993px) and (max-width: 1250px) {
header .menu nav {
    gap: 20px;
}
}

@media (max-width: 992px) {
.burger {
    display: none;
    position: absolute;
    right: 25px;
    padding: 0;
    margin-top: -8px;
}
header .main_header {
    /* padding: 40px 25px 0px 25px; */
    padding: 20px 25px;
}
header .logo {
    margin: auto;
}
header .logo a {
    font-size: 30px;
}
header .logo svg {
    max-width: 150px;
}
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: 101;
    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;
}
}