

/* estilos pré definidos */

/*.lang_select_box{
    position: absolute;
    left: 0;
    top: 50px;
    opacity: 0;
}*/

/*.lang_select_box span{
    display: block;
}

.lang_select_box_holder:hover .lang_select_box{
    opacity: 1 !important;
}*/

#menu_nav h1,
#menu_nav .h1{
  color: var(--white) !important;
}

#menu_nav h1:hover,
#menu_nav .h1:hover{
  color: var(--colorsecond) !important;
}

.desktopmenuholder .logo{
  display: block;
}

.desktopmenuholder.sticky .logo{
  display: none;
}

.desktopmenuholder .logo-sticky{
  display: none;
}

.desktopmenuholder.sticky .logo-sticky{
  display: block;
}

.home_menu.open_menu_div span,
.sticky .open_menu_div span{
  font-size: 25px;
  color: #FFF;
}

.open_menu_div span{
  font-size: 25px;
  color: var(--darkgrey);
}

.overlay_image_holder{
  position: absolute !important;
  right: 0;
  z-index: -1;
}
.overlay_image_holder img{ 
  max-width: 450px;
}

@media screen and (max-height: 965px) {
  .overlay_image_holder img{ 
    opacity: 0.3;
    filter: alpha(opacity=30); /* For IE8 and earlier */
  } 
}

.open_menu_div{
  cursor: pointer;
}

.close_holder{
  position: absolute !important;
  top: 50px;
  cursor: pointer;
  right: 50px;
}

.close_holder span{
  color: var(--white);
  font-size: 30px;
}

.close_holder:hover span{
  color: var(--colorfirst);
}

.selectpicker_language{
    background-color: transparent;
    border: 1px solid var(--grey);
}

.selectpicker_language option{
    background-color: #FFF;
    border: 1px solid var(--grey);
}

.desktopmenuholder {
    z-index: 99999;
    background-color: var(--white);
    height: 120px;
    position: fixed;
    width: 100%;
    left:0;
    right: 0;
    top:0;
    transition: height 0.5s ease-in-out;
}

/* .desktopmenuholder:after {
  content:"";
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(75, 75, 75, 0.1) 12%, rgb(173, 173, 173, 0.1) 47%, rgba(0, 0, 0, 0.1) 100%);
  display: block;
  height:5px;
  width: 100%;
  position: absolute;
  bottom: -5px;
} */

.desktopmenuholder_body_holder{
  height: 100%;
  transition: height 0.5s ease-in-out;
}

