:root {
	--color-primary: #b1141f;
	--color-secondary: #1f864c;
	--color-white: #fff;
}


body {
	overflow-x: hidden;
	font-weight: 400;
	display: flex;
	flex-direction: column;
}

@media (max-width: 600px) {
	body {
		font-size: 14px;
	}
}

p {
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--color-primary);
}

.container {
	max-width: 1180px;
}

@media (min-width: 1000px) {

	/* Animations */
	.anime-scroll [data-animate] {
	  opacity: 0;
	  transition: .5s;
	}

	.anime-scroll [data-animate="left"] {
	  transform: translate3d(-50px, 0, 0);
	}

	.anime-scroll [data-animate="right"] {
	  transform: translate3d(50px, 0, 0);
	}

	.anime-scroll [data-animate="top"] {
	  transform: translate3d(0, -50px, 0);
	}

	.anime-scroll [data-animate="bottom"] {
	  transform: translate3d(0, 50px, 0);
	}

	.anime-scroll [data-animate="fade"] {
	  opacity: 0;
	}

	.anime-scroll [data-animate="zoom"] {
	  transform: scale(.6);
	}

	.anime-scroll [data-animate="zoomIn"] {
		transform: scale(1.3);
		opacity: 0;
		transform-origin: top;
		transition: .7s;
	}

	.anime-scroll [data-animate].animate {
	  opacity: 1;
	  transform: translate3d(0px, 0px, 0px) scale(1);
	}

	.anime-scroll [data-delay="1"] {
		transition-delay: .1s;
	}

	.anime-scroll [data-delay="2"] {
		transition-delay: .2s;
	}

	.anime-scroll [data-delay="3"] {
		transition-delay: .3s;
	}

	.anime-scroll [data-delay="4"] {
		transition-delay: .4s;
	}

	.anime-scroll [data-delay="5"] {
		transition-delay: .5s;
	}

}

/* Util */
.util {
	background: var(--color-primary);
	position: relative;
}

.util:before {
	content: "";
	position: absolute;
	background: var(--color-secondary);
	left: 0;
	bottom: -5px;
	right: 0;
	height: 4px;
}
/* End util */


/* Header */
.header {
	padding: 0;
	border-top: 4px solid var(--color-secondary);
	position: relative;
}


.header p {
	padding-top: 7px;
	margin-bottom: 7px;
	color: #fff;
}

.header__social {
	text-align: right;
}

.header__logo {
	display: block;
	position: relative;
	text-align: center;
}

/*.header__logo:before {
	content: url(../img/bg-logo.png);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: 1;
}*/

/*.header__logo img {
	position: relative;
	z-index: 1000;
	top: 12px;
}*/

.icon-lang {
	background: rgba(255, 255, 255, .8); 
	position: absolute; 
	right: 0; 
	top: 10px; 
	text-align: right; 
	padding: 5px 10px;
	margin-left: auto;
}

@media (min-width: 1000px) {
	.icon-lang {
		right: 1%; 
	}
}

@media (max-width: 1000px) {
	.icon-lang {
		position: relative;
		top: 0;
		margin-top: 5px;
		margin-bottom: 10px;
	}
}

@media (max-width: 800px) {
	.header__logo  {
		height: auto;
	}
}

@media (max-width: 600px) {


	.header__logo:before {
		content: "";
		background: url(../img/bg-logo.png) no-repeat 50% 0;
		background-size: auto 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		transform: none;
		min-height: 80px;
	}

	/*.header__logo img {
		top: 5px;
		width: 110px;
	}*/

	.icon-lang{
		width: 125px;
		top: -25px;
		right: 10px;
	}

	.icon-lang a{
		margin-bottom: 5px;
	}
}


.navegation {
	background: var(--color-primary);
	position: sticky;
	top: 0;
	z-index: 1010;
}

.navegation .navbar {
	padding-right: 0;
	padding-left: 0;
}


.navegation .nav-link {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: .75em;
	position: relative;
	text-align: center;
	border-radius: 15px;
	text-transform: uppercase;
	font-weight: 700;
}

.navegation .nav-link:hover,
.navegation .nav-link.active {
	background: #88060f;
	color: #fff;
}

