    /* header */

    nav {
        /* style */
        background: #000;
        border: 1px solid #FF9F0E;
        
        /*layout*/
        height: 70px;

        /* flex properties */
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;

    }

    /* navigation bar elements */

            #EDU {
                /* layout */

                margin-left: 35px;
                display: flex;
                /* width: 121px; */
                height: 46px;

                /* text */
                font-size: 28px;
                font-weight: 500;
            }

            .MenuItems {
                /* layout */

                /* width: 179px; */
                height: 33px;
                margin: 30px;

                /* text */
                font-size: 15px;
                font-weight:400;
            }

            #Language {
                /* layout */
                position: relative;

                /* width: 179px; */
                margin-right: 35px;
                height: 33px;

                /* text */
                font-size: 20px;
                font-weight: 400;

            }

            #Language::after {
                content: '';
                position: absolute;
                left:0;
                bottom: -6px;
                width: 100%;
                height: 2px;
                background: white;
                border-radius: 5px;
                transform: scaleX(0);
                transition: transform .5s;
            }

            #Language:hover {
                color:#FFF;
            }

            #Language:hover::after {
                transform: scaleX(1);
            }