<style type="text/css">
@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Muli:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Open+Sans:300,400,600,700');
@import url("https://fonts.googleapis.com/css2?family=Monda:wght@400;700&display=swap");*/


/* CSS Document */


/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Home
4. Header
	4.1 Logo
	4.2 Main Navigation
	4.3 Phone Home
	4.4 Hamburger
5. Menu
6. Search Box
	6.1 Search Box Title
	6.2 Search Box Arrow
	6.3 Search Form
7. Section Title
8. Featured
9. Testimonials
10. Workflow
11. parceiros
12. Call to Action 1
13. Newsletter
14. Footer
	14.1 Footer - About
	14.2 Footer - Useful Links
	14.3 Footer - Contact Form
	14.4 Footer - Contact Info
15. Credits


******************************/

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	box-sizing: border-box;
}

body
{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 400;
	background-color: ;/*#f6f6f6*/
	color: ;/*#5b5b5b*/

}

html, body {
	height: 100%; /* necessary */
}

i.fa, i.fab { font-style: normal;} 

a.link:link, a.link:active, a.link:visited
{
	color: ;
}
a.link:hover
{
	color: ;
	font-weight: bold;
}


div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	color: ;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: ;/*#fd784f;*/
}
p a:hover
{
	color: ;
}
p a:hover::after
{
	opacity: 0.2;
}

.footer p a:active
{
	position: relative;
	color: ;
}
.footer p a:hover
{
	color: ;
}
.footer p a:hover::after
{
	opacity: 0.2;
}
/*::selection
{
	
}
p::selection
{
	
}*/
input::selection{
	background-color: #d2d2d2;
	color: #000;
}

input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #cccccc !important;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #cccccc !important;
	opacity:  1;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #cccccc !important;
	opacity:  1;
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #cccccc !important;
}
input::-ms-input-placeholder { /* Microsoft Edge */
	color: #cccccc !important;
}
input::placeholder { /* Most modern browsers support this now. */
	color: #cccccc !important;
}

h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
/*h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}*/
@keyframes zoom {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand')";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand');
  }
  to {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
  }
}

/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1.5);}
  50% {transform: scale(1.3);}
  100% {transform: scale(1);}
}
@keyframes zoomout {
    0% {transform: scale(1);}
  50% {transform: scale(1.3);}
  100% {transform: scale(1);}
}/*End of Zoom out Keyframes */

.container95{
	width: 95%; 
	margin: 0 auto;
}
.form-control
{
	color: #5b5b5b; /* $back_secundario;*/
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.nopadding
{
	padding: 0px !important;
}

/*********************************
3. Home
*********************************/
/*.home
{
	width: 100%;
	height: 100vh;
}*/


.home_slider_container
{
	width: 100%;
	height: 100%;
}
.home_slider
{
	width: 100%;
	height: 100%;
}
.home_slider .home_slider_item
{
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.home_sliderV{
	width: 100vw;
	height: 100vh;
}
.home_sliderV .home_slider_item/******** */
{
		width: 100vw;
		height: 100vh;
		overflow: hidden;
}

.home_slider_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: repeat;
 	background-size: cover;
	background-position: center center;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	-moz-transform-origin: center center;
	transform-origin: center center;
	-webkit-animation: zoomout 10s ease-in infinite;
	animation: zoomout 10s ease-in infinite;
	transition: all .8s ease-in-out;
	overflow: hidden;
}


.home_slider_content_container
{
	width: 100%;
	height: 100%;
	/*padding-top: calc(50vh - 25px);*/
			padding-top: calc(50vh - 65px);
		padding-left: 30px;
	padding-right: 30px;
	z-index: 3;
}

.home_slider_content_container_video{
	/*width: 100vw;
	height: 100vh;
	object-fit:cover;*/
	position: relative;
	display: -webkit-box;
	display: flex;
	width: 100vw;
	height: 100vh;
	background: ;

}

.home_slider_content_container_video iframe,
.home_slider_content_container_video object,
.home_slider_content_container_video a.owl-video,
.home_slider_content_container_video embed {
  position: absolute;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  /*width: 100vw;
  height: 100vh;*/
  pointer-events: none;
}

@media only screen and (max-width: 575px){
	.home_slider  .home_slider_item{
		height: 100%;
	}
	.home_sliderV  .home_slider_item{
		height: 100%;
	}
			.home_slider_content_container
		{
			padding-top: 0vh;
		}
		.home_slider_content_video {
			padding-top: 5vh;
		}
		.home_slider_content_video .home_slider_content{
			padding-top: 20vh;
		}
	
	.home
	{
				width: 100%;
		height: 50vh;
			}
			.home_slider_background{
			height: 50vh;
		}
	
	.home_slider_content_container_video{
		height: 100%;
	}
}


/*
.home_slider_content
{
	width: 100%;
	max-width: 900px;
	height: 100%;
	margin: 0 auto;
	
}*/
.home_slider_content h3
{
	font-size: 42px;
	font-weight: 600;
	color: ;
}
.home_slider_nav_l
{
	position: absolute;
	top: 53.9%;
	left: 0;
	width: 60px;
	height: 64px;
	background: ;
	z-index: 10;
	cursor: pointer;
}
.home_slider_nav_l::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: ; /* #0e1d41 */
	content: '';
	z-index: -1;
	-webkit-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-moz-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-ms-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-o-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	transition: all 600ms cubic-bezier(.25,.62,.27,.99);
}

.home_slider_nav_r
{
	position: absolute;
	top: 53.9%;
	right: 0;
	width: 60px;
	height: 64px;
	background: ;
	z-index: 10;
	cursor: pointer;
}
.home_slider_nav_r::after
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: ;
	content: '';
	z-index: -1;
	-webkit-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-moz-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-ms-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	-o-transition: all 600ms cubic-bezier(.25,.62,.27,.99);
	transition: all 600ms cubic-bezier(.25,.62,.27,.99);
}

.home_slider_nav_l:hover::after, .home_slider_nav_r:hover::after
{
	width: 0px;
}
.home_slider_nav_l img, .home_slider_nav_r img
{
	width: 12px;
	height: 13px;
}

.home_slider_nav_l i, .home_slider_nav_r i
{
	font-size: 2rem;
	color: ;
	z-index: 1;
}
.home_slider_nav_l span, .home_slider_nav_r span{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.home_slider_nav_left, .home_slider_nav_right
{
	padding-right: 20px;
}
.home_slider_nav_right{
	padding-left: 20px;
}

.flipInX
{
	animation-delay: 600ms;
}

/*********************************
4. Header
*********************************/

.header
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*height: 150px;*/
	border-bottom: solid 0px #aeaead;
	z-index: 15;
}
.header.scrolled
{
	height: 120px;
	background: ;
	border: none;
}
.header_container
{
	width: 100%;
	height: 150px;
}
.header.scrolled .header_container
{
	height: 120px;
}

/*********************************
4.1 Logo
*********************************/
.logoFundo{
	background: ;
}
.header-area .logo_container
{
	display: block;
	margin-top: 15px;
	position: absolute;/****/
	background-color: ;
	padding: 5px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	z-index: 10;

}

.header-area .logo_container .logo img
{
	display: block;
	max-width: 400px;
	max-height: 280px;
	
}

@media only screen and (max-width: 1200px){
	.header-area .logo_container .logo img
	{
		display: block;
		max-width: 300px;
		max-height: 280px;
		
	}
}


.header-area .logo
{
	text-align: center;
}
/*.header-area .logo span
{
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-top: 1px;
}*/

/*********************************
4.2 Main Navigation
*********************************/
/*
.main_nav
{
	margin-left: auto;
	margin-right: 112px;
}
.main_nav_item
{
	display: inline-block;
	margin-right: 40px;
}
.main_nav_item:last-child
{
	margin-right: 0px;
}
.main_nav_item a
{
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav_item a:hover
{
	color: // echo $back_secundario;;
}*/


/*********************************
5. Menu
*********************************/
/*
.menu
{
	display: block;
	width: 100%;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	background: #FFFFFF;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.menu.active
{
	opacity: 1;
	visibility: visible;
}
.menu_item
{
	border-bottom: solid 1px #f2f2f2;
}
.menu_item:last-child
{
	border: none;
}
.menu_item:hover
{
	background: #f2f2f2;
}
.menu_item a
{
	display: block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: //echo $back_primario;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 60px;
}*/


/*********************************
REDES SOCIAIS
*********************************/
.social_topo{
	position: absolute;
	top: 10px;
	right: 10px;
}

.social_topo .item{
	font-size: 20px;
	display: inline-block;
	margin-left: 12px;
}

.social_topo .item a, .social_topo .item a:link, .social_topo .item a:hover, .social_topo .item a:active, .social_topo .item a:visited{
	color: ;
}

@media only screen and (max-width: 991px){
	.social_topo{
		display: none;
	}
}


/*********************************
6. Search Box
*********************************/
#form_busca_site{
	z-index: 1;
}
.search_box
{
	width: 100%;
	height: auto;
	z-index: 10;
}
.search_box_outer
{
		margin-top: 81px;
		width: 100%;
	
}
.search_box_inner
{
	width: 100%;
	background: ;
	padding-top: 32px;
	padding-bottom: 25px;
	display: block;
}

/*******************************
BUSCAR CODIGO
******************************/
/*-------------------------------------*/
.search:before, .search:after{
      content:"";
      display:table;
}
.search:after { clear:both;}
.search { zoom:1;}
/*-------------------------------------*/ 
.form_cod {
		width: 170px;
        padding: 4px;
        margin: 5px auto 5px auto;
        background: rgba(0,0,0,.2);
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -moz-box-shadow: 0 1px 1px rgba(0,0,0,.4) inset, 0 1px 0 rgba(255,255,255,.2);
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.4) inset, 0 1px 0 rgba(255,255,255,.2);
        box-shadow: 0 1px 1px rgba(0,0,0,.4) inset, 0 1px 0 rgba(255,255,255,.2);
}   
.form_cod input {
        width: 124px;
        height: 25px;
        padding: 8px 8px;
        float: left;
        font: bold 12px 'lucida sans', 'trebuchet MS', 'Tahoma';
        border: 0;
        background: rgba(255,255,255,0);
        -moz-border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px;   
        color: #fff;   
}    
.form_cod input:focus {
        outline: 0;
        background: rgba(255,255,255,0);
        -moz-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
        -webkit-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
        box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
}
.form_cod input::-webkit-input-placeholder {
       color: #fff;
       font-weight: normal;
       font-style: italic;
}   
.form_cod input:-moz-placeholder {
        color: #fff;
        font-weight: normal;
        font-style: italic;
}
.form_cod input:-ms-input-placeholder {
        color: #fff;
        font-weight: normal;
        font-style: italic;
        background: rgba(255,255,255,0);
}

