/*#region var*/
@media (max-width: 1600px) {
    :root {
        --pxunit: 9px;
    }
}

@media (max-width: 1440px) {
    :root {
        --pxunit: 8px;
    }
}

@media (max-width: 991px) {
    :root {
        --headerH: 65px;
        --pxunit: 7px;
    }
}

@media (max-width: 768px) {
    :root {
        --pxunit: 6px;
    }
}

@media (max-width: 450px) {
    :root {
        --headerH: 60px;
        --pxunit: 5px;
    }
}

/*#endregion var*/

/*#region HEADER*/
@media (max-width: 991px) {
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 20px;
    }

    header.pst_open .header_set {
        backdrop-filter: unset;
    }

    .header_set {
        padding: 0 25px;
    }

    .header_logo img {
        height: 47px;
    }

    .header_left span {
        font-size: 12px;
    }

    .header_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 120;
        transform: scale(0.95);
        pointer-events: none;
        background-color: rgba(23, 23, 23, 0.95);
        -webkit-transition: 0.6s;
        -moz-transition: 0.6s;
        -ms-transition: 0.6s;
        transition: 0.6s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: opacity, transform;
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        padding-top: 20vh;
        gap: 30px;
    }

    .header_menu.pst_open {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        pointer-events: auto;
    }

    .hamburger_set {
        display: block;
    }

    .headmenu_shape, .headmenu_contact .headmenu_shape {
        width: 40rem;
        height: 8.5rem;
    }

    .headmenu_cap {
        font-size: 2.4rem;
    }

    .headmenu_svg {
        width: 3rem;
        height: 3rem;
    }

    .hamburger_btn.pst_open span {
        background: var(--bg-white-color);
    }
}

@media (max-width: 768px) {
    header {
        top: 15px;
        padding: 0 15px;
    }

    .header_set {
        padding: 0 15px;
        border-radius: 6px;
    }

    .header_left {
        gap: 10px;
    }

    .header_left span {
        display: none;
    }

    .headmenu_shape, .headmenu_contact .headmenu_shape {
        width: 220px;
        height: 50px;
    }

    .headmenu_cap {
        right: 20px;
        font-size: 14px;
    }

    .headmenu_svg {
        right: 15px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 450px) {
    header {
        top: 13px;
        padding: 0 10px;
    }

    .header_logo img {
        height: 40px;
    }
}

/*#endregion HEADER*/