@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 2.5vw;
    }
}
/*#region var*/
@media (max-width: 991px) {
    :root {
        --headerH: 70px;
    }   
}
@media (max-width: 767px) {
    :root {
        --pxunit: 0.4rem;
    }   
}
/*#endregion var*/

/*#region HEADER*/
@media (max-width: 1100px) {
    .headmenu_a .headmenu_cap {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    header{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .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: 10vh;
    }
    .header_menu.pst_open {opacity: 1;-webkit-transform: scale(1);transform: scale(1);pointer-events: auto;}
    .headmenu_a {height: 50px;margin: 20px 0;padding: 0;}
    .headmenu_a .headmenu_cap{padding: 10px;color: #FFFFFF;font-size: 18px;}
    .headmenu_uline {background-color: #fff !important;}
    .headmenu_a.contact,.headmenu_a.require  {padding: 0 30px;height: 50px;} 
    .headmenu_a.contact:hover .headmenu_cap {color: #FFF;}
}
@media (max-width: 991px) {
    .hamburger_set {display: block;}
    .hamburger_btn.pst_open span{ background:#fff !important;}
}
.pst_blackheader{background-color: #AFDCDD;}
@media (max-width: 767px) {
    header {
        padding: 0 2rem;
    }
    .header_logo svg {
        width: 150px;
    }
}
/*#endregion HEADER*/
