/*#region var*/
@media (max-width: 991px) {
    :root {
        --headerH: 75px;
    }
}

@media (max-width: 768px) {
    :root {
        --pxunit: 6px;
        --headerH: 70px;
    }

    html {
        font-size: 2.5vw;
    }

    body {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    :root {
        --pxunit: 4px;
    }
}

/*#endregion var*/

/*#region HEADER*/
@media (max-width: 991px) {
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 30px;
    }

    .header_set {
        height: 100%;
    }

    .header_left {
        flex: 1;
        height: 100%;
    }

    .header_logo {
        width: 200px;
    }

    .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: 13vh;
    }

    .header_menu.pst_open {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        pointer-events: auto;
    }

    .headmenu_a {
        height: auto;
        padding: 18px 0;
    }

    .headmenu_a .headmenu_shape .headmenu_cap {
        color: var(--bg-white-color);
        font-size: 16px;
    }

    .headmenu_a:last-child .headmenu_shape .headmenu_cap {
        padding: 10px 30px;
    }

    .headmenu_uline {
        background-color: var(--bg-white-color);
    }

    .headmenu_a:last-child .headmenu_shape .headmenu_cap {
        background-color: var(--bg-white-color);
        border-color: var(--bg-white-color);
        color: var(--bg-font-color);
    }

    .headmenu_a:last-child:hover .headmenu_shape .headmenu_cap {
        color: var(--bg-white-color);
    }

    .hamburger_set {
        display: block;
    }

    .hamburger_btn.pst_open span {
        background-color: var(--bg-white-color);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .headmenu_a .headmenu_shape .headmenu_cap {
        font-size: 15px
    }
}

@media (max-width: 450px) {
    header {
        padding: 0 15px;
    }

    .header_logo {
        width: 180px;
    }

    .headmenu_a .headmenu_shape .headmenu_cap {
        font-size: 14px;
    }
}

/*#endregion HEADER*/