.banner_container {
    width: 100%;
    height: 80px;
    background-color: white;
    color: black;
    display: flex;
    border-bottom: 1px solid black;
    
    position: fixed;
    z-index: 1337;
}

.banner_nav_mobile {
    display: none;
}

.banner_nav_desktop {
    display: unset;
}

.banner_nav_container {
    display: flex;
}

.banner_el_nav {
    display: flex;
    padding: 30px;
    border-right: 1px solid black;
}

.banner_el_nav:hover > .nav_icon_default {
    background-color: black;
}

.nav_text {
    color: black;
    font-size: 17px;
    font-weight: 700;
}

.nav_icon_default, .nav_icon_active {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    border: 1px solid black;
    margin-right: 10px;
}

.nav_icon_active {
    background-color: black;
}

.banner_el_logo_container {
    display: flex;
    margin-right: 30px;
    /* background-color: black; */
    margin-left: auto;
    font-weight: 700;
}

.banner_el_logo_text_L {
    font-size: 40px;
    margin-top: 15px;
}

.banner_el_logo_text_R {
    margin-top: 25px;
}

.banner_el_logo_dots_container {
    margin-left: 25px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px 0 17px 0;
}

.banner_el_logo_dot {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background-color: black;
}

/* ______________________________________________________________________________________________ */
/* ______________________________________________________________________________________________ */

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

    .banner_el_logo_text_L {
        font-size: 26px;
        margin-top: 25px;
    }

    .banner_el_logo_container {
        margin-right: 27px;
    }

    .banner_el_logo_dots_container {
        margin: 5px 0 0 10px;
        padding: 20px 0 24px 0;
    }

    .banner_el_logo_dot {
        width: 11px;
        height: 11px;
    }
}

/* ______________________________________________________________________________________________ */
/* ______________________________________________________________________________________________ */

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

    /* .banner_container {
        z-index: 3000;
    } */

    .banner_nav_container {
        /* display: none; */
        flex-direction: column;
        width: 100vw;
        position: fixed;
        /* top: -161px; */
		top: -241px;
        z-index: 420;

        transition: top 0.5s;
        -webkit-transition: top 0.5s;
        -o-transition: top 0.5s;
        -moz-transition: top 0.5s;
    }

    .nav_mobile_show {
        top: 81px;
    }

    .banner_el_nav {
        width: 100%;
        background-color: green;
        background-color: var(--grey);
        border-bottom: 1px solid black;
        /* z-index: 1; */
    }

    .banner_el_logo_container {
        margin-right: 20px;
    }

    .banner_el_logo_text_L {
        margin-top: 25px;
    }

    .banner_el_logo_dots_container {
        height: 31px;
        margin: 25px 0 0 10px;
        padding: 0;
    }

    .banner_nav_mobile {
        display: unset;
    }

    .banner_nav_desktop {
        display: none;
    }

    .nav_hamburger_icon_container {
        display: flex;
        flex-direction: column;
        row-gap: 6px;
        margin-left: 20px;
        margin-top: 29px;

        cursor: pointer;
    }

    .nav_hamburger_icon_el {
        width: 31px;
        height: 4px;
        background-color: black;

        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

    .nav_hamburger_icon_active .nav_hamburger_icon_el:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav_hamburger_icon_active .nav_hamburger_icon_el:nth-child(2) {
        opacity: 0;
    }

    .nav_hamburger_icon_active .nav_hamburger_icon_el:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}
