/*
* Fonts ::: LATO;
*/

@font-face {
	font-family: 'Lato Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Regular'), url('./fonts/lato/Lato-Regular.woff') format('woff');
}


@font-face {
	font-family: 'Lato Italic';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Italic'), url('./fonts/lato/Lato-Italic.woff') format('woff');
}


@font-face {
	font-family: 'Lato Hairline';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Hairline'), url('./fonts/lato/Lato-Hairline.woff') format('woff');
}


@font-face {
	font-family: 'Lato Hairline Italic';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Hairline Italic'), url('./fonts/lato/Lato-HairlineItalic.woff') format('woff');
}


@font-face {
	font-family: 'Lato Light';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Light'), url('./fonts/lato/Lato-Light.woff') format('woff');
}


@font-face {
	font-family: 'Lato Light Italic';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Light Italic'), url('./fonts/lato/Lato-LightItalic.woff') format('woff');
}


@font-face {
	font-family: 'Lato Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Bold'), url('./fonts/lato/Lato-Bold.woff') format('woff');
}


@font-face {
	font-family: 'Lato Bold Italic';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Bold Italic'), url('./fonts/lato/Lato-BoldItalic.woff') format('woff');
}


@font-face {
	font-family: 'Lato Black';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Black'), url('./fonts/lato/Lato-Black.woff') format('woff');
}


@font-face {
	font-family: 'Lato Black Italic';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Black Italic'), url('./fonts/lato/Lato-BlackItalic.woff') format('woff');
}

.lato-regular {
	font-family: 'Lato Regular' !important;
}

.lato-italic {
	font-family: 'Lato Italic' !important;
}

.lato-hairline {
	font-family: 'Lato Hairline' !important;
}

.lato-hairline-italic {
	font-family: 'Lato Hairline Italic' !important;
}

.lato-light {
	font-family: 'Lato Light' !important;
}

.lato-light-italic {
	font-family: 'Lato Light Italic' !important;
}

.lato-bold {
	font-family: 'Lato Bold' !important;
}

.lato-bold-italic {
	font-family: 'Lato Bold Italic' !important;
}

.lato-black {
	font-family: 'Lato Black' !important;
}

.lato-black-italic {
	font-family: 'Lato Black Italic' !important;
}

/*
* Header
*/

.headerGradient{
	background: linear-gradient(180deg, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0) 100%) !important;
}

.headerLogo{
	width: auto !important;
	height: auto !important;
}

@media(max-width: 768px){
	.headerGradient{
		background: #212529 !important;
	}

	.header-transparent{
		position: initial !important;
	}
}

#search{
	padding-top: 10px !important;
}

/*
* Menu Mobile
*/

.menu-overlay-with-animation-2 ::after, 
.menu-overlay-with-animation-2 ::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.menu-overlay-with-animation-2 ::after, 
.menu-overlay-with-animation-2 ::before {
	content: '';
}

.cd-logo, .cd-nav-trigger {
	position: relative;
	display: inline-block;
}

.cd-logo {
	top: 28px;
	left: 5%;

}
.cd-logo img {
	display: block;
}

.sticky-header-active .cd-nav-trigger {
	height: 71px;
	width: 71px;
}

.cd-nav-trigger {
	top: 0;
	right: 0;
	height: 14px;
	width: 70px;
	z-index: 5;
	text-indent: 100%;
	white-space: nowrap;
	transition: 0.3s;
	cursor: pointer;
}

.cd-nav-trigger .cd-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
	width: 18px;
	height: 3px;
	background-color: #000;
	z-index: 10;
	width: 35px;
}

.cd-nav-trigger .cd-icon::before, 
.cd-nav-trigger .cd-icon:after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
}

.cd-nav-trigger .cd-icon::before {
	-webkit-transform: translateY(-6px) rotate(0deg);
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-o-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
	width: 35px;
	left: 0;
	top: -3px;
}

.cd-nav-trigger .cd-icon::after {
	-webkit-transform: translateY(6px) rotate(0deg);
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-o-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
	width: 35px;
	left: 0;
	top: 3px;
}

.cd-nav-trigger::before, 
.cd-nav-trigger::after {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0%;
	height: 100%;
	width: 100%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
}

