/* CSS*/ 
@charset "UTF-8";
/* Inicio MENU */

nav#menu{
    width:100%;
    /* Background & effects */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-color: rgb(85, 50, 30);

}
        
ulul#nav>li:last-child>a::after {
    display: none;
}
        
ul#nav, ul#nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
        
}

ul#nav {
    /* Layout & positioning */
    position: relative;
    margin:0 auto; /* Centering the menu */
    width: 1000px;
    text-align: center;

}

ul#nav>li {

    line-height: 1;
    padding: 0;
    display: inline;
    position: relative;
    margin: 0 5px;
}

ul#nav>li>a {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    font-family: 'Crimson Text', serif;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(236, 193, 144);
    text-shadow: 1px 1px rgba(0, 0, 0, .1);
    background-color: rgb(85, 50, 30);
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    -ms-transition: color .3s linear;
    transition: color .3s linear;
}


ul#nav>li>a:hover, ul#nav>li:hover>a {
    color: rgb(211, 165, 113);
    background-color: rgb(129, 89, 65);
}


ul#nav>li>a::after {
    
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    right: -20px;
    top: 16px;
    display: block;
            
}

ul#nav ul {
    position: absolute;
    left: -9999px;
    padding-top: 10px;
    border-bottom: 1px solid rgb(211, 165, 113);
    opacity: 0;
    -webkit-transition: opacity .3s linear;
    -moz-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    -ms-transition: opacity .3s linear;
    transition: opacity .3s linear;
}


ul#nav>li:hover>ul {
    left: 0;
    opacity: 1;
    top: 20px;
}



ul#nav ul li:hover>ul {
    
    left: 150px;
    opacity: 1;
    top: -12px;
    padding-left: 12px;
    border-bottom: 0;
    box-shadow: none;


}

/* submenu */
        
ul#nav ul li { 
    
    display: block;
    position: relative;
    border-top: 1px solid rgb(211, 165, 113);
    border-left: 1px solid rgb(211, 165, 113);
    border-right: 1px solid rgb(211, 165, 113);
    width: 180px;
    text-align: justify;
    z-index: 9;
    background-color: rgb(85, 50, 30 ,1);
    box-shadow: 3px 4px 0 rgba(0, 0, 0, .1);
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -ms-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

ul#nav ul li a {
    font-family: 'Crimson Text', serif;
    font-size: 12px;
    text-decoration: none;
    display: block;
    padding: 7px 12px 7px 20px;
    color: rgb(236, 193, 144);
    background-color: rgb(85, 50, 30);
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;

}

ul#nav ul li:hover>a, ul#nav ul li a:hover {
    background-color: rgb(129, 89, 65);
            
}

ul#nav ul li:hover {
    background-color: rgb(85, 50, 30);
    
}

ul#nav ul ul li:last-child {
    border-bottom: 1px solid  rgb(211, 165, 113);
    
}

ul#nav ul ul li {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
    width: 200px;
}

ul#nav ul::after, ul#nav ul::before {
    content: "";
    display: block;
    z-index: 1;
    position: absolute;
    height: 9px;
    width: 9px;
    
}

ul#nav>li>ul::after {
    border: 1px solid rgb(211, 165, 113);
    background-color: rgb(85, 50, 30);
    border-right: 0;
    border-bottom: 0;
    top: 5px;
    left: 25px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    
}

ul#nav>li>ul::before {
    height: 1px;
    width: 12px;
    background-color: rgb(85, 50, 30);
    border-right: 0;
    border-bottom: 0;
    top: 10px;
    left: 24px;
    z-index: 99;
    
}

ul#nav ul ul::after {
    border: 1px solid rgb(211, 165, 113);
    background-color: rgb(85, 50, 30);
    border-right: 0;
    border-bottom: 0;
    top: 20px;
    left: 8px;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(45deg);
}

ul#nav ul ul::before {
    height: 10px;
    width: 1px;
    background-color: rgb(85, 50, 30);
    z-index: 99;
    top: 20px;
    left: 12px;
}
                

/*oculta menu mobile*/
#menu_mobile{
    display: none;
}
        
#close_menu {
    display: none;
}

#header_menu {
    display: none;
}