.desktopmenuholder{
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

.desktopmenuholder.sticky{
  height: 70px;
  background-color: rgba(70, 51, 38, .9);
  
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

.home_menu.top-menu .h5,
.home_menu.top-menu h5{
  color: var(--white);
}

.sticky .top-menu .h5,
.sticky .top-menu h5{
  color: var(--white) !important;
}

.top-menu .h5:hover,
.top-menu h5:hover,
.top-menu h5.active,
.top-menu .h5.active{
  color: var(--gold);
}

.desktopmenuholder.sticky .desktopmenuholder_body_holder{
  height: 70px;
}

/* .lang_select_box_holder .choose_lang{
  border-right: 1px solid var(--lightgrey);
} */

.choose_lang_holder{
  display: inline-block;
  position: relative;
}

/* .choose_lang:after {
  content:"";
  background: #fff;
  display: block;
  height:100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
} */

.choose_lang_holder:not(:last-child){
  border-right: solid 1px white;
}


/* .lang_select_box_holder .choose_lang:not(:last-child){
  border-right: 1px solid var(--lightgrey);
} */

.open_menu_div{
  margin-left: 10px;
}

.choose_lang{
  padding-left: 8px;
  padding-right: 8px;
}

.home_lang.h5.choose_lang{
color:white !important;
}

.h5.choose_lang:hover,
.h5.choose_lang.active{
  color: var(--gold) !important;
  font-weight: bolder;
}

/*MENU OVERLAY*/

.menu_nav{
  width: 0% !important;
}

.opened-menu{
  width: 35% !important;
}

@media (max-width: 1050px) {
  
  .opened-menu{
    width: 50% !important;
  }

}

@media (max-width: 620px) {
  
  .opened-menu{
    width: 100% !important;
  }

}



.menu_open_fa_ctr{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

 /* The Overlay (background) */
#menu_nav.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 0%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  right: 0;
  transform: scale(1);
  top: 0;
  bottom: 0;
  z-index: 999999999;
  overflow: hidden;  
  /* background-color: var(--gold);  */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.7s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

#menu_nav.overlay h1:hover,
#menu_nav.overlay .h1:hover,
#menu_nav.overlay .active .h1,
#menu_nav.overlay .active h1{
  color: var(--grey) !important;
  font-weight: bold !important;
}

.top-menu-container .top-menu{
  padding-left: 10px;
  padding-right: 10px;
}

.top-menu-container .top-menu .h5{
  line-height: 20px;
}

.top-menu-container .top-menu:not(:last-child){
  border-right: 1px solid var(--white);
}

/* When you mouse over the navigation links, change their color */
/* #menu_nav.overlay a:hover, .overlay a:focus,  {
  color: var(--colorfirst) !important;
  font-weight: bold !important;
} */

/* Position the content inside the overlay */
.overlay-content {
  text-align: center; /* Centered text/links */
  z-index: 999999;
}

.overlay-other-subd{
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-align: right;
}

.overlay-content div{
    width: 650px;
    max-width: 90%;
    margin: 0 auto;
}

.menu-lateral-sep-div{
  background-color: var(--white);
  width: 200px !important;
  max-width: 90%;
  height: 1px;
  text-align: left;
  margin: 0px !important;
  margin-top: 20px !important;
  margin-bottom: 10px !important;
}

/* The navigation links inside the overlay */
#menu_nav.overlay a {
  padding-top: 2px;
  text-decoration: none;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

.menu_nav_holder{
  position: relative;
  max-height: 90%;
  height: 90%;
  overflow: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--colorfirst);
}


/* Position the close button (top right corner) */
#menu_nav.overlay .closebtn {
  position: absolute;
  top: 120px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  #menu_nav.overlay a {font-size: 20px}
  #menu_nav.overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
} 

/*MENU OVERLAY*/

.menu_logo_icons{
    position: relative;
    font-size: 15px;
    color: #FFF;
    background-color: var(--colorfirst);
    border-radius:30px;
    width: 30px;
    height: 30px;
}

.bkgsquareheader{
    background-color: var(--darkgrey);
    color: #FFF;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px; 
}

.search_box,
.search_box_mobile{
    width: 250px;
    height: 30px;
    position: absolute;
    left: 30px;
    top: -1px;
    display: none;  
    color:#323232;
    border: 1px solid #323232;
    background-color: transparent;
    padding-right: 10px;
    padding-left: 10px;
}


@media (max-width: 395px) {
    .search_box,
.search_box_mobile{
        width: 200px;
    }
}

@media (max-width: 345px) {
    .search_box,
.search_box_mobile{
        width: 120px;
    }
}

@media (max-width: 295px) {
    .search_box,
.search_box_mobile{
        width: 100px;
    }
}

@media (max-width: 1125px) {
    .big-list_item p {
        padding: 0px 20px !important;
    }
}

.header_line_bar {
  border-top: 10px solid var(--colorfirst);
}
.BigList {
  background-image: url("../../../images/menu_bkg.png");
  background-repeat: repeat;
}
.menu_holder {
  position: relative;
  top: 0px;
  width: 100%;
  z-index: 99;
  padding-bottom: 0px;
  background-color: transparent;
}
.menu a {
  text-decoration: none;
}
.menu-social_button a {
  border: 1px solid var(--colorfirst);
  color: var(--colorfirst) !important;
  padding: 15px 20px;
}
.menu-social_button:hover a {
  color: #ffffff !important;
  background-color: var(--colorfirst);
}
.stickymenu {
  position: fixed !important;
  top: 0px;
  left: 0px;
}
#mHeight_filler {
  display: block !important;
}
/*
.menufilletbottom{
    background-color: @white_trans;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 12px;
    z-index: 3;
}
*/
/* FIM DA BASE DO MENU */
/* MENU GRANDE */
.big-list_item h2,
.big-list_item .h2 {
  color: #969696 !important;
}
.big-list_item h2:hover,
.big-list_item .h2:hover {
  color: var(--colorfirst) !important;
}
.big_menu {
  padding: 0px 0px;
}
.logo_holder {
  position: absolute;
  margin-top: 29px;
  border-radius: 15px;
  padding: 15px 0px;
}
.logo {
  /*width: 100%;*/
  display: block;
  max-width: 100%;
  height: auto;  
}
.lang_holder {
  position: absolute;
  bottom: 2px;
  text-align: right;
  right: 0%;
  top: 0px;
}
.lang {
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
  height: auto;
}
.menu-buttons_holder {
  background-color: #00b5ad;
  text-align: center;
}
.menu-buttons {
  padding-top: 33px;
  display: inline-block;
  list-style: none;
}
.menu-buttons li {
  float: left;
  display: block;
  text-align: left;
  position: relative;
  padding: 10px 20px;
  margin-bottom: -5px;
}
.menu-buttons li.client_area {
  background-color: #1787bf;
  border-radius: 10px;
}
.menu-buttons li.client_area p {
  color: #fff;
}
.sticky_holder {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}
.bopcoes_menu {
  position: absolute;
  display: none;
  top: 91%;
  right: 0px;
}

