*{
    margin: 0;
    padding: 0;

}

body{
    background: #FFFFFA;
}

header{
    width: 100%;
}

header nav{
    width: 100%;
    max-width: 100%;
    /* margin: 20px auto; */
    background: #623402;
    position:sticky;
    
}

.menu_bar{
    display: none;
}

header nav ul{
    overflow: hidden;
    list-style: none;
    background: #623402;
}

header nav ul li {
    float: left;
}

header nav ul li a{
    color: #fff;
    padding: 20px;
    display: block;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header nav ul li i{
    margin-right: 10px;

}

header nav ul li a{
    margin-right: 3px;
}

header nav ul li a:hover{
    background: #c17504;
}

section{
    padding: 20px;
}


@media screen and (max-width:1252px){
    header nav{
        width: 80%;
        height: 100%;
        left: -100%;
        margin: 0;
        position: fixed;
    }
    header nav ul li {
        display: block;
        float: none;
        border-bottom: 1px solid powderblue;
    }

    .menu_bar{
        display: block;
        width: 100%;
        background: #ccc;
        

    }

    .menu_bar .bt-menu{
        display: block;
        padding: 20px;
        background: #642f22;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 25px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        z-index: 500;
    }

    /* .menu_bar i{
        float: right;
        font-size: 40px;
    } */
}

.logo-colda{
    height: 50px;
    float: left;
    padding-right: 60px;
    margin-left: 7px;
    padding-top: 20px;
}

@media screen and (max-width:1252px){
    .logo-uesca{
        float: none;
    }
}

@media screen and (max-width:1252px){
    header nav ul{
        margin-top: 70px;
    }
}


/* SUB-MENU */

.subMenu{
    display: flex;
    flex-direction: column;
    display: none !important;
    margin-top: 0 !important;
}
.containerMenu__item:hover > .subMenu{
    display: flex !important;
}
@media screen and (min-width: 1253px){
    .subMenu{
        position: absolute;
        padding: 0 !important;
    }
}