.cd-nav-trigger::before {
	background-color: #0000;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.cd-nav-trigger::after {
	background-color: #d0ff0100;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

.cd-nav-trigger.close-nav::before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cd-nav-trigger.close-nav::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.cd-nav-trigger.close-nav .cd-icon {
	background-color: #fff0 !important
}

.cd-nav-trigger.close-nav .cd-icon::before, 
.cd-nav-trigger.close-nav .cd-icon::after {
	background-color: #fff;
}

.cd-nav-trigger.close-nav .cd-icon::before {
	-webkit-transform: translateY(0) rotate(45deg);
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-o-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.cd-nav-trigger.close-nav .cd-icon::after {
	-webkit-transform: translateY(0) rotate(-45deg);
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-o-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: -3px;
	width: 35px;
	left: 0;
}

.cd-primary-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
	background-color: #000;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	list-style: none;
	opacity: 0;
	-webkit-transition: visibility 0s, opacity 0.3s;
	-moz-transition: visibility 0s, opacity 0.3s;
	transition: visibility 0s, opacity 0.3s;
}

.cd-primary-nav li {
	margin: .8em 0;
	text-align: center;
	text-transform: capitalize;
}

.cd-primary-nav a {
	font-size: 20px;
	font-size: 1.25rem;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	transition: color 0.2s;
	font-family: 'Noto Sans Bold';
	font-size: 28px;
	color: #fff !important;
}

.cd-primary-nav a:hover{
	color: #fcd52c !important;
	text-decoration: none;
}

.no-touch .cd-primary-nav a:hover {
	color: #ffffff;
}

.cd-primary-nav.fade-in {
	visibility: visible;
	opacity: 1;
}

@media only screen and (min-width: 768px) {
	.cd-primary-nav li {
		margin: 2em 0;
	}

	.cd-primary-nav a {
		font-size: 28px;
		font-size: 1.75rem;
		text-transform: uppercase;
	}
}

@media only screen and (min-width: 1170px) {
	.cd-primary-nav li {
		margin: 2.6em 0;
	}

	.cd-primary-nav a {
		font-size: 32px;
		font-size: 2rem;
	}
}

.cd-overlay-nav, .cd-overlay-content {
	position: fixed;
	top: 28px;
	right: 5%;
	height: 4px;
	width: 4px;
	-webkit-transform: translateX(-20px) translateY(20px);
	-moz-transform: translateX(-20px) translateY(20px);
	-ms-transform: translateX(-20px) translateY(20px);
	-o-transform: translateX(-20px) translateY(20px);
	transform: translateX(-20px) translateY(20px);
}

.cd-overlay-nav span, .cd-overlay-content span {
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cd-overlay-nav.is-hidden, .cd-overlay-content.is-hidden {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
	z-index: 2;
}

.cd-overlay-nav span {
	background-color: #bfc601;
}

.cd-overlay-content {
	z-index: 4;
}

.cd-overlay-content span {
	background-color: #bfc601;
}

.cd-content {
	padding: 80px 0;
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
	z-index: 1;
}

.cd-content .cd-intro {
	height: 200px;
	padding-top: 4.6em;
}

.cd-content h1 {
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
}

.cd-content p {
	line-height: 1.5;
	color: #fff;
}

@media only screen and (min-width: 768px) {
	.cd-content .cd-intro {
		height: 250px;
		padding-top: 6em;
	}

	.cd-content h1 {
		font-size: 28px;
		font-size: 1.75rem;
	}
	
	.cd-content p {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.8;
	}
}

/*
* Google
*/

.grecaptcha-badge {
	display: none;
}

/*
* Swal
*/

.swal2-container {
	padding: 0px !important;
}

.swal2-popup {
	border-radius: 0px !important;
	padding: 30px 50px 50px 50px !important;
	width: 100% !important;
}

.swal2-actions {
	max-width: 425px !important;
	display: flex !important;
	z-index: 1 !important;
	flex-wrap: initial !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	margin: 1.25em auto 0 !important;
}

div#swal2-content {
	font-size: 20px;
	line-height: 20px;
	color: #454A60;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
	border: 0 !important;
	border-radius: 0 !important;
	background: initial !important;
	background-color: #000  !important;
	border-color: #000  #000  #000  !important;
	color: #FFF !important;
	border: 1px solid #000  !important;
}

.swal2-styled.swal2-confirm:hover,
.swal2-styled.swal2-cancel:hover {
	border: 1px solid #000  !important;
	background: #0000 !important;
	color: #000  !important;
}

.swal2-styled.swal2-confirm i,
.swal2-styled.swal2-cancel i {
	color: #FFF !important;
	margin-left: 6px;
}

.swal2-styled.swal2-confirm:hover i,
.swal2-styled.swal2-cancel:hover i {
	color: #000 !important;
}

.swal2-container.swal2-backdrop-show {
	background: rgba(0, 0, 0, 0.72);
	z-index: 99999;
}

.swal2-icon.swal2-error {
	border-color: #000 ;
	color: #000 ;
}

.break-line {
	width: min-intrinsic !important;
	width: -webkit-min-content !important;
	width: -moz-min-content !important;
	width: min-content !important;
	-ms-grid-columns: min-content !important;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: #000 ;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: #000 ;
}

.swal2-title {
	font-size: 72px !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
	border: .25em solid #000 ;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
	background-color: #000 ;
}

.swal2-styled:focus {
	outline: 0;
	box-shadow: none;
}

.swal2-icon {
	width: 3em;
	height: 3em;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
	top: 1.9em;
	left: .475em;
	width: 1.2em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
	top: 1.6em;
	right: 2em;
	width: 1.9375em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

div#swal2-content i {
	font-size: 82px;
	margin: 15px;
	color: #000 ;
}

div#swal2-content h1 {
	margin: 0px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*
* Scrollbar
*/

::-webkit-scrollbar {
	width: 18px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #000;
}

::-webkit-scrollbar-thumb:hover {
	background: #000;
}

/*
* Whats App
*/

a.btn-whatsapp {
	position: fixed;
	right: 5%;
	background-color: #1ebea5;
	display: inline-block;
	padding: 0px;
	border-radius: 5px;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.3);
	line-height: 21px;
	height: 80px;
	width: 80px;
	color: #fff !important;
	text-transform: uppercase;
	z-index: 9999;
	font-size: 38px;
	bottom: 5%;
	border-radius: 50%;
	animation: pulse 2s infinite;
	display: flex;
	justify-content: center;
	text-decoration: none;
	align-items: center;
}