/*.header .nav-link:hover:before,
.header .nav-link.active:before {
	content: "";
	background: var(--color-secondary);
	height: 6px;
	border-radius: 3px;
	position: absolute;
	bottom: 2px;
	left: 8px;
	right: 8px;
	color: var(--color-secondary);
}*/

.navegation .dropdown-menu {
	background: #ce2323;
	border-color: #ce2323;
	min-width: 200px;
	border-radius: 0;
}


.navegation .dropdown-item {
	color: #fff;
	font-weight: 700;
	border-bottom: 1px dotted #333;
	padding: 9px;
	font-family: 'Montserrat', sans-serif;
    font-size: .75em;
}


.navegation .dropdown-item:hover,
.navegation .dropdown-item:focus {
	background: #178547; 
}

.navegation .dropdown-menu a:last-child {
	border: 0;
}


@media (min-width: 1200px) {
	.navegation .dropdown:hover > .dropdown-menu,
	.navegation .dropdown-submenu:hover > .dropdown-menu {
		display: block;
	}

	.navegation .dropdown-menu {
		margin: 0;
	}
	.nav-item{margin-right: 15px;}
}

.navbar-toggler {
	color: #fff;
	border-color: #fff;
	background: var(--color-secondary);
	padding: 0.36rem .75rem 0.46rem;
}

.navbar-toggler svg {
	fill: #fff;
}


.header .navbar-expand-lg .navbar-nav .nav-link {
	margin: 0;
	padding-left: .8em;
	padding-right: .8em;
}

@media (max-width: 1010px) {
	.navegation {
		order: 1;
	}

	.header {
		order: 2;
	}

	.main {
		order: 3;
	}

	.footer {
		order: 4;
	}
}


/*@media (max-width: 1200px) {
	.header .nav-link {
		font-size: 0.9rem;

	}
}*/

.br-contact {
	display: none;
}

/*@media (max-width: 1160px) {
	.br-contact {
		display: block;
	}


	.header .nav-link {
	    margin: 0;
	    padding-top: .6em;
	    padding-bottom: .6em;
	    padding-left: 10px;
	    padding-right: 10px;
	    text-align: left;
	    color: #fff;
	    border-radius: 0;
	}

	.header .nav-link:before {
		display: none;
	}

	.header .nav-link:hover {
		background: var(--color-secondary);
	}

	.navbar-collapse {
		background: var(--color-primary);

	}

.navegation {
		padding: 10px 0;
		max-height: 80px;
	}
	
}*/

/*.navbar-brand img {
	width: 200px;
}*/

/*@media (max-width: 800px) {
	.navbar-brand img {
		width: 180px;
	}
}*/


/*@media (max-width: 600px) {
	.navbar-brand img {
		width: 180px;
	}
}*/

/* Painel */
.painel {
	position: relative;
	margin-bottom: 0 !important;
}

.painel .slick-prev {
	left: 10px;
}

.painel .slick-next {
	right: 10px;
}

.painel__item {
	min-height: 414px;
	position: relative;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	/*padding-left: 80px;
	padding-right: 80px;*/
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8em;
	text-align: center;
}

.painel__item:before {
	content: "";
	background: linear-gradient(to top, transparent, rgba(0,0,0,.8));
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.painel__item h1 {
	color: #fff;
	font-size: 2.6em;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, .5);
	font-weight: 700;
	position: relative;
}

.painel__item p {
	text-align: center;
	font-size: 1.4em;
	font-weight: normal;
	color: #fff;
	position: relative;
	z-index: 100;
	text-transform: uppercase;
	font-weight: 700;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, .5);
}

.painel__item a {
	position: relative;
	z-index: 100;
}

@media (max-width: 1160px) {
	.painel__item {
	/*	min-height: calc(100vh - 122px);*/
	}
}

@media (max-width: 900px) {
	.painel__item h1 {
		font-size: 2.3em;
	}
}

@media (max-width: 700px) {
	.painel__item h2 br,
	.painel__item h1 br {
		display: none;
	}

	.painel__item h1 {
		font-size: 2.3em;
	}
}


@media (max-width: 600px) {
	.painel__item h1 {
		font-size: 1.5em;

	}

	.painel__item p {
		font-weight: 500;
		font-size: 1.2em;
	}
}


