/* -------------------------------------- BANNER BASE -------------------------------------- */

.banner_container,
.banner_name_container,
.banner_title_container,
.banner_button,
.nav_container {
    position: fixed;
    z-index: 1;
}

.banner_container {
    width: 100%;
    height: 85px;
    background-color: var(--light-beige);
    top: 0;
    display: flex;
}

.banner_name_container {
    left: 20px;
    top: 25px;
}

.banner_title_container {
    width: 140px;
    /* height: auto; */
    top: 38px;
    left: calc(50vw - 82px);
    /* left: calc(50% - 70px); */
}

@media only screen and (max-width: 700px) {

    .banner_container {
        height: 70px;
    }

    .banner_name_container {
        width: 55px;
        height: 25px;
        left: 15px;
        top: 22px;
    }

    .banner_name_container > img {
        width: 100%;
        height: 100%;
    }

    .banner_title_container {
        width: 90px;
        height: 16px;
        top: 28px;
        left: calc(50vw - 55px);
        /* left: calc(50% - 70px); */
    }

}

/* -------------------------------------- BUTTON BASE -------------------------------------- */

.banner_button {
    width: 22px;
    height: 40px;
    top: 35px;
    right: 20px;
    padding: 4px;
    transition: 0.25s;
    z-index: 9000;
}

.banner_button:hover {
    cursor: pointer;
}

.banner_button_bar {
    position: absolute;
    border-radius: 2px;
    width: 80%;
    transition: .5s;
}

.banner_button_bar_top,
.banner_button_bar_bottom {
    border: 1px solid #000;
}

.banner_button_bar_bottom {
    border-top: none;
    top: 26px;
}

.banner_button_bar_top {
    border-bottom: none;
    top: 0;
}

.banner_button_bar_middle {
    height: 1px;
    background-color: #000;
    border-right: 2px solid black;
    margin-top: 8px;
    margin-bottom: 8px;
    top: 5px;
}

@media only screen and (max-width: 700px) {

    .banner_button {
        top: 20px;
    }
}

/* -------------------------------------- BUTTON ACTIVE -------------------------------------- */

.banner_button_active {
    right: 25px;
}

.banner_button_active .banner_button_bar_top,
.banner_button_active .banner_button_bar_bottom {
    transition: 0.5s;
    width: 100%;
}

.banner_button_active .banner_button_bar_top {
    transform: rotate(45deg) translate(10px, 8px);
}

.banner_button_active .banner_button_bar_bottom {
    transform: rotate(-45deg) translate(10px, -8px);
}

.banner_button_active .banner_button_bar_middle {
    transform: translateX(20px);
    width: 0%;
    transition: 0.1s ease-in;
    opacity: 0;
}

/* -------------------------------------- NAV BASE -------------------------------------- */

.nav_container {
    background-color: var(--light-beige);
    top: 0;
    right: -380px;
    width: 380px;
    height: 100%;
    overflow: auto;
    transition: 0.5s;

    text-align: center;
}

.nav_visible {
    right: 0;
}

.menu,
.sub-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu {
    margin-top: 150px;
}

.sub-menu {
    /* position: absolute;
    width: 100%; */
    margin-top: 15px;
}

@media only screen and (max-width: 700px) {

    .nav_container {
        width: 100%;
        right: -100%;
    }

    .nav_visible {
        right: 0;
    }
}

/* -------------------------------------- NAV ELEMENTS BASE -------------------------------------- */

.menu > .menu-item {
    background-color: var(--light-beige);
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 10px;
    padding: 25px 0 15px 0;

    text-transform: uppercase;

    height: 15px;
    overflow: hidden;

    min-width: 320px;
    /* margin: 0 auto; */
}

.menu > .menu-item > a {
    padding: 5px 5px 5px 15px;
}

.sub-menu > .menu-item {
    font-size: 18px;
    font-weight: 450;
    line-height: 18px;
    letter-spacing: 1.6px;
    padding: 6px 0;

    text-transform: initial;

    background-color: var(--light-beige) !important;


    height: unset;
}

/* -------------------------------------- NAV ELEMENTS ACTIVE -------------------------------------- */

.menu-item-has-children:hover {
    /* height: 30px; */
}

.sub-menu > .menu-item :hover {
    background-color: var(--light-beige) !important;
}

.sub-menu > .menu-item > a:hover::after,
.sub-menu > .menu-item > a:hover::before,
.sub-menu > .current_page_item > a::after,
.sub-menu > .current_page_item > a::before {
    content: "\2014";
	margin: 0 8px;
}

.nav_item_home.current-menu-item > a,
.nav_item_home :hover {
    background-color: var(--pink);
}

.nav_item_about.current-menu-item > a,
.nav_item_about :hover {
    background-color: var(--beige);
}

.nav_item_angebot.current-menu-item > a,
.nav_item_angebot.current-menu-item :hover,
.nav_item_angebot.current-menu-item > a :hover,
.nav_item_angebot :hover,
.nav_item_angebot.current-menu-parent > a {
    background-color: var(--green);
}

.nav_item_themen.current-menu-item > a,
.nav_item_themen.current-menu-item :hover,
.nav_item_themen.current-menu-item > a :hover,
.nav_item_themen :hover,
.nav_item_themen.current-menu-parent > a {
    background-color: var(--blue);
}




.nav_item_preise.current-menu-item > a,
.nav_item_preise :hover {
    background-color: var(--light-pink);
}

.nav_item_kontakt.current-menu-item > a,
.nav_item_kontakt :hover {
    background-color: var(--light-blue);
}

.nav_item_blog.current-menu-item > a,
.nav_item_blog :hover {
    background-color: var(--white);
}