/* mobil */

#mobileNav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgb(0 0 0 / 83%);
}

    .logo_mobile{
        width: 60px;
        height: 60px;    
    }
    .navLinks_mobile{
        color: white;
        display: flex;
        flex-direction: row;
        align-items: center;
    }        
        .navLinks_mobile a{
            color: white;
            text-decoration: none;
            font-size: 1rem;
        }

        .navLinks_mobile .sign_button{
            border: solid 1px white;
            padding: 5px 20px;
            border-radius: 5px;
            margin-right: 10px;
        }

            .navLinks_mobile #sign_in{                
                background: var(--new_blue);
                border: none;
            }

        #burger{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            transition: 0.4s;
            cursor: pointer;
            padding: 5px 10px;
        }

            #burger div{
                width: 25px;
                height: 4px;
                background: white;
                margin-bottom: 5px;
            }

            .active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
              }
              
              .active .line2 {
                opacity: 0;
              }
              
              .active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
              }


/* large */
#globalNav{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    display: none;
    background: rgb(0 0 0 / 82%);
    padding: 20px 0;
}
    .logo{
        display: none;
    }

    .navLinks{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px;
    }

        .navLinks a{
            color: white;
            text-decoration: none;
            font-size: 1rem;
            padding: 10px;
            transition: 0.4s;
            margin-bottom: 5px;
        }

            .navLinks a:hover{ 
                background: var(--new_blue);
            }

            .navLinks .sign_button{
                border: solid 1px white;
                padding: 10px 20px;
                border-radius: 5px;
            }

            .navLinks #sign_in{                
                background: var(--new_blue);
                border: none;
            }


@media only screen and (min-width:950px){

    #mobileNav{
        display: none;
    }

    #globalNav{
        display: flex;
        height: auto;
        justify-content: space-between;
        padding:  20px 20px;
        top: 0;
        background: rgb(0 0 0 / 50%);
        padding: 0 0;
    }

    .logo{
        display: inline;
        max-width: 100px;
        max-height: 100px;
    }

    .navLinks{
        flex-direction: row;
        align-items: center;
        width: auto;
        padding: 10px;
    }

    .navLinks a{
        margin-right: 20px;
    }

    .navLinks .sign_button{
        border: solid 1px white;
        padding: 10px 30px;
        border-radius: 5px;
    }

}



@media only screen and (min-width:1024px){
    #globalNav{
        padding:  20px 40px;
    }
}


@media only screen and (min-width:1300px){
    #globalNav{
        padding:  20px 60px;
    }
}