/* About home */
.about {
	padding: 3em 0 0;
}

.about__title {
	font-size: 2.6em;
	text-transform: uppercase;
	margin-bottom: 40px;
	border-bottom: 4px solid var(--color-secondary);
}

@media (max-width: 780px) {
	.about__title {
		font-size: 1.8em;
	}
}

.about figure img {
	outline-offset: -12px;
	outline: 1px solid #e1e3e5;
}

.about__options {
	display: flex;
}

.about__options div {
	width: 33.3%;
}

.about__options a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.about__options strong {
	display: block;
	margin-top: 10px;
	color: var(--color-primary);
}

.generic-list-01 {
	padding: 0;
	list-style: none;
}

.generic-list-01 li {
	position: relative;
	padding-left: 20px;
}

.generic-list-01 li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	height: 8px;
	width: 8px;
	background: var(--color-secondary);
}
/* End About home */

/* Mini Curriculo */
.mini-curriculo {
	background: #e2e7e4;
	padding: 2em 0 1em;
}
/* End Mini Curriculo */


/* slick prev next */
/*.slick-prev,
.slick-next {
	width: 50px !important;
	height: 50px !important;
}

.slick-prev:before {
	content: url(../img/prev.png) !important;
}

.slick-next:before {
	content: url(../img/next.png) !important;
}*/

/*@media (max-width: 1000px) {*/
	.slick-prev {
		left: 10px !important;
	}

	.slick-next {
		right: 10px !important;
	}
/*}*/

@media (max-width: 800px) {
	.slick-prev,
	.slick-next {
		transform: scale(.7);
	}
}
/* end slick prev next */


/* Media Home */
@media (max-width: 980px) {
	.media-home img {
		width: 30px;
	}

	.media-home h3 {
		font-size: 1.6em;
	}
}
/* End Media Home */

/* Main */
.main {
	color: #5b5b5b;
	line-height: 1.25rem;	
}

.main__topic {
	color: #498045;
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 1.45rem;
}

/* Link */
.link {
	color: #333;
}



/* Icon */
.icon {
	display: inline-flex;
	border-radius: 100%;
	height: 20px;
	width: 20px;
	align-items: center;
	justify-content: center;
	margin: 0 2px;
}

.icon a {
	color: #fff;
}

.icon svg {
	fill: var(--color-secondary);
}

.icon--primary {
	background: #c8e1f5;
}
/* End Icon */

/* Buttons */
.btn {
	/*border-radius: 20px;*/
	padding-left: 10px;
	padding-right: 10px;
}

.btn--primary {
	background: var(--color-primary);
	color: #fff;
}

.btn--primary:hover {
	opacity: .9;
	color: #fff;
}

.btn--outline-primary {
	border-color: var(--color-primary);
}

.btn--outline-primary:hover {
	background-color: #ddd;
}

.btn--secondary {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color:  #fff;
}

.btn--secondary:hover {
	opacity: .9;
	color: #fff;
}

.btn--third {
	background: none;
	border-color: var(--color-secondary);
	color:  var(--color-secondary);
}

.btn--third:hover {
	background-color: var(--color-secondary);
	opacity: .9;
	color: #fff;
}
/* End buttons */



/* Footer */
.footer {
	background: #ce2323;
	padding: 2.3em 0 0;
	color: #fff;
	font-size: .9em;
}

.footer h3 {
	font-size: 1.4em;
	font-weight: bold;
	color: #7cbe50;
}

.footer a {
	color: #fff;
}

.footer address {
	font-size: 1em;
}

.footer .media svg {
	fill: #fff;
}

.footer__social {
	text-align: right;
}

.footer__copy {
	padding: 8px 0 3px;
	font-size: 0.75rem;
	background: #ba1f1f;
	color: #fff;

}

.footer__copy__author {
	text-align: right;
}

@media (max-width: 1100px) {
	.footer__social{
		text-align: left;
		margin: 10px 0 0;
	}

	.footer__copy__author {
		margin-top: 10px;
	}
}

@media (max-width: 600px) {
	.footer {
		margin-top: 0;
	}

	.footer__social {
		margin-bottom: 10px;
	}

	.footer__copy__author {
		margin-top: 10px;
		text-align: right;
	}
}


