.logo {
    display: block;
    width: 100%;
    max-width: 202px;
    height: 60px;
    text-indent: -99999px;
    background: url('../img/la-bombe.png') no-repeat scroll center center;
}

header {
    position: relative;
    padding: 17px 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    z-index: 10;
}

header nav {
    display: block;
    position: absolute;
    width: 100%;
    height: 48px;
    padding: 0 65px;
    bottom: -48px;
    z-index: 10;   
}

.menu {
    position: relative;
    background-color: #deb079;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0,.16);
    max-width: 1030px;
    margin: 0 auto;
    list-style: none;
    justify-content: space-around;
}

.menu::after,
.menu::before {
    content: "";
    display: block;
    position: absolute;
    width: 65px;
    height: 48px;
}
.menu::before {
    background: url('../img/menu-canto-esq.png') no-repeat scroll 0 0;
    left: -65px;
    top: 0;
}
.menu::after {
    background: url('../img/menu-canto-dir.png') no-repeat scroll 0 0;
    right: -65px;
    top: 0;
}

.menu li,
.menu li a {height: 38px;}
.desk .menu li {width: 100%;justify-content: space-around;}


.menu a {
    font-family: 'grenale2w03-nmlbdregular';
    font-size: 14px;    
    text-align: center;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
}

.menu a:hover {color: #f4f4f4;}

.menu .submenu {flex-direction: column;position: relative;}

.menu .submenu > ul {
    position: absolute;
    width: 160px;
    top: 38px;
    background-color: #EBC495;
    text-align: center;
    padding: 0 10px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out;
    z-index: -10;
}

.menu li:hover > ul {z-index: 0;opacity: 1;}


.desk .submenu li:first-child {
    border-bottom: 2px solid #bf8848;
}
.mobo .submenu > a {text-align: left;}
.mobo .menu > li {width: 100%;justify-content: flex-end;}
.mobo .menu > li:nth-child(2) {
    padding-top: 7px;
    flex-basis: 7%;
}
.mobo img {
    width: 24px;
    height: 24px; 
}
.mobo .submenu ul {display: none;} 
.mobo .submenu > ul {
    width: 100%;
    padding-top: 10px;
    opacity: 1;
}
.mobo .menu .submenu {
    flex-basis: 93%;
}
.mobo .submenu li:last-child {border-bottom: none;}
.mobo .submenu li {
    border-bottom: 2px solid #bf8848;
}