*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

body{
    background-color: #FFBA00;
    font-family: font-family: 'Lato', sans-serif;
    
}

.containerMenu{
    width: 100%;
    margin: 0 auto;
    background: url('../img/menu2.jpg') no-repeat;
    color: #fff;
    

}

header{
    box-shadow: 0px 1px 15px #414142;
    
}

header h1{
    float: left;
}

header h1 a{
    display: block;
    width: 200px;
    height: 50px;
    margin: 5px;
    /*background: url('../img/logo.png') top left no-repeat;*/
    background-size: 100%;
    font-size: 16px;
    text-align: center;
    color: #fff !important;
    line-height: 50px;
}

header nav ul li{
    float: right;
    color: #fff;
    padding-right:20px;
    height: 60px;
    line-height: 60px;
    font-weight: bold;
  list-style-type: none;
    border-bottom: 3px solid #fff;
}

header nav ul li a{
    display: block;
    font-size: 1.4em;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    padding:0 10px 0 10px;
}


header nav li a:hover{
    background: #414142;
    color: #fff;
}

.clearfix:after{
    content:'';
    display: block;
    clear: both;
}

.hamburger{
    display: none;
    background: #414142;
    color: #fff;
    padding: 10px 15px;
    float: right;
    font-size: 1.4em;
    text-decoration: none;
}

.hamburger:before { content:'\2630'; }

header nav ul,
header nav ul.visible{
    display: block;
    width: 100%;
}



@media screen and (max-width: 768px) {
    .containerMenu{
        width: 100%;
        
    }

    header nav{
        width: 100%;
    }

    header nav ul li{
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0;
    }

    header nav ul li a{
        text-align: center;
        font-size: 1.3em;
    }

    header nav ul{
        display: none;  
    }

    .hamburger{
        display: block;
        position: absolute;
        top: 15px;
        right: 10px;
        background-color: #fff;
        font-size: 62.5%;
        
    }
}