a.btn-whatsapp:hover {
	background-color: #fff;
	color: #1ebea5 !important;
	border: 2px solid #1ebea5;
}

a.btn-whatsapp svg {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	margin: auto;
	padding: 5px;
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(7,219,215, 0.8);
		box-shadow: 0 0 0 0 rgba(7,219,215, 0.8);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(7,219,215, 0);
		box-shadow: 0 0 0 20px rgba(7,219,215, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(7,219,215, 0);
		box-shadow: 0 0 0 0 rgba(7,219,215, 0);
	}
}

/*
* Magnific Popup
*/

.dialog-termo .mfp-close {
	right: 40px;
	top: 38px;
}

.dialog.dialog-lg {
	max-width: 900px;
	max-height: 450px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 40px;
}

.dialog-termo::-webkit-scrollbar {
	width: 1em;
}

.dialog-termo::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.dialog-termo::-webkit-scrollbar-thumb {
	background-color: #000;
	outline: 1px solid #000;
}

/*
* Geral
*/

html {
  scroll-behavior: smooth;
}

a:hover {
	text-decoration: none !important; 
}

.limit-chars-title {
	overflow: hidden;
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;;
}

.limit-chars-desc {
	overflow: hidden;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

select {
	padding: 0px 30px 0 30px !important;
	-webkit-padding-end: 35px !important;
	-webkit-padding-start: 10px !important;
	margin: 0 !important;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: linear-gradient(45deg, #0000 50%, #000  50%), linear-gradient(135deg, #000  50%, #0000 50%), linear-gradient(to right, #000  , #000 ) !important;
	background-position: calc(100% - 18px) calc(1em + 6px), calc(100% - 13px) calc(1em + 6px), calc(100% - 2.4em) 0.3em !important;
	background-size: 5px 5px, 5px 5px, 1px 2.6em !important;
	background-repeat: no-repeat !important;
	height: 45px;
}

.titulo h2{
	background-color: white;
	padding-right: 15px;
	position: absolute;
}

.titulo div{
	border-bottom: 1px solid black;
	width: 100%;
	padding-top: 23px;
}

.load-more{
	color: #fff !important;
	background-color: #000 !important;
	border: 3px solid #000 !important;
	transition: color .3s, background-color .3s;
}

.load-more:hover{
	color: #000 !important;
	background-color: transparent !important;
}

/*
* Custom - Topo
*/

#header .header-body {
	background-color: #000 !important;
}

#header .header-nav.header-nav-line nav > ul li:hover > a:before {
	background: #fff;
}