.form_cod button {
        overflow: visible;
        position: relative;
        float: right;
        border: 0;
        padding: 0;
        cursor: pointer;
        height: 25px;
        width: 30px;
        font: bold italic 9px/10px 'lucida sans', 'trebuchet MS', 'Tahoma';
        color: ;
        text-transform: uppercase;
        background: ;
        -moz-border-radius: 0 3px 3px 0;
        -webkit-border-radius: 0 3px 3px 0;
        border-radius: 0 3px 3px 0;      
        text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
}
.form_cod button:hover{   
        background: ;
}   
.form_cod button:active,
.form_cod button:focus{   
        background: ;
} 
.form_cod button:before {
        content: '';
        position: absolute;
        border-width: 6px 6px 6px 0;
        border-style: solid solid solid none;
        border-color: transparent  transparent;
        top: 5.9px;
        left: -4.80px;
        z-index: -1;
}

.form_cod button span{
	background-color: transparent;
	display: block;
	position: absolute;
	top: 3.5px;
	left: -7px;
	z-index: 0;
}

.form_cod button:hover:before {
        border-right-color: ;
}
.form_cod button:focus:before{
        border-right-color: ;
}    
.form_cod button::-moz-focus-inner {
        border: 0;
        padding: 0;
}

/*********************************
6.1 Search Box Title
*********************************/

.search_box_title_ref
{
	position: absolute;
	width: 33.97%;
	height: 51px;
	bottom: 100%;
	right: 0px;
}
.search_box_title_ref2
{
	width: 90%;
	height: 51px;
	bottom: 100%;
	right: 0px;
}


.search_box_title_inner_ref
{
	width: 100%;
	height: 100%;

}

@media only screen and (max-width: 992px) {
	.search_box_title_ref
	{
		width: 50%;
		top: 5px;
		right: 10px !important;
		padding-bottom: 35px;
	}
}
.search_box_title_inner_ref span
{
	font-family: 'Open Sans','Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 51px;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-left: 7%;
}
.search_box_title_inner_ref ::-webkit-input-placeholder {
  color: #ffffff !important;
  font-family: 'Open Sans';
}

.search_box_title_inner_ref :-moz-placeholder {
  color: #ffffff !important;
  font-family: 'Open Sans';
}

.search_box_title
{
	position: absolute;
	bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 33.97%;
	height: 51px;
	z-index: 11;
}
.search_box_title2
{
	bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 33.97%;
	height: 51px;
	z-index: 11;
}
@media only screen and (min-width: 992px){
	.search_box_title2{
		display: none;
		visibility: hidden;
	}
}
.search_box_title_inner
{
	width: 100%;
	height: 100%;
	background: ;
	cursor: pointer;
}
.search_box_title_icon
{
	position: absolute;
	left: 0;
	top: 0;
	width: 51px;
	height: 51px;
	background: ;
	z-index: 11;
}
.search_box_title_icon i
{
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
	color: ;
	font-size: 1.3rem;
}
.search_box_title_icon img
{
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
}
.search_box_title_inner span
{
	font-family: 'Open Sans','Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 51px;
	color: ;
	text-transform: uppercase;
	margin-left: 7%;
	z-index: 11;
}



/*novo form search mobile*/
.search_mob {
  width: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.searchTerm {
	width: 80%;
	border: 3px solid ;
	padding: 5px;
	height: 36px;
	border-radius: 5px 0 0 5px;
	outline: none;
	color: #9DBFAF;
	margin-left: 10px;
}

.searchTerm:focus{
	color: #555;
}

.searchButton {
	width: 40px;
	height: 36px;
	border: 1px solid ;
	background: ;
	text-align: center;
	color: #fff;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	font-size: 20px;
}




/*********************************
6.3 Search Form
*********************************/

.search_form
{
	width: 100%;
	clear: both;
	overflow: hidden;
}
.search_box_container
{	
	position: relative;
	width: 100%;
	/*padding-left: 20px;*/
	padding-right: 20px;
	display: inline-block;
	top: 0;
	float: right;
}
.search_box_container:nth-child(2)
{
	margin-top: 6px;
}
.dropdown_row
{
	display: block;
	width: 100%;
}
.dropdown_item
{
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
}
.dropdown_item_5
{
	width: calc((100% - 200px) / 6);
}
.dropdown_item_5a
{
	/*width: calc((100% - 238px) / 6);*/
	width: calc((100% - 48px) / 6);
}
.dropdown_item_6a
{
	/*width: calc((100% - 238px) / 6);*/
	width: calc((100% - 308px) / 6);
}
.dropdown_item_6
{
	/*width: calc((100% - 238px) / 6);*/
	width: calc((100% - 28px) / 6);
}

.dropdown_item_7
{
	/*width: calc((100% - 238px) / 6);*/
	margin-left: 25px;
	width: calc((100% - 0px) / 2.5);
}

.dropdown_item_8
{
	/*width: calc((100% - 238px) / 6);*/
	margin-left: 25px;
	width: calc((100% - 100px) / 4);
}

.dropdown_item_8 span{
	margin-right: 5px;
	margin-left: 0px;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: ;
}

.dropdown_item_title
{
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: ;
	padding-left: 1px;
}
.dropdown_item_select_price
{
	width: 80%;
	height: 34px;
	background: #FFFFFF;
	-webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
	-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	-webkit-padding-end: 34px;
	-webkit-padding-start: 15px;
	/*-webkit-user-select: none;*/
	background-image: url(https://www.meuimobisite.com.br/images/mod100/dropdown_arrow.png);
	background-position: center right;
	background-repeat: no-repeat;
	border: solid 1px #FFFFFF;
	color: #5b5b5b;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	overflow: hidden;
	padding-top: 2px;
	padding-bottom: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.label-modalselect.active,
.label-modalselect:active,
.label-modalselect:visited,
.label-modalselect:focus,
.label-modalselect:hover {
    color: ;
}
.dropdown_item_input{
	width: 100%;
	height: 34px !important;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
	-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	-webkit-padding-end: 34px;
	-webkit-padding-start: 8px;
	/*-webkit-user-select: none;*/
	background-position: center right;
	background-repeat: no-repeat;
	border: solid 1px #FFFFFF;
	color: #5b5b5b;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	overflow: hidden;
	padding-top: 2px;
	padding-bottom: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.form-field {
	display: block;
	width: 100%;
	height: 34px !important;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
	-webkit-padding-end: 8px;
	-webkit-padding-start: 8px;
	/*-webkit-user-select: none;*/
	background-position: center right;
	background-repeat: no-repeat;
	border: solid 1px #FFFFFF;
	color: #5b5b5b;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	overflow: hidden;
	padding-top: 2px;
	padding-bottom: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: border .3s ease;
  	transition: border .3s ease;
  	box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.form-field::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #cccccc !important;
}
.form-field:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #cccccc !important;
	opacity:  1;
}
.form-field::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #cccccc !important;
	opacity:  1;
}
.form-field:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #cccccc !important;
}
.form-field::-ms-input-placeholder { /* Microsoft Edge */
	color: #cccccc !important;
}
.form-field::placeholder { /* Most modern browsers support this now. */
	color: #cccccc !important;
}

.form-field:focus {
	outline: none;
	border: 1px solid ;
}
.search_box_container .form-group {
	position: relative;
	display: -webkit-box;
	display: flex;
	width: 100%;
}
.search_box_container .form-group > span,
.search_box_container .form-group .form-field {
	white-space: nowrap;
	display: block;
}
.search_box_container .form-group > span:not(:first-child):not(:last-child),
.search_box_container .form-group .form-field:not(:first-child):not(:last-child) {
	border-radius: 0;
}
.search_box_container .form-group > span:first-child,
.search_box_container .form-group .form-field:first-child {
	border-radius: 0px 0 0 0px;
}
.search_box_container .form-group > span:last-child,
.search_box_container .form-group .form-field:last-child {
	border-radius: 0 0px 0px 0;
}
.search_box_container .form-group > span:not(:first-child),
.search_box_container .form-group .form-field:not(:first-child) {
	margin-left: -5px;
}
.search_box_container .form-group .form-field {
	position: relative;
	z-index: 1;
	-webkit-box-flex: 1;
	flex: 1 1 auto;
	width: 1%;
	margin-top: 0;
	margin-bottom: 0;
}
.search_box_container .form-group > span {
	text-align: center;
	padding: 8px 12px;
	font-size: 14px;
	height: 34px !important;
	color: #5b5b5b;
	background: #f0f0f0;
	border: 1px solid #CDD9ED;
	-webkit-transition: background .3s ease, border .3s ease, color .3s ease;
	transition: background .3s ease, border .3s ease, color .3s ease;
}
.search_box_container .form-group:focus-within > span {
  color: ;
  background: ;
  border-color: ;
}


.dropdown_item_select, .label-modalselect
{
	width: 100%;
	height: 34px !important;
	border-radius: 0;
	background: #FFFFFF;

	-webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
	/*-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);*/
	-webkit-padding-end: 34px;
	-webkit-padding-start: 15px;
	/*-webkit-user-select: none;*/
	background-image: url(https://www.meuimobisite.com.br/images/mod100/dropdown_arrow.png);
	background-position: center right;
	background-repeat: no-repeat;
	border: solid 1px #FFFFFF;
	color: #5b5b5b;
  font-family: 'Muli', 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
	margin: 0;
	overflow: hidden;
	padding-top: 2px;
	padding-bottom: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}
.dropdown_item_select::-ms-expand, .label-modalselect::-ms-expand
{
    display: none;
}
.dropdown_item_select:hover, .label-modalselect:hover
{
	border: solid 1px ;
}
.dropdown_item_select:focus, .label-modalselect:focus
{
	outline-color: ;
}
.search_button
{
	top: 28px;
}
.search_submit_button
{
	width: 100%;
	height: 34px;
	background: ;
	border: none;
	font-size: 11px;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: ;
	/*line-height: 34px;*/
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
}


/*********************************
6.2. Search Box2  slidetop desativado
*********************************/

.search_box2
{
	width: 100%;
	height: auto;	
	z-index: 10;
}
.search_box_outer2
{
	margin-top: 0px;
	width: 100%;
	background: ;
	z-index: 10;
}
.search_box_inner2
{
	width: 100%;
	background: ;
	padding-top: 32px;
	padding-bottom: 25px;
	display: block;
}

.search_button2, .search_button3
{
	top: 28px;
}


.search_submit_button2,
.search_submit_button3
{
	width: 100%;
	height: 34px;
	background: ;
	border: none;
	font-size: 11px;
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: ;
	line-height: 34px;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
}
.dropdown_item_title2
{
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: ;
	padding-left: 1px;
}
.dropdown_item_title_topo103
{
	font-family: 'Muli', 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #777;
	padding-left: 1px;
}

.buscaHidden{
    display: none;
}
.icon-box-tabs2{
    width: auto;
    float: left;
    display: inline-block;
    color : ;
    background-color: ;
    padding: 10px;
    margin-right: 10px;
    margin-top:  10px;
    cursor: pointer;
}

.icon-box-tabs2  h3 {
    font-weight: 900;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-left: 10px;
    font-size: 32px;
}
.icon-box-tabs2 h3 span {
    display: block;
    font-weight: 300;
    font-size: 18px;
}







/*********************************
7. Section Title
*********************************/

.section_title
{
	padding-top: 37px;
	margin: 0 auto;
}
.section_title::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 3px;
	height: 25px;
	background: ;
	content: '';
}
.section_title h3
{
	text-transform: uppercase;
	color: ;
	font-weight: 700;
}
.section_subtitle
{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: ;
	margin-top: -4px;
}
.section_subtitle2
{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: ;
	margin-top: -4px;
}


/*********************************
9. Testimonials
*********************************/

.testimonials
{
	width: 100%;
	background: ;
	padding-top: 100px;
	padding-bottom: 95px;
}
.testimonials .section_title h3
{
	color: ;
}
.testimonials_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.testimonials_background
{
	width: 100%;
	height: 100%;
	top: 25px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.testimonials .section_title h1
{
	color: ;
}
.testimonials_slider_container
{
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 63px;
}
.testimonials_item
{
	width: 100% !important;
	padding-bottom: 56px;
}
.testimonials_text
{
	font-size: 18px;
	font-weight: 300;
	line-height: 2;
	color: ;
	margin-bottom: 0px;
}
.testimonial_user
{
	margin-top: 67px;
}
.testimonial_image
{
	width: 81px;
	height: 81px;
	border-radius: 50%;
	overflow: hidden;
}
.testimonial_image img
{
	width: 100%;
	height: auto;
}
.testimonial_name
{
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF; /*$back_secundario;*/
	margin-top: 17px;
}
.testimonial_title
{
	font-size: 13px;
	font-weight: 600;
	color: ;
	margin-top: 4px;
}
.testimonials_slider .owl-dots
{
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	flex-direction: row !important;
	justify-content: center;
	align-items: center;
}
.testimonials_slider .owl-dot span
{
	width: 10px !important;
	height: 10px !important;
	border: solid 2px ;
	background: transparent !important;
}
.testimonials_slider .owl-dot.active span
{
	width: 10px !important;
	height: 10px !important;
	border: none;
	background:  !important;
}

/*********************************
10. Workflow
*********************************/
/*
.workflow
{
	padding-top: 100px;
	padding-bottom: 90px;
	border-bottom: solid 1px #dfe4ee;
}
.workflow_row
{
	margin-top: 83px;
}
.workflow_rocket
{
	position: absolute;
	top: 56px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.workflow_item
{

}
.workflow_image_background
{
	width: 227px;
	height: 227px;
}
.workflow_circle_outer,
.workflow_circle_inner,
.workflow_image
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.workflow_circle_outer
{
	background: #edeff4;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0.5;
	z-index: 1;
}
.workflow_circle_inner
{
	width: 166px;
	height: 166px;
	border-radius: 50%;
	background: #e1e5ec;
	z-index: 2;
}
.workflow_item:hover .workflow_circle_outer
{
	background: #446cb8;
}
.workflow_item:hover .workflow_circle_inner
{
	background: #3f5683;
}
.workflow_item:hover .workflow_num
{
	background: ;
}
.workflow_image
{
	z-index: 4;
}
.workflow_num
{
	position: absolute;
	top: -11px;
	left: 34px;
	width: 42px;
	height: 42px;
	background: #abb2bf;
	border-radius: 50%;
	z-index: 3;
}
.workflow_num span
{
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 42px;
}
.workflow_item_content
{
	margin-top: 53px;
}
.workflow_title
{
	font-size: 18px;
	font-weight: 700;
	color: #1e2c4e;
}
.workflow_text
{
	color: #838383;
	margin-top: 17px;
	margin-bottom: 0px;
}*/

/*********************************
11. parceiros
*********************************/

.parceiros
{
	padding-top: 30px;
	padding-bottom: 30px;
}
.parceiros_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://www.meuimobisite.com.br/images/mod100/world.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
.parceiros_slider_container
{
	width: 100%;
	margin-top: 72px;
}
.parceiro_image::after
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	content: '';
	background: ;
	color: ;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.parceiro_item:hover .parceiro_image::after
{
	opacity: 0.9;
}
.parceiro_image img
{
	width: 100%;
}
.parceiro_name
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 21px;
	width: 113px;
	height: 34px;
	background: ;
	text-align: center;
}
.parceiro_name span
{
	font-size: 14px;
	font-weight: 600;
	color: ;
	line-height: 34px;
	text-transform: uppercase;
}
.parceiro_details
{
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.parceiro_item:hover .parceiro_details
{
	visibility: visible;
	opacity: 1;
}
.parceiros_nav
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 48px;
	height: 51px;
	background: ;
	color: ;
	cursor: pointer;
	z-index: 10;
}
.parceiros_nav:hover
{
	color: ;
	background: ;
}
.parceiros_prev
{
	left: -165px;
}
.parceiros_next
{
	right: -165px;
}
.parceiros_nav i{
	font-size: 1.3rem;
}
/*********************************
12. Call to Action 1
*********************************/

.cta_1
{
	padding-top: 64px;
	padding-bottom: 62px;
	background: #e7eaf0;
}
.cta_1_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	opacity: 0.32;
}
.cta_1_content
{
	width: 100%;
}
.cta_1_text
{
	color: #333; /*$titulos_text_escuro*/
	font-weight: 700;
	margin-bottom: 0px;
}
.cta_1_text span
{
	background: ;
	color: ;
}
.cta_1_phone
{
	display: inline-block;
	height: 44px;
	line-height: 44px;
	padding-left: 30px;
	padding-right: 29px;
	color: ;
	font-size: 18px;
	font-weight: 600;
	background: ;
	margin-left: auto;
	white-space: nowrap;
}
.cta_1_phone a, .cta_1_phone a:hover, .cta_1_phone a:visited, .cta_1_phone a:active{ 
	color: ;
}
.addreview, .addreview a, .addreview a:hover, .addreview a:active, .addreview a:visited{
	color: color: ;
}


