/* 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;
}*/

.close_holder:hover h3,
.close_holder:hover .h3{
  color: var(--darkgrey) !important;
  font-weight: bold !important;
}

.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;
}

.open_menu_div{
  font-size: 30px;
  color: var(--lightgrey);
}

.close_holder{
  /* position: absolute !important; */
  padding-bottom: 50px;
  cursor: pointer;
  text-align: center;
}

.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: #FFF;
    height: 170px;
    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.sticky{
  height: 100px;
  
}

.desktopmenuholder .logo-sticky{
  display: none;
  max-width:100%;
  max-height: 90px;
  height:90px;
  width: auto;
}
.desktopmenuholder .logo{
  display: block;
}


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

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


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

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

.h3.choose_lang{
  color: var(--lightgrey) !important;
}

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

/*MENU OVERLAY*/

.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: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  transform: scale(1);
  top: 0;
  z-index: 999999999;
  overflow: hidden;  
  background-color: rgba(255,255,255); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

#menu_nav.overlay h3:hover{
  color: var(--darkgrey) !important;
  font-weight: bold !important;
}

/* When you mouse over the navigation links, change their color */
#menu_nav.overlay a:hover, .overlay a:focus {
  color: var(--darkgrey) !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;
}

.overlay-content div:not(:last-child){
    border-bottom: 1px solid #FFF;
}

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



/* 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: 200px;
    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: 150px;
    }
}

@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;
    }
}