/*
* Custom - Rodapé
*/

.social-icons.social-icons-icon-light.social-icons-clean li a i {
	color: #000 !important;
}

.social-icons.social-icons-icon-light.social-icons-clean li.li-social-icons:hover a i {
	color: #fff !important;
}

#footer .footer-copyright.footer-copyright-style-2 {
	background: #000;
	border-top: 1px solid #ffffff0d;
}

#footer{
	background-color: #000 !important;
	border-color: #000 !important;
}

/*
* Custom - Sidebar
*/

.hamburguer-btn .hamburguer span {
	background: #fff !important;
}

/*
* Custom - Images
*/

.img-resp-contain-500px {
	object-fit: contain;
	object-position: 50% 50%;
	width: 100%;
	height: 500px;
}

.img-resp-cover-500px {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 500px;
}

@media (max-width: 530px){
	.img-resp-contain-500px{
		height: auto !important;
	}
}

/*
* Custom - Btns
*/

.btn-outline {
	border-width: 1px !important;
}

html .btn-outline.btn-dark:active, 
html .btn-outline.btn-dark.active {
	color: #FFF !important;
	background-color: #000 !important;
	border-color: #000 !important;
}

html body .btn.btn-dark.btn-outline {
	padding: 15px 5px !important;
}

html body .btn.btn-dark.btn-dark-custom {
	padding: 15px 45px !important;
}

html body .btn.btn-light.btn-light-custom {
	padding: 15px 45px !important;
}