/*********************************
13. Newsletter
*********************************/

.newsletter
{
	padding-top: 76px;
	padding-bottom: 99px;
	background: ;
}
.newsletter_title
{
	padding-top: 37px;
	margin: 0 auto;
}
.newsletter_title::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 25px;
	background: ;
	content: '';
}
.newsletter_title h3, .newsletter .section_title h3
{
	text-transform: uppercase;
	color: ;
	font-weight: 700;
}
.newsletter_subtitle
{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: rgb(0,0,0);
	margin-top: -4px;
}
.newsletter_form_container
{
	margin-top: 31px;
	color: ;
}
.newsletter_email, .newsletter_email2
{
	font-family: 'Poppins', sans-serif;
	border: none;
	font-weight: 500;
	color: ;
	background: rgba(255,255,255,0.3) ; /*$back_form_news rgba(255,255,255,0.1);*/
  	box-shadow:2px 2px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.newsletter_email
{
	width: calc(100% - 132px);
	height: 55px;
	padding-left: 7px;
	display: block;
}

.newsletter_email2
{
	width: 25%;
	height: 55px;
	padding-left: 10px;
}

.newsletter_captcha_box
{
	width: calc(100% - 132px);
}


.newsletter_captcha, .newsletter_captcha2
{
	font-family: 'Poppins', sans-serif;
	border: none;
	font-weight: 500;
	color: ;
	/*background: #4a5b85;*/
	background: rgba(255,255,255,0.3);/*rgba(255,255,255,0.1) $back_form_news*/
	display: inline;
  	box-shadow:2px 2px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.newsletter_captcha
{
	width: calc(50% - 66px);
	height: 55px;
	padding-left: 7px;
	margin-right: 20px;
}
.newsletter_captcha2
{
	width: 10%;
	height: 55px;
	padding-left: 7px;
	margin-right: 20px;
}

	.marg_right
	{
		margin-right: 30px;
	}

.newsletter_form_container input:focus
{
	outline: solid 2px ;
	background-color: #FFF;
	color: #5b5b5b !important;
}
.newsletter_form_container input:focus::-webkit-input-placeholder {
    color: #5b5b5b;
}
.newsletter_form_container input::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: ;
	-webkit-text-shadow: rgba(0,0,0,.02) 0 0 2px;
	text-shadow: rgba(0,0,0,.02) 0 0 2px;
}
.newsletter_form_container input:-moz-placeholder /* older Firefox*/
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: ;
}
.newsletter_form_container input::-moz-placeholder /* Firefox 19+ */ 
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: ;
} 
.newsletter_form_container input:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-weight: 400 !important;
	color: ;
}

.newsletter_submit_btn, .newsletter_submit_btn2
{
	padding: 18px;
	border: none;
	background: ;
	color: ;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	display: inline;
	text-align: center;
}
.newsletter_submit_btn2{
	width: 20%;
}

.newsletter_submit_btn:focus, .newsletter_submit_btn2:focus
{
	border: solid 2px ;
}

/*
.weekly_offer
{
	width: 100%;
	height: 100%;
}
.weekly_offer_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.weekly_offer_content
{
	position: absolute;
	top: 0;
	left: 0;
	height: 58px;
	background: ;
	z-index: 10;
}
.weekly_offer_icon
{
	width: 64px;
	background: ;
}
.weekly_offer_icon img
{
	width: 35px;
	height: 41px;
}
.weekly_offer_text
{
	font-size: 14px;
	font-weight: 700;
	line-height: 58px;
	color: #FFFFFF;
	text-transform: uppercase;
	padding-left: 30px;
	padding-right: 30px;
}*/


.site_section_heading h3 {
	color: ;
	font-weight: 700;
	text-transform: uppercase; 
}

.site_section_heading.w-border h3 {
	position: relative;
	padding-bottom: 10px;
	display: inline-block; 
}
.site_section_heading.w-border h3:after {
	position: absolute;
	content: "";
	width: 70px;
	left: 0;
	bottom: 0;
	height: 2px;
	background: ; 
}

.site_section_heading.w-border.text-center h3:after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%); 
}


.gadget_section_heading h3 {
	color: ;
	font-weight: 700;
	text-transform: uppercase; 
}
.depo_gadget_section_heading h3 {
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase; 
}

.gadget_section_heading.w-border h3, .depo_gadget_section_heading.w-border h3{
	position: relative;
	padding-bottom: 5px;
	display: inline-block; 
}
.gadget_section_heading.w-border h3:after {
	position: absolute;
	content: "";
	width: 70px;
	left: 0;
	bottom: 0;
	height: 2px;
	background: ; 
}
.gadget_section_heading.w-border.text-center h3:after, .depo_gadget_section_heading.w-border.text-center h3:after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%); 
}
.depo_gadget_section_heading.w-border h3:after {
	position: absolute;
	content: "";
	width: 70px;
	left: 0;
	bottom: 0;
	height: 2px;
	background: #FFF; 
}
.mapicon{
	display: block;
	color: ; 
	font-weight: 700;
	clear: both;
	font-size: 2.3rem;
}
.localizabox, .localizabox p{
	font-size: 1.3rem;
}

.localizabox .btn{
	background: ;
	color: ;
}

.banners_inf {
    border: 1px solid #fff;
    padding: 20px;
    width: 100%;
    color: #2d2d2d;
    height: 335px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 30px 30px 0;
    text-align: center;
}

.banners_inf:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
	border-top: 2px solid ;
	border-bottom: 2px solid ;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
	border-radius: 5px;
}

.banners_inf:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-radius: 5px;
	border-left: 2px solid ;
	border-right: 2px solid ;
	-webkit-transform: scale3d(1, 0, 1);
	transform: scale3d(1, 0, 1);
}


