
/* 
    Created on : 24/11/2022, 10:32:41
    Author     : BRUNO
*/
menu{
 width: 660px;
 background-color: #194574;
 float: right;
 
}
label[for='menu-check'], #menu-check{
    display: none;
    
}

menu ul{
  width: 100%;
}
menu ul li{
    line-height: 80px;
    width: 100px;
    
    text-align: center;
    display: inline-flex;
    
    
}
menu ul li .submenu{
     width: 100%;
     padding: 30px 0;
     background-color: #194574;
     color: #fff;
     border: none;
}
header span{
    padding: 0 50px;
}
header span a{
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 3%;
    top: 5%;
}
.submenu:hover{
    background-color: #009999;
}
@media only screen and (max-width: 800px) {
label[for='menu-check']{
    display: block;
    font-size: 45px;
    position: absolute;
    left: 5%;
    top: 2%;
}
menu{
    width: 50%;
    position: absolute;
    top: 86px;
    display: none;
    z-index: 2;
}
#menu-check:checked ~ menu{
    display: block;
}
menu ul{
  width: 100%;
  position: relative;
  top: 0;
}
menu ul li{
    
    width: 100%;
    
    text-align: center;
    display: block;
    border: 1px #fff solid;
    box-sizing: border-box;
    
}
 }
@media only screen and (max-width: 600px) {
 
menu{
    width: 80%;
    
}
header span{
    padding: 0 50px;
}
header span a{
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 8%;
    top: 5%;
}


 
 }
 @media only screen and (max-width: 400px) {
 menu{
    width: 97%;
    top: 88px;
}
 header span{
    padding: 0 50px;
}
header span a{
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 8%;
    top: 5%;
}
 }
 