/*--------------------------------------------------
Comum/Reset
---------------------------------------------------*/

html,
body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	font-family: 'Roboto', sans-serif;
}

body {
	padding-right: 0!important;
}

a {
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}

.anima {
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}

:focus {
	text-decoration: none!important
}

.nopadding {
	padding: 0;
}

ul {
	list-style: none;
	padding-left: 0
}

.noselect,
.noselect * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.noselect,
.noselect img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

.all-wrap {
	min-height: calc(100vh - 125px);
}


/*--------------------------------------------------
Alinhamento
---------------------------------------------------*/

@media (min-width: 772px) {
	.row-table {
		display: table;
		height: 100%;
	}
	.row-table>div {
		display: table-cell;
		float: none;
	}
}

.text-left-not-xs,
.text-left-not-sm,
.text-left-not-md,
.text-left-not-lg {
	text-align: left;
}

.text-center-not-xs,
.text-center-not-sm,
.text-center-not-md,
.text-center-not-lg {
	text-align: center;
}

.text-right-not-xs,
.text-right-not-sm,
.text-right-not-md,
.text-right-not-lg {
	text-align: right;
}

.text-justify-not-xs,
.text-justify-not-sm,
.text-justify-not-md,
.text-justify-not-lg {
	text-align: justify;
}

@media (max-width: 767px) {
	.text-left-not-xs,
	.text-center-not-xs,
	.text-right-not-xs,
	.text-justify-not-xs {
		text-align: inherit;
	}
	.text-left-xs {
		text-align: left;
	}
	.text-center-xs {
		text-align: center;
	}
	.text-right-xs {
		text-align: right;
	}
	.text-justify-xs {
		text-align: justify;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.text-left-not-sm,
	.text-center-not-sm,
	.text-right-not-sm,
	.text-justify-not-sm {
		text-align: inherit;
	}
	.text-left-sm {
		text-align: left;
	}
	.text-center-sm {
		text-align: center;
	}
	.text-right-sm {
		text-align: right;
	}
	.text-justify-sm {
		text-align: justify;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.text-left-not-md,
	.text-center-not-md,
	.text-right-not-md,
	.text-justify-not-md {
		text-align: inherit;
	}
	.text-left-md {
		text-align: left;
	}
	.text-center-md {
		text-align: center;
	}
	.text-right-md {
		text-align: right;
	}
	.text-justify-md {
		text-align: justify;
	}
}

@media (min-width: 1200px) {
	.text-left-not-lg,
	.text-center-not-lg,
	.text-right-not-lg,
	.text-justify-not-lg {
		text-align: inherit;
	}
	.text-left-lg {
		text-align: left;
	}
	.text-center-lg {
		text-align: center;
	}
	.text-right-lg {
		text-align: right;
	}
	.text-justify-lg {
		text-align: justify;
	}
}


/*--------------------------------------------------
PRELOADER
---------------------------------------------------*/

#preloader {
	background: #000 none repeat scroll 0 0;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	left: 0;
}

.gears {
	display: block;
	margin: 0 auto;
	position: relative;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	width: 350px;
}

.gears .big {
	width: 100px;
	height: 100px;
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-o-transform-origin: center;
	transform-origin: center;
	-webkit-animation: rotate 1.5s linear infinite;
	-moz-animation: rotate 1.5s linear infinite;
	-o-animation: rotate 1.5s linear infinite;
	animation: rotate 1.5s linear infinite
}

.gears .small {
	width: 70px;
	height: 70px;
	margin-left: -6px;
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-o-transform-origin: center;
	transform-origin: center;
	-webkit-animation: reverseRotate 1.5s linear infinite;
	-moz-animation: reverseRotate 1.5s linear infinite;
	-o-animation: reverseRotate 1.5s linear infinite;
	animation: reverseRotate 1.5s linear infinite;
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(25deg);
		transform: rotate(25deg);
	}
	100% {
		-webkit-transform: rotate(205deg);
		transform: rotate(205deg);
	}
}