.banners_inf:hover:before, .banners_inf:hover:after {
    opacity: 1;
    right: 0px;
    bottom: 0px;
    border-color: ;
	border-radius: 5px;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;

}

.banners_inf__icone {
    font-size: 60px;
}

/*.banners_inf__separator {
    width: 100px;
    height: 1px;
    background-color: ;
    border-top: 1px dashed ;
}*/

h2.banners_inf_title{
	font-size: 1.5rem;

}

.banners_inf__description {
    font-weight: normal;
    font-size: 13px;
    color: #999;
}

.banners_inf__btn {
	position: relative;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: ;
    color: ;
    text-decoration: none;
    display: inline-block;
    transition: .2s ease;
    margin-top: 20px;
    z-index: 1;
	border:0;
	cursor:pointer;
	cursor:hand;
}

.banners_inf__btn:hover {
    filter: brightness(1.3);
    color: ;
}

.banners_inf:hover {
  color: ;
}
.banners_inf::before, .banners_inf::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.banners_inf::before {
  border-top: 2px solid ;
  border-bottom: 2px solid ;
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
}
.banners_inf::after {
  border-left: 2px solid ;
  border-right: 2px solid ;
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
}
.banners_inf:hover::before, .banners_inf:hover::after {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}


.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited,
.btn-default, .btn-default:hover, .btn-default:active, .btn-default:visited {
	background-color:  !important;
    color: ;
    border: 0px;
}
.btn-link, .btn-link:hover, .btn-link:active, .btn-link:visited {
	background-color: #fff !important;
    color: #525252;
    border: 1px solid #dedede;
}

.top10{
	margin-top: 10px;
}
.top15{
	margin-top: 15px;
}
.top25{
	margin-top: 25px;
}
.top35{
	margin-top: 35px;
}
.top45{
	margin-top: 45px;
}
.top55{
	margin-top: 55px;
}
.top65{
	margin-top: 65px;
}
.top75{
	margin-top: 75px;
}
.top85{
	margin-top: 85px;
}

.bottom10{
	margin-bottom: 10px;
}
.bottom15{
	margin-bottom: 15px;
}
.bottom20{
	margin-bottom: 20px;
}
.bottom25{
	margin-bottom: 25px;
}
.bottom35{
	margin-bottom: 35px;
}
.bottom45{
	margin-bottom: 45px;
}
.bottom55{
	margin-bottom: 55px;
}
.bottom65{
	margin-bottom: 65px;
}
.bottom75{
	margin-bottom: 75px;
}
.bottom85{
	margin-bottom: 85px;
}

.left15{
	margin-left: 15px;
}
.left25{
	margin-left: 25px;
}
.right5{
	margin-right: 5px;
}
.right15{
	margin-right: 15px;
}
.right25{
	margin-right: 25px;
}
.teamSlick{
	cursor:pointer;
}
.customNavigation {
  margin: 10px auto;
  margin-right: 15px;
  text-align: right;
  cursor: pointer;
}
.customNavigation .btn i{
  margin-top: 8px;
  color: ;
}

.customNavigation .btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0px;
  padding: 0px 10px 0px 10px;
  border: 0;
  box-shadow: none;
  text-transform: uppercase;
  text-shadow: none;
  font-size: 20px;
  -webkit-transition: all .1s ease-in 0s;
  -moz-transition: all .1s ease-in 0s;
  -o-transition: all .1s ease-in 0s;
  transition-property: all .1s ease-in 0s;
  -webkit-font-smoothing: antialiased;
  background: ;
  color: ;
}

.customNavigation .btn:hover {
  background: ;
  color: ;
}
.single_expert {
  margin-bottom: 40px;
}
.single_expert .expert_thumb {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  background: fff;
  /*box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);*/
}
.single_expert .expert_thumb img {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width:auto;
  max-height: 350px;
  margin: 0 auto;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.single_expert .experts_name {
  background: #fff;
  padding-top: 16px;
  padding-bottom: 18px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 22px 10px 25px 10px;
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 2, 0.03);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.single_expert .experts_name h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #666; /*DECIDIR DEPOIS */
  margin-bottom: 6px;
}
.single_expert .experts_name span {
  /*color: #738ea9;*/
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  font-weight: 400;
}
.single_expert .experts_name .social_links {
  border-top: 1px solid #dfe2e8;
  padding-top: 26px;
  margin-top: 24px;
}
.single_expert .experts_name .social_links li {
  display: inline-block;
  margin: 0 11px;
}
.single_expert .experts_name .social_links li a {
  display: inline-block;
  font-size: 16px;
  color: #c2c8d3;
}
.single_expert .experts_name .social_links li a.facebookUser:hover {
	color: #0d448f;
}
.single_expert .experts_name .social_links li a.linkdinUser:hover {
	color: #007bb6;
}
.single_expert .experts_name .social_links li a.twitterUser:hover {
	color: #00aced;
}
.single_expert .experts_name .social_links li a.instagramUser:hover {
	color: #c42e86;
}
/*.single_expert .experts_name .social_links li a:hover {
  color: #0d448f;
}*/
.single_expert:hover .expert_thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .single_expert .experts_name {
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .single_expert .experts_name {
    padding: 20px;
  }
}

/*
.heading {
	display: flex;
	align-items: center;
	margin: 0 auto 150px;
}

.heading h2 {
	width: 300px;
	flex: none;
	position: relative;
	margin-right: 40px;
	text-align: right;
}

.heading h2:after {
	content: '';
	display: block;
	width: 4px;
	height: 100%;
	background-color: ;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -25%;
	margin-left: 19px;
}

.heading p {
	color: #4d4d4d;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	text-transform: uppercase;
}*/




/*********************************
14. Footer
*********************************/

.footer
{
	padding-top: 100px;
	padding-bottom: 80px;
	background: ;
}
.footer_col_title
{
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	color: ;
}

/*********************************
14.1 Footer - About
*********************************/

.footer .logo_container
{
	display: inline-block;
	left: 0;
	top: -58px;
	background: transparent;
	clear: both;
}
.footer .logo
{
	text-align: center;
}
.footer .logo img
{
	margin: 0 auto;
	display: block;
	background-color: ;
	padding: 5px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	width: 60%;
}
.footer .logo span
{

	font-size: 1rem;
	font-weight: 500;
	color: ;
	text-transform: uppercase;
	margin-top: 1px;
	display: block;
	clear: both;
	letter-spacing: 2px;
}
.footer_social
{
	position: relative;
	display: block;
	clear: both;
}
.footer_social_item
{
	display: inline-block;
	width: 32px;
	height: 32px;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-right: 9px;

}
.footer_social_item:last-child
{
	margin-right: 0px;
}
.footer_social_item a
{
	font-size: 1rem;
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}


.footer_about
{
	margin-top: 44px;
	padding-right: 10px;
}
.footer_about p
{
	color: rgb(0,0,0);
	line-height: 2.29;
	margin-bottom: 0px;
}

.footer_creditos
{
	display: block;
	clear: both;
	margin-top: 50px;
	padding-right: 10px;
}
.footer_creditos p
{
	color: rgb(0,0,0);
	line-height: 2.29;
	margin-bottom: 20px;
}
.footer_creditos img
{
	margin: 0 auto;
	list-style: none !important;
}
.footer_admin, .footer_cr{
	text-align: center;
	margin: 15px auto 0 auto;
}

/*********************************
14.2 Footer - Useful Links
*********************************/

.footer_useful_links
{
	margin-top: 27px;
}
.useful_links_item a
{
	/*margin-left: 20px;*/
	font-size: 14px;
	font-weight: 600;
	color: rgb(0,0,0);
	line-height: 2.5;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.useful_links_item a:hover
{
	color: ;
}

/*********************************
14.3 Footer - Contact Form
*********************************/
/*
.footer_contact_form_container
{
	margin-top: 41px;
}
.footer_contact_form
{
	
}
.input_field
{
	width: 100%;
	background: #1e2c4e;
	border: solid 2px transparent;
	margin-bottom: 9px;
	height: 38px;
	padding-left: 17px;
	color: ;
}
.input_field:focus
{
	outline: none !important;
	border-color: ;
}
.text_field
{
	width: 100%;
	height: 117px;
	background: #1e2c4e;
	border: solid 2px transparent;
	padding-left: 17px;
	margin-bottom: 7px;
	color: ;
	padding-top: 10px;
}
.text_field:focus
{
	outline: none !important;
	border-color: ;
}
.contact_send_btn
{
	width: 86px;
	height: 32px;
	background: ;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	border: none;
}
.contact_send_btn:focus
{
	outline: solid 1px #FFFFFF;
	border: green !important;
}
.input_field::-webkit-input-placeholder,
.text_field::-webkit-input-placeholder
{
	font-size: 11px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #6678a3 !important;
}
.input_field:-moz-placeholder,
.text_field:-moz-placeholder
{
	font-size: 11px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #6678a3 !important;
}
.input_field::-moz-placeholder,
.text_field::-moz-placeholder
{
	font-size: 11px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #6678a3 !important;
} 
.input_field:-ms-input-placeholder,
.text_field:-ms-input-placeholder
{ 
	font-size: 11px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #6678a3 !important;
}
.input_field::input-placeholder,
.text_field::input-placeholder
{
	font-size: 11px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #6678a3 !important;
}
*/

/*********************************
14.4 Footer - Contact Info
*********************************/

.contact_info_list
{
	margin-top: 44px;
}
.contact_info_item
{
	margin-bottom: 22px;
}
.contact_info_icon
{
	width: 20px;
	height: 20px;
	margin-right: 10px;
	color: rgb(0,0,0);
}
.contact_info_icon img
{
	display: block;
	width: 100%;
}
.contact_info_text,
.contact_info_text a, .contact_info_text i
{
	color: rgb(0,0,0);
	line-height: 2.14;
	margin-top: -4px;
	font-weight:600;
	text-align: left;
}
.contact_info_item:hover .contact_info_text,
.contact_info_item:hover .contact_info_text a
{
	color: ;
}

/* BARRA DE ROLAGEM - SCROLLBAR */
/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  /*background-color: ;*/
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}
/* END SCROLLBAR */
::-webkit-scrollbar-thumb{
	background-color: ;
}
		


/****** END MEDIA QUERIES ****/
/****** 9.PRELOADER ****/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100001;
  backface-visibility: hidden;
  background: #FFFFFF; }

.loader_img {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-position: center;
  margin: -25px 0 0 -25px; }

/****** END PRELOADER ****/


.natalBanner{
	width: 100%;
	background: transparent;
	margin: 10px auto 10px auto;
}

.natalBanner img{
	max-width: 100%;
	/*height: 600px;*/
}


.title-widget {
  color: ;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  /*font-family: 'Poppins', sans-serif;*/
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 25px;
  margin-left: 0;
  padding-left: 20px;
}
.title-widget::before {
    background-color: ;
    content: "";
    height: 22px;
    left: 0px;
    position: absolute;
    top: -2px;
    width: 5px;
}


