.l-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    padding: 12px;
}

.l-header__container {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.l-header__main {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
@media (max-width: 600px) {
    .l-header__main {
        flex-direction: column;
    }
}

.l-header__nav {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .l-header__nav {
        margin-top: 100px;
    }
}

.l-heder__logo {
    position: absolute;
    left: 50%;
    top: 12px;
    height: 120px;
    transform: translateX(-50%);
}

@media (max-width: 600px) {
    .l-heder__logo {
        position: absolute;
        left: 50%;
        top: 48px;
        height: 80px;
        transform: translateX(-50%);
    }
}

.l-heder__logo-img {
    height: 100%;
}
