/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	color: #449cc9;
}

a:hover {
	color: #e24d55;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #6188b3;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #d97f23;
	color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: white;
	/*transition: all 0.5s;*/
	z-index: 997;
	padding: 10px 0;
}

#header.header-scrolled {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

#header.header-inner-pages {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

#header .logo a {
	color: #556270;
}

#header .logo img {
	max-height: 34px;
}

@media (max-width: 992px) {
	#header {
		padding: 12px 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu .botao-link {
	background-color: #449cc9;
	padding: 5px 25px;
	border-radius: 6px;
	color: #fff;
	width: 120px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	/*   margin-top: -5px; */
}

.nav-menu>ul {
	display: flex;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 12px 0 10px 28px;
	display: flex;
	align-items: center;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #556270;
	transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.nav-menu li#nav-corretor a {
	color: #119bc9;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #449cc9 !important;
}

.nav-menu li#nav-corretor a:hover,
.nav-menu li#nav-corretor.active>a,
.nav-menu li#nav-corretor:hover>a {
	color: #39b7fe !important;
}

.nav-menu a.botao-link:hover,
.nav-menu .active>a.botao-link,
.nav-menu li:hover>a.botao-link {
	color: #fff;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 15px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #556270;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #449cc9;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}

	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}

	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}

.form-acesso {
	float: right;
}

.form-acesso form {
	background: #fff;
	position: relative;
	border-radius: 4px;
}

.form-acesso form input[type="email"] {
	border: 0;
	padding: 4px;
	width: 132px;
}

.form-acesso form input[type="password"] {
	border: 0;
	padding: 4px;
	width: 132px;
}

.form-acesso form input[type="submit"] {
	width: 78px;
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #449cc9;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

.form-acesso form input[type="submit"]:hover {
	background: #df3740;
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

button.mobile-nav-toggle:focus {
	outline: none !important;
}

.mobile-nav-toggle i {
	color: #556270;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
	font-size: 14px;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a,
.mobile-nav button {
	color: white;
	display: block;
	position: relative;
	color: #556270;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav li#nav-corretor a {
	color: #119bc9;
}

.mobile-nav button {
	text-align: left;
	width: 100% !important;
	padding: 10px 25px !important;
	border-radius: 0 !important;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	/*   color: white; */
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(63, 73, 83, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 80vh;
	overflow: hidden;
	position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	position: absolute;
	top: -20px;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#hero .carousel-item .carousel-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}

#hero .carousel-item::before {
	content: '';
}

@media (min-width: 769px) {
	#hero .carousel-item.carousel-video video {
		width: 100%;
		width: 100%;
	}
}

#hero .carousel-item.carousel-video video {
	position: absolute;
	z-index: 1;
}

#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 70px;
	left: 50px;
	right: 50px;
	z-index: 3;
}

#hero .container {
	text-align: center;
}

#hero h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 48px;
	font-weight: 700;
}

#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
	width: 10%;
	top: 112px;
}

@media (max-width: 992px) {

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		top: 66px;
	}
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 36px;
	line-height: 1;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 10px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}

#hero .btn-get-started,
#icon-boxes .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #d97f23;
}

#hero .btn-get-started:hover {
	background: #d97f23;
}

@media (max-width: 992px) {
	#hero {
		height: 100vh;
	}

	#hero .carousel-container {
		top: 8px;
	}
}

@media (max-width: 768px) {
	#hero h2 {
		font-size: 28px;
	}
}

@media (min-width: 1024px) {

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}
}

@media (max-height: 500px) {
	#hero {
		height: 120vh;
	}
}

#hero p {
	font-size: 14px;
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
	padding-top: 0;
	z-index: 2;
	position: relative;
}

.icon-boxes-solucao {
	margin-top: -60px;
}

.icon-boxes.icon-boxes-solucao .icon-box,
.icon-boxes.icon-boxes-solucao .icon-box-auto {
	box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
	padding: 50px 50px;
}

.icon-boxes .icon-box,
.icon-boxes .icon-box-auto {
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
	width: 100%;
}

.icon-box img {
	float: left;
	max-height: 40px;
}

.icon-box-auto img {
	max-height: 180px;
	max-width: 100%;
}

.icon-boxes .icon-box.icon-boxes-detalhe-solucao,
.icon-boxes .icon-box-auto.icon-boxes-detalhe-solucao {
	color: #fff;
	border-radius: 5px;
}

.icon-boxes .icon-box.icon-boxes-detalhe-solucao p,
.icon-boxes .icon-box-auto.icon-boxes-detalhe-solucao p {
	color: #fff;
}

.icon-box .titulo-grande,
.icon-box-auto .titulo-grande {
	margin: 0;
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #444444;
	text-align: center;
	margin-bottom: 30px;
}