/****** SUPER DESTAQUES SLICK ****/
.slickwrapper img{
  max-height:500px;
  width: 100%;
}
.slickwrapper{
box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.3), 0 55px 50px -35px rgba(0, 0, 0, 0.3), 0 85px 60px -25px rgba(0, 0, 0, 0.1);
}
/* DEMO ONLY **/
.card-info-box{
  position: absolute;
  display: block;
  bottom: 5%;
  background-color: rgba(44, 62, 80, 0.8);
  border-radius: 0 0.5rem 3rem 0;
  border-bottom: 0.3em solid #f89a22;
  color: white;
  padding: 1rem 2rem 1rem 3.5rem;
  min-width:30%;
  max-width: 45%;  
}
.card-info-box .btn{
   border-radius: 2rem;
}

@media (max-width: 900px){
  .card-info-box{
    position: relative;
    max-width:100%;
    padding: 2em;
    bottom: 0;
    background-color: rgb(44, 62, 80);
    border-radius:0;
    padding: 1rem;
  }
}
.slick-prev::before, .slick-next::before {
    font-size: 40px;
    color: #FF9800;
}
.slick-prev, .slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}
.slick-next {
    right: 5px;
}
.slick-prev {
    left: 5px;
}

.slick-dots li.slick-active button:before {
      color: #FF9800;
  }
.slick-dots li button:before{
  font-size: 1rem;
}
.slick-dots{
  bottom: 10px !important;
}


/*
.pricesearch input {
  width: 100%;
  padding: 1em;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.pricesearch input:focus {
  outline: 0;
  border-color: #64ac15;
}
.pricesearch input:focus + .input-icon i {
  color: #7ed321;
}
.pricesearch input:focus + .input-icon:after {
  border-right-color: #7ed321;
}
.pricesearch .input-group {
  margin-bottom: 1em;
  zoom: 1;
}
.pricesearch .input-group:before,
.pricesearch .input-group:after {
  content: "";
  display: table;
}
.pricesearch .input-group:after {
  clear: both;
}
.pricesearch .input-group-icon {
  position: relative;
}
.pricesearch .input-group-icon input {
  padding-left: 4.4em;
}
.pricesearch.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
}
.pricesearch.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
*/
/*
.pricesearch .input-group-icon .input-icon .text {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}*/

.home_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-bottom: 1px solid #ffffff;
	-webkit-box-shadow: 0 8px 6px -6px #bbbaba;
	-moz-box-shadow: 0 8px 6px -6px #bbbaba;
	box-shadow: 0 8px 6px -6px #bbbaba;
	z-index:1;
}

@media only screen and (min-width: 992px) {

	
}

@media only screen and (max-width: 768px) {
		.home{
		height: 10vh;
	}
	.home_background{
		height: 6vh;
	}
	}




/*
.intro_text
{
	margin-top: 41px;
	margin-bottom: 0px;
}*/

.texto_padrao{
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	color: ;
	font-weight: 300;
}
.intro_text, .intro_text_profile, ol
{
	word-wrap: break-word;
	margin-top: 41px;
	margin-bottom: 40px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	line-height: 1.8;
	font-weight: 300;
	color: ;
	-webkit-font-smoothing: antialiased;
}
.intro_text_profile{
	overflow: hidden;
}
ul.list_text {
	list-style-type: square !important;
	list-style-position: outside !important;
	list-style-image: none !important;
	word-wrap: break-word;
	margin-top: 41px;
	margin-bottom: 40px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	line-height: 1.8;
	font-weight: 300;
	color: ;
	-webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 1920px) {
	.intro_text, .intro_text_profile, .texto_padrao {
		font-size: 1.6rem;
    }
}
.bordafotosNew{
	display: inline-block;
	padding:5px;
	border: solid 1px #e5e5e5;
	color:#514f4f;
	-moz-border-radius:5px; 
    -webkit-border:5px; 
    -khtml-border-radius:5px; 
    border-radius: 5px;
    background-color: #ffffff;
	margin-top: 41px;
	margin-bottom: 5px;
	float: right;
}


img.bordafotosNew{
	max-width:450px;
}

.bordafotosNew2{
	display: inline-block;
	padding:5px;
	border: solid 1px #e5e5e5;
	color:#514f4f;
	-moz-border-radius:5px; 
    -webkit-border:5px; 
    -khtml-border-radius:5px; 
    border-radius: 5px;
    background-color: #ffffff;
	margin-top: 41px;
	margin-bottom: 5px;
	float: right;
}

img.bordafotosNew2{
	max-width:250px;
}

.bordafotosNew_left{
	display: inline-block;
	padding:5px;
	border: solid 1px #e5e5e5;
	color:#514f4f;
	-moz-border-radius:5px; 
    -webkit-border:5px; 
    -khtml-border-radius:5px; 
    border-radius: 5px;
    background-color: #ffffff;
	margin-top: 41px;
	margin-bottom: 5px;
	float: left;
}
img.bordafotosNew_left{
	max-width:250px;
}


@media only screen and (max-width: 978px) {
	.intro_text, .intro_text_profile, .texto_padrao {
		display: block;
		clear: both;
		width: 100%;
	}
	.bordafotosNew, .bordafotosNew2, .bordafotosNew_left{
		display: block;
		clear: both;
		margin: 0 auto;
		text-align: center;
		float: none;
	}
}

h2.titulo_style-1, h2.titulo_style-2, h2.titulo_style-3{
font-weight: normal;
  text-transform: uppercase;
  margin: 0 auto;
  background-color: ;
  position: relative;
  display: inline-block;
  padding: 10px;

  
}

.titulo_style-1 {
  font-family: "Poppins", sans-serif;
  text-transform: none!important;
  font-size: 2rem;
}

.titulo_style-2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;

}

.titulo_style-3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
}
.titulo_style-1:before {
  content: "";
  height: 3px;
  border-top: 1px solid ;
  border-bottom: 1px solid ;
  position: absolute;
  width: 300%;
  top: 50%;
  left: -100%;
  z-index: -999;
}

.titulo_style-2:before {
  content: "";
  height: 3px;
  border-top: 2px dotted ;
  border-bottom: 2px dotted ;
  position: absolute;
  width: 300%;
  top: 45%;
  left: -100%;
  z-index: -999;
}

.titulo_style-3:before {
  content: "";
  border-top: 1px solid ;
  position: absolute;
  width: 300%;
  top: 35%;
  left: -100%;
  z-index: -999;
}

.titulo_style-3:after {
  content: "";
  border-bottom: 1px solid ;
  position: absolute;
  width: 300%;
  bottom: 35%;
  left: -100%;
  z-index: -999;
}


.header__background {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 0;
	padding-bottom: 66.25%;
	-webkit-transform: translate(-50%, -50%);
	      transform: translate(-50%, -50%);
	pointer-events: none;
}
.header__video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: repeat;
 	background-size: cover;
	background-position: center;
	-webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s linear;
	transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s linear;
}
.header__video-overlay--fadeOut {
	opacity: 0;
	visibility: hidden;
}