.big_list_holder {
  z-index: 9999;
  list-style: none;
  text-align: left;
  font-size: 0px;
  padding: 0;
  height: auto;
  margin-top: 0px;
  margin-bottom: 0px !important;
  
}
.big-list_item {
  display: inline-block;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.big-list_item:last-child {
  border-right: 0;
}
.big-list_item:last-child span {
  display: none;
}
.big_list_holder > li {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.big_list_holder > li:not(:last-child) {
  
}


.big-list_item p {
  padding: 0px 0px;
}

.big-list_item:hover,
.big-list_item.active,
.big-list_item:hover p,
.big-list_item.active p {
  z-index: 99999;
  color: var(--colorfirst) !important;
}
.submenu_holder {
  background-color: transparent ;  
  position: absolute;
/*  left: 0;*/
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-top: 25px;
}
.submenu_holder div {
  background-color: var(--verydarkgrey);
  padding: 10px 20px;
  border-radius: 5px;
}
.submenu_holder ul {
  list-style: none;
  padding: 0px;
}

.submenu_holder ul li{
  text-align: left;  
}

.submenu_holder ul li:not(:last-child) {
  
  border-bottom: 1px solid var(--white);
}
.submenu_holder ul li {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.submenu_holder ul li p {
  margin: 5px 0px;
}
.big-list_item.has-sub:hover .submenu_holder {
  opacity: 1;
  visibility: visible;
}
.submenu_holder li:hover p,
.small_list_link.active > li p {
  /*background-color: @colorfirst;*/
  color: var(--colorfirst) !important;
  text-transform: uppercase;
}
.menu-dot {
  margin: 0px 5px;
}
.big_list_holder > span:last-child {
  display: none;
}
.menu_social:hover {
  color: var(--colorfirst);
}
.small-text,
.small-text p {
  font-size: 12px;
}
.menu_comunities {
  padding: 10px 0px;
}
.menu_comunities a:hover {
  font-weight: 700;
}
.inferior_menu {
  text-align: right;
  font-size: inherit;
  margin: 0px;
}
.inferior_menu .h5 {
  color: white !important;
  font-size: 14px;
}
.inferior_menu li {
  margin-bottom: -4px;
}
.inferior_menu .big-list_item:hover,
.inferior_menu .big-list_item.active,
.inferior_menu .big-list_item:hover p,
.inferior_menu .big-list_item.active p {
  font-weight: bold !important;
  color: var(--colorfirst) !important;
}
.lang_btn {
  height: 30px;
  width: 30px;
  border: 1px solid var(--colorfirst);
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.lang_btn:hover {
  background-color: transparent;
  color: var(--colorfirst) !important;
}
.lang_btn span {
  position: absolute;
}
/* FIM DE MENU GRANDE */


@media (max-width: 1129px) {
    
    .big-list_item p{
        font-size: 14px !important;
        padding: 0px 10px !important;
    }
    
    .big-list_item {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
}


@media (max-width: 993px) {
    
    .big-list_item p{
        font-size: 14px !important;
        padding: 0px 5px !important;
    }
    
    .big-list_item {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    
}




@media (max-width: 0px) {
    .desktopmenuholder{
        display: none;
    }
    
    .landing_entry_socials{
        display: none;
    }
}


#bars_side_menu{
  display: none;
}


.sidemenu_links{
  color: white !important;
  font-size: 20px !important;
  line-height: 40px !important;
}

.top-menu .h5,
.top-menu h5{
  font-size: 16px !important;
}