.icon-boxes .icon {
	margin: 0 auto 20px auto;
	display: inline-block;
	text-align: center;
}

.icon-boxes .icon i {
	font-size: 36px;
	line-height: 1;
	color: #f6b024;
}

.icon-boxes .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
	min-height: 42px;
}

.icon-boxes .title a {
	color: #3c8bb5;
}

.icon-boxes .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
	color: #777777;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 45px 0;
}

.section-bg,
.vantagens .icon-box,
.section-bg,
.vantagens .icon-box-auto {
	background-color: #fff;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #7d7d7d;
	font-family: "Poppins", sans-serif;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #449cc9;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #444444;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 18px 0;
	background: #f8f9fa;
	min-height: 40px;
	margin-top: 86px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 58px;
	}
}

.breadcrumbs h2 {
	font-size: 32px;
	font-weight: 300;
	margin: 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6b7b8d;
	content: "/";
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 58px;
	}

	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs h2 {
		margin-bottom: 10px;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# solucao
--------------------------------------------------------------*/
.solucao .content h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 60px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.solucao .content h3 {
	font-weight: 500;
	line-height: 32px;
	font-size: 24px;
}

.solucao .content ul {
	list-style: none;
	padding: 0;
}

.solucao .content ul li {
	padding: 10px 0 0 28px;
	position: relative;
}

.solucao .content ul i {
	left: 0;
	top: 7px;
	position: absolute;
	font-size: 20px;
	color: #449cc9;
}

.solucao .content p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
	padding: 55px 0;
	text-align: center;
}

.clients img {
	/* max-width: 45%; */
	transition: all 0.4s ease-in-out;
	display: inline-block;
	/* padding: 15px 0; */
	filter: grayscale(100%) contrast(1) opacity(0.8);
}

.clients:hover img {
	-webkit-filter: none;
	filter: none;
	transform: scale(1.15);
}

@media (max-width: 768px) {
	/*
  .clients img {
    max-width: 40%;
  }
  */
}

/*--------------------------------------------------------------
# covid
--------------------------------------------------------------*/

#covid {
	font-size: 14px;
}

/*--------------------------------------------------------------
# vantagens
--------------------------------------------------------------*/
.vantagens {
	background-color: #e0e0e0;
}

.vantagens .icon-box,
.vantagens .icon-box-auto {
	margin-bottom: 20px;
	padding: 30px;
	border-radius: 6px;
	min-height: 190px;
	height: 90%;
}

.vantagens .icon-box i,
.vantagens .icon-box-auto i {
	float: left;
	color: #449cc9;
	font-size: 40px;
}

.vantagens .icon-box h4,
.vantagens .icon-box-auto h4 {
	margin-left: 70px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

.vantagens .icon-box h4 a,
.vantagens .icon-box-auto h4 a {
	color: #556270;
	transition: 0.3s;
}

.vantagens .icon-box p,
.vantagens .icon-box-auto p {
	margin-left: 70px;
	line-height: 24px;
	font-size: 14px;
}

.vantagens .icon-box:hover h4 a,
.vantagens .icon-box-auto:hover h4 a {
	color: #449cc9;
}


/*--------------------------------------------------------------
# Numeros
--------------------------------------------------------------*/
.numeros {
	background-color: #6188b3;
	color: #fff;
	padding: 23px 0 45px 0;
}

.numeros p {
	font-size: 36px;
	margin: 0;
	font-size: 36px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #fff;
}

.numeros .descricao {
	color: #fff;
	text-align: center;
}



/*--------------------------------------------------------------
# Corretor
--------------------------------------------------------------*/

.corretor {
	background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url(../../img/landing-page/blog-recent-1.jpg) fixed center center;
	background-size: cover;
	font-size: 14px;
}

.corretor .section-title p {
	color: #fff;
}

.corretor .section-title h2 {
	color: #fff;
}

.corretor .section-title h2::after {
	background: #fff;
}

#corretor .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #444;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #dadada;
}

.corretor .corretor-item {
	margin-bottom: 30px;
}

.corretor #corretor-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.corretor #corretor-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 15px 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444444;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}

.corretor #corretor-flters li:hover,
.corretor #corretor-flters li.filter-active {
	color: #fff;
	background: #449cc9;
}

.corretor #corretor-flters li:last-child {
	margin-right: 0;
}

.corretor .corretor-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(85, 98, 112, 0.6);
}

.corretor .corretor-wrap::before {
	content: "";
	background: rgba(85, 98, 112, 0.6);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}

.corretor .corretor-wrap img {
	transition: all ease-in-out 0.3s;
}

.corretor .corretor-wrap .corretor-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 20px;
}

.corretor .corretor-wrap .corretor-info h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}

.corretor .corretor-wrap .corretor-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-style: italic;
}

.corretor .corretor-wrap .corretor-links {
	text-align: center;
	z-index: 4;
}

