@import url('https://fonts.googleapis.com/css?family=Raleway:400,800');
/**********************************************************************************************
						GERAL
**********************************************************************************************/
:root {
	--default-color:rgba(80,80,80,1);
	--default-color1:rgba(229,197,123,1);
	--default-color2:rgba(19,18,76,1);
	--default-color3:rgba(229,229,229,1);
	--default-color4:rgba(139,115,60,1);
}
* {
	font-weight: 300;
	font-family: 'Raleway', sans-serif;
}
html, body {
	font-size: 14px;
	overflow-x: hidden;
	color: var(--default-color);
}
a, a:hover {
	color: inherit;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	outline: none;
}
img {
	display:inline-block;
}
p {
	margin-bottom: 0px;
}
section {
	width: 100%;
	position: relative;
}
section:after {
	content: "";
	clear: both;
	display: table;
	overflow: hidden;
}
/*
iframe:not(.yplayer) {
	margin: 0;
	padding: 0;
	display: block;
	width: 100% !important;
	height: 100vh !important;
}
*/
footer, form, section {
	box-sizing: border-box !important
}
footer, .btn {
	text-align: center
}
.container:after, .main:after, .over-h:after, form:after {
	content: "";
	display: table;
	clear: both;
}
nav .main {
	overflow: visible;
}
h1 {
	font-size: 30px;
	line-height: 1;
}
h2 {
	font-size: 24px;
	line-height: 1;
}
h3 {
	font-size: 22px;
	line-height: 1;
}
h4 {
	font-size: 18px;
	line-height: 1;
}
h5 {
	font-size: 14px;
	line-height: 1;
}
h6 {
	font-size: 12px;
	line-height: 1;
}
form:not(.no-box) {
	width: 100%;
}
label {
/*	float: left;*/
	position: relative;
}
form button, input:not([type=checkbox]):not([type=radio]), select, textarea, .btn {
	outline: 0;
	width: 100%;
	font-size: 14px;
	color: var(--default-color);
	padding: 10px;
	margin: 5px 0;
	border: 1px solid;
	border-color: var(--default-color2);
	-moz-outline: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-transition: all ease-in-out .2s;
	box-sizing: border-box;
	transition: all ease-in-out .2s;
}
option {
	color: #000;
}
input:not([type=checkbox]):not([type=radio]), select, textarea {
	background-color: #FFF;
}
input:not([type=checkbox]):not([type=radio]):focus, select:focus, textarea:focus {
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
input[type=date], input[type=time], input[type=file] {
	padding: 8px 10px!important
}
form button, form select, .btn {
/*	padding: 8px 10px 9px !important*/
	padding: 10px 10px !important
}
.btn {
	width: auto !important;
}
form button {
	width: 100% !important;
}
form button, .btn {
	display: inline-block !important;
	cursor: pointer;
	margin-bottom: 0;
	border: 1px solid;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--default-color3) !important;
	border-color: var(--default-color4);
	background-color: var(--default-color4);
	transition: all ease-in-out .1s;
	-moz-transition: all ease-in-out .1s;
	-webkit-transition: all ease-in-out .1s;
	-o-transition: all ease-in-out .1s;
	-ms-transition: all ease-in-out .1s
}
form button:not(:disabled):not([class^=btn-]):hover, .btn:not(:disabled):hover {
	color: var(--default-color1) !important;
	background-color: var(--default-color2) !important;
	border-color: var(--default-color2);
	transition: all ease-in-out .1s;
	-moz-transition: all ease-in-out .1s;
	-webkit-transition: all ease-in-out .1s;
	-o-transition: all ease-in-out .1s;
	-ms-transition: all ease-in-out .1s;
}
[disabled], [readonly] {
	font-weight:bold;
	padding:0 !important;
	color: #FFF !important;
	font-size:18px !important;
	margin-bottom:20px !important;
	background-color: transparent !important;
}
[type=radio][disabled], [type=radio][readonly] {background-color: transparent}
hr {
	border-top: 1px solid #CCC;
	border-bottom: none;
	border-left: none;
	border-right: none;
}
ul[type=disc] li {list-style: disc inside;}
b {
	font-weight: 600 !important;
}
/**********************************************************************************************
						CLASSES
**********************************************************************************************/
.over-h {
	overflow: hidden;
}
.parallax {
	position: relative !important;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
    box-sizing: border-box;
/*
	background-color: rgba(19,18,76,0.8);
	background-blend-mode: multiply;
*/
}
/*
.parallax:not(.no-border) {
	border-bottom: 10px solid;
	border-bottom-color: var(--default-color1);
}
*/
section:not(#contato) .parallax:not(.no-skew) {
	-webkit-transform: skewY(-5deg);
	    -ms-transform: skewY(-5deg);
	        transform: skewY(-5deg);
}
.parallax:before {
    content: "";
    width: 100%;
    height: 100%;
	background-color: rgba(19,18,76,0.6);
    position: absolute;
	background-blend-mode: multiply;
    top: 0;
    left: 0;
    z-index: 1;
}
.parallax-bottom {
	background-attachment: inherit;
	background-position: bottom 100px !important;
}
.no-click {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	pointer-events: none;
}
.btn {
	width: auto;
	display: block;
	margin: 0 auto;
}
.btn-center {
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.w100 {
	width: 100%;
}
.w50 {
	width: 50%;
}
.h100pct {
	height: 100%
}
.h100 {
	height: 100px
}
.h200 {
	height: 200px
}
.pull-left {
	float: left!important
}
.pull-right {
	float: right!important
}
.pull-center {
	margin-top: inherit !important;
	margin-left: auto !important;
	margin-right: auto !important;
    display: inline-block !important;
    float: none !important;
}
.pull-middle {
	top: 50%;
	left: 50%;
	z-index: 2;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	        -ms-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
}
.relative {
	position: relative !important
}
.text-left {
	text-align: left
}
.text-center {
	text-align: center
}
.text-right {
	text-align: right
}
.text-justify {
	text-align: justify;
}
.text-last-center {
	-moz-text-align-last: center;
	     text-align-last: center;
}
.show {
	display: block;
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s
}
.hide {
	display: none !important;
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s
}
.show, .hide {
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s
}
.relative {
	position: relative !important;
}
.full-box {
	height: 100vh !important;
}
.tipo {
	font-size: 20px;
	font-weight: bold;
}
.ddd {
	font-size: 18px;
	margin-right:5px;
}
.numero {
	font-size: 26px;
	font-weight: bold;
}
.color-white {color:white !important}
.color-grey {color:grey}
.color {color:var(--default-color) !important}
.color1 {color:var(--default-color1) !important}
.color2 {color:var(--default-color2) !important}
.color3 {color:var(--default-color3) !important}
.color4 {color:var(--default-color4) !important}
.bg-white {background-color: #FFF}
.bg-color {background-color: var(--default-color)}
.bg-color1 {background-color:var(--default-color1)}
.bg-color2 {background-color:var(--default-color2)}
.bg-color3 {background-color:var(--default-color3)}
.bg-color4 {background-color:var(--default-color4)}
.btn-white {
	padding: 10px 20px;
    margin: 0 auto;
    display: inline-block;
    color: var(--default-color1);
    background-color: #FFF;
    text-align: center;
}
.btn-white:hover {
	color: var(--default-color2);
	background-color: var(--default-color1) !important;
}
.border-bottom {
	position: relative;
}
.font12 {
	font-size: 12px !important;
}
/**********************************************************************************************
						HEADER
**********************************************************************************************/
header {
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	padding: 0;
	position: absolute;
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
header:not(mobile) {
	background-color: rgba(19,18,76,0.6);
}
header:not(.fixed).navbar {
	background-color: rgba(19,18,76,1);
}
.navbar-header {}
.navbar-mobile {
	text-align: right;
}
.navbar-mobile a {
	color: #FFF;
	line-height: 1;
	display: block;
	padding: 5px 10px;
	border: 1px solid #FFF;
	background-color: rgba(0,0,0,0.6);
	box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.navbar-mobile a:focus {
	background-color: rgba(0,0,0,0.8);
	box-shadow: inset 0 0 2px rgba(0,0,0,0.8);
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.navbar-menu {
	overflow: auto;
	list-style: none;
	margin-bottom: 0px;
	position: relative;
}
.navbar-menu li {
	position: relative;
	box-sizing: border-box;
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.navbar-menu li a {
	width: 100px;
	font-size: 14px;
	display: block;
	padding: 10px 10px 20px;
	font-weight: 400;
	box-sizing: border-box;
	position: relative !important;
	color: white;
	font-family: 'Raleway', sans-serif !important;
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
.navbar-menu li:hover a, .navbar-menu li a.selected {
	color: var(--default-color2);
	background-color: var(--default-color1);
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
/**********************************************************************************************
						HEADER FIXED
**********************************************************************************************/

.fixed, .pagina {
	position: fixed;
	box-shadow: 0 2px 10px rgba(0,0,0,0.8);
	background-color: #FFF;
	transition: all ease-in-out .1s;
	-moz-transition: all ease-in-out .1s;
	-webkit-transition: all ease-in-out .1s;
	-o-transition: all ease-in-out .1s;
	-ms-transition: all ease-in-out .1s
}
.fixed .navbar-menu li a, .pagina .navbar-menu li a {
	color: var(--default-color2) !important;
}
.fixed .navbar-mobile a {
	background-color: var(--default-color2);
}
/*
.fixed #logotipo, .pagina #logotipo {
	transition: all ease-in-out .1s;
	-moz-transition: all ease-in-out .1s;
	-webkit-transition: all ease-in-out .1s;
	-o-transition: all ease-in-out .1s;
	-ms-transition: all ease-in-out .1s
}
.fixed #pesquisa, .pagina #pesquisa {
	border: 5px solid;
	border-top: none;
	border-color:var(--default-color2);
}
.visible {
	z-index: -1;
}
#back {
	float:right;
	color:white;
}
#navmobile {
	color: #000;
	display: none !important;
}
*/
/**********************************************************************************************
						TITLES
**********************************************************************************************/
.title {
	z-index: 2;
	width: 100%;
	margin-bottom: 30px;
	position: relative;
	box-sizing: border-box;
	color: rgb(102, 102, 102);
	display: block;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	text-align: center;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.title:after {
	content: "";
	display: table;
	clear: both;
}
.title.no-border .title-center {
	border: none !important;
}
.title.no-border p {
	background-color: transparent !important;
}
.title:not(.title-vertical) > .title-center h2:after {
	content: "";
	width: 100vw;
	border-top: 2px solid var(--default-color1);
	top: -webkit-calc(50% - 2px);
	top: calc(50% - 2px);
	left: 100%;
	position: absolute;
}
.title:not(.title-vertical) > .title-center h2:before {
	content: "";
	width: 100vw;
	border-top: 2px solid var(--default-color1);
	top: -webkit-calc(50% - 2px);
	top: calc(50% - 2px);
	right: 100%;
	position: absolute;
}
.title:not(.title-vertical) > .title-center h2 {
	border: 2px solid var(--default-color1);
}
.title-dark:not(.title-vertical) > .title-center h2:after {
	content: "";
	width: 100vw;
	border-top: 2px solid var(--default-color4);
	top: -webkit-calc(50% - 2px);
	top: calc(50% - 2px);
	left: 100%;
	position: absolute;
}
.title-dark:not(.title-vertical) > .title-center h2:before {
	content: "";
	width: 100vw;
	border-top: 2px solid var(--default-color4);
	top: -webkit-calc(50% - 2px);
	top: calc(50% - 2px);
	right: 100%;
	position: absolute;
}
.title-center {
	z-index: 2;
	box-sizing: border-box;
	display: inline-block;
	float: none;
	line-height: 1;
	margin: 0 auto;
	position: relative;
	text-align: center;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}
.title h2 {
	box-sizing: border-box;
	display: block;
	font-family:'Raleway', sans-serif;
	font-weight: bold;
	line-height: 1;
	margin: 0 auto;
	padding: 20px 20px;
	position: relative;
	text-align: center;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	z-index: -1;
	text-transform: uppercase;
	border: none;
/*	border: 2px solid var(--default-color1);*/
}
.title h2 {
	color: rgba(255,255,255,1);
}
.title-dark h2 {
	color: var(--default-color2);
	border: none !important;
}
.title.no-border h2 {
	position: relative;
	border-bottom: none !important;
}
.title.no-border h2:before, .title.no-border h2:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 30px;
	border-bottom: 2px solid #FFF;
}
.title.no-border h2:before {
	left: 0;
}
.title.no-border h2:after {
	right: 0;
}
.title-vertical h2 {
	box-sizing: border-box;
	display: block;
	font-family:'Raleway', sans-serif;
	font-size: 2.5em;
	font-weight: 800;
	line-height: 1;
	margin: 0 auto;
	padding: 20px 0 0px;
	position: absolute;
	text-align: right;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	z-index: -1;
	border: none;
/*	padding: 10px 10px;*/
/*	border: 2px solid var(--default-color4);*/
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
    text-orientation: mixed;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	top: 0;
    left: 0;
}
.title-vertical h2:after {
	content: "";
    border-left: 2px solid var(--default-color4);
    height: 1000vh;
    position: absolute;
    bottom: 100%;
    left: -webkit-calc(50% - 2px);
    left: calc(50% - 2px);
}
.title-vertical .title-center {
    top: 0;
    left: 0;
    width: 100%;
	position: absolute;
}
.title-icon {
	max-width: 200px;
	margin-bottom: 3em;
}
/*OUTROS*/
.parallax .title {
	margin: 0 !important;
	-webkit-transform: skewY(5deg);
	    -ms-transform: skewY(5deg);
	        transform: skewY(5deg);
}
#contato .parallax .title {
	-webkit-transform: skewY(0) !important;
	    -ms-transform: skewY(0) !important;
	        transform: skewY(0) !important;
}
/**********************************************************************************************
						BANNERS
**********************************************************************************************/
.title1 {
	margin-bottom: 10px;
}
.title1 h2 {
	font-size: 60px;
	line-height: 60px;
	text-transform:uppercase;
	font-weight: 300;
	color: var(--default-color3);
}
.title2 h3 {
	padding: 40px;
	font-size: 50px;
	line-height: 50px;
	border: 1px solid #FFF;
	border-radius: 0 0 10px 10px;
	text-transform:uppercase;
}
[class^=btn-slider] {
    display: block;
    padding: 5px 20px;
    position: absolute;
    font-size: 18px;
	bottom: -100px;
	letter-spacing: 1px;
	background-color: var(--default-color1);
    color: var(--default-color3);
    text-transform: uppercase;
	-webkit-transition: all .2s ease;
    transition: all .2s ease;
}
[class^=btn-slider]:hover {
	background-color: var(--default-color3);
    color: var(--default-color1);
	-webkit-transition: all .2s ease;
    transition: all .2s ease;
}
[class^=btn-slider] b {
	font-weight: 600;
}
.btn-slider-center {
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}
/**********************************************************************************************
						FOOTER
**********************************************************************************************/
#scrolltop {
	right: -webkit-calc((100vw - 1200px) / 2);
	right: calc((100vw - 1200px) / 2);
	bottom: 0;
	z-index: 3;
	display: block;
	padding: 0 10px;
	color: white;
	background-color: var(--default-color2);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	text-align: center;
	position: absolute;
}
footer {
	color: #FFF;
	padding: 40px 0;
	overflow: hidden;
	background-color: var(--default-color2);
}
footer .title h2 {
	color: #FFF !important;
}
.sitemap {
	overflow: hidden;
/*	margin:20px 0 !important*/
}
.sitemap li {
	text-align: left;
	box-sizing: border-box;
}
.sitemap li:first-child h2, .sitemap li:first-child h2 a {
	color: #FFF;
	font-family: 'Raleway', sans-serif, sans;
	font-size: 13px !important;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.sitemap li h2:first-child:before, span.simple:before {
	color: var(--default-color1) !important;
	margin: 5px 10px 0 0;
	font-family: 'FontAwesome';
}
.sitemap li h2:first-child:not(.simple):before {
	content: '\f107';
}
.sitemap li h2:first-child.simple:before, span.simple {
	content: '\f105';
}
.sitemap li h2 {
	font-size: 12px;
	line-height: 20px;
}
.sitemap li h2:before, span.simple:before {
	color: rgba(204,232,210,1);
	content: '\f105';
	margin: 5px 10px 0 0;
	font-family: 'FontAwesome';
}
.sitemap h2 a {
	font-weight: 300 !important;
}
.sitemap h2 a:hover {
	text-decoration: underline;
}
.copy {
	padding: 40px 0 0;
	overflow: hidden;
}
.copy h6 {
	line-height: 17px;
}
.creator {
	display: inline-block;
}
/**********************************************************************************************
						SECTIONS
**********************************************************************************************/
.carousel-control-prev {
/*	left: -20px !important;*/
}
.carousel-control-next {
/*	right: -20px !important;*/
}
.info {
	top: 0;
	right: 80px;
	z-index: 2;
	position: absolute;
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
.fixed .info {
	right: 130px;
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
#home .carousel-item {
	background-position: center !important;
	background-size: cover !important;
}
#home .carousel-item:before {
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-blend-mode: color;
	background-color: rgba(19,18,76,0.6);
}
#home .carousel-item:after, .parallax-striped:after {
    content: "";
	background-blend-mode: color;
    background-image: -webkit-repeating-linear-gradient(top, rgba(19,18,76,0.5), rgba(19,18,76,0.5) 2px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(180deg, rgba(19,18,76,0.5), rgba(19,18,76,0.5) 2px, transparent 2px, transparent 5px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#home .carousel-item > div, #home .carousel-item, #home .carousel-item .container, #home .carousel-item .row {
	height: 100%;
}
#home .carousel-item h2 {
	line-height: 1;
	color: #FFF;
	position: relative;
	border: 2px solid var(--default-color1);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    padding: 20px;
	background-blend-mode: multiply;
    background-color: rgba(13,13,53,0.8);
    margin: 0;
}
#home .carousel-item h2:before, #home .carousel-item h2:after {
	top: 50%;
	width: 50vw;
	content: "";
	position: absolute;
	border-top: 2px solid var(--default-color1);
}
#home .carousel-item h2:before {
	left: -50vw;
}
#home .carousel-item h2:after {
	right: -50vw;
}
#home .carousel .btn-old {
	cursor: pointer;
    margin-bottom: 0;
    border: 1px solid;
    font-weight: bold;
    text-transform: uppercase;
    color: #000 !important;
    border-color: var( --default-color1) !important;
    background-color: var( --default-color1) !important;
    transition: all ease-in-out .1s;
	-moz-transition: all ease-in-out .1s;
    -webkit-transition: all ease-in-out .1s;
    -o-transition: all ease-in-out .1s;
    -ms-transition: all ease-in-out .1s;
}
.slidedown {
	left: -webkit-calc(50% - 30px);
	left: calc(50% - 30px);
    z-index: 1;
    bottom: -50px;
    padding: 15px;
    display: block;
    position: absolute;
    background-color: #FFF;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    text-align: center;
	border: 2px solid var(--default-color4);
}
.slidedown span {
 	width: 24px;
	height: 24px;
	border-left: 2px solid var(--default-color4);
	border-bottom: 2px solid var(--default-color4);
	opacity: 1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	box-sizing: border-box;
	display: block;
}
.piramide {
	width: 100%;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
}
.piramide img {
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	max-width: 800px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: absolute;
}
#camada1 {z-index: 4}
#camada2 {z-index: 3}
#camada3 {z-index: 2}
#camada4 {z-index: 1}

#servicos .box {
	overflow: hidden;
}
#servicos .box .col-12 {
	color: #FFF;
	height: 250px;
	background-size: cover !important;
	background-position: center !important;
	background-attachment: scroll !important;
}
#servicos .box .col-12:hover {
	color: rgba(19,18,76,1);
}
#servicos .box .col-12:before {
	content: "";
	top: 0;
	left: 0;
	color: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(19,18,76,0.8);
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
#servicos .box .col-12:hover:before {
	background: rgba(229,197,123,0.8);
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
#servicos .box h3 {
	font-weight: 900;
	text-transform: uppercase;
}
#servicos .box .col-12 svg {
	height: 100px;
	margin-bottom: 20px;
}
#servicos .box .col-12 svg .a {
	fill: var(--default-color1) !important;
}
#servicos .box .col-12:hover svg .a {
	fill: var(--default-color2) !important;
}
#empresa {
	margin-top: 130px;
}
#empresa:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	background-color: var(--default-color2);
	width: 100%;
	height: 100%;
	-webkit-transform: skewY(-5deg);
	    -ms-transform: skewY(-5deg);
	        transform: skewY(-5deg);
}
#empresa .title-vertical h2:after {
	border-color: var(--default-color1) !important;
}
#empresa .foto img {
/*			margin-top: -200px;*/
	width: 100%;
	border: 4px solid rgba(235,203,98,1);
}
#empresa .foto {
	display: inline-block;
	position: relative;
}
#empresa .foto:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 50px solid rgba(235,203,98,1);
	border-right: 50px solid transparent;
}
#empresa .foto:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 50px solid rgba(235,203,98,1);
	border-left: 50px solid transparent;
}
/*
#servicos .box a {
	display: block;
	border: 1px solid var(--default-color2);
	text-align: center;
	box-sizing: border-box;
}
#servicos .box:hover a {
	border-color: var(--default-color4);
	transition: all ease-in-out .2s;
}
#servicos .box h2 {
	color: var(--default-color2);
	font-size: 18px;
	line-height: 1;
}
#servicos .box:hover h2 {
	font-weight: bold;
	transition: all ease-in-out .2s;
}
#servicos .box .icone {
	height: 130px;
	background-color: var(--default-color2);
}
#servicos .box:hover .icone {
	transition: all ease-in-out .2s;
	background-color: var(--default-color4);
}
#servicos .box .icone svg {
	height: 70px;
}
#servicos .box:hover svg .a {
	fill:#24293F !important;
}
*/
#contato h2 {
	color: #FFF;
}
.icone-rounded {
	font-size: 16px;
	color: var(--default-color2);
    background: var(--default-color4);
    border-radius: 50%;
    padding: 4px 0px;
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 1;
    text-align: center;
}
.icone-servico {
	height: 100px;
	margin-bottom: 20px;
}
a[data-filter] {
	margin: 0 5px 5px;
    padding: 10px;
    color: var(--default-color2);
    border-bottom: 3px solid #FFF;
    -webkit-transition:all ease-in-out .2s;
    transition: all ease-in-out .2s;
    display: inline-block;
}
a[data-filter].selected, a[data-filter]:hover {
	border-bottom: 3px solid var(--default-color3);
	color: var(--default-color3);
	font-weight: bold;
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
.galeria div a > div {
	position: relative !important;
	background-size: auto 115% !important;
	background-repeat: no-repeat !important;
	background-position: center;
}
.galeria div a > div div {
	z-index: 2;
}
.galeria div a > div:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background-color: rgba(19,18,76,0.9);
	z-index: 0;
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
.galeria div a > div:hover:after {
	mix-blend-mode: normal;
	background-color: rgba(238,165,76,1);
	-webkit-transition:all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
.galeria div a > div:hover h3, .galeria div a > div:hover h5 {
	color: var(--default-color2);
	font-weight: bold;
	letter-spacing: -1px;
}
.galeria ul li img {
	height: 125%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	-webkit-transition:all ease-in-out .3s;
	transition: all ease-in-out .3s;
}
.galeria ul li:hover img {
	height: 100%;
	-webkit-transition:all ease-in-out .3s;
	transition: all ease-in-out .3s;
}
.saibamais {
	display: inline-block;
	border-color: #FFF;
	color: var(--default-color2) !important;
	background-color: #FFF !important;
}
/*SVG PIRAMIDE*/
.st0{fill:#313866;}
.st1{fill:url(#SVGID_1_);}
.st2{fill:url(#SVGID_2_);}
.st3{fill:#13124C;}
.st4{font-family:'Raleway';}
.st5{font-size:14.12px;}
.st6{fill:#E5C57B;}
.st7{enable-background:new    ;}
.st8{fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;stroke-dasharray:2,5;}
.st9{fill:none;stroke:#13124C;stroke-miterlimit:10;stroke-dasharray:2,2;}
.st10{fill:none;stroke:#13124C;stroke-miterlimit:10;}
.st11{fill:none;stroke:#13124C;stroke-miterlimit:10;stroke-dasharray:2.25,2.25;}
.st12{fill:none;stroke:#13124C;stroke-width:0.5;stroke-miterlimit:10;}
.st13{fill:none;stroke:#13124C;stroke-width:0.5;stroke-miterlimit:10;stroke-dasharray:2.96,2.96;}
.st14{fill:none;stroke:#FFFFFF;stroke-width:0.75;stroke-miterlimit:10;}
.st15{fill:none;stroke:#FFFFFF;stroke-width:0.75;stroke-miterlimit:10;stroke-dasharray:1.92,1.92;}
.st16{fill:#FFFFFF;}
.st17{opacity:0.65;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";fill:#DADDF0;enable-background:new    ;}
.st18{fill:url(#SVGID_3_);}
.st19{fill:url(#SVGID_4_);}
.st20{font-family:'Raleway';font-weight:bold;}
.st21{font-size:18px;}
.st22{fill:url(#SVGID_5_);}
.st23{fill:url(#SVGID_6_);}
.st24{fill:url(#SVGID_7_);}
.st25{fill:url(#SVGID_8_);}
.st26{fill:url(#SVGID_9_);}
.st27{fill:url(#SVGID_10_);}
.st28{fill:url(#SVGID_11_);}
.st29{fill:url(#SVGID_12_);}

.detalhes-fit svg {
	width: 150px;
	margin: 0 auto;
	display: block;
}
.lista li {
	margin-bottom: 2px;
}
.lista li a {
	display: block;
	background-color: #F7F7F7;
	padding: 10px 20px;
	color: var(--default-color2);
}
.lista > li:hover > a {
	background-color: #CCC;
}
.sublista {
	margin-top: 2px;
}
.sublista > li:hover > a {
	background-color: #E6E6E6;
}
/**********************************************************************************************
						OUTROS
**********************************************************************************************/
#modal {
	top: 0;
	left: 0;
	z-index: 999;
	width: 100vw;
	height: 100%;
	display: none;
	position: fixed;
}
#modal:before {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,0.4);
}
#modal .middle {
	width: inherit;
}
#modal.visible {
	display: block;
}
.modal-content {
	width: 80vw;
	margin: 0 auto;
	box-sizing: border-box;
}
.modal-load {
	position: relative;
	padding: 20px !important;
	background-color: #FFF;
}
.modal-close {
	top: 10px;
	right: 10px;
	position: absolute;
}
.modal-center {
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	        -ms-transform: translateX(-50%);
	    transform: translateX(-50%);
}
#msgbox {
	color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    font-family: inherit;
    background-color: var(--default-color3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
	display: none;
	box-sizing: border-box;
}
#map_canvas {
	z-index: 2;
	width: 100%;
	height: 600px !important;
}
#map_canvas * {
	-webkit-transition: none !important;
	transition: none !important;
}
#directions-panel {
	z-index: 2;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.adp {
	padding: 40px 0;
}
.gmnoprint+.gmnoprint {
	display: block
}
.adp-summary {
	color: black !important;
	font-size: 13px
}
.adp-summary, .adp-text {
	text-align: center !important;
}
.adp-directions {
	margin: 0 auto;
	color: black !important;
}
.adp-directions tr {
	padding: 10px 0;
}
.adp-legal {
	color: black;
	margin-bottom: 10px !important;
}
.adp-placemark {
	margin: 0 auto !important;
	border: none !important;
	background-color: transparent !important;
}

.adp-placemark td {
	color: black;
	width: auto;
	font-weight: 700;
	padding: 10px;
}
.termos {
	line-height: 20px;
	margin-top: 5px;
}
.lg-close {
	color: var(--default-color1) !important;
}
/**********************************************************************************************
						MOBILE GERAL
**********************************************************************************************/
@media only screen and (max-device-width: 1024px), only screen and (max-width: 800px) {
	section:not(#home):not(#empresa):not(#agenda):not(#blog):not(#contato):not(.detalhes) {
		padding: 90px 0 0;
	}
	section {
		background-attachment: initial;
		height: auto !important;
		text-align: center
	}
	label {
		display: block;
		margin-bottom: 10px;
	}
	form button {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	    padding: 12px 40px !important;
	}
	.navbar-menu {
		width: 100%;
		display: none;
		margin: 0 auto;
	}
	.navbar-menu li {
		margin-bottom: 10px;
	}
	.navbar-menu li a {
		width: 100%;
		text-align: left;
		padding: 10px 20px;
	}
	.slider-text-left, .slider-text-right, .slider-text-center {
		width: 90%;
		text-align: center;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		        -ms-transform: translate(-50%, -50%);
		    transform: translate(-50%, -50%);
	}
	.btn-slider-left, .btn-slider-center, .btn-slider-right {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin: 0 auto;
		position: relative;
		left: 0px;
		right: 0px;
		bottom: 0;
	}
	.slider-text-left h2, .slider-text-right h2, .slider-text-center h2 {
		margin-left: 0 !important;
	}
	.title1 h2 {
		width: 100%;
		font-size: 50px;
		line-height: 1;
	}
	.flexslider .slides > li {
		height: 100vh !important;
	}
	.flex-direction-nav, .flex-control-nav {
		display: none;
	}
	.flex-control-nav {
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		        -ms-transform: translate(-50%, -50%);
		    transform: translate(-50%, -50%);
	}
	.slidedown {
/*    	bottom: 10px;*/
	}
	.parallax {
		padding: 80px 0;
		background-attachment: inherit;
	}
/*
	.parallax .title {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}
*/
	#logotipo img {
		height: 60px;
	}
	.detalhes {
		padding-top: 80px !important;
	}
	#contato, #agenda, #blog, #empresa {
		padding-top: 50px;
	}
	.detalhes-fit {
		padding-top: 40px !important;
	}
	.detalhes .parallax {
		padding: 120px 0 60px;
	}
	#contato .parallax {
	    padding: 40px 0;
	}
	#mapa {
		padding: 100px 0 0;
	}
	.sitemap li {
		padding: 0 !important;
		height: auto !important;
		border: none !important;
	}
	.sitemap h2 {
		margin: 0 !important;
	}
	.empresa {
		background-repeat: no-repeat !important;
		background-size: cover !important;
		background-position: center !important;
	}
	.title h2 {
		font-size: 2em;
	}
}
/**********************************************************************************************
						MOBILE PORTRAIT
**********************************************************************************************/
@media only screen and (max-device-width: 1024px) and (orientation: portrait) {
	header img {
		height: 40px !important;
	}
	[class^=btn-slider] {
		display: none;
	}
	.parallax {
		min-height: 350px;
	}
	footer h3, .sitemap h2 {
		text-align: left;
	}
	.galeria div a > div {
		height: 90vw !important;
	}
	#home .carousel-inner {
		overflow: hidden;
		position: relative;
		height: -webkit-calc(100vh * 0.65);
		height: calc(100vh * 0.65);
	}
}
/**********************************************************************************************
						MOBILE LANDSCAPE
**********************************************************************************************/
@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
	header img {
		height: 40px !important;
	}
	.slider-text-left, .slider-text-right, .slider-text-center {
		zoom:0.8;
	}
	.parallax {
		min-height: 300px;
	}
	footer h3, .sitemap h2 {
		text-align: left;
	}
	.galeria div a > div {
		height: 40vw !important;
	}
	.title:not(.title-l) .title-center {
		min-width: 50%;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		max-width: 80%;
	}
	.title-center > p {
		top: 70px;
	}
	#home .carousel-inner {
		overflow: hidden;
		position: relative;
		height: 100vh;
	}
}
/**********************************************************************************************
						OLDER
**********************************************************************************************/
@media only screen and (device-width: 360px) and (orientation: portrait) {}
/**********************************************************************************************
						IPHONE5
**********************************************************************************************/
@media only screen and (device-width: 360px) and (orientation: portrait) {}
/**********************************************************************************************
						IPHONE5
**********************************************************************************************/
@media only screen and (device-width: 320px) and (orientation: portrait) {
	.slider-text-left, .slider-text-right, .slider-text-center {zoom: 0.6;}
	.box h2 {font-size: 18px;}
	#home .carousel-item h2 {
		font-size: 30px;
	}
	.title:not(.title-vertical) h2 {
		font-size: 1.5em;
		padding: 20px 10px;
	}
	#home .carousel-inner {
		height: 60vh !important;
	}
	#home .carousel-item h2 {
		zoom: 0.8 !important;
	}
}
@media only screen and (min-device-width: 500px) and (max-device-width: 640px) and (orientation: landscape) {
	.slider-text-left, .slider-text-right, .slider-text-center {zoom: 0.6;}
	.box h2 {font-size: 18px;}
	nav.visible {
		overflow-y: auto;
    	box-sizing: border-box;
    	height: -webkit-fill-available;
	}
}
/**********************************************************************************************
						IPHONEX
**********************************************************************************************/
@media only screen and (width: 375px) and (orientation: portrait) {}
/**********************************************************************************************
						IPAD PORTRAIT
**********************************************************************************************/
@media only screen and (device-width :768px) and (orientation: portrait) {
	.galeria div a > div {
		height: 40vw !important;
	}
}
/**********************************************************************************************
						IPAD LANDSCAPE
**********************************************************************************************/
@media only screen and (device-width :1024px) and (orientation: landscape) {
	.galeria div a > div {
		height: 20vw !important;
	}
}
/**********************************************************************************************
						IPAD2 PORTRAIT
**********************************************************************************************/
@media only screen and (device-width:1024px) and (orientation: portrait) {
	.galeria div a > div {
		height: 20vw !important;
	}
}
/**********************************************************************************************
						IPAD2 LANDSCAPE
**********************************************************************************************/
@media only screen and (device-width:1366px) and (orientation: landscape) {}
/**********************************************************************************************
						TABLETS SAMSUNG
**********************************************************************************************/
@media only screen and (device-width:800px) and (orientation: portrait) {}
@media only screen and (device-width:1280px) and (orientation: landscape) {}
/**********************************************************************************************
						GERAL
**********************************************************************************************/
@media only screen and (min-width:1023px) and (max-height:960px) {
	
}
@media only screen and (min-width:1023px) and (min-height:961px) {
	
}
@media only screen and (min-width:1023px) and (min-device-width:1025px) {
	section:not(#home):not(#empresa):not(#contato):not(.detalhes) {
		padding: 160px 0 0;
	}
	#logotipo img {
		width: 150px !important;
		-webkit-transition: all ease-in-out .2s;
		transition: all ease-in-out .2s;
	}
	.fixed #logotipo img, .pagina #logotipo img {
		-webkit-transition: all ease-in-out .2s;
		transition: all ease-in-out .2s;
	}
	.navbar-menu li a {
		text-align: center;
	}
	.navbar-menu li:not(#logotipo) a:before {
		position: absolute;
		bottom: -10px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.slider-text-left, .slider-text-right, .slider-text-center {}
	.title-parallax-1 {
		padding:30px;
	}
	.title-left,.title-right {
		width: 1200px;
		margin: 0 auto;
	}
	.title h2 {
		font-size: 2.5em;
	}
	.title1 h2 {
		width: 40%;
	}
	.parallax {
		padding: 40px 0 !important;
		min-height: 400px;
	}
	#home .carousel-inner {
		overflow: hidden;
		position: relative;
		height: -webkit-calc(100vh * 0.75);
		height: calc(100vh * 0.75);
	}
	.clientes li {
		height: 150px;
	}
	#contato {
		padding: 80px 0 0;
	}
	.icones-contato {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.detalhes-fit {
		padding: 16px 0 0 !important;
	}
	.detalhes {
		padding: 100px 0 0 !important;
	}
	.galeria div a > div {
		height: 17vw !important;
	}
	.empresa {
		background-repeat: no-repeat !important;
		background-size: contain !important;
		background-position: center right -100px !important;
	}
}
/**********************************************************************************************
						ULTRAWIDE
**********************************************************************************************/
@media only screen and (min-width:1919px) {}
/**********************************************************************************************
						TABLETS SAMSUNG
**********************************************************************************************/
@media only screen and (width:1280px) {}
/**********************************************************************************************
						BAIXA RESOLUÇÃO
**********************************************************************************************/
@media only screen and (width:1023px) and (orientation: landscape) {
	section:not(#home):not(#mapa):not(.parallax) {
		padding: 140px 0 0;
	}
}
/**********************************************************************************************
						OUTROS 800X600
**********************************************************************************************/
@media only screen and (width:800px) {}
/**********************************************************************************************
						PRELOADER
**********************************************************************************************/
.loading {
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	position: fixed;
	background-color: var(--default-color2);;
}
.loader {
    top: 50%;
    left: 50%;
	position: absolute;
	box-sizing: border-box;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 32px 32px;
      -ms-transform-origin: 32px 32px;
          transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--default-color1);
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