/*
.home_slider_content_container_video #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;

}*/
.header_video_background{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  padding-bottom: 66.25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.home_slider_content_video{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	padding-bottom: 60%; /* 66.25  */
	-webkit-transform: translate(-50%, -50%);
	      transform: translate(-50%, -50%);
	pointer-events: none;
}



@media (min-width: 992px){
			.home_slider_content_video .home_slider_content_container .home_slider_content{
			margin-top: calc(18vh);
		}
	}



.tv {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tv .screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.tv .screen.active {
  opacity: 1;
}

/*=============================================
=            spacing            =
=============================================*/
.space__inner {
	padding-top: 15px;
	padding-bottom: 15px;
	background: ;
}
/*=====  End of spacing  ======*/

/*=============================================
=            Header            =
=============================================*/

/* header sticky */
.header-sticky.is-sticky .menu-bar-wrapper {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInTop;
	animation: 0.95s ease-in-out 0s normal none 1 running fadeInTop;
}

.header-sticky.is-sticky .menu-bar-wrapper-inner {
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	
}

.header-sticky.is-sticky.mobile-header {
	position: fixed;
	z-index: 996;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInTop;
	animation: 0.95s ease-in-out 0s normal none 1 running fadeInTop;
	background-color: ;
}
.header-sticky.is-sticky.mobile-header i{
	color: ;
}

/* header top */
/*
.header-top-info {
	font-size: 16px;
	font-weight: 500;
	color: #B9B9B9;
}

.header-top-info__link {
	font-weight: 500;
}

.header-top-info__link:hover {
	color: ;
}

.header-top-info__link span {
	font-weight: 600;
	color: #E4E1E1;
}

.header-top-info__link span:hover {
	color: ;
}*/


 
/* sub menu */
.sub-menu {
	position: absolute;
	z-index: 99;
	visibility: hidden;
	width: 250px;
	margin-top: 20px;
	padding: 20px 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	border-bottom: 3px solid ;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.divider_menu{
	height: 1px;
	background-color: ;
	margin: 15px auto 15px auto;
}

.sub-menu li {
	margin-bottom: 5px;
}

.sub-menu li a {
	font-size: 17px;
	width: 100%;
	padding: 0 20px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #2B2D37;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.sub-menu li:hover > a {
	padding-left: 25px;
	color: ;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* nav search icon */
.nav-search-icon {
	line-height: 50px;
	width: 50px;
	height: 50px;
	margin-left: 25px;
	padding-left: 20px;
	border-left: 1px dashed #2B2D37;
}

.nav-search-icon button {
	border: none;
	background: none;
}

.nav-search-icon button:hover {
	color: #2B2D37;
}

/*-- Search Form --*/
.header-search-form {
	position: absolute;
	top: 100%;
	right: 0;
	display: none;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.header-search-form form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.header-search-form form input {
	line-height: 24px;
	width: 250px;
	padding: 13px 20px;
	color: #2B2D37;
	border: none;
	background-color: transparent;
}

.header-search-form form button {
	line-height: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 13px 15px;
	color: #FFFFFF;
	border: none;
	background-color: ;
}

.header-search-form form button i {
	font-size: 24px;
	line-height: 24px;
}

/* mobile menu */

.mobile-menu-area {
	padding: 15px 0;
}
.mobile-menu-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.mobile-menu-content .social-links {
	padding: 0 15px;
}

.mobile-menu-content .mobile-navigation-icon {
	margin-left: 15px;
}

/* mobile menu overlay */

.header-wrapper--shadow {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}

.header-wrapper__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-wrapper__inner .logo {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header-wrapper__inner .header-navigation {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header-wrapper__inner .header-navigation__nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-wrapper__inner .request-quote-button-wrapper {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

/* offcanvas mobile menu */

.header-mobile-navigation {
	padding: 20px 0;
}

.header-mobile-navigation .mobile-navigation .header-cart-icon a span {
	left: 50%;
}

.offcanvas-widget-area {
	margin-top: 0;
	margin-bottom: 35px;
}

.off-canvas-contact-widget {
	margin-bottom: 20px;
}

.off-canvas-contact-widget .header-contact-info {
	-webkit-flex-basis: 33.33%;
	-ms-flex-preferred-size: 33.33%;
	flex-basis: 33.33%;
}

.off-canvas-contact-widget .header-contact-info__list li {
	font-size: 17px;
	display: inline-block;
	margin-right: 25px;
	color: #666;
}

.off-canvas-contact-widget .header-contact-info__list li i {
	font-size: 17px;
	margin-right: 5px;
	color: #111;
}

.off-canvas-contact-widget .header-contact-info__list li a {
	font-size: 17px;
	font-weight: 400;
	color: #666;
}

.off-canvas-contact-widget .header-contact-info__list li a:hover {
	color: ;
	background-color: }

.off-canvas-contact-widget .header-contact-info__list li:last-child {
	margin-right: 0;
}

.offcanvas-mobile-menu {
	position: fixed;
	z-index: 998;
	top: 0;
	right: 0;
	max-width: 100%;
	height: 100vh;
	padding-left: 0px;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}
@media only screen and (max-width: 978px) {
	.offcanvas-mobile-menu {
		width: 58%;
	}
}
@media only screen and (max-width: 575px) {
	.offcanvas-mobile-menu {
		width: 80%;
	}
}
@media only screen and (max-width: 479px) {
	.offcanvas-mobile-menu {
		width: 80%;
	}
}

.offcanvas-mobile-menu.active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas-mobile-menu.inactive {
	-webkit-transform: translateX(calc(100% + 30px));
	-ms-transform: translateX(calc(100% + 30px));
	transform: translateX(calc(100% + 30px));
}

.offcanvas-menu-close {
	font-size: 30px;
	line-height: 60px;
	position: absolute;
	z-index: 9;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	text-align: center;
	color: !important;
	background: ;
}

.offcanvas-mobile-menu.active .offcanvas-menu-close{
	left: -40px;
}

.offcanvas-menu-close:hover,
.offcanvas-menu-close:focus {
	color:  !important;
}

.offcanvas-menu-close i {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	color:  !important;
}

.offcanvas-menu-close:hover i,
.offcanvas-menu-close:hover .menu-close {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	color: ;
}

.offcanvas-wrapper {
	overflow: auto;
	height: 100%;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
}

.offcanvas-mobile-search-area {
	position: absolute;
	z-index: 9;
	top: 0;
	left: 0;
	width: calc(100% - 10px);
	margin-left: 10px;
	padding: 10px;
	display: block;
	clear: both;
	background-color: transparent;
	height: auto;
}

.offcanvas-mobile-search-area input {
	font-size: 16px;
	display: block;
	width: 100%;
	padding: 9px 5px;
	color: #222;
	border: none;
	background: #E6E6E6;
}

.offcanvas-mobile-search-area button {
	position: absolute;
	top: 50%;
	right: 20px;
	padding: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #AAA;
	border: none;
	background: none;
}

.offcanvas-mobile-search-area button i {
	font-size: 18px;
	line-height: 40px;
}

.offcanvas-inner-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	padding: 90px 0px 0px 0px;
}

.offcanvas-navigation {
	margin-bottom: 30px;
}

.offcanvas-navigation > ul > li > a {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	padding: 10px 0;
	color: #111;
}

.offcanvas-navigation > ul > li > a:hover {
	color: #111;
}

.offcanvas-navigation ul.sub-menu-mobile {
	/*margin-left: 25px;*/
}

.offcanvas-navigation ul.sub-menu-mobile > li > a {
	font-size: 18px;
	font-weight: 400;
	padding: 10px 0;
	color: #111;
}

.offcanvas-navigation ul.sub-menu-mobile > li > a:hover {
	color: ;
}

.offcanvas-navigation ul li.menu-item-has-children {
	position: relative;
	display: block;
}

.offcanvas-navigation ul li.menu-item-has-children a {
	display: block;
}

.offcanvas-navigation ul li.menu-item-has-children.active > .menu-expand i:before {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand {
	line-height: 50px;
	position: absolute;
	top: -5px;
	right: auto;
	left: 95%;
	width: 30px;
	height: 50px;
	cursor: pointer;
	text-align: center;
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand i {
	position: relative;
	display: block;
	width: 10px;
	margin-top: 25px;
	-webkit-transition: all 250ms ease-out;
	-o-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
	border-bottom: 1px solid;
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand i:before {
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	content: "";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	border-bottom: 1px solid;
}

.off-canvas-widget-social a {
	font-size: 20px;
	margin-right: 7px;
	margin-left: 7px;
	color: #111;
}

.off-canvas-widget-social a:first-child {
	margin-left: 20px;
}

.off-canvas-widget-social a:hover {
	color: ;
	background-color: }

/* offcanvas settings */

.offcanvas-settings .offcanvas-navigation > ul > li > a {
	font-size: 12px;
	font-weight: 400;
	padding: 5px 0;
}

.offcanvas-settings .offcanvas-navigation > ul > li.menu-item-has-children .menu-expand {
	top: -15px;
	height: 30px;
	margin-top: 0;
}

.offcanvas-settings .offcanvas-navigation ul.sub-menu-mobile > li > a {
	padding: 5px 0;
}

/* mobile menu trigger */

.mobile-menu-trigger-wrapper {
	display: block;
	width: 26px;
	height: 20px;
	margin-left: auto;
	cursor: pointer;
}

.mobile-menu-trigger {
	position: relative;
	display: block;
	width: 26px;
	height: 2px;
	background-color: #FFFFFF;
}

.mobile-menu-trigger:before,
.mobile-menu-trigger:after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #FFFFFF;
}

.mobile-menu-trigger:before {
	bottom: -8px;
}

.mobile-menu-trigger:after {
	bottom: -16px;
}

.mobile-menu-trigger-wrapper i{
	color: ;
	font-size: 1.6rem;
	font-weight: 600;
	padding-bottom: 10px;
}

/* menu close */

.menu-close {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.menu-close:before,
.menu-close:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 2px;
	content: "";
	background-color: ;
}

.menu-close:before {
	-webkit-transform: translateX(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.menu-close:after {
	-webkit-transform: translateX(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
}

/*=====  End of Header  ======*/
.brand-logo img{
	max-height:50px;
	width: auto;
	background: ;
	padding: 0 5px;
	border-radius: 5px;
}

.mobile_top_logo {
	display: none;
	visibility: hidden;
	margin: 0 auto;
	position: relative;
}
.brand-logo_big{
	margin: 0 auto;
	text-align: center;
	background: ;
	display: none;
	visibility: hidden;
	padding: 10px;

}
.brand-logo_big img{
	max-height:250px;
	max-width: 100%;
}

.box_idioma {
	float:left;
	margin-left: 0px;
	text-align: right;
	margin-top: 8px;
	padding: 0px;
	text-decoration:none;
	display: inline;
	font-size:8px;
	font-weight: bold;
}

.box_idioma  img{	
	display: inline;
	width: 32px;
	height: 32px;
	margin-top: 6px;
	margin-left: 15px;
}

.itensFlutuantes_right{
	overflow:hidden;
	z-index:999;	
	text-align: center;
	position:fixed;
	right:0px;
	top: 215px;
}

.idiomasStar {
	overflow:hidden;
	padding: 5px;
	background-color: ; /*$backFloatIdiomas*/
	font-size:8pt;
	font-weight:bold;
	width:30px;
	color:Black;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.idiomasStar img{
	display: block;
	margin: 6px auto;
	text-align: center;
}




.padding_full_width{
	padding: 0 25px;
}
.padding_top_bottom{
	padding: 25px 0;
}

.modal iframe{
	max-width: 100%;
}

.modal-body{
  word-break: break-word;/*break-all*/
}

/*.full-page-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh; 
}*/
.modal-lg {
    max-width: 80% !important;
    margin: 0 auto;
}

.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  @media(max-width: 768px) {
    min-height: calc(100vh - 20px);
  }
}
.modal-header .close{
	font-size: 2rem;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
}

.modal .modal-dialog-aside{ 
	width: 350px; max-width:80%; height: 100%; margin:0;transform: translate(0); transition: transform .2s;
}
.modal .modal-dialog-aside .modal-content{  height: inherit; border:0; border-radius: 0;}
.modal .modal-dialog-aside .modal-content .modal-body{ overflow-y: auto }
.modal.fixed-left .modal-dialog-aside{ margin-left:auto;  transform: translateX(100%); }
.modal.fixed-right .modal-dialog-aside{ margin-right:auto; transform: translateX(-100%); }
.modal.show .modal-dialog-aside{ transform: translateX(0);  }

/*
body.modal-open {
  overflow: scroll !important;
}*/

figure.snip1163 {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	position: relative;
	overflow: hidden;
	margin: 0px;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.1);
	/*min-width: 220px;
	max-width: 310px;
	max-height: 220px;*/
	width: 100%;
	background: #ffffff;
	color: #000000;
	text-align: left;
	margin-bottom: 25px;
}

figure.snip1163 * {
	-webkit-box-sizing: padding-box;
	box-sizing: padding-box;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

figure.snip1163 img {
	opacity: 1;
	width: 100%;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

figure.snip1163 figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

figure.snip1163 figcaption > div {
	height: 20%;
	overflow: hidden;
	width: 100%;
	position: absolute;
	bottom: 0;
}
figure.snip1163 h9{
	font-size: 1.5rem;
}

figure.snip1163 h9,
figure.snip1163 p {
	margin: 0;
	padding: 0 30px;
	position: absolute;
	width: 100%;
	left: 0;
}

figure.snip1163 h9 {
	color: ;
	font-weight: 400;
	top: 80%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color:rgb(0,0,0);
}

figure.snip1163 p {
	opacity: 0;
	font-size: 0.9rem;
	font-weight: 500;
	-webkit-transform: translate3d(0%, -150%, 0);
	transform: translate3d(0%, -150%, 0);
}

figure.snip1163 a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
}

figure.snip1163:hover img,
figure.snip1163.hover img {
	opacity: 0.3;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

figure.snip1163:hover figcaption h9,
figure.snip1163.hover figcaption h9 {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	opacity: 0.9;
	/*color: #000000;*/
}

figure.snip1163:hover figcaption p,
figure.snip1163.hover figcaption p {
	opacity: 0.7;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	color: #000000;
}
@media only screen and (max-width: 991px){
	figure.snip1163 p {
		font-size: 0.8rem;
	}
	figure.snip1163 h9{
		font-size: 1.0rem;
	}
}

/* ----- Favoritos ----- */
#btnFavoritos {
	position: fixed;
	cursor: pointer;
	z-index: 400;
	bottom: 0px;
	left: 12%;
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 60px;
	background-color: ;
	/*background: linear-gradient(45deg, #1C3155 25%, #165f90 100%);*/
	/*background: linear-gradient(45deg,  25%,  100%);*/
	box-shadow: 6px 6px 20px 0 rgba(28,49,85,.1);
	font-size: 24px;
	color: ;
	transition: transform .2s ease;
	transform-origin: left bottom;
}

#btnFavoritos:hover {
	transform: scale(1.1);
}

#btnFavoritos > div {
	height: 50px;
	display: flex;
	align-items: center;
	position: relative;
}
#btnFavoritos > div > i {
	font-size: 26px;
	/*color: #e30045;*/
	color: ;
	padding: 10px;
	width: auto;
	top: 50%;
	left: 50%;
	vertical-align: middle;
}
#btnFavoritos a, #btnFavoritos a:active, #btnFavoritos:hover, #btnFavoritos a:visited{
	color: ;
	font-size: 1rem;
}

#btnFavoritos > div > span {
	padding: 0 30px 0 0px;
	font-size: 16px;
	font-weight: 600;
}

#btnFavoritos > div > sup {
	position: absolute;
	top: 0;
	right: 0;
	background-color: ;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	padding: 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: ;
	transform: translate(25%, -25%);
}
@media only screen and (max-width: 768px){
	#btnFavoritos > div {
		display: none;
		visibility: hidden;
	}
}

/*
@media (max-width: 740px) {
	#btnFavoritos > div {
		height: 46px;
	}
	#btnFavoritos > div > i {
		width: 46px;
	}
	#btnFavoritos > div > span {
		display: none;
	}
	#btnFavoritos > div > sup {
		width: 22px;
		height: 22px;
		font-size: 13px;
		transform: translate(35%, -35%);
	}
	#btnFavoritos::-moz-focus-inner{padding:0;border-style:none}
	#btnFavoritos{
   		outline:none !important;
		box-shadow: none;
	}
	#btnFavoritos:active, #btnFavoritos:active:focus, #btnFavoritos:visited, #btnFavoritos:focus{
		outline:0 !important;
		box-shadow: none;
	}
}*/	

.item_notis, .item_notis a, .item_notis a:link, .item_notis a:hover, .item_notis a:active, .item_notis a:visited{
	text-align: left;
	font-size: 1.2rem;
	color: #5b5b5b;
	margin-bottom: 10px;

}
.title-notis {
  color: #5b5b5b;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  /*font-family: 'Poppins', sans-serif;*/
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 25px;
  margin-left: 0;
  padding-left: 20px;
  text-align: left;
}
.title-notis::before {
    background-color: #5b5b5b;
    content: "";
    height: 22px;
    left: 0px;
    position: absolute;
    top: -2px;
    width: 5px;
}

.link_more_notis, a.link_more_notis, .link_more_notis a:link, .link_more_notis a:hover, .link_more_notis a:active, .link_more_notis a:visited
{
	position: absolute;
	padding: 8px;
	bottom: 0;
	right: 0;
	background-color: ;
	color: ;
}

.centerItem{
	margin: 0 auto;
	text-align: center;
}

.letter {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin: 0px auto 20px;
  padding: 24px;
  position: relative;
  width: 80%;
}
.letter:before, .letter:after {
  content: "";
  height: 98%;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.letter:before {
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  left: -5px;
  top: 4px;
  transform: rotate(-2.5deg);
}
.letter:after {
  background: #f6f6f6;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  right: -3px;
  top: 1px;
  transform: rotate(1.4deg);
}







.menu-share {
	position: fixed;
	left:30%;
	bottom: 0;
	-webkit-transform: translateX(-35%);
	-moz-transform: translateX(-35%);
	-ms-transform: translateX(-35%);
	-o-transform: translateX(-35%);
	transform: translateX(-35%);
	z-index: 99;
}
.menu-share .toggle_share {
	width: 50px;
	height: 35px;
	cursor: pointer;
	font-size: 22px;
	font-style: 400;
	line-height: 37px;
	background-color: ;
	color: ;
	text-align: center;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
li#compartilhar_mobile{
	cursor: pointer;
	color: #666 !important;
}
@media only screen and (max-width: 978px) {
	.menu-share {
		display: none;
		visibility: hidden;
	}
}


.messenger_button {
  position: fixed;
  left: 30px;
  bottom: 105px;
  cursor: pointer;
  /*font-family: Arial, Helvetica, sans-serif;*/
  z-index: 2;
}


.messenger_button .messenger_icon {
  color: #ffffff;
  width: 56px;
  height: 56px;
  background: linear-gradient(0deg, #0070FF 10%, #00C5FF);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  display: flex;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.messenger_icon a, .messenger_icon a:active, .messenger_icon a:hover, .messenger_icon a:visited{
	color:#FFF;
}
@media only screen and (max-width: 768px) {
	.messenger_button {
		display: none;
		visibility: hidden;
	}
}




.profile_card {
  font-family: 'Poppins', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;

  background: #fff;
  color: #333;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 16px;
}
.profile_card * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.profile_card img {
  max-width: 100%;
  vertical-align: top;
}
.profile_card .image {
  position: relative;
  border-bottom: 4px solid #34495e;
  z-index: 1;
}
.profile_card .image:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #34495e transparent transparent transparent;
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  z-index: -1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.profile_card .image p {
  font-weight: 500;
  margin: 0;
  padding: 0 30px;
  line-height: 1.6em;
  position: absolute;
  top: 50%;
  width: 100%;
  color: ;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  font-style: italic;
  background: rgb(0,0,0);

}
.profile_card figcaption {
  background-color: #ffffff;
  padding: 25px;
}
.profile_card h3 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: 400;
}
.profile_card h3 span {
  font-weight: 800;
}
.profile_card h5 {
  margin: 0 0 15px;
  font-weight: 400;
}
.profile_card i {
  margin-right: 5px;
  display: inline-block;
  font-size: 24px;
  color: #000000;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.05);
}
.profile_card i:hover {
  background-color: ;
  color: white !important;
}
.profile_card:hover .image:before,
.profile_card.hover .image:before {
  border-color:  transparent transparent transparent;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.profile_card:hover .image p,
.profile_card.hover .image p {
  opacity: 1;
}
/*.profile_card:hover img,
.profile_card.hover img {
  opacity: 0.2;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}*/

@media only screen and (max-width: 978px) {
	.profile_card{
		display: block;
		clear: both;
		margin: 15px auto;
		text-align: center;
		float: none;
	}
}

p.lead {
	font-size: 25px;
	width: 100%;
	display: block;
	clear: both;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

#page_start{
	font-size: 1.1rem;
}


.overlay_post{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255,255,255,0.8) url("https://www.meuimobisite.com.br/images/carregando.gif") center no-repeat;
}
/* Turn off scrollbar when body element has the loading class */
body.loading_post{
	overflow: hidden;   
}
/* Make spinner image visible when body element has the loading class */
body.loading_post .overlay_post{
	display: block;
}


.loading-div{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255,255,255,0.8) url("https://www.meuimobisite.com.br/images/carregando.gif") center no-repeat;
}
.loading-div img {
	margin-top: 20%;
	margin-left: 50%;
	background: rgba(255,255,255,0.8) url("https://www.meuimobisite.com.br/images/carregando.gif") center no-repeat;
}	

.linkpage a:link, 
.linkpage a:hover,
.linkpage a:visited,
.linkpage a:active {
	color: ;
	text-decoration: none !important;
}

/* Pagination style  PAGINACAO 2020 */
.pagination{margin:0;padding:0; font-weight: 400; font-size: 14px; font-family:  'Open Sans', Verdana, Helvetica, sans-serif; }
.pagination li{
	display: inline;
	border: 1px solid #ddd;
	margin-right: -1px;
	padding: 10px 0px;
}
.pagination li a, .pagination li a:link, .pagination li a:visited{
    text-decoration:none;
	color: #565656;
	background-color:#fff;
	padding: 10px 15px;
}
.pagination li.first {
    border-radius: 5px 0px 0px 5px;
}
.pagination li.last {
    border-radius: 0px 5px 5px 0px;
}
.pagination li a:hover{
	color:  !important;
	background-color: ;
	padding: 10px 15px;
}
.pagination li.active{
	color:  !important;
	background-color: ;
	border: 1px solid ;
	padding: 10px 15px;
}



blockquote {
	cursor: pointer;
	border: 0;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
	width: 95%;
}
blockquote:before, blockquote:after {
	content: "\201C";
	color: ;
	font-size: 60px;
	font-family: georgia;
	position: absolute;
	z-index: 1;
}
blockquote:before {
	top: -20px;
	left: 5px;
}
blockquote:after {
	content: "\201D";
	bottom: 0;
	right: 5px;
}
blockquote p {
	background: ;
	border-radius: 5px;
	color: ;
	line-height: 1.5;
	margin-bottom: 20px;
	padding: 10px 40px;
	position: relative;
	font-family:'Poppins',sans-serif;
	font-size: 1.3rem;
}
blockquote p:after {
	content: '';
	height: 0;
	position: absolute;
	width: 0;
	border: 8px solid transparent;
	border-top-color: ;
  	border-left-color: ;
	top: 100%;
	left: 35px;
}

blockquote p a:link, 
blockquote p a:hover,
blockquote p a:visited,
blockquote p a:active {
	color: ;
	text-decoration: none !important;
}

blockquote small {
	display: block;
	color: ;
	font-size: 1.3rem;
}
blockquote small:before {
	content: '\2014 \00A0';
}



.galeriaFundo{
    background: ;
    color: ;
    padding:  5px;
	box-shadow: 0 calc(2/16 * 1rem) 1rem ;
	border-radius: calc(8/16 * 1em);
	margin: 0 auto;
	text-align: center;
	width: fit-content;
}
.galeriaFundo img{
	max-height: 400px;
	max-width: 100%;
}
.galleryphotos{
    display: block;
    overflow: hidden;
    cursor: pointer;
}
.floatGaleria{
	float: right; 
	margin: 0px 0px 15px 15px;
	display: inline;
	position:relative;

}
.floatTexto{
	float: left; 
	display: inline;
	width: 60%;
}

.separatorDiv{
	padding-top: 15px;
	padding-bottom: 15px;
    border-bottom: 1px dashed ;
}
.separatorDiv:last-child{
	border-bottom: 0px;
}
.separator100{
	margin-top: 15px;
	height:1px;
	width: auto;
	border-top: 1px dashed ;
}

.formphone .input-group .form-control, .intl-tel-input { width: 100%;}
.intl-tel-input {font-size: 14px;}
.input-group > .intl-tel-input.allow-dropdown {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}
.formphone .input-group > .intl-tel-input.allow-dropdown > .flag-container {
	z-index: 4;
}
.formphone .input-group .intl-tel-input input{
	border-radius: 0px;
}
#status{
	margin: 0 auto;
	text-align: center;
}

.formphone .input-group-addon,
.formphone .input-group-btn {
    white-space: nowrap;
}
.formphone .input-group-addon {
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
	-webkit-border-top-right-radius: 0.25rem;
	-webkit-border-bottom-right-radius: 0.25rem;
	-moz-border-radius-topright: 0.25rem;
	-moz-border-radius-bottomright: 0.25rem;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}


/* ---------------------------------- */
/* Back to top
------------------------------------- */
#backtotop {
	position: fixed;
	right: 0;
	display: none;
			bottom: 25px;
		margin: 0 25px 0 0;
	z-index: 995;
}
#backtotop a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 44px;
	height: 44px;
	background-color: ;
	opacity: 1;
    transition: all 0.3s;
    border-radius: 3px;
    text-align: center;
    font-size: 26px
}
body #backtotop a { color: ; }
#backtotop a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	content: "\f106";
	position: relative;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-55%);
	transform: translateY(-55%);

}


