:root {
	--color-primary: #197ec4;
	--color-secondary: #0a5589;
	--color-third: #e70c14;
	--color-fourth: #ffcb08;
}


body {
	overflow-x: hidden;
	font-weight: 400;
}

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

p {
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	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);
	color: #fff;
	font-size: .8em;
	padding: 7px 0;
	position: relative;
}

.util p {
	margin-bottom: 0;
}

@media (max-width: 1000px) {
	.util:before {
		display: none;
	}
}
/* end util */



/* Header */
.header {
	z-index: 1010;
	padding: 15px 0;
	color: var(--color-secondary);
	border-top: 2px solid var(--color-fourth);
	background: #fff;
}

.navegation {
	position: sticky;
	top: 0px;
	z-index: 1010;
	background: var(--color-primary);
	box-shadow: 3px 3px 3px rgba(0,0,0,.3);
	margin: 0;
}

.navegation:before {
	content: "";
	background: #3cc2f7;
	left: 0;
	top: 0;
	height: 3px;
	right: 0;
	position: absolute;
}


/*@media (max-width: 1000px) {
	.header {
		position: relative;
	}
}*/

/*
@media (min-width: 1000px) {
	.header .navegation {
		transition: padding .5s;
	}

	.header--fixed .navegation {
		padding: 20px 0;
	}

	.header__logo img {
		height: 160px;
		transition: height .5s;
	}

	.header--fixed img {
		height: 100px;
	}	
}
*/

.header p {
	font-size: .8em;
	padding-top: 10px;
	margin-bottom: 11px;
}

.header__social {
	text-align: right;
}

.header__logo {
	height: 0;
	display: block;
	position: relative;
	text-align: center;
	font-size: 0.01em;
	margin: 0;
	opacity: .01;
}



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

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


/*.navegation .navbar {
	padding: 0;
}
*/

.navegation .nav-link {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: .83em;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	border-top: 3px solid #3cc2f7;
	padding-top: 1em;
	padding-bottom: 1em;
	border-right: 1px solid #3cc2f7;

}

.navegation ul li:last-child .nav-link {
	border-right: 0;
}

.navegation .nav-link:hover,
.navegation .nav-link.active {
	background: var(--color-secondary);
	color: #fff;
	border-top-color: #ffcb08;
}

.navegation .dropdown-menu {
	background: #197ec4;
	padding: 0;
	border-color: none;
	color: #fff;
}
.navegation .dropdown-menu .dropdown-item{
	border-bottom: 1px dotted #fff;
	color: #fff;
	text-transform: uppercase;
	transition: all .4s;
	padding: .30rem 1rem;

}
.navegation .dropdown-menu .dropdown-item:hover{
	background: #0a5589;
}
.navegation .dropdown-menu .dropdown-item:last-child{
	border-bottom: none;
}

.navegation .dropdown-menu p {
	text-transform: uppercase;
	font-weight: bold;
}


/*.navegation .dropdown-item {
	color: #cf852a;
	border-bottom: 1px solid #333;
	padding-left: 7px;
}

.navegation .dropdown-item:hover,
.navegation .dropdown-item:focus {
	background: #cf852a;
	color: #333;
}

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


*/
@media (min-width: 1200px) {

	.navegation .dropdown:hover > .dropdown-menu {
		display: block;
	}

	.navegation .dropdown-menu {
		margin: 0;
	} 
}
@media all and (min-width: 992px) {
	.navbar{ padding-top: 0; padding-bottom: 0; }
	.navbar .has-megamenu{position:static!important;}
	.navbar .megamenu{left:0; right:0; width:100%; padding:20px;  }
	/*.navbar .nav-link{ padding-top:1rem; padding-bottom:1rem;  }*/
}



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

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


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


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

	}
}*/

.br-contact {
	display: none;
}