html body .btn-light {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

html body .btn-light:hover {
	background-color: #000;
	border-color: #FFF;
	color: #FFF;
}

html body .btn-dark {
	background-color: #000;
	border-color: #000;
	color: #FFF;
}

html body .btn-dark:hover {
	background-color: transparent;
	border-color: #000;
	color: #000;
}

/*
* Grow effect
*/

.grow {
	transition: all .2s ease-in-out !important;
}

.grow:hover {
	transform: scale(1.01) !important;
}

.grow:hover hr.hr-btn-know-more-product {
	width: 75px;
	background: #000;
}

.grow:hover hr.hr-btn-see-more-product {
	width: 75px;
	background: #f3d400;
}

.grow:hover hr.hr-btn-download {
	width: 75px;
	background: #f3d400;
}

.grow:hover .card {
	border: 1px solid #f3d400;
}

.hr-btn-know-more-product {
	height: 2px !important;
	background: #000;
	width: 45px;
	margin: 10px 0px 0px 0px;
	transition: width 0.5s;
}

.hr-btn-see-more-product {
	height: 2px !important;
	background: #000;
	width: 45px;
	margin: 10px 0px 0px 0px;
	transition: width 0.5s;
}

.hr-btn-download {
	height: 2px !important;
	background: #000;
	width: 45px;
	margin: 10px 0px 0px 0px;
	transition: width 0.5s;
}

.hr-title {
	height: 2px !important;
	background: #000;
	width: 75px;
	margin: 35px 0px 35px 0px;
	transition: width 0.5s;
}

html .bg-color-dark, html .bg-dark {
	background-color: #000 !important;
}

.card {
	border: 1px solid #eee !important;
	border-radius: 0px !important;
}

.card-img, 
.card-img-top {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

p.card-desc {
	min-height: 65px;
}

.mobile p.card-desc {
	min-height: 55px;
}

/*
* Header
* Menu (side panel)
*/

.hamburguer-btn .hamburguer span,
.hamburguer-btn .close span {
	background: #f3d400;
	transform: inherit;
}

html.sticky-header-active .hamburguer-btn.hamburguer-btn-sticky-dark .hamburguer span, 
html.sticky-header-active .hamburguer-btn.hamburguer-btn-sticky-dark .close span, 
.pin-wrapper .sticky-active:not([class*="sticky-wrapper-effect"]) .hamburguer-btn.hamburguer-btn-sticky-dark .hamburguer span, 
.pin-wrapper .sticky-active:not([class*="sticky-wrapper-effect"]) .hamburguer-btn.hamburguer-btn-sticky-dark .close span, 
.pin-wrapper .sticky-effect-active .hamburguer-btn.hamburguer-btn-sticky-dark .hamburguer span, 
.pin-wrapper .sticky-effect-active .hamburguer-btn.hamburguer-btn-sticky-dark .close span {
	background: #f3d400;
}

html.side-panel .side-panel-wrapper {
	background: #000;
	left: auto;
	right: 0;
	transform: translate3d(100%, 0, 0);
}

html.side-panel .side-panel-wrapper .menu-title {
	font-size: 36px;
	color: #fff;
	letter-spacing: 2px;
	word-break: break-word;
}

html.side-panel .side-panel-wrapper .side-panel-nav ul li a {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	transition: ease-in-out .3s !important;
}

html.side-panel .side-panel-wrapper .side-panel-nav .side-panel-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

html.side-panel .side-panel-wrapper .side-panel-nav ul li {
	margin-bottom: 20px;
}

html.side-panel .side-panel-wrapper .side-panel-nav ul li:hover a {
	color: #909090 !important;
}

html.side-panel .side-panel-wrapper .side-panel-close {
	top: 35px !important;
	z-index: 5;
	font-weight: bold;
}

.side-panel-close span {
	background: #fff !important;
}

/*
* Background custom
*/

.bg-gray-light {
	background-color: #C8C8C8 !important;
}

.bg-gray{
	background-color: #E9E9E9 !important;
}

/*
* Text Custom
*/

.text-black{
	color: #000 !important;
}

/*
* owl
*/

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
	background-color: #000;
	border-color: #000;
	color: #FFF;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:hover, 
.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"].hover {
	background-color: #fefefe;
	border-color: #000;
	color: #000;
}

.owl-gallery img.img-fluid {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 175px;
}

.owl-nav-personalizado{
	height: 75px !important;
	width: 75px !important;
	border: 5px solid #000 !important;
	border-radius: 50% !important;
	transition: all .3s;
}

.owl-nav-personalizado i{
	color: #000 !important;
	transition: color .3s;
}

.owl-nav-personalizado:hover,
.owl-nav-personalizado:hover i{
	color: #333 !important;
	border-color: #333 !important;
}

@keyframes btnCarouselClick{
	0%{transform: scale(1.0);}
	50%{transform: scale(.7);}
	100%{transform: scale(1.0);}
}
@-webkit-keyframes btnCarouselClick{
	0%{transform: scale(1.0);}
	50%{transform: scale(.7);}
	100%{transform: scale(1.0);}
}
@-moz-keyframes btnCarouselClick{
	0%{transform: scale(1.0);}
	50%{transform: scale(.7);}
	100%{transform: scale(1.0);}
}
@-o-keyframes btnCarouselClick{
	0%{transform: scale(1.0);}
	50%{transform: scale(.7);}
	100%{transform: scale(1.0);}
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
	background-color: #000 !important;
}

/*
* Tabs
*/

html body .tabs-quaternary .nav-tabs li .nav-link.active {
	border-radius: 0px;
	border: 1px solid #eee;
}

html body .tabs-quaternary .nav-tabs li .nav-link {
	background: #fff;
	border: 1px solid #fff;
	border-bottom: 1px solid #ececec;
}

/*
* Contato
*/

#mod-contato.pagina-interna.formulario .form-control {
	background-color: #0000;
	border: 1px solid #0000;
	border-bottom: 1px solid #000;
	border-radius: 0;
	height: 46px;
}

#mod-contato.pagina-interna.formulario .form-control:focus {
	box-shadow: none;
	border-color: #0000;
	border-top: none !important;
}

.label-placeholder-group {
	margin: 20px 0;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 5px;
}

.input-placeholder-group {
	width: 100%;
	background-color: #0000;
	border: none;
	border-bottom: 1px solid #000;
	border-radius: 0px;
	transition: .5s;
	height: 42px;
	padding: 0;
	opacity: 0.5;
}

.input-placeholder-group:focus {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	border-bottom: 1px solid #000 !important;
	opacity: 1;
}