.equal-cols {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
  
.equal-cols:before,
.equal-cols:after {
	display: block;
}

.equal-cols > [class*='col-'] {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.equal-cols > [class*='col-'] > * {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto; 
}





/*
.overlay_whatsapp {
  position: fixed;
  display: none; 
  width: 100%; 
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); 
  z-index: 2;
  cursor: pointer;
}

.element_overlay{
	position:absolute;
	top:50%;
	left:50%;
	font-size:50px;
	user-select:none;
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
}

.element_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
  width: 48%;
  height: 59%;
}*/

.overlay_whatsapp {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 0.7);
  overflow-x: hidden;
  transition: 0.5s;
}
.overlay_whatsapp a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.overlay_whatsapp a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay_whatsapp .overlay-content {
  position: relative;
  /*top: 25%;*/
  width: 100%;
  text-align: center;
  /*margin-top: 30px;*/
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
}

.overlay_whatsapp .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
	.overlay_whatsapp .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}
.call_whats, .show_whatsapp{
	cursor: pointer;
}



.home iframe {
	transition: opacity 500ms ease-in-out;
	transition-delay: 250ms;
}




/*links flutuantes mobile*/
.nav_fixa{
	display: none;
	visibility: hidden;
}
@media only screen and (max-width: 768px){
	.nav_fixa{
		display: block;
		visibility: visible;
		position: fixed;
		bottom: 0;
		left: 20%;
		z-index:99;
	}
}