@media (max-width: 990px) {
	.br-contact {
		display: block;
	}
	/*.navegation {
		padding: 5px 0;
	}*/

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

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

/*	.navegation .nav-link:hover {
		background: var(--color-primary);
		color: #fff;

	}
*/
	/*.navbar-collapse {
		background: #c3c3c3;
		max-height: calc(100vh - 60px);
		overflow-y: scroll;

	}*/

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

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

@media (max-width: 800px) {
	.header {
		padding: 20px 0;
	}

	.navbar-brand img {
		width: 150px;
	}
}


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

/* About home */
.about {
	padding: 3em 0;
	background: url(../img/bg-sobrenos.jpg) no-repeat 50% 0;
	background-size: cover;
	position: relative;
}

.about__title {
	font-size: 1.8em;
	text-transform: uppercase;
}

.about h3 {
	font-size: 1.2em;
	font-weight: 600;
}

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

@media (max-width: 780px) {
	.about {
		background: radial-gradient(#f3f9fc, #cce4f4);
	}
} 
/* End About home */

/* Facility */
.facility {
	background: linear-gradient(to right, #b41419, #d41f25, #d41f25, #b41419);
	padding: 2em 0 1em;	
	color: #fff;
	text-align: center;
}

.facility h2 {
	color: #fff;
	font-weight: 700;
	font-size: 1.6em;
	text-transform: uppercase;
}

.facility p {
	font-size: 1.2em;
}

.facility a {
	color: #fff;
}

@media (max-width: 600px) {
	.facility img {
		height: 50px;

	}
}

/* End Facilicy */


/* carousel-1x3 home */
.carousel-1x3 {
	padding: 2em 0 2em;
}

.carousel-1x3__title {
	text-align: center;
	font-size: 1.8em;
	text-transform: uppercase;
}

.carousel-1x3__item {
	margin: 5px 15px;
	background: #efefef;
	padding: 45px 25px 10px;
	text-align: center;
	position: relative;
	box-shadow: 3px 3px 3px rgba(0,0,0,.3);
	overflow: hidden;
}

.carousel-1x3__item span {
	background: var(--color-secondary);
	color: #fff;
	position: absolute;
	left: -38px;
	top: 13px;
	padding: 3px 40px;
	transform: rotate(-30deg);
	font-size: 0.7em;
	text-transform: uppercase;

}

.carousel-1x3__item h3 {
	color: #333;
	font-size: 1.3em;
	border-bottom: 1px solid #b1b1b1;
	padding-bottom: 7px;
	margin-bottom: 20px;
}

.carousel-1x3__item div {
	min-height: 180px;
	background: #fff;
	align-items: center;
	display: flex;
	margin-bottom: 20px;
	margin-top: 10px;
}

.carousel-1x3__item img {
	margin-left: auto;
	margin-right: auto;
}
/* end carousel-1x3 home */


/* carousel-1x5 home */
.carousel-1x5 {
	padding: 3em 0 2.5em;
}

.carousel-1x5__title {
	text-align: center;
	font-size: 1.8em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.carousel-1x5__item {
	margin: 5px 15px;
	background: #fff;
	padding: 15px;
	box-shadow: 3px 3px 3px rgba(0,0,0,.3);
	border: 1px solid #ccc;
	outline: transparent solid 3px;
    outline-offset: 5px;
    transition: all .5s;
}

.carousel-1x5__item:hover {
	outline: #04508c solid 1px;
    outline-offset: -1px;
}

.carousel-1x5__item img {
	max-width: 100%;
	max-height: 100%;
}

.carousel-1x5__item div {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-1x5__item h3 {
	color: var(--color-secondary);
	font-size: .9em;
	text-transform: uppercase;
	font-weight: 500;
	margin: 15px 0;
	min-height: 51px;

}
/* end carousel-1x5 home */

/* carousel-1x4 home */
.carousel-1x4 {
	padding: 3em 0 2.5em;
}

.carousel-1x4__title {
	text-align: center;
	font-size: 1.8em;
	text-transform: uppercase;
	color: var(--color-third);
}

.carousel-1x4__slider.slick-slider {
	margin-bottom: 0;
}

.carousel-1x4__item {
	margin: 5px 15px;
	background: #fff;
	padding: 15px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-1x4__item img {
	max-width: 100%;
	max-height: 100%;
}



/* end carousel-1x4 home */

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




/* carousel-4 home */
.carousel-4 {
	background: #e5ebf2;
	padding: 3em 0 2.5em;
}

.carousel-4__title {
	text-align: center;
	font-size: 1.6em;
}

.carousel-4__item {
	padding: 20px 10px 0;
	margin: 5px 15px;
	text-align: center;
}

.carousel-4__item img {
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
}

.carousel-4__item strong {
	color: var(--color-primary);
}
/* end carousel-4 home */

/* .section-media home */
.section-media {
	padding: 3em 0 2em;
}
/* end .section-media */


/* 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: 20px;
	padding-right: 20px;

}

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

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

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

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

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

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

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

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

.btn--third:hover {
	opacity: .8;
	color: #fff;
}
/* End buttons */



/* Footer */
.footer {
	background: var(--color-primary);
	padding: 2.3em 0 0;
	color: #fff;
	font-size: .9em;
	position: relative;
}

.footer:before {
	position: absolute;
	content: "";
	height: 5px;
	left: 0;
	top: 0;
	right: 0;

	background: url(../img/border.png) no-repeat 50% 0;
	background-size: cover;
}

.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;
	color: #fff;
	background: var(--color-secondary);

}

.footer__copy__author {
	text-align: right;
}

@media (max-width: 1100px) {
	.footer:before {
		display: none;
	}

	.footer__social{
		text-align: left;
		margin: 10px 0 0;
	}

	.footer__copy {
		background: var(--color-secondary);
	}

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

/* Whastapp Fixed */
.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: 63px;
  white-space: nowrap;
  left: 0px;
  display: block;
  margin-left: -15px;
  background: rgba(37, 211, 102, 1);
  color: #fff;
  padding: 0px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.link-whatsapp span:before {
	position: absolute;
	content: "";
	left: 36px;
	bottom: -10px;
	height: 5px;
	width: 5px;
	border: 5px solid transparent;
	border-top: 5px solid rgba(37, 211, 102, 1);
}


.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);
  }
}
/* End Whatsapp Fixed */


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

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

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

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

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

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

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

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

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

/* End Banner */

.main__title {
	text-transform: uppercase;
	padding: 2.5em 0;
	color: #fff;
	margin-top: 0;
	margin-bottom: 40px;
	background: url(../img/topo.jpg) no-repeat center;
	background-size: cover;
	-webkit-background-size: cover;
}

.main__title h1 {
	font-weight: 800;
	font-size: 2em;
	position: relative;
	color: var(--color-secondary);
	line-height: 0.9em;
	/*border-bottom: 1px solid var(--color-primary);*/
	padding: 0px;
	margin: 0;
}


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

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

}

@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: var(--color-fourth);
	font-size: 1.2em;
	font-weight: 500;
	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 */

/* Page Product */
.main__side-product {
	background: #efefef;
}

.main__side-product h2 {
	color: #fff;
	font-size: 1em;
	background: var(--color-primary);
	padding: 10px 15px;
	text-transform: uppercase;
}

.main__side-product ul {
	list-style: none;
	padding: 5px 20px 0;
}

.main__side-product ul li {
	position: relative;
	border-bottom: 1px dotted var(--color-secondary);
}

.main__side-product ul li:last-child {
	border: 0;
}

.main__side-product ul li:before {
	content: "";
	height: 5px;
	width: 5px;
	background: var(--color-primary);
	position: absolute;
	left: 0;
	top: 13px;
}

.main__side-product ul li a {
	display: block;
	padding: 5px 10px 5px 15px;
	color: #333;
}

.product {
	border: 1px solid #c9c9c9;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.product img {
	max-width: 90%;
	max-height: 80%;
}
/* End Page Product */

/* Page Customer */
.brands__item {
	border: 1px solid #cecece;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brands__item img {
	max-height: 80%;
	max-width: 80%;
}

/* End Page Customer */

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

.zoom {
	transition: all .5s;
}

.zoom:hover {
	transform: scale(1.1);
}

.icon-zoom,
.icon-zoom a {
	cursor: url(../img/zoom-in.png), auto;
}
/* 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 */

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

.texto-serv{
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	text-transform: uppercase;
	color: #197ec4;
	font-weight: 800;
	line-height: 38px;
}
.texto-serv span{
	color: #0a5284;
}

.capa-produto .capa{
	height: 175px;
}

.capa-produto .capa a{
	display: block;
	width: 100%;
	height: 100%;
}

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

.capa-produto h3{
	font-size: 16px;
	font-weight: 600;
}

/*.capa-produto .btn{
	background: #e70c14;
	border-radius: 5px;
}*/
.noticia h3,
.boxcampanha h3{
	font-size: 16px;
	margin-top: 15px;
	font-weight: 600;
}

.time{
	color: var(--color-primary);
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 18px;
}

.noticia img{
	border-radius: 10px;
}


.marcas {
    border-radius: 10px;
    border: 1px solid #c9c9c9;
    height: 200px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
	.marcas {
   		height: 160px;
	}
}
 .marcas img{
 	display: block;
 	margin: 0 auto;
 	max-width: 80%;
 }

 #form label{
 	color: #0f70b3;
 	text-transform: uppercase;
 	font-weight: 500;
 }

  #form .form-control{
 	min-height: 45px;
 	border:1px solid #ccc;
 }
  .captcha{
 	float: left;
 	border:1px solid #ccc;
 	margin-right: 10px;
 	padding: 9px 5px 9px 10px;
 }

 #captcha{
 	width: 180px;
 	float: left !important;
 }


 .btn-social{ 
 	background: #0f70b3;
 	border-radius: 5px;
 	color: #fff;
 	padding: 10px 15px;
 }

 .btn-social svg{
 	fill: #fff;
 	width: 19px;
 	height: 19px;
 }


/* Page Product Detail */
.product__thumbnail {
	padding: 20px;
}

.product__thumbnail,
.product__thumbnail__list div {
	border: 1px solid #aaa;
}

.product__thumbnail__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.product__thumbnail__list div {
	margin: 10px 5px;
	cursor: pointer;
	display: flex;
    align-items: center;
}

/* End Page Product Detail */