.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 4;
    background: #0E2531;
}

.wrap-header{
    max-width: 1440px;
    height: 51px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.nav-link-header{
    font-weight: 300;
    font-size: 16px;
}

.burger{
    position: relative;
    z-index: 2;
    padding: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #0E2531;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .header{
       position: fixed;
       background: none;
       top:12px;
       right: 12px;
    }
    .burger{
        display: flex;
    }
    .wrap-header{
        height: auto;
        justify-content: end;
        padding: 8px;
    }

    .nav-menu{
        height: 100%;
        background: #0E2531;
        flex-direction: column;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        transition: 0.3s ease;
    }

    .burger-svg{
        position: absolute;
        z-index: 1;
        background: #0E2531;
    }

    .active-burger{
        display: none;
    }

    .open{
        top: 0;
    }
}