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

@media (max-width: 768px) {
    :root {
        --pxunit: 8px;
        --font-size14: .7rem;
        --font-size16: .8rem;
        --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.7rem;
        --font-size38: 1.8rem;
        --font-size40: 2rem;
        --gap-unit: .4rem;
        --margin: 2.5rem;
        --border-radius: .4rem;
    }
}

@media (max-width: 450px) {
    :root {
        --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-size32: 3.2rem;
        --font-size36: 3.6rem;
        --font-size38: 3.8rem;
        --font-size40: 4rem;
        --gap-unit: .8rem;
        --margin: 2rem;
        --border-radius: .8rem;
    }
}

/*#endregion var*/

/*#region HEADER*/
@media (max-width: 768px) {
    .header {
        display: flex;
        align-items: center;
        top: 0;
        width: 100%;
        padding: 0 25px;
        border-radius: 0;
    }

    .header__logo {
        width: 130px;
    }

    .header__menu {
        position: fixed;
        top: var(--headerH);
        left: 0;
        width: 100%;
        height: calc(100% - var(--headerH));
        flex-direction: column;
        justify-content: flex-start;
        z-index: 120;
        transform: scale(0.95);
        pointer-events: none;
        -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);
        gap: 0;
        background-color: var(--bg-white-color);
        padding: calc(var(--gap-unit)*3) calc(var(--gap-unit)*2.5);
    }

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

    .headmenu__a {
        justify-content: flex-start;
        padding: calc(var(--gap-unit)*1.5);
        border-bottom: 1px solid #CCCCCC;
        height: auto;
        width: 100%;
    }

    .headmenu__shape,
    .headmenu__cap {
        width: 100%;
    }

    .headmenu__cap {
        color: var(--bg-darkblue-color);
        font-size: var(--font-size16);
    }

    .headmenu__btns {
        display: flex;
    }

    .hamburger__set {
        display: block;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 0 20px;
    }

    .header__logo {
        width: 120px;
    }
}

/*#endregion HEADER*/