.nav_fixa .item {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	display:inline;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:12px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
	border-right: 1px solid #cecece;
}
.nav_fixa .item:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.nav_fixa .item:active {
	position:relative;
	top:1px;
}
.nav_fixa .item i{
	font-size: 1.3rem;
	padding-bottom: 5px;
}
.nav_fixa .fa-facebook-messenger {
	color:#0177ff !important;
}	
.nav_fixa .fa-phone-alt {
	color:#08c390 !important;
}	
.nav_fixa .fa-heart {
	color:#e00044 !important;
}	
.nav_fixa .fa-share-alt {
	color:#6b9cb6 !important;
}	

/*formulario de busca sem slidertopo*/
/*
.search_back{
	position: relative;
	width: 100%;

	height: auto;
	background-color: ;
	color: ; 
}
.title_search{
	width: 20%;
	font-size: 2.3rem;
	display: inline-block;
}
.trapezio {

	top: 0;
	left: 35px;
	height: 0;
    border-left: 200px solid transparent;
    border-bottom: 200px solid red;
}*/
.search_back{
	position: relative;
	width: 100%;
}
.box_search3 {
    width:100%;
	background:;
	color: ;
	margin:0px auto;
}
.effect7 {
    position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effect7:before, .effect7:after {
    content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:0;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.effect7:after {
    right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}
.left_search{
	display: inline-block;
	float: left;
	width:15%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.item_search{
	font-size: 1.2rem;
	padding: 5px;
	color: ;
}

.right_search{
	display: inline-block;
	float: right;
	width: 85%;
	padding-top: 10px;
}

[class^="ribbon-"] {
	 position: relative;
	 margin-bottom: 0px;
}
[class^="ribbon-"]:before, [class^="ribbon-"]:after {
	 content: "";
	 position: absolute;
}
.ribbon-2 {
	width: 100%;
	height: 50px;
	background: ;
	left: -12px;
	cursor: pointer;
}
.ribbon-2:before {
	height: 0;
	width: 0;
	border-bottom: 8px solid ;
	border-left: 8px solid transparent;
	top: -8px;
}
.ribbon-2:after {
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;

	right: -15px;
}
.text_rib{
	color: ;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ribbon-3 {
	width: 100%;
	height: 50px;
	background: transparent;
	left: -12px;
	cursor: pointer;
}
.ribbon-3:before {
	height: 0;
	width: 0;
	border-bottom: 8px solid transparent;
	border-left: 8px solid transparent;
	top: -8px;
}
.ribbon-3:after {
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;

	right: -15px;
}
.text_rib2{
	color: ;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1354px){

	.ribbon-2 {
		padding-top: 20px;
		padding-bottom: 35px;
		height: 60px;
	}
}

@media only screen and (max-width: 992px){
	.left_search{
		display: block;
		width: 100%;
		top: 0%;
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		transform: translateY(0%);
	}
	.right_search{
		display: block;
		width: 100%;
	}
}
@media only screen and (max-width: 1350px){
	.text_rib, .text_rib2{
		padding: 10px;
		margin: 5px auto;
	}
}



/*
form .main-search-form {
  display: flex;
}

.main-search-box input,
.main-search-box select,
.main-search-box button {
  font-size: 1em;
}

.main-search-box input,
.main-search-box select{
  border: 2px solid #ddd;
  background-color: #ddd;
  box-sizing: border-box;
  width:100%;
  padding: 0.5em;
}

.main-search-box button {
  padding: 0.5em 1em;
  flex-grow: 1;
  background: orange;
  color: white;
  border: none;
}*/


/* ---------------------------------- */
/* Search Forms Styling
------------------------------------- */
.main-search-container {
	position: absolute;
	padding: 170px 0;

	z-index: 99;
	left:50%;
	top: 50%;
	transform: translate(-50%, -50%);

/*
	left:50%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);*/
}

.main-search-container h1,
.main-search-container h2 {
	text-align: center;
	color: ;
	font-size: 36px;
}

.main-search-form {
	width: 660px;
	display: block;
	margin: 0 auto;
	position: relative;
	margin-top: 35px;
}

.main-search-box {
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
	padding: 30px;
	padding-bottom: 20px;
	margin-top: -9px;
	border-radius: 3px;
}

.main-search-box.no-shadow {
	box-shadow: none;
	padding: 0;
	margin: 0;
}


/* Search Type Buttons*/
.search-type {
	display: inline-block;
	padding-bottom: 35px;
	position: relative;
}

.search-type input[type="radio"] { display: none; }

.search-type label {
	background-color: #fff;
	color: #333;
	cursor: pointer;
	display:inline-block;
	text-align: center;
	padding: 9px 18px;
	margin: 0 15px 0 0;
	float: left;
	transition: all 0.2s;
	border-radius: 3px;
}

.search-type label:hover,
.search-type label.active {
	background-color: ;
	color: ;
}

.search-type-arrow {
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate3d(3px,0,0);
}

/* Forms Alignment
------------------------------------- */

/* Main input + button alignment */
.main-search-input {
	width: 100%;
	position: relative;
	margin-bottom: 18px;
	display: flex;
}

.row.with-forms .main-search-input { margin-bottom: 0; }

.main-search-input input {
	display: inline-block;
	margin: 0;
	flex: 1;
}

.main-search-input button.button {
	width: auto;
	min-width: 120px;
	margin: 0;
	position: relative;
	margin-left: 20px;
	flex: 0 auto;
	height: 51px;
	background-color: ;
	color: ;
}

.larger-input button.button,.larger-input input[type=submit]{
	height: 55px;
	min-width: 120px;
	background-color: ;
	color: ;
	border-radius: 3px;
	border:0px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
}
.larger-input input {
	height: 55px;
	min-width: 120px;
	border:0px;
}


/* Alignment */
.row.with-forms input,
.row.with-forms input[type="text"],
.row.with-forms input[type="password"],
.row.with-forms input[type="email"],
.row.with-forms input[type="number"],
.row.with-forms textarea,
.row.with-forms input,
.row.with-forms select,
.row.with-forms .chosen-container {
	margin-bottom: 18px;
}

.row.with-forms {
	margin-left: -10px;
	margin-right: -10px;
}

.with-forms .col-xs-1, .with-forms .col-sm-1, .with-forms .col-md-1, .with-forms .col-lg-1,
.with-forms .col-xs-2, .with-forms .col-sm-2, .with-forms .col-md-2, .with-forms .col-lg-2,
.with-forms .col-xs-3, .with-forms .col-sm-3, .with-forms .col-md-3, .with-forms .col-lg-3,
.with-forms .col-xs-4, .with-forms .col-sm-4, .with-forms .col-md-4, .with-forms .col-lg-4,
.with-forms .col-xs-5, .with-forms .col-sm-5, .with-forms .col-md-5, .with-forms .col-lg-5,
.with-forms .col-xs-6, .with-forms .col-sm-6, .with-forms .col-md-6, .with-forms .col-lg-6,
.with-forms .col-xs-7, .with-forms .col-sm-7, .with-forms .col-md-7, .with-forms .col-lg-7,
.with-forms .col-xs-8, .with-forms .col-sm-8, .with-forms .col-md-8, .with-forms .col-lg-8,
.with-forms .col-xs-9, .with-forms .col-sm-9, .with-forms .col-md-9, .with-forms .col-lg-9,
.with-forms .col-xs-10, .with-forms .col-sm-10, .with-forms .col-md-10, .with-forms .col-lg-10,
.with-forms .col-xs-11, .with-forms .col-sm-11, .with-forms .col-md-11, .with-forms .col-lg-11,
.with-forms .col-xs-12, .with-forms .col-sm-12, .with-forms .col-md-12, .with-forms .col-lg-12 {
	padding: 0 10px;
}





/* More Search Options
------------------------------------- */
.more-search-options, .more-search-options_codigo {
	opacity: 0;
	visibility: hidden;
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	margin-top: 30px;
	transition: all 0.35s;
	z-index: 19;
	transform: translate3d(0,-20px,0);
}


.more-search-options.relative, .more-search-options_codigo.relative {
	position: relative;
	margin-top:0;
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0);
	transition: none;
	display: none;

}

.more-search-options.relative.active, .more-search-options_codigo.relative.active{ transform: translate3d(0,0,0); }

.more-search-options.relative .more-search-options-container, .more-search-options_codigo.relative .more-search-options-container {
	box-shadow: none;
	padding:0;
	margin: 20px 0 5px 0;
}

/* Custom box*/
.custom-box {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	border-radius: 0 0 3px 3px;
}

.custom-box .checkboxes { padding: 20px 30px 25px 30px }


.more-search-options:before, .more-search-options_codigo:before {
	position: absolute;
	top: -10px;
	width: 100%;
	content: "";
	background-color: #fff;
	height: 10px;
	display: inline-block;
	z-index: 101;
}

.more-search-options.relative:before, .more-search-options_codigo.relative:before { display: none; }

.more-search-options.active, .more-search-options_codigo.active {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,-10px,0);
}

.more-search-options-container {
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
	position: relative;
	padding: 30px 30px 25px 30px;
	padding-top: 0;
	border-radius: 0 0 3px 3px;
}


/* Trigger */
a.more-search-options-trigger, a.more-search-options-trigger_codigo{
	color: #3d3d3d;
}
.more-search-options-trigger, .more-search-options-trigger_codigo {
	font-size: 15px;
	margin: 5px 0 2px 25px;
	display: inline-block;
}

.more-search-options-trigger:after, .more-search-options-trigger_codigo:after { content: attr(data-open-title); }
.more-search-options-trigger.active:after, .more-search-options-trigger_codigo.active:after { content: attr(data-close-title); }

.more-search-options-trigger:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f055";
	padding-right: 7px;
}
.more-search-options-trigger_codigo:before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f055";
	padding-right: 7px;
}
.more-search-options-trigger.active:before { content: "\f056" }
.more-search-options-trigger_codigo.active:before { content: "\f056" }

.widget .more-search-options-trigger_codigo { font-size: 16px; }




</style>
