/*#region var*/
@media (max-width: 991px) {
    :root {
        --headerH: 75px;
    }
}

@media (max-width: 768px) {
    :root {
        --headerH: 70px;
        --pxunit: 6px;
        --font-size12: .6rem;
        --font-size14: .7rem;
        --font-size16: .75rem;
        --font-size18: .9rem;
        --font-size20: 1rem;
        --font-size22: 1.1rem;
        --font-size24: 1.2rem;
        --font-size26: 1.3rem;
        --font-size28: 1.4rem;
        --font-size30: 1.5rem;
        --font-size32: 1.6rem;
        --font-size36: 1.8rem;
        --spacing-unit: .4rem;
        --margin-sm: 2.5rem;
        --margin: 2.5rem;
        --border-radius: .6rem;
    }
}

@media (max-width: 450px) {
    :root {
        --pxunit: 5px;
        --font-size12: 1.2rem;
        --font-size14: 1.4rem;
        --font-size16: 1.6rem;
        --font-size18: 1.8rem;
        --font-size20: 2rem;
        --font-size22: 2.2rem;
        --font-size24: 2.4rem;
        --font-size26: 2.6rem;
        --font-size28: 2.8rem;
        --font-size30: 3rem;
        --font-size32: 3.2rem;
        --font-size36: 3.6rem;
        --spacing-unit: 1rem;
        --margin-sm: 2.5rem;
        --margin: 2.5rem;
        --border-radius: 1rem;
    }
}

/*#endregion var*/

/*#region HEADER*/
@media (max-width: 991px) {
    header {
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 30px;
    }

    .header_logo img {
        height: 46px;
    }

    .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: 20px;
    }

    .header_menu.pst_open {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        pointer-events: auto;
    }

    .headmenu_icon {
        width: 40px;
    }

    .headmenu_shape {
        width: 330px;
    }

    .hamburger_set {
        display: block;
    }

    .hamburger_btn.pst_open span {
        background: var(--bg-white-color);
    }
}

@media (max-width: 576px) {
    header {
        padding: 0 15px 0 10px;
    }
}

/*#endregion HEADER*/