.header {
    height: 100px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    transition: 0.3s;
}

.headerLogo {
    margin-left: 40px;
    width: 250px;
    object-fit: contain;
    cursor: pointer;
}

.headerItemMenu {
    margin-left: 20px;
    cursor: pointer;
    color: #fbfbf4;
    font-size: 18px;
    font-weight: bold;
}

.headerItemMenuLine {
    width: 0;
    background-color: #fbfbf4;
    border-radius: 10px;
    height: 2px;
    transition: 0.2s;
}

.headerItemMenu:hover .headerItemMenuLine {
    width: 98%;
    transition: 0.4s;
    margin-left: auto;
}

.headerImgBack {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%) contrast(80%);
    /*image-rendering: pixelated;*/
    z-index: -1;
    background-image: url("../img/jpg/backV1.jpg");
    background-size: 100%;
}

.headerText {
    color: #fbfbf4;
    font-size: 38px;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
    animation: onShowLabel 300ms linear forwards;
}

.closeLeftMenu {
    display: none;
}

@media screen and (min-width: 1101px) {
    .areaHeaderMenu {
        margin-top: auto;
        margin-bottom: auto;
        margin-left: 40px;
        display: flex;
    }

    .burgerBackground {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .headerImgBack {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-size: 100%;
        filter: brightness(40%) contrast(80%);
        /*image-rendering: pixelated;*/
        z-index: -1;
        background-image: url("../img/jpg/backV2.jpg");
    }

    .header {
        height: 60px;
    }

    .areaHeaderMenu {
        background-color: #fbfbf4;
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        padding-bottom: 100px;
        display: none;
    }

    .headerItemMenu {
        margin-top: 32px;
        margin-left: 20px;
        cursor: pointer;
        color: #fbfbf4;
        font-size: 18px;
        font-weight: bold;
    }

    .headerLogo {
        margin-left: 10px;
        width: 200px;
        object-fit: contain;
        cursor: pointer;
    }

    /* burger */
    .closeLeftMenu {
        display: block;
    }

    .hamburgerIcon {
        position: fixed;
        right: 28px;
        top: 28px;
        width: 36px;
        height: 24px;
        display: flex;
        margin: 0;
        border: none;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        background-color: transparent;
        z-index: 10;
    }

    .line {
        width: 100%;
        height: 3px;
        background-color: #fbfbf4;
        border-radius: 4px;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    }

    .hamburgerIcon.crossIcon .line:first-child {
        transform: translateX(1px) rotate(45deg);
    }

    .hamburgerIcon.crossIcon .line:last-child {
        transform: translateY(-21px) rotate(-45deg);
    }

    .hamburgerIcon.crossIcon .line:nth-child(2) {
        opacity: 0;
    }

    .burgerBackground {
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.8);
        height: 100vh;
        width: 100%;
        z-index: 4;
    }
}

@media screen and (min-width: 1800px) {
    .headerImgBack {
        filter: brightness(40%) contrast(80%);
        /*image-rendering: pixelated;*/
        z-index: -1;
        /*background-image: url("../img/jpg/backV2.jpg");*/
    }

    .header {
        padding-left: 5%;
        /*transform: translate(5%);*/
    }
}