*{
    margin: 0;
    padding: 0;
}
header, nav{
    display: block;
}
/* Define menu width and heigth: 100% and fixed */
header{
    background: white;
    height:60px;
    position: relative;
    width: 100%;
    z-index: 2;
}
/* Float logo right */
#logo{
    background: url(../images/adoff_logo.png) no-repeat 0 0;
	display: block;
	float: right;
    margin: 5px 0 0;
    width: 121px;
    height: 31px;
    text-indent: -9999px;
}

/* Float nav with id #menu left*/
#menu{float: left;}   


    /* Define default style for the tag UL */
    #menu ul{
        list-style: none;
        font-size: 12px;
	}
        
        /* Center text and style */
        #menu li{
           display: block;
           float: left;
           text-transform: uppercase;
		   left: 0px;
		  }
       
            /* Link Style */
            #menu li a{
                display: block;
                color: black;
                text-decoration: none;
                height: 60px;
                line-height: 60px;
                padding: 0 26px 0 0;
				   }
            #menu li a:hover{
                background: none;
                color: #999999;
            }
    
    /* Style #nav-mobile hidden */
    #nav-mobile{
        display: none;
       /* background: url(images/nav.png) no-repeat center center; */
        float: left;
        width: 30px;
        height: 30px;
        position: absolute;
        left: 20px;
        top: 20px;
        opacity: 1;
		text-decoration: none;
		color: black;
	}   
        /* Add class to #nav-mobile, after drop down menu*/
        #nav-mobile.nav-active{
            opacity: 1;
        }

/* Content */
#content{
    width: 80%;
    margin: 60px 10%;
    text-align: left;
    overflow: hidden;
	
}
    h2{
        font-size: 50px;
        font-weight: 600;
        text-transform: uppercase;
        color: #624c3f;
    }
/*
    MEDIA QUERY
*/
@media only screen and (max-width: 768px) {
        
    h2{font-size: 40px;}
    
    /* show #nav-mobile */
    #nav-mobile{ display: block;}

    /* Fix nav to 100% width and no float  */
    #menu{
        width: 100%;
        float: none;
        padding-top: 60px;
    }
        /* Convert links into vertical menu */
        #menu ul{
            -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            -moz-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            box-shadow: 0 1px 2px rgba(0,0,0,.5);
            max-height: 0;
            overflow: hidden;
        }
            /* Style for the links */
            #menu li{
                background: #FFFFFF;
                border-bottom: 1px solid #282b30;
                float: none;
            }

            /* Hide fram of last item in the menu */
            #menu li:last-child{ border-bottom: 0;}
                #menu li a{
                    padding: 15px 0;
                    height: auto;
                    line-height: normal;
                }
                #menu li a:hover{background:none}

        /* Animation for vertical menu */
        #menu ul.open-menu{
            max-height: 400px;
            -webkit-transition: max-height .4s;
            -moz-transition: max-height .4s;
            -ms-transition: max-height .4s;
            -o-transition: max-height .4s;
            transition: max-height .4s;
        }
}