:root {
    --navBar01Height: 70px;
    --navBar01MenuItemHeight: 50px;
}

.MAS-NavBar01 {
    tab-size: inherit;
}

@media screen and (min-width: 800px) {
    :root {
        --navBar01Top: 20px;
        --navBar01ScreenBig: 1;
    }

    .MAS-NavBar01NoScroll-Outer {
        position: absolute;
        top: var(--navBar01Top);
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 9999;
        transition: all, 0.25s;
    }

    .MAS-NavBar01NoScroll-Inner {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        background: linear-gradient(to right, #1f022782, #031837d3);
        width: 95%;
        max-width: 950px;
        height: auto;
        overflow: hidden;
        transition: all, 0.25s;
        border: solid 1px #444444;
        border-radius: 5px;
        box-shadow: 0px 0px 30px 30px rgba(0, 0, 0, 0.5), 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
    }

    .MAS-NavBar01Scroll-Outer {
        position: fixed;
        top: 0px;
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 9999;
        background: #ffffffeb;
        box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.2)
    }

    .MAS-NavBar01Scroll-Inner {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        width: 95%;
        max-width: 950px;
        height: auto;
        overflow: hidden;
    }
}

@media screen and (max-width: 800px) {
    :root {
        --navBar01Top: 0px;
        --navBar01ScreenBig: 0;
    }

    .MAS-NavBar01NoScroll-Outer {
        position: absolute;
        top: var(--navBar01Top);
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 9999;
        transition: all, 0.25s;
    }

    .MAS-NavBar01Scroll-Outer {
        position: fixed;
        top: var(--navBar01Top);
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 9999;
        transition: all, 0.25s;
    }

    .MAS-NavBar01NoScroll-Inner {
        position: relative;
        border-bottom: solid 1px #444444;
        background: linear-gradient(to right, #1f02278f, #031127);
        width: 100%;
        height: auto;
        overflow: hidden;
        transition: all, 0.25s;
        box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.2)
    }

    .MAS-NavBar01Scroll-Inner {
        position: relative;
        background: #ffffffeb;
        width: 100%;
        height: auto;
        overflow: hidden;
        transition: all, 0.25s;
        box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.2)
    }
}

.MAS-NavBar01-LangContainer {
    position: relative;
    float: left;
    width: 60px;
    height: var(--navBar01Height);
    box-sizing: border-box;
    padding: 15px 5px 15px 15px;
}

.MAS-NavBar01-LangBtn {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.MAS-NavBar01-Logo {
    position: relative;
    float: left;
    width: 130px;
    height: var(--navBar01Height);
    box-sizing: border-box;
}

.MAS-NavBar01-Menu {
    position: relative;
    display: flex;
    float: left;
    width: calc(100% - 190px);
    min-height: var(--navBar01Height);
    box-sizing: border-box;
    padding: 10px 20px 10px 10px;
    transition: all, 0.25s;
}

.MAS-NavBar01-MenuBtnContainer {
    position: relative;
    text-align: right;
}

.MAS-NavBar01-MenuBtn {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 5px;
    cursor: pointer;
    font-size: var(--navBar01MenuItemHeight);
    text-align: center;
    line-height: var(--navBar01MenuItemHeight);
}

.MAS-NavBar01-MenuBtnOff {
    color: #aaaaaa;
}

.MAS-NavBar01-MenuBtnOn {
    color: #8c00ff;
}

.MAS-NavBar01-MenuItem {
    position: relative;
    text-align: right;
    overflow: hidden;
    box-sizing: border-box;
    transition: all, 0.25s;
    line-height: var(--navBar01MenuItemHeight);
    padding-left: 40px;
    font-size: 18px;
    font-weight: bold;
}

.MAS-NavBar01-MenuItemText {
    tab-size: 0cap;
}

@media screen and (min-width: 800px) {
    .MAS-NavBar01-Menu {
        flex-direction: row;
        justify-content: right;
    }

    .MAS-NavBar01-MenuBtn {
        display: none;
    }

    .MAS-NavBar01-MenuItem {
        height: var(--navBar01MenuItemHeight);
    }

    .MAS-NavBar01-MenuItemTextOffNoScroll {
        color: #ffffff;
    }

    .MAS-NavBar01-MenuItemTextOffScroll {
        color: #333333;
    }

    .MAS-NavBar01-MenuItemTextOn {
        color: #b46aff;
    }
}

@media screen and (max-width: 800px) {
    .MAS-NavBar01-Menu {
        flex-direction: column;
        justify-content: right;
    }

    .MAS-NavBar01-MenuBtn {
        display: inline-block;
    }

    .MAS-NavBar01-MenuItem {
        height: 0px;
    }

    .MAS-NavBar01-MenuItemTextOffNoScroll {
        color: #ffffff;
    }

    .MAS-NavBar01-MenuItemTextOffScroll {
        color: #333333;
    }

    .MAS-NavBar01-MenuItemTextOn {
        color: #b46aff;
    }
}