.span-placeholder-group {
	padding: 0;
	pointer-events: none;
	position: absolute;
	left: 15px;
	top: 8px;
	transition: 0.2s;
	transition-timing-function: ease;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
	opacity: 0.5;
}

.input-placeholder-group:focus + .span-placeholder-group, 
.input-placeholder-group:not(:placeholder-shown) + .span-placeholder-group {
	opacity: 1;
	transform: scale(0.75) translateY(-100%) translateX(-30px);
	left: 22px;
	padding: 0;
}

.input-placeholder-group:focus + .span-placeholder-group, 
.input-placeholder-group:not(:-ms-input-placeholder) + .span-placeholder-group {
	opacity: 1;
	transform: scale(0.75) translateY(-100%) translateX(-30px);
	left: 22px;
	padding: 0;
}

textarea.textarea-group{
	border: 1px solid #000 !important;
	padding: 15px !important;
	height: 150px !important;
	opacity: 0.5;
}

textarea.textarea-group:focus{
	border: 1px solid #000 !important;
	opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: none !important;
	border-bottom: 1px solid #000 !important;
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset;
	transition: background-color 5000s ease-in-out 0s;
}

textarea.input-placeholder-group {
	resize: none;
}

textarea + .span-placeholder-group {
}

textarea.input-placeholder-group:focus + .span-placeholder-group, 
textarea.input-placeholder-group:not(:placeholder-shown) + .span-placeholder-group {
	top: 0 !important;
	left: 18px !important;
}

textarea::-webkit-scrollbar {
	width: 8px;
	background-color: transparent; 
}

textarea::-webkit-scrollbar-thumb {
	border-radius: 0;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
	background-color: #000; 
}

/*
* Downloads
*/

.download-list {
	border: 1px solid #000;
	padding: 0;
	margin-bottom: 15px;
	height: 64px;
	line-height: 64px;
	padding-left: 30px;
}

.download-list p {
	margin-bottom: 0;
}

.download-list .btn {
	float: right;
	top: 0;
	height: 62px;
	width: 200px;
	background-color: #000;
	border: none;
	border-left: 1px solid #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	right: -1px;
	position: relative;
}

.download-list:hover .btn {
	background-color: #fff;
	color: #000;
	border-left: 1px solid #000;
}

.download-list-mobile {
	border: 1px solid #000;
	padding: 25px;
	margin-bottom: 15px;
}

.download-list-mobile:hover {
	background: #000;
}

.download-list-mobile:hover p {
	color: #fff !important;
}

.download-list-mobile:hover a {
	color: #fff !important;
}

.download-list-mobile:hover .hr-btn-download {
	background: #ff0;
	width: 105px;
}

/*
* Maps
*/

#googleMapsMarkers {
	height: 475px;
}

.map-container {
	position: relative;
}

.map-container .info-box {
	position: absolute;
	top: 15%;
	right: 10%;
	background-color: #fff;
	border-radius: 7px;
	-webkit-box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px .5px rgba(0,0,0,0.75);
}

.info-content {
	position: relative;
	padding: 25px 65px 25px 25px;
}

.info-content::after {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #fff;
}

.map-container .info-content > .title,
.map-container .info-content > .phone,
.map-container .info-content > .social,
.map-container .info-content > .address {
	margin-bottom: 0;
}

.map-container .info-content > .title {
	margin-bottom: 10px;
	font-family: 'introbold_alt';
	font-size: 14px;
	color: #000;
}

.map-container .info-content > .phone,
.map-container .info-content > .address {
	font-size: 14px;
	color: #000;
}

.map-container .social .social-icons:not(.social-icons-clean):not(.social-icons-dark):not(.social-icons-dark-2) li a {
	color: #fff !important;
	background-color: #000;
	width: 34px;
	height: 34px;
	line-height: 34px;
}

#map {
	min-height: 450px;
}

#firstHeading {
	color: #000;
	font-size: 18px;
	margin-bottom: 5px;
	line-height: 18px;
	text-transform: uppercase;
}

#secondHeading {
	color: #13182c;
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 18px;
}

#bodyContent p, 
#bodyContent p a {
	line-height: 22px;
	margin-bottom: 0;
	color: #000;
}

#bodyContent p:hover a {
	font-weight: bold !important;
}

button.gm-ui-hover-effect {
	top: 0 !important;
	right: 0 !important;
}