.link-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
}

.link-whatsapp img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,1);
}

.link-whatsapp span {
  position: absolute; 
  bottom: -30px;
  white-space: nowrap;
  left: -65%;
  display: block;
  margin-left: -15px;
  background: rgba(37, 211, 102, 1);
  color: #fff;
  padding: 0px 10px;
  border-radius: 10px;
}


.pulse {
  display: block;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(37, 211, 102, 1);
  animation: pulse 2s infinite;

}
.pulse:hover {
  animation: none;
}

.pulse2 {
  display: block;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(37, 211, 102, 1);
  animation: pulse 2.5s infinite;

}
.pulse2:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
  }
  50% {
      -webkit-box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
  }
  50% {
      -moz-box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* Banner */
.banner {
	background-color: #eee;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: 50% 0;
	height: 286px; 
	margin-bottom: 40px;
}

.banner-01 {
	background-image: url(../img/topo/01.jpg);
}
 

.banner-02 {
	background-image: url(../img/topo/02.jpg);
}

.banner-03 {
	background-image: url(../img/topo/03.jpg);
}

.banner-04 {
	background-image: url(../img/topo/04.jpg);
}

.banner-05 {
	background-image: url(../img/topo/05.jpg);
}

.banner-06 {
	background-image: url(../img/topo/06.jpg);
}

.banner-07 {
	background-image: url(../img/topo/07.jpg);
}

.banner-08 {
	background-image: url(../img/topo/08.jpg);
}

.banner-09 {
	background-image: url(../img/topo/09.jpg);
}

/* End Banner */

.main__title {
	text-transform: uppercase;
	padding: 6em 0 10px;
	color: #fff;
	margin-top: 0;
}

.main__title h1 {
	font-weight: bold;
	font-size: 3em;
	position: relative;
	color: #f17124;
	line-height: 0.9em;
	margin-bottom: 30px;
}

.main__title h1:before {
	content: "";
	position: absolute;
	height: 1px;
	background: linear-gradient(to right, #f17124, transparent);
	left: 0;
	width: 50%;
	bottom: -10px;
}

.main__title h1:after {
	content: "";
	position: absolute;
	height: 1px;
	background: linear-gradient(to right, #f17124, transparent);
	left: 0;
	width: 50%;
	bottom: -13px;
}

.main__title hr {
	margin-top: 0;
	height: 1px;
	border: 0;
	background: #a7a7a7;
}

@media (max-width: 980px) {
	.banner {
		height: auto;
	}

	.main__title {
		padding: 30px 0;
	}
}

@media (max-width: 600px) {
	.banner {
		position: relative;
	}

	/*.banner:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		background: rgba(0,0,0,.5);
	}*/

	.main__title h1 {
		font-size: 2.3em;
	}
}

.generic-topic00 {
	font-size: 1.8em;
	text-transform: uppercase;
	color: #212121;
	border-bottom: 1px solid #d25e18;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.generic-topic01 {
	color: #f76208;
	font-size: 1.5em;
	text-transform: uppercase;
}

.generic-topic02 {
	font-size: 2em;
	text-transform: uppercase;
	color: #212121;
	margin-bottom: 20px;
}

/* Page Accounting Types */

.generic-media00 {
	background: #212121;
	color: #fff;
	padding: 3em 0 2em;
}

.generic-media00__title {
	font-size: 1.4em;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}

.generic-media00__title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #ef7406;
	border-radius: 5px;
}

/* End Page Accounting Types */

/* Gallery */
.card--photos {
	margin-bottom: 30px;
}

.icon-zoom,
.icon-zoom a {
	cursor: url(../img/zoom-in.png), auto;
}

/* rotate */
.rotate img {
  -webkit-transition: -webkit-transform 1s;
         -moz-transition: -moz-transform 1s;
           -o-transition: -o-transform 1s;
              transition: transform 1s;
      -webkit-transform-style: preserve-3d;
         -moz-transform-style: preserve-3d;
           -o-transform-style: preserve-3d;
              transform-style: preserve-3d;}
.rotate:hover img {
-webkit-transform: rotateY( 180deg );
 -moz-transform: rotateY( 180deg );
   -o-transform: rotateY( 180deg );
      transform: rotateY( 180deg );
}
/* end rotate */



/* INICIO PAGINAÇÕES */
#paginacao {margin: 20px 0; clear:both; padding: 5px; width:100%; height:auto; text-align:center; vertical-align:middle; float:left;}
#paginacao a{color:#333; text-decoration: none; border:1px solid #0e235f; line-height:20px; padding:6px 8px; margin-left:3px; font-size:14px;}
#paginacao a:hover {background: #ddd; }
#paginacao strong{background:#42743e;border:1px solid #42743e;line-height:0;padding:6px 8px;margin-left:3px;color:#fff; font-weight: normal; font-size: 14px;}
/* FIM PAGINAÇÕES */


.light-blue {
	color: #3dbdff;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*post video*/
.app_blog_post_video {
    width: 900px;
    max-width: 100%;
    margin: 30px auto 15px auto;
}

.app_blog_post_video_play {
    width: 900px;
    max-width: 90%;
    margin: 60px auto 0 auto;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-shadow: 1px 1px #000;
}

.app_blog_post_video_play_content {
    background: rgba(0, 0, 0, 0.7);
    display: block;
    padding: 8% 12%;
    margin: auto;
    text-align: center;
}

.app_blog_post_video_play_content_icon {
    font-size: 5em;
}

.app_blog_post_video_play_content img {
    width: 80px;
    margin-bottom: 30px;
}

.app_blog_post_video_play_content p {
    font-size: 0.875em;
    margin-top: 20px;
}

.app_blog_post_video_play_content_btn {
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    margin-top: 10px;
}

.app_blog_post_video_play_content_btn:hover {
    opacity: 1;
}

.app_blog_post_video_play_content_link {
    font-weight: bold;
    text-decoration: none;
    opacity: 0.9;
}

.app_blog_post_video_play_content_link:hover {
    opacity: 1;
}

.perfil{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	display: block;
	margin: 0 auto 10px auto;
}
 
.page-header h2{
	color: #0a146e;
	text-transform: uppercase;
	margin-bottom: 45px;
	padding-bottom: 5px;
	background: url(../img/titulo.jpg) no-repeat center bottom;
	font-size: 30px;
}
	
.bnr {
	height: 369px;
	width: 100%;
	background-size: cover;
	-webkit-background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bnr-clientes{
	background-image: url(../img/banner/clientes.jpg);
}

.bnr-empresa{
	background-image: url(../img/banner/empresa.jpg);
}
.bnr-contato{
	background-image: url(../img/banner/contato.jpg);
}
.bnr-sustentabilidade{
	background-image: url(../img/banner/sustentabilidade.jpg);
}
.bnr-noticias{
	background-image: url(../img/banner/noticias.jpg);
}
.bnr-produtos{
	background-image: url(../img/banner/produtos.jpg);
}
	
	.bnr h2{
		color: #fff;
		padding-top: 200px;
		font-size: 28px;
	}

	.bnr p{
		color: #fff;
		font-size: 20px;
	}

.marcas { 
    border: 1px solid #e8e8e8;
    height: 150px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
}

 .marcas img{
 	display: block;
 	max-height: 90%;
 	margin: 0 auto;
 	max-width: 90%;
 	vertical-align: middle;
 	position: relative;
 	top: 50%;
 	transform: translateY(-50%);
 }

 .tt{
 	color: #0d6daa;
 	font-size: 22px;
 	font-weight: 500;
 }

 .content-azul{
 	padding: 40px 0;
 	background: #0d6daa;
 }

 	.content-azul h4{
 		color: #fff;
 		font-size: 22px;
 		margin-bottom: 22px;
 	}

 	.content-azul p{
 		color: #fff;
 		font-size: 14px;
 	}

 	.content-azul ul{
 		color: #fff;
 		padding: 0;
 		margin: 0;
 		list-style: none;
 	}

 	.content-azul li{
 		border-bottom: 1px dotted #fff;
 		padding: 3px 0 3px 10px;
 		font-size: 14px;
 	}

 	.content-azul li:before{
 		width: 5px;
 		height: 5px;
 		content: "";
 		float: left;
 		background-color: #fff;
 		margin: 8px 0 0 -10px;
 	}
 	.content-azul img{
 		float: left;
 		margin: -80px 0 0 -30px;
 	}

 .figcaption{
 	padding: 10px 15px;
 	text-align: center;
 	color: #fff;
 	font-size: 22px;
 	font-weight: 600;
 	background-color: #0d6daa;
 }

 .text-azul{
 	padding: 10px 15px;
 	text-align: center;
 	color: #fff;
 	font-size: 22px;
 	font-weight: 600;
 	background: #53a8d7;
 }

 .bg-cinza{
 	background-color: #f1f1f1;
 	padding: 15px;
 	margin-top: -1rem;
 }

 .bg-cinza h5{
 	color: #0d6daa;
 	font-weight: 400;
 	font-size: 18px;
 }

 .bg-cinza h5 strong{
 	color: #0d6daa;
 }

 .bg-cinza p{
 	color: #585859;
 	font-size: 14px;
 }

 .blockquote{
 	border-left: 5px solid #00b6ff;
 	padding-left: 10px;

 }

 .prod h3,
 .tit{
 	color: #fff;
 	display: inline-block;
 	padding: 10px 25px 8px 25px;
 	background: #083f8a;
 	border-radius: 20px;
 	font-size: 18px;
 }
 .tit{
 	display: block;
 }

 .text{
 	color: #083f8a;
 	font-size: 16px;
 }

 .prod p{
 	color: #083f8a;
 	font-weight: 600;
 }
 .prod p:last-child{
 	color: #085282;
 	margin-top: 15px;
 	font-weight: 500;
 }

 .menu-produtos ul{
 	padding: 0;
 	margin: 0;
 	list-style: none;
 }

 .menu-produtos li{
 	text-align: left;
 }


 .menu-produtos li a{
 	display: block;
 	margin-bottom: 5px;
 	padding: 13px 25px;
 	color: #fff;
 	font-size: 14px;
 	background: #368ace;
 	font-weight: 500;
 	border-radius: 30px;
 }
 .menu-produtos li li a{ 
 	background: #fff;
 	color: #368ace;
 	border:1px solid #368ace;
 }

 .menu-produtos li li a.active,
 .menu-produtos li li a:hover{
 	color: #063d88;
 }

 .blue{
 	color: #085282;
 	font-size: 16px;
 }

 .btn-download{
 	margin-top: 30px;
 	width: 100%;
 	display: block;
 	font-weight: 600;
 	border: 2px solid #9ec10d;
 	color: #427220;
 	font-size: 14px;
 	border-radius: 30px;
 	max-width: 330px;
 	padding: 9px 45px;
 	background: url(../img/icones/download.png) no-repeat center right;
 }

 .menu-produtos .navbar-toggler-icon{
	 background: url(../img/icones/pull.png) no-repeat -3px -3px;
}
 .menu-produtos .navbar-toggler{
	border:1px solid #fff;
}

 .menu-produtos #navbarToggleExternalContent{
	width: 100%;
}

 .menu-produtos .navbar-toggler{
	width: 100%;
	margin-bottom: 5px;
}

@media (min-width: 992px) {
	.content_sobre{
		min-height: 600px;
	}
}

.img-sobre{
	position: absolute;
	right: 0;
}

.tt-color{
	color: #11753d;
}

.img-interp{ 
	position: relative;
	z-index: 0;
	margin-bottom: -60px;
	margin-left: -100px;
}

#form .form-group label{
	color: #ce2323;
	text-transform: uppercase;
	font-weight: 600;
}

 #form .form-control{
 	min-height: 45px;
 	border-radius: 0;
 }

#form .btn{
	background: #ce2323;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	width: 110px;
	border-radius: 0;
	margin-top: 15px;
}

#form .btn:hover{
	background: #45b563;
	color: #fff; 
}
 .captcha{
 	float: left;
 	border:1px solid #ccc;
 	margin-right: 10px;
 	padding: 9px 5px 9px 10px;
 }
.cmp-maior{
	color: #ce2323;
	display: block;
	margin-bottom: 5px;
}
 #captcha{
 	width: 180px;
 	float: left !important;
 }