/* BASE DO MENU */

.menu_holder{
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 10;
    background-color: white;
}
.menu{
    min-height: 100px;
    overflow:auto;
}

.menu_bline{
    height:15px;
    background-color: #007bbe;
    width:100%;
}

/* FIM DA BASE DO MENU */



/* MENU GRANDE */

.big_menu{
    position: relative;
    padding:25px 0px;
}

.logo{
    width: 100%;
    height: auto;
    
    display: block;
    max-width: 100%;
    height: auto;
}

.social_holder{
    text-align: right;
}
.social{
    display: inline-block;
    cursor:pointer;
    
    max-width: 100%;
    height: auto;
}

.menu-buttons_holder{
    text-align: right;
}
.menu-buttons{
    /*display: inline-block;*/
    list-style: none;
    text-align:center;
    display: table;
    table-layout: fixed;
    
} 
.menu-buttons li{
    /* float: left; */
    /* display: block; */
    display: inline-block;
    text-align: center;
    position: relative;
    padding: 10px 20px;
}
.menu-buttons li p{
    margin:0px 0px;
    color: #646464;
}

.menu-buttons li:hover,
.menu-buttons li.active{
    color: #fff;
    background-color: #1787bf;
    border-radius: 10px;
}


.menu-buttons li:hover p,
.menu-buttons li.active p{
    color: #fff;
}

.menu-buttons li.client_area{
    background-color: #1787bf;
    border-radius: 10px;
}
.menu-buttons li.client_area p{
    color: #fff;
}

/* FIM DE MENU GRANDE */


/* MENU PEQUENO */

.small_menu{
    display:none;
}

.slogo_holder{
    padding-top: 15px;
}

.ssocial_holder{
    padding-top: 24px;
    text-align: right;
}
.ssocial{
    display: inline-block;
    cursor:pointer;
    
    max-width: 100%;
    height: auto;
    
    margin-top: -6px;
}

.button_small_menu{
    border: 1px solid #AECAE1;
    border-radius: 6px;
    width:50px;
    height:50px;
    color:#1787bf;
    font-size: 20px;
}

.button_small_menu:hover{
    border: 1px solid #1787bf;
    background-color: #1787bf;
    border-radius: 6px;
    width:50px;
    height:50px;
    color:#fff;
}

.sopcoes_menu{
    display:none;
    width: 100%;
}

.small_list_holder{
    text-align: right;
    list-style: none;
    width: 100%;
}
.small_list_item{
    padding: 20px 0px;
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
}
.small_list_link:last-child li{
    border: none;
}

.small_list_item.client_area,
.small_list_item.client_area p{
    background-color: #1787bf;
    color: #fff !important;
}

.small_list_item.client_area:hover p, .small_list_item.client_area.active p{
    color: #fff !important;
}

.small_list_item:hover p, .small_list_item.active p{
    color: #1787bf !important;
}

/* FIM DE MENU PEQUENO */


@media (max-width:1421px) { 
    #mHeight_filler{
        display:none;
    }

    .menu_holder{
        position: relative;
    }

    .big_menu{
        display:none !important;
    }
    
    .small_menu{
        display:block;
    }
    
}   
@media screen and (-webkit-min-device-pixel-ratio:0){
    .menu-buttons{
        position:absolute !important;
    }
    .social{
        position:absolute !important;
        right:0px;
    }

}