/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: "Hind", sans-serif;
	color: #25283D;
	background-color: #ECF0F1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	text-decoration: none;
}

	.cd-faq-trigger{
		
		font-size: 20px!important;

	}
	.cd-faq-content p { font-size: 18px!important;}
	
	


/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 160px;
	background-color: #ffffff;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 83%, 79% 84%, 59% 100%, 40% 100%, 21% 85%, 0 84%);
	clip-path: polygon(0 0, 100% 0, 100% 85%, 84% 84%, 40% 100%, 40% 100%, 0% 85%, 0 84%);
}
.cd-auto-hide-header::after {
	clear: both;
	content: "";
	display: block;
}
.cd-auto-hide-header.is-hidden {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

@media only screen and (min-width: 1024px) {
.cd-auto-hide-header {
	height: 160px;
	border-bottom: 5px #25283D solid;
}
}
.cd-auto-hide-header .logo, .cd-auto-hide-header .nav-trigger {
	position: relative;
	margin-top: 0%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 100%;
	bottom: auto;
}
.cd-auto-hide-header .logo {
	margin-top: 0%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 48%;
	height: auto;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
	display: block;
}
.cd-auto-hide-header .nav-trigger {
	/* vertically align its content */
	display: table;
	height: 100%;
	padding: 0 1em;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #25283D;
	font-weight: bold;
	right: 0;
	border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
	/* vertically align inside parent element */
	display: table-cell;
	vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
	/* this is the menu icon */
	display: block;
	position: relative;
	height: 2px;
	width: 22px;
	background-color: #25283D;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
	/* this is the menu central line */
	margin: 6px auto 14px;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
	position: absolute;
	content: '';
	left: 0;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
	/* this is the menu icon top line */
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
	/* this is the menu icon bottom line */
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}

@media only screen and (min-width: 1024px) {
.cd-auto-hide-header .nav-trigger {
	display: none;
}
}
.cd-auto-hide-header.nav-open .nav-trigger em {
	/* transform menu icon into a 'X' icon */
	background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
	/* rotate top line */
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
	/* rotate bottom line */
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cd-primary-nav {
	display: inline-block;
	float: left;
	height: 10%;
	padding-right: 5%;
	margin-top: 50px;
	margin-left: 20%;
}
.cd-primary-nav > ul {
	position: absolute;
	z-index: 2;
	top: 260px;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	display: none;
	box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.cd-primary-nav > ul a {
	/* target primary-nav links */
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 5%;
	color: #25283D;
	font-size: 1.5rem;
	border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
	color: #8F3985;
}

@media only screen and (min-width: 1024px) {
.cd-primary-nav {
	/* vertically align its content */
	display: table;
}
.cd-primary-nav > ul {
	/* vertically align inside parent element */
	display: table-cell;
	vertical-align: middle;
	/* reset mobile style */
	position: relative;
	width: auto;
	top: 0;
	padding: 0;
	background-color: transparent;
	box-shadow: none;
}
.cd-primary-nav > ul::after {
	clear: both;
	content: "";
	display: block;
}
.cd-primary-nav > ul li {
	display: inline-block;
	float: left;
	margin-right: 1.5em;
}
.cd-primary-nav > ul li:last-of-type {
	margin-right: 0;
}
.cd-primary-nav > ul a {
	/* reset mobile style */
	height: auto;
	line-height: normal;
	padding: 0;
	border: none;
}
}
.nav-open .cd-primary-nav ul, .cd-primary-nav ul:target {
	/* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
	display: block;
}

@media only screen and (min-width: 1024px) {
.nav-open .cd-primary-nav ul,  .cd-primary-nav ul:target {
	display: table-cell;
}
}
/* -------------------------------- 

2. Auto-Hiding Navigation - with Sub Nav

-------------------------------- */
.cd-secondary-nav {
	position: relative;
	z-index: 1;
	clear: both;
	width: 100%;
	height: 50px;
	background-color: #25283D;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
}
.cd-secondary-nav::after {
	/* gradient on the right - to indicate it's possible to scroll */
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	height: 100%;
	width: 35px;
	background: transparent;
	background: -webkit-linear-gradient(right, #25283D, rgba(37, 40, 61, 0));
	background: linear-gradient(to left, #25283D, rgba(37, 40, 61, 0));
	pointer-events: none;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}
.cd-secondary-nav.nav-end::after {
	opacity: 0;
}
.cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
	height: 100%;
}
.cd-secondary-nav ul {
	/* enables a flex context for all its direct children */
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0 5%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.cd-secondary-nav ul::after {
	clear: both;
	content: "";
	display: block;
}
.cd-secondary-nav li {
	display: inline-block;
	float: left;
	/* do not shrink - elements float on the right of the element */
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.cd-secondary-nav li:last-of-type {
	padding-right: 20px;
}
.cd-secondary-nav a {
	display: block;
	color: #ffffff;
	opacity: .6;
	line-height: 50px;
	padding: 0 1em;
}
.cd-secondary-nav a:hover, .cd-secondary-nav a.active {
	opacity: 1;
}

@media only screen and (min-width: 1024px) {
.cd-secondary-nav {
	height: 70px;
	overflow: visible;
}
.cd-secondary-nav ul {
	/* reset mobile style */
	display: block;
	text-align: center;
}
.cd-secondary-nav li {
	/* reset mobile style */
	float: none;
	-webkit-flex-shrink: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
}
.cd-secondary-nav a {
	line-height: 70px;
}
.cd-secondary-nav a.active {
	box-shadow: inset 0 -3px #8F3985;
}
}
/* -------------------------------- 

3. Auto-Hiding Navigation - with Sub Nav + Hero Image

-------------------------------- */
.cd-secondary-nav.fixed {
	position: fixed;
	top: 60px;
}
.cd-secondary-nav.slide-up {
	-webkit-transform: translateY(-60px);
	-ms-transform: translateY(-60px);
	transform: translateY(-60px);
}

@media only screen and (min-width: 1024px) {
.cd-secondary-nav.fixed {
	top: 80px;
	/* fixes a bug where nav and subnab move with a slight delay */
	box-shadow: 0 -6px 0 #25283D;
}
.cd-secondary-nav.slide-up {
	-webkit-transform: translateY(-80px);
	-ms-transform: translateY(-80px);
	transform: translateY(-80px);
}
}
/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
	padding: 60px 5% 2em;
	overflow: hidden;
}
.cd-main-content.sub-nav {
	/* to be used if there is sub nav */
	padding-top: 110px;
}
.cd-main-content.sub-nav-hero {
	/* to be used if there is hero image + subnav */
	padding-top: 0;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
	margin-top: 50px;
}
.cd-main-content p {
	max-width: 60%;
	line-height: 1.6;
	margin: 2em auto;
	color: #777;
}

@media only screen and (min-width: 1024px) {
.cd-main-content {
	padding-top: 30px;
}
.cd-main-content.sub-nav {
	padding-top: 150px;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
	margin-top: 70px;
}
.cd-main-content p {
	font-size: 2.0rem;
}
}
/*
	adjust the positioning of in-page links
	http://nicolasgallagher.com/jump-links-and-viewport-positioning/
*/
.cd-main-content.sub-nav :target::before, .cd-main-content.sub-nav-hero :target::before {
	display: block;
	content: "";
	margin-top: -50px;
	height: 50px;
	visibility: hidden;
}

@media only screen and (min-width: 1024px) {
.cd-main-content.sub-nav :target::before,  .cd-main-content.sub-nav-hero :target::before {
	margin-top: -70px;
	height: 70px;
}
}
/* -------------------------------- 

Intro Section

-------------------------------- */
.cd-hero {
	/* vertically align its content */
	display: table;
	width: 100%;
	margin-top: 60px;
	height: 300px;
	background: url(../img/bg.jpg) no-repeat center center;
	background-size: cover;
}
.cd-hero .cd-hero-content {
	/* vertically align inside parent element */
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

@media only screen and (min-width: 768px) {
.cd-hero {
	height: 400px;
}
}

@media (min-width: 1024px) {
.cd-hero {
	height: 450px;
	margin-top: 80px;
}
}
.title-bloco {
	font-weight: 700;
	letter-spacing: -1px;
	font-size: 48px;
	padding: 20px;
	text-align: center;
}
.equipe {
	background: #fff;
	height: 350px;
	width: 80%;
	display: block;
	margin: auto;
}
#rodape {
	background: #FFF;
	height: 50px;
	padding-top: 40px;
	padding-bottom: 50px;
	display: block;
	margin-top: 30px;
}
#falencias h3 {
	text-align: center;
}
.popover {
	width: 230px;
	height: 175px;
	background-color: rgba(228,220,130,0.9);
	position: absolute;
	left: 50px;
	top: 30%;
	display: block;
	z-index: 9999!important;
}
.popover-title {
	display: none;
}
.popover-content {
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	padding-top: 20px;
	padding-bottom: 5px;
}
.popover-content a {
	padding: 10px 20px;
	background: #25283D;
	color: #fff;
	margin-top: -15px;
	display: block;
}
.btn-sm, .btn-group-sm > .btn {
	top: -10px;
	right: -10px;
	position: absolute;
	border-radius: 50%;
	background: #fff;
	color: #25283D;
	font-weight: bold;
	font-size: 15px;
	width: 35px;
	height: 35px;
}
.processos {
	background: #25283D;
	padding-top: 20px;
	padding-bottom: 50px;
}
.processos .row {
	margin: 30px 0px;
}
.processos h3 {
	color: #fff;
	font-size: 18px;
	text-align: left;
	padding-left: 30%;
}
.processos span {
	color: #fff;
	font-size: 18px;
	text-align: left;
	padding-right: 20%;
	display: grid;
}
.processos p {
	color: #fff;
	font-size: 18px;
	text-align: left;
}
.documentos {
	color: #fff!important;
	text-align: center;
	padding: 17px 20px;
	background-color: rgba(0,0,0,0.5);
	display: block;
	width: 90%!important;
	margin: auto;
	display: block;
}
.documentos-sub {
	color: #fff!important;
	text-align: center;
	padding: 17px 20px;
	background-color: rgba(0,0,0,0.5);
	display: block;
	margin: auto;
	width: 70%;
}
.icone {
	margin-right: 5px;
}
.icone-voltar {
	float: left;
	margin-right: 5px;
	font-size: 15px;
	margin-top: -2px;
}
.breadcrumb {
	display: block;
	text-align: center;
	margin: auto;
	padding: 20px;
	margin-bottom: 20px;
	margin-top: 0px;
}
.breadcrumb-item {
	color: #25283D!important;
}
.breadcrumb-item:after {
	content: " > ";
	padding-right: 3px;
	padding-left: 3px;
}
.breadcrumb > .active {
	content: " ";
	color: #333!important;
	font-weight: bold;
}
.btn-voltar {
	float: right;
	font-weight: bold;
	padding: 10px;
	border-radius: 3px;
	background: #25283D;
	color: #fff;
	margin-top: -10px;
}
.btn-habilitacao {
	float: right;
	font-weight: bold;
	padding: 15px 15px!important;
	border-radius: 3px;
	background: #25283D;
	color: #fff!important;
	margin-top: 40px;
	margin-right: 150px;
}
.form-contato {
	width: 50%;
	display: block;
	margin: auto;
}
.form-control{
	position: relative;
	z-index: 9;
}
span.texto-rodape {
	text-align: center!important;
	width: 90%!important;
	height: 30px;
	margin: auto;
	display: block;
	float: none;
}
.mob {
	display: none;
}

.destaque{color:#25283D; font-size: 25px; background-color:#F9ED70; padding: 13px; width: 30%; margin: auto; margin-top:15px;}



/*MOBILE IPAD HORIZ*/
@media  (min-width: 901px)  and (max-width: 1200px) {
	
.btn-habilitacao {
	float: right;
	font-weight: bold;
	padding: 15px 15px!important;
	border-radius: 3px;
	background: #25283D;
	color: #fff!important;
	margin-top: 40px;
	margin-right: 100px;
	font-size:15px; 
}
	

}
	
	
	/*MOBILE IPAD VERT*/
@media  (min-width: 501px)  and (max-width: 900px) {

.no-mob {
	display: none!important;
}
.mob {
	display: block!important;
}
	
	.logo img{ margin:auto!important; display: block;}

	.cd-secondary-nav li{width: 30%;text-align: center;}
	
	.cd-secondary-nav a {
width: 30%;
		text-align: center;
		float: none;
		margin: auto;
}
	
.cd-main-content {
	padding: 60px 0% 2em;
	overflow: hidden;
	
}
	
	.processos h3{
		text-align:center!important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		font-size:27px;
		font-weight: bold;
	}
	
	.processos span{
		text-align:center!important;
			padding-left: 0px !important;
		padding-right: 0px !important;
		padding-top: 15px;
		font-size:25px;
	}
	
	.cd-faq-items.slide-in{
		z-index: 999;
		
	}
	.cd-faq-group .cd-faq-title h2{
		text-align: center;
	}
	
	.cd-faq-trigger{
		text-align:center!important;
		font-size: 25px!important;
		padding: 20px 20px!important;
		font-weight: bold;
	}

.title-bloco {
	font-weight: 700;
	letter-spacing: -1px;
	font-size:40px;
	padding: 20px;
	text-align: center;
}
	.cd-main-content p{
		width:85%;
		margin: auto;
		max-width: 85%!important;
		text-align: justify;
		
	}

.barra-menu-rodape {
	position: fixed;
	width: 100%;
	bottom: 0px;
	display: block;
	background: rgba(220,220,220,0.9);
	border-top: 0.1em #25283D solid;
	height: 55px;
	left: 0px;
	z-index: 9999;
}
.barra-menu-rodape a {
	padding: 12px 0px;
	font-size: 18px;
	color: #25283D;
	text-align: center;
	display: block;
}
.lettering-mob {
	text-align: center;
	padding: 15px;
	font-size: 20px;
	color: #036;
	display: block;
	float: left;
	top: -10px;
	position: relative;
	margin: 2px;
	width: 100%;
	min-width: 200px;
	height: auto;
	line-height: 25px;
}
.divisa {
	border-top: dotted 0.08em #24C2A1;
	padding-top: 30px;
	padding-bottom: 10px;
	border-left: none;
}
.popover {
	width: 230px;
	height: 140px;
	background-color: rgba(228,220,130,0.9);
	position: absolute;
	top: 40%!important;
	display: block;
	z-index: 9999!important;
}
.home-mob {
	position: fixed;
	left: 0px;
	top: 40px;
	padding: 15px;
	background: #25283D;
	color: #fff;
	z-index: 9999;
	font-size: 20px;
	border-radius: 0 3px 3px 0px;
}
.destaque{color:#25283D; font-size: 25px; background-color:#F9ED70; padding: 13px; width: 70%; margin: auto; margin-top:15px; margin-bottom: 30px;}

}


/*MOBILE CELPHONE*/
@media screen and (max-width: 500px) {
.no-mob {
	display: none!important;
}
.mob {
	display: block!important;
}
	
.cd-main-content {
	padding: 60px 0% 2em;
	overflow: hidden;
	
}
	
.title-bloco {
	font-weight: 700;
	letter-spacing: -1px;
	font-size:40px;
	padding: 20px;
	text-align: center;
}
	.cd-main-content p{
		width:85%;
		margin: auto;
		max-width: 85%!important;
		text-align: justify;
		
	}

	
.barra-menu-rodape {
	position: fixed;
	width: 100%;
	bottom: 0px;
	display: block;
	background: rgba(220,220,220,0.9);
	border-top: 0.1em #25283D solid;
	height: 55px;
	left: 0px;
	z-index: 9999;
}
.barra-menu-rodape a {
	padding: 12px 0px;
	font-size: 18px;
	color: #25283D;
	text-align: center;
	display: block;
}
.lettering-mob {
	text-align: center;
	padding: 15px;
	font-size: 20px;
	color: #036;
	display: block;
	float: left;
	top: -10px;
	position: relative;
	margin: 2px;
	width: 100%;
	min-width: 200px;
	height: auto;
	line-height: 25px;
}
.form-contato {
	width: 90%;
	display: block;
	margin: 20px auto;
	z-index: 0;
}
	.form-contato input{
		z-index: 1;
		position: relative;
		
	}
.divisa {
	border-top: dotted 0.08em #24C2A1;
	padding-top: 30px;
	padding-bottom: 10px;
	border-left: none;
}
.popover {
	width: 230px;
	height: 140px;
	background-color: rgba(228,220,130,0.9);
	position: absolute;
	top: 40%!important;
	display: block;
	z-index: 9999!important;
}
.home-mob {
	position: fixed;
	left: 0px;
	top: 40px;
	padding: 15px;
	background: #25283D;
	color: #fff;
	z-index: 9999;
	font-size: 20px;
	border-radius: 0 3px 3px 0px;
}
	
	.btn-voltar {
		position: fixed;
	left: 0px;
	top: 110px;
	font-weight: bold;
	padding: 20px 15px;
		border-radius: 0 3px 3px 0px;
	background: #25283D;
	color: #fff;
		font-size: 18px;
		z-index: 9999;
	
}
	
	
.destaque{color:#25283D; font-size: 25px; background-color:#F9ED70; padding: 13px; width: 70%; margin: auto; margin-top:15px; margin-bottom: 30px;}
#rodape {
	background: #FFF;
	padding-top: 20px;
	padding-bottom: 20px;
	display: block;
	margin-top: 30px;
	margin-bottom: 30px;
	width: 100%;
	height: 100px;
}
	
	.processos .row {
	margin: 10px 0px;
}
	
	
	.processos h3{
		text-align:center!important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		font-size:23px;
		font-weight: bold;
				padding-top: 25px;
	}
	
	.processos span{
		text-align:center!important;
			padding-left: 0px !important;
		padding-right: 0px !important;
		padding-top: 15px;
		font-size:21px;
	}
	
	
	.documentos {
	color: #fff!important;
	text-align: center;
	padding: 17px 20px;
	background-color: rgba(0,0,0,0.5);
	display: block;
	width: 100%!important;
	margin: auto;
	
}
	
	
	
	.cd-faq-items.slide-in{
		z-index: 999;
		
	}
	.cd-faq-group .cd-faq-title h2{
		text-align: center;
	}
	
	.cd-faq-trigger{
		text-align:center!important;
		font-size: 25px!important;
		padding: 20px 20px!important;
		font-weight: bold;
	}
	.cd-faq-content p {width: 100%!important; font-size: 18px!important;}
	
	
	
		/*--------------TABELAS----------------------------------*/
		
		div#example2 {
			display: block;
			margin: auto;
			width: 100% !important;
		}
		
		table#example2.display.dataTable {
			width: 100%!important;
		}
		
		table.dataTable thead th,
		table.dataTable thead td {
			color: #444!important;
		}
		
		table.dataTable tbody th,
		table.dataTable tbody td {
			color: #555!important;
			padding: 20px!important;
		}
		
		div#example2_filter.dataTables_filter {
			display: block;
			width: 100%;
			padding: 10px 0;
			background: #25283D;
			margin-bottom: 30px;
		}
		
		div#example2_filter.dataTables_filter label {
			display: block;
			width: 90%;
	
			color: #fff;
			font-size: 21px;
			text-align: center;
			margin: 10px auto;
		}
		
		div#example2_filter.dataTables_filter label input {
			width: 250px;
			height: 40px;
			color: #026;
			font-size: 20px;
			text-align: center;
			margin-bottom: 10px;
			margin-top: 10px;
		}
		/*--------------FIM TABELAS----------------------------------*/

}
