* {
	margin: 0;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	line-height: 1.8;
	font-size: 14px;
}

.ovh {
	overflow: hidden;
}

.wrap {
	margin: 0;
	min-height: 100%;

	 /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -200px;
}

.wrap:after {
	content: "";
	display: block;
}

/*------------------------------ section animations -------------------------*/

.view-animate .content {
  transition:all linear .3s;
}

.view-animate.ng-enter .content {
	opacity: 0;
}
.view-animate.ng-enter-active .content {
	opacity: 1;
}

/*-------------------------------------------------------------------*/

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 99;
  margin-bottom: 50px;
}

.navbar-fixed {
	position: fixed;
}

.navbar-fixed .navbar {
	margin: 0;
}

.navbar {
	margin: 20px 0;
	border: none;
	background-color: #fff;
	border-radius: 0;
	box-shadow: 0px 0px 9px -1px rgba(0,0,0,0.37);

	background: -moz-linear-gradient(45deg, rgba(30,87,153,1) 0%, rgba(41,137,216,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 100% );
	/*
	background: rgb(30,87,153);
	background: -moz-linear-gradient(45deg, rgba(30,87,153,1) 0%, rgba(41,137,216,1) 21%, rgba(255,255,255,1) 21%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 21%,rgba(255,255,255,1) 21%,rgba(255,255,255,1) 100%);
	background: linear-gradient(45deg, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 21%,rgba(255,255,255,1) 21%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#ffffff',GradientType=1 );*/
}

.navbar-brand {
	width: 12%;
	position: relative;
	z-index: 2;
	color: #333;
	height: auto;
	padding: 20px 30px;
	margin: 0;
	font-size: 16px;
	float: left;
	/*background-color: #1a57cc;*/
}

.navbar .hamburger {
	display: none;
	font-size: 28px;
	padding: 15px 10px;
	margin: 0;
	list-style-type: none;
}

.navbar .toogleSlide {
	color: #fff;
	padding: 0 10px;
	cursor: pointer;
	float: right;
}

.header .navigation   {
	float: right;
	margin: 0;
	padding: 0;
	transition: all 0.5s ease;
}

.header .navigation > li  {
	float: left;
	cursor: pointer;
	position: relative;
	list-style-type: none;
}

.header .navigation > li > a {
	display: block;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	padding: 48px 30px;
	letter-spacing: 0.3px;
	font-family: 'Varela Round', sans-serif;
	border-left: 1px solid rgba(255,255,255,0.1);
	transition: all 0.2s linear;
}

.navigation a {
	color: #ffffff;
}

.navigation > li > a.active, .navigation > li:hover > a {
	text-decoration: none;
	color: rgba(222,222,222,1);
}

.navigation > li > ul {
	position: absolute;
	visibility: collapse;
	top: 83px;
	height: 0;
	opacity: 0;
	width: 200px;
	margin: 0;
	padding: 0;
}

.navigation > li ul li ul {
	top: 0;
	margin: 0;
	left: -200px;
	width: 300px;
}

.navigation > li:hover > ul {
	visibility: visible;
	height: auto;
	-webkit-animation-name: fadeInCollapse;
	animation-name: fadeInCollapse;
	animation-duration: 0.4s;
	-webkit-animation-duration: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.navigation-search {
	margin: 25px 0 0 35px;
	float: left;
}

.area-reservada {
	color: #fff;
	background-color: orange;
	border-radius: 0 4px 4px 0;
	background: rgb(44,83,158);
	background: -moz-linear-gradient(-45deg, rgba(44,83,158,1) 0%, rgba(44,83,158,1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%);
	background: linear-gradient(135deg, rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c539e', endColorstr='#2c539e',GradientType=1 );
}

li.area-reservada > a {
	color: #fff;
}

li.area-reservada:hover > a {
	color: #fff;
	background-color: rgba(252,78,15,1);
}

.navigation-social {
	width: auto;
	padding: 0 5px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0px 0px 9px -1px rgba(0,0,0,0.37);
}

.widgets-bar {
	width: 100%;
	border-top: 10px solid #609fd6;
	bottom: 0;
	background-color: #267dc9;
}

.widgets-bar-items {
	width: 100%;
	height: 70px;
	border-radius: 0;
	/*box-shadow: 0px -2px 17px -3px rgba(0,0,0,0.19);*/
}

.widgets-bar-icon {
	width: 20%;
	margin:10px 20px 0 0;
	float: left;
}

.widget-title {
	font-family: 'Varela Round', sans-serif;
	color: #fff;
	margin: 0;
	padding: 20px 0 2px 0;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.2px;
}

.widget-text {
	margin-bottom: 10px;
}

.widgets-bar-items a {
	color: #cbde9e;
	padding: 10px 0;
	text-decoration: none;
}

.steps-title {
	font-family: 'Varela Round', sans-serif;
	color: #333;
	margin: 25px 0 20px 0;
	font-size: 22px;
	letter-spacing: 0.2px;
}

.steps-desc {
	font-family: 'Varela Round', sans-serif;
	color: #333;
}

.steps-bg {
	margin: auto;
    width: 58%;
    border-radius: 50%;
    padding: 50px 50px;
    background-position: 50% 50%;
	background-size: 100% 100%;
	background-color: #e2f9ff;
	border: 4px solid #82c4d6;
}

@-webkit-keyframes fadeInCollapse {
	0% {
		display:none;
		opacity: 0;
	}
	1% {
		display: block ;
		opacity: 0;
	}
	100% {
		display: block ;
		opacity: 1;
	}
}
@keyframes fadeInCollapse {
	0% {
		display:none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

@-webkit-keyframes fadeOutCollapse {
	0% {
		display: block;
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		height: 0;
		margin: 0;
	}
}

@keyframes fadeOutCollapse {
	0% {
		display: block;
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		height: 0;
		margin: 0;
	}
}

.navigation > li ul li {
	background-color: #fff;
	padding: 20px;
	border-radius: 3px;
}

.navigation > li ul > li:first-child {
	margin-top: 0;
	border:none;
}

.navigation > li ul li:last-child {
	border:none;
}

/*
.navigation > li ul > a {
	display: block;
	letter-spacing: 0.04em;
	padding: 12px 10px;
	text-decoration: none;
	text-transform:none;
	font-size: 12px;
}

.navigation li ul li a {
	color: #fff;
}*/

.well {
    background-color: rgba(0,0,0,0.2);
    border: none;
    border-radius: 5px;
}

.destaque {
	position: relative;
	width: 100%;
	height: 700px;
}

.carousel-desc  {
	width: 100%;
	height: 400px;
	text-align: left;
	padding: 150px 0 0 0;
	margin-top:120px;
}

.carousel-title  {
	font-size: 34px;
	font-family: "Montserrat";
	text-transform: uppercase;
	font-weight: 700;
	line-height: 36px;
	color: #fff;
}

.carousel-text  {
	font-size: 24px;
	line-height: 36px;
	margin:20px 0;
	color: #fff;
}

.carousel-overlay {
	width: 100%;
	height: inherit;
	box-shadow: inset 0px 0px 105px 18px rgba(0,0,0,0.37);
	background-color: rgba(100,100,100,0.3);
}

.carousel-image {
	display: block;
	width: 100%;
	height: 700px;
	background-position: 50% 50%;
	background-size: cover;
}

.carousel-image-item {
	display: block;
	width: 100%;
	background-position: 50% 50%;
	background-size: cover;
}

.carousel-indicators {
  bottom: 100px;
}

.carousel-control.right, .carousel-control.left  {
	background: none;
	transition: all 0.3s linear;
}

.carousel-control .fa {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.news-list-item {
	margin: 10px 0 30px 0;
}

.news-list-link {
	font-size: 14px;
	color: #4c4c4c;
	padding: 8px 0;
	font-weight: 700;
}

.news-list-link:hover {
	color: #fff;
}

.dashboard-icon i {
	font-size: 20px;
	padding-top: 16px;
	color: #5c9ef7;
}

.news-list {
	width: 100%;
	position: absolute;
	bottom: 0;
	background-color: rgba(10, 10, 10, 0.5);
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 35px 0 0 0;
}

.news-list::after {
	content: "";
	display: block;
	padding: 20px 0;
	background-color: rgba(0, 0, 0, 0.5);
}


.news-list-item a {
	color: #666;
}

.news-list-item a:hover {
	color: #8b8b8b;
}

.news-list-date {
	font-size: 10px;
	text-align: left;
}

.cyan {
	color:#15ccb9;
}

.ruluko {
	color:#2E0D23;
}

.schoolbell {
	color:#45484B;
}

.btn::first-letter {
	text-transform: uppercase;
}

.btn-title {
	color: #ddd;
	border: 2px solid #bd1b1b;
	background-color: rgba(20,20,20,0.2);
	text-transform: uppercase;
}

.btn-produto {
	color: #ddd;
	border: 2px solid #ddd;
	background-color: transparent;
}

.btn-produto:hover {
	color:#fff;
	background-color: brown;
}

.btn-negative {
	border: 1px solid #545454;
	background-color: #2f2f2f;
}
.btn-negative:hover {
	color: #ddd;
}

.btn-carousel {
	font-weight: 700;
	border-radius: 3px;
	text-transform: uppercase;
	background-color: #fc3;
	border: 1px solid #fc3;
	color: #333;
}

.btn-carousel:hover {
	background-color: #fc3;
	border: 1px solid #fc3;
	color: #333;
}

.btn-more {
	font-weight: 700;
	border-radius: 3px;
	text-transform: uppercase;
	background-color: #739192;
	border: 1px solid #739192;
	color: #333;
}

.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default {
  color: #fff;
  background-color: #fc4e0f;
  border-color: #fc4e0f;
}

.dropdown-menu {
	min-width: auto;
	padding: 10px;
}

hr {
  border-top: 1px solid #ddd;
	margin: 50px 0;
}


h2.content {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 20px;
	color: #2574be;
	text-transform: uppercase;
	font-family: "Montserrat";
	border-bottom: 1px dotted #757575;
}

h2.content span {
	color: #757575;
	font-size: 13px;
	font-weight: 700;
}

h3.content {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	color: #6b6b6b;
	margin-bottom: 20px;
	padding: 0;
}

h4.content {
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	color: #6b6b6b;
	margin: 0;
	padding: 0;
}



.breadcrumbs {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 250px;
	color: #fff;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url("../img/graphics/586A2315.jpg");
	margin-bottom: 30px;
	border-bottom: 10px solid #6693b9;
}

.breadcrumbs-overlay {
	width: 100%;
	height: inherit;
	box-shadow: inset 0px 0px 105px 18px rgba(0,0,0,0.37);
	background-color: rgba(0,0,0,0.3);
}

h2.news-header {
	font-family: 'Roboto', sans-serif;
	color: #ad2024;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #242c32;
	padding-bottom: 10px;
	margin-top: 50px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

h3.produto-header {
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.4px;
	font-weight: 700;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-top: 50px;
	margin-bottom: 20px;
}

h4.features {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.4px;
	font-weight: 700;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-top: 50px;
	margin-bottom: 20px;
}

h4.form {
	text-transform: uppercase;
	font-size: 12px;
	color: #5f5f5f;
	letter-spacing: 0.4px;
	font-weight: 700;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.news-list-title {
	color: #3d3d3d;
	font-size: 18px;
	font-weight: 700;
	line-height: 32px;
	padding-bottom: 10px;
}

.news-body {
	margin: 30px 0;
}

.news-thumbnails {
	margin: 50px 0;
}

.thumbnail img {
	margin: 5px 0;
}

.contacts dt {
	font-weight: 700;
	font-size: 14px;
}

.contacts dd {
	margin: 6px 0;
}

/* Styles example */
.gallery-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gallery-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  white-space: nowrap;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 150px;
  background-position: top center;
  -webkit-background-size: cover;
  background-size: cover;
}

.home {
	margin: 0 0 10px 0;
	padding: 70px 0;
	border-top: 10px solid #3e5c7d;
	/*background: -webkit-linear-gradient(45deg, rgba(30,87,153,1) 0%,rgb(91, 124, 152) 100% );*/
}

.contactos dt {
	font-size: 16px;
	margin-bottom: 10px;
}

.contactos dd {
	margin: 6px 0;
}

.video-content {
	position: relative;
    height: 650px;
    overflow: hidden;
    background-color: rgba(60, 60, 60, 0.7);
    color: #ffffff;
}

.video-content video {
	position: absolute;
}

.video-overlay {
	position: absolute;
	width: 100%;
	height: 700px;
	background-color: rgba(60, 101, 150, 0.45);
}

footer {
  color: #666;
  font-size: 14px;
  line-height: 24px;
  margin-top: -200px;
  height: 200px;
  background-color: rgb(17, 31, 47);
}

footer::before {
	display: block;
	content: '';
	margin-top: 200px;
}

.footer-content {
	color: #fff;
	font-size: 12px;
	padding-top: 30px;
	border-top: 10px solid #244871;
}

.footer-content a {
	color: #fff;
}

.footer-content .fa {
	color: #267dc9;
}

.footer-contactos {
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 14px;
    border-bottom: 1px solid #20354e;
}

/*------------------------------- glyphicon icons hack --------------------*/

.glyphicon {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	/*--adjust as necessary--*/
	color: #fff;
	font-size: 14px;
	position: relative;
}

.glyphicon-chevron-right:before {
	content: "\f105";
	position: absolute;
	top: -10px;
	left: 0;
}

.glyphicon-chevron-left:before {
	content: "\f104";
	position: absolute;
	top: -10px;
	left: 0;
}

/*------------------------------- round icon --------------------*/

.icon-round {
	display: inline-block;
	height: 24px;
	width: 24px;
	background-color: rgba(255, 255, 255, 1);
	color: #000;
	border-radius: 50%;
	font-size: 12px;
	text-align: center;
}

/*------------------------------- table --------------------*/


.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border: 1px solid #252525;
}

.table p {
	margin: 5px 0;
}

/*------------------------------- list groups --------------------*/

.list-group {
	margin: 20px 0 0 0;
}

.list-group-item {
	background-color: #f7f7f7;
}

.attachments .list-group-item {
    background-color: transparent;
		border: 1px solid #333;
}

.attachments .list-group-item-title {
	background-color: #211b1b;
}

a.list-group-item:hover, a.list-group-item:focus {
    background-color: #211b1b;
		color: #fff;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #333;
    background-color: #dedede;
    border-color: #d6d6d6;
}

/*------------------------------- thumbnails --------------------*/

.img-thumbnail {
    background-color: #1f1f1f;
    border: 1px solid #404040;
}

.carousel-thumbnails {
	display: block;
	width: 80px;
	height: 80px;
	background-position: 50% 50%;
	background-size: cover;
}


/*---------------------------------------------------------------*/

.leaflet-popup-content {
  color:#333;
}

.leaflet-popup-content-wrapper {
  border-radius: 3px !important;
}

.item-box {
	min-height: 200px;
	margin: 0 0 50px 0;
}

.box {
  position: relative;
  min-height: 250px;
  background-color: white;
  /*box-shadow: 0px 7px 21px 2px rgba(0,0,0,0.1);*/
}

h1.news-list-title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 20px;
	padding-bottom: 20px;
  color: #333;
	border-bottom: 1px solid #ddd;
}

.text-box {
  cursor: pointer;
  color: #737373;
  font-size: 13px;
	padding: 0 5px;
  line-height: 20px;
}

.box-details {
	font-size: 12px;
	padding: 0 10px 10px 10px;
	line-height: 22px;
	color: #666;
}

.box-details .fa {
	color: #854857;
	margin-right: 10px;
}

.box-details p {
	margin: 0;
	padding: 5px 0;
	border-top: 1px solid #f0f0f0;
}

.btn-more {
	font-size: 12px;
	font-weight: 700;
	color: #e86216;
	padding: 10px 0;
}

.box-image {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 230px;
	background-position: 50% 50%;
	background-size: cover;
}

.box-item-name {
	color: #333;
	margin: 10px 0;
	font-weight: 700;
}


h3.item-header {
	font-size: 24px;
	font-weight: 700;
	margin:0 0 30px 0;
	font-family: "Montserrat";
}

a.item:hover {
	text-decoration: none;
}

.item-description {
	margin: 10px 0;
}

.item-img-placeholder {
	background-color: rgba(226, 226, 226, 0.27);
	box-shadow: inset 0px 0px 1px 0px rgba(0,0,0,0.6);
	background-image: url("../img/graphics/item-img-placeholder.png");
}

.item-thumbnails {
	margin: 30px 0;
	padding: 15px 0;
}

.item-feature {
	margin: 7px 0;
}

.photos-big-repeat {
	margin-bottom: 20px;
}

.box-item-name:hover {
	text-decoration: none;
}

.cursor {
	cursor: pointer;
}

/*--------------------------------- search box- -----------------------*/




.menu {
	margin: 0 5px 5px 5px;
	padding: 0 5px 5px 5px;
	list-style-type: none;
}

.menu li {
	margin: 0;
	padding: 0;
}

.menu > li {
	border-bottom: 1px solid #ddd;
}

.menu li > ul li:last-child {
	border-bottom: none;
}

.menu li > ul {
	display: none;
	margin-top: 0;
	padding-top:0;
}

.menu li.active > ul {
	display: block;
}

.menu span, .menu a {
	display: block;
	padding: 5px 0;
	position: relative;
	color: rgb(252,78,15);
}

.menu a:hover {
	text-decoration: none;
}

.menu span.tree-branch-head {
  color: rgb(252,78,15);
}

.menu span.tree-branch-head::before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: rgb(252,78,15);
  font-size: 10px;
  position: absolute;
	top: 7px;
  left: -15px;
}

.menu span.tree-branch-head::before {
  content: "\f054";
}

.menu li.active span.tree-branch-head::before {
	content:"\f078";
}

/*--------------------- utis ---------------------*/


.text-c {
	text-align: center;
}

.padding-10 {
	padding: 10px;
}

.padding-20 {
	padding: 20px;
}

.padding-t-20 {
	padding-top: 20px;
}

.padding-t-40 {
	padding-top: 40px;
}

.margin-tb-20 {
	margin: 20px 0;
}

.margin-tb-40 {
	margin: 40px 0;
}

.bullets {
	list-style-type: none;
}

.bullets li {
	margin: 15px 0;
	padding-left: 30px;
	background-position: -2px 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: 2%;
	background-image: url("../img/graphics/idea.svg");
}