.corretor .corretor-wrap .corretor-links a {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 5px 0 0;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}

.corretor .corretor-wrap .corretor-links a:hover {
	color: white;
}

.corretor .corretor-wrap:hover::before {
	opacity: 1;
}

.corretor .corretor-wrap:hover img {
	transform: scale(1.2);
}

.corretor .corretor-wrap:hover .corretor-info {
	opacity: 1;
}


/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/

#contato p {
	font-size: 1rem;
}

#contato .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #d97f23;
}

.contato .contato-item {
	margin-bottom: 30px;
}

.contato #contato-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.contato #contato-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 15px 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444444;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}

.contato #contato-flters li:hover,
.contato #contato-flters li.filter-active {
	color: #fff;
	background: #449cc9;
}

.contato #contato-flters li:last-child {
	margin-right: 0;
}

.contato .contato-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(85, 98, 112, 0.6);
}

.contato .contato-wrap::before {
	content: "";
	background: rgba(85, 98, 112, 0.6);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}

.contato .contato-wrap img {
	transition: all ease-in-out 0.3s;
}

.contato .contato-wrap .contato-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 20px;
}

.contato .contato-wrap .contato-info h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}

.contato .contato-wrap .contato-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-style: italic;
}

.contato .contato-wrap .contato-links {
	text-align: center;
	z-index: 4;
}

.contato .contato-wrap .contato-links a {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 5px 0 0;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}

.contato .contato-wrap .contato-links a:hover {
	color: white;
}

.contato .contato-wrap:hover::before {
	opacity: 1;
}

.contato .contato-wrap:hover img {
	transform: scale(1.2);
}

.contato .contato-wrap:hover .contato-info {
	opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-button button:disabled {
	background-color: #cccccc !important;
}

.contact-button button {
	background-color: #449cc9;
	color: white;
	border: 0;
	padding: 10px 25px;
	font-size: 17px;
	border-radius: 6px;
	cursor: pointer;
	width: 195px;
}

.contact .info {
	width: 100%;
	background: #fff;
}

.contact .info i {
	font-size: 20px;
	color: #556270;
	float: left;
	width: 44px;
	height: 44px;
	background: #edeff1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #556270;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #556270;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	background: #fff;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: #449cc9;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	background: #449cc9;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #e24d55;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# corretor Details
--------------------------------------------------------------*/
.corretor-details .corretor-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.corretor-details .corretor-details-carousel .owl-nav,
.corretor-details .corretor-details-carousel .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.corretor-details .corretor-details-carousel .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.corretor-details .corretor-details-carousel .owl-dot.active {
	background-color: #449cc9 !important;
}

.corretor-details .corretor-info {
	padding-top: 45px;
}

.corretor-details .corretor-info h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
}

.corretor-details .corretor-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.corretor-details .corretor-info ul li+li {
	margin-top: 10px;
}

.corretor-details .corretor-info p {
	font-size: 15px;
	padding: 15px 0 0 0;
}

@media (max-width: 992px) {
	.corretor-details .corretor-info {
		padding-top: 20px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #4a5562;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	background: #515d6a;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Open Sans", sans-serif;
	color: #fff;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #449cc9;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: white;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #449cc9;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #df3740;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	font-weight: 600;
}

#footer .credits a:hover {
	color: white;
}

@media (max-width: 991px) {
	.menu-entrar {
		display: none;
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.menu-entrar {
		border-top: 1px solid #CCC;
		position: absolute;
		background-color: white;
		width: 930px;
	}
}

@media (min-width: 1200px) {
	.menu-entrar {
		border-top: 1px solid #CCC;
		position: absolute;
		background-color: white;
		width: 1110px;
	}
}

.esconde-menu {
	display: none;
}

.menu-deactive {
	background-color: #e0e0e0;
}

.menu-active {
	background-color: #449cc9;
	color: #ffffff;
}

#modalLogin .modal-dialog {
	-webkit-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	margin: 0 auto;
}


/*--------------------------------------------------------------
# Ajustes
--------------------------------------------------------------*/
.container-fluid,
.container-fluid h1,
.container-fluid h2,
.container-fluid h3,
.container-fluid h4,
.container-fluid h5,
.container-fluid h6,
.insp360-msg-bottom {
	font-family: Arial !important;
}

.btn-primary {
	border-color: #2e6da4;
}

.btn-primary:hover {
	color: #fff;
	background-color: #286090;
	border-color: #204d74;
}

.btn-primary.disabled,
.btn-primary:disabled {
	background-color: #0194bb;
	border-color: #2e6da4;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #286090;
	border-color: #122b40;
}

button:focus {
	outline: 1px dotted !important;
	outline: 5px auto -webkit-focus-ring-color !important;
}

.modal-open .modal {
	overflow-x: auto !important;
	overflow-y: auto !important;
}