@-moz-keyframes rotate {
	0% {
		-moz-transform: rotate(25deg);
		transform: rotate(25deg);
	}
	100% {
		-moz-transform: rotate(205deg);
		transform: rotate(205deg);
	}
}

@-o-keyframes rotate {
	0% {
		-o-transform: rotate(25deg);
		transform: rotate(25deg);
	}
	100% {
		-o-transform: rotate(205deg);
		transform: rotate(205deg);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(25deg);
		-moz-transform: rotate(25deg);
		-o-transform: rotate(25deg);
		transform: rotate(25deg);
	}
	100% {
		-webkit-transform: rotate(205deg);
		-moz-transform: rotate(205deg);
		-o-transform: rotate(205deg);
		transform: rotate(205deg);
	}
}

@-webkit-keyframes reverseRotate {
	0% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}

@-moz-keyframes reverseRotate {
	0% {
		-moz-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-moz-transform: rotate(0);
		transform: rotate(0);
	}
}

@-o-keyframes reverseRotate {
	0% {
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-o-transform: rotate(0);
		transform: rotate(0);
	}
}

@keyframes reverseRotate {
	0% {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
}


/*--------------------------------------------------
HEADER
---------------------------------------------------*/

.top-bar {
	background-color: #f0f0f0;
	left: 0;
	position: relative;
	right: 0;
}

.top-bar .contact-details li {
	display: inline-block;
	padding-left: 10px;
	padding-top: 10px;
}

.top-bar .contact-details li a {
	color: #666666;
	font-family: "Open Sans", sans-seirf;
	font-size: 13px;
	padding-right: 25px;
}

.top-bar .contact-details i {
	margin-right: 10px;
}

.top-bar .social-list {
	margin: 0;
	padding: 0;
	text-align: right;
}

.top-bar .social-list li {
	display: inline-block;
	padding-left: 12px;
	padding-top: 10px;
}

.top-bar .social-list li a {
	color: #b3b3b3;
	font-family: "Open Sans", sans-seirf;
	font-size: 14px;
}

#header .navbar-header a.navbar-brand {
	height: auto;
	padding: 0;
}

#header .navbar-header a.navbar-brand img.logo {
	margin: 5px 0;
	width: 108px;
}

#header #navbar-menu li a {
	font-family: "Open Sans", sans-seirf;
	overflow: hidden;
	position: relative;
}

#header #navbar-menu li a:after {
	content: '\f0d8';
	bottom: -5.5px;
	display: block;
	font-family: "fontawesome";
	font-size: 23px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}

#header #navbar-menu li.active a {
	color: #E00109;
}

#header #navbar-menu li.active a:after {
	color: #E00109;
}

#header #navbar-menu li a:hover {
	color: #E00109
}

#header nav.navbar.bootsnav {
	border-bottom: none;
	box-shadow: -3px 2px 3px rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------
Footer
---------------------------------------------------*/

#foot {
	background: #f5f5f5;
}

#foot .block {
	padding: 5px 0;
}

#foot .block p.copyright {
	color: #727272;
	font-size: 12px;
	margin: 10px 0 0;
}

#foot .block p.copyright span {
	color: #E00109
}

#foot .block .totop {
	color: #E00109;
	font-weight: 700;
	font-size: 22px;
	margin: 0;
	display: block;
}

#foot a svg {
	display: block;
	margin: 2px auto;
	width: 121px;
}

#foot .cor1,
#foot .cor2,
#foot .cor3 {
	fill: #9E9E9E;
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}

#foot .block a svg:hover .cor1 {
	fill: #414042;
}

#foot .block a svg:hover .cor2 {
	fill: #808080;
}

#foot .block a svg:hover .cor3 {
	fill: #F26722;
}


/*--------------------------------------------------
Responsivo
---------------------------------------------------*/

@media (max-width:992px) {
	#header .navbar-header a.navbar-brand img.logo {
		margin: 10px 0 0;
		width: 85px;
	}
}



figcaption {
    display: none;
}

.fw-bold{
	font-weight: bold;
}