html,
body {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 300;
	height: 100%;
	color:#060606;
}

body{
	overflow-x:hidden	
}

a {
	color: var(--cor-primaria);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
}

/* LOGO TOPO */
.ul-logo-topo{
	padding:0;
	margin:0;
	list-style:none	
}
.ul-logo-topo > li{
	display:inline-block;
	vertical-align:middle
}
.ul-logo-topo > li .letter-spacing{
	letter-spacing:-3px
}

/* NAVBAR */
.navbar-fixed-top {
	margin-bottom: 0;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
	color: var(--cor-primaria);
	background-color: #ffffff;
	border-radius: 0;
}
.navbar-default {
	background-color: var(--cor-primaria);
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #ffffff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: var(--cor-primaria);
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border-color: var(--cor-primaria);
}
.navbar-inverse {
	background-color: #060606;
}
.navbar-default,
.navbar-inverse {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-default .navbar-brand,
.navbar-inverse .navbar-brand {
	padding: 0 15px;
	color: #ffffff;
	opacity: 1;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.navbar-default .navbar-brand:hover,
.navbar-inverse .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-inverse .navbar-brand:focus {
	opacity: 1;
}
.navbar-default .navbar-nav li a,
.navbar-inverse .navbar-nav li a {
	color: #ffffff;
}
.navbar-default .navbar-nav li a:hover,
.navbar-inverse .navbar-nav li a:hover {
	color: var(--cor-primaria);
}
.navbar-contact-top{
	padding:0;
	margin:0;
	list-style:none;
	vertical-align:middle;
	padding-left:16px !important;
	padding-right:16px !important
}
.navbar-contact-top > li{
	display:inline-block;
	margin-top:12px
}

@media (min-width: 768px) {
	.navbar-default .navbar-nav > .active > a,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus,
	.navbar-inverse .navbar-nav > .active > a,
	.navbar-inverse .navbar-nav > .active > a:hover,
	.navbar-inverse .navbar-nav > .active > a:focus {
		border-radius: 5px;
		padding:10px 14px;
		margin-top:5px
	}
	.navbar-fixed-top.navbar-expanded {
		padding-top: 20px;
		padding-bottom:40px;
	}
	.navbar-fixed-top {
		padding: 15px 0;
		-webkit-transition: padding 0.5s;
		-moz-transition: padding 0.5s;
		transition: padding 0.5s;
		z-index: 99;
	}
	.navbar-fixed-top .navbar-brand:hover {
		opacity: 0.5;
	}
	.navbar-default.navbar-expanded,
	.navbar-inverse.navbar-expanded {
		background: transparent;
		border: none;
	}
	.navbar-contact-top{
		padding-left:0px
	}
}

.navbar a:focus {
	outline: none;
}
.navbar .navbar-nav li a:focus {
	outline: none;
}

/* HEADER */
header {
	position: relative;
	display: block;
	height: auto;
	width: auto;
	background:url(../img/bg-header.jpg) no-repeat center center #060606;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	padding: 120px 0;
}
header .intro-content {
	color: #ffffff;
	text-align: center;
	position: relative;
}
header .brand-name {
	font-size: 50px;
	line-height: 50px;
	text-transform: uppercase;
	font-weight: 900;
	margin-top: 15px;
}
header .brand-name .letter-spacing{
	letter-spacing:-10px
}
header .brand-name-subtext {
	font-size: 20px;
	line-height: 20px;
	font-weight: 300;
}
header img {
	max-width: 250px !important;
	max-height: 300px !important;
}
header .scroll-down {
	position: absolute;
	width: 100%;
	bottom: 33px;
	text-align: center;
}
header .scroll-down .btn {
	height: 35px;
	width: 35px;
	border: 2px solid #ffffff;
	border-radius: 100% !important;
	line-height: 30px;
	padding: 0;
	letter-spacing: normal;
	color: #ffffff;
	font-size: 22px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
header .scroll-down .btn:hover {
	color: var(--cor-primaria);
	border-color: var(--cor-primaria);
	outline: none;
}
@media (min-width: 768px) {
	header {
		height: 100%;
		width: 100%;
		padding: 0;
		background-attachment: scroll;
	}
	header .intro-content {
		color: #ffffff;
		text-align: center;
		width: 50%;
		margin: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	header .brand-name {
		font-size: 80px;
		line-height: 80px;
	}
	header .brand-name-subtext {
		font-size: 30px;
		line-height: 30px;
	}
	header img {
		max-width: 300px;
		max-height: 300px;
	}
}
@media (min-width: 1025px) {
	header {
		background-attachment: fixed;
	}
}
header.video .overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	background: #000000;
	z-index: 998;
	opacity: 0;
}
header.video .intro-content {
	z-index: 999;
}
header.video .scroll-down {
	z-index: 999;
}
@media (min-width: 768px) {
	header.video .overlay {
		opacity: 0.5;
	}
}

/* HR */
hr {
	max-width: 100px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	height: 2px;
	margin: 15px auto;
}
hr.left {
	margin: 15px auto 15px 0;
}
hr.right {
	margin: 15px 0 15px auto;
}
hr.colored {
	border-color: var(--cor-primaria);
}
@media (min-width: 768px) {
	hr {
		max-width: 200px;
		margin: 20px auto;
	}
	hr.left {
		margin: 20px auto 20px 0;
	}
	hr.right {
		margin: 20px 0 20px auto;
	}
}

/* BOTOES */
.btn {
	padding-top: 9px;
	padding-bottom: 9px;
}

.site-button,
.site-button-secondry {
	padding: 10px 20px;
	display: inline-block;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	outline: none;
	border-width: 0;
	border-style: solid;
	border-color: transparent;
	line-height: 1.42857;
	margin-left: -1px;
	text-decoration: none !important;
}

.site-button {
	background-color: var(--cor-primaria);
	color: #fff;
}

.site-button:active,
.site-button:hover,
.site-button:focus,
.active>.site-button {
	background-color: var(--cor-primaria);
	color: #fff;
}

.site-button:hover {
	background-color: #060606;
	color: #fff;
}

.site-button-secondry {
	background-color: #060606;
	color: #fff;
}

.site-button-secondry:active,
.site-button-secondry:hover,
.site-button-secondry:focus,
.active>.site-button-secondry {
	background-color: #060606;
	color: #fff;
}
.btn-effect {
  letter-spacing:0px;
  position:relative;
  text-transform:uppercase;
}

.btn-effect:before,
.btn-effect:after {
  border-color: transparent;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  border-style: solid;
  border-width: 0;
  content: "";
  height: 24px;
  position: absolute;
  width: 24px;
}

.btn-effect:before {
  border-color: var(--cor-primaria);
  border-left-width: 2px;
  border-top-width: 2px;
  left: -5px;
  top: -5px;
}

.btn-effect:after {
  border-bottom-width: 2px;
  border-color: var(--cor-primaria);
  border-right-width: 2px;
  bottom: -5px;
  right: -5px;
}

.btn-effect:hover:before,
.btn-effect:hover:after{
  height: 100%;
  width: 100%;
}

.site-button-secondry.btn-effect:before,
.site-button-secondry.btn-effect:after{
  border-color: #060606;
}

.site-button.btn-effect:before,
.site-button.btn-effect:after{
  border-color: var(--cor-primaria);
}

.site-button:hover.btn-effect:before,
.site-button:hover.btn-effect:after{
  border-color: #060606;
}

/* EMPRESA */
.m-about {
	position: relative;
	z-index: 2;
}

.m-about:after {
	content: "";
	position: absolute;
	width: 75%;
	height: 75%;
	background-color: var(--cor-primaria);
	left: 0px;
	top: 18%;
	z-index: -1;
}

.m-about-years{
	display: inline-block;
	padding: 20px;
	border-left: 10px solid var(--cor-primaria);
}

.m-about .item {
	-webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .0.4);
	margin: 50px;
}
.large-title-info{
	font-size: 20px;
	display: block;
}
@media only screen and (max-width:767px) {
	.m-about {
		margin: 0px 0px 0px 50px;
	}
	.m-about-containt {
		margin-top: 60px;
	}
}

.m-about-containt .large-title{
	font-size:88px;
	font-weight:900;
	display:inline-block;
	line-height: 35px;
}

@media only screen and (max-width:480px) {
	.m-about-containt h1,
	.m-about-containt h2,
	.m-about-containt h3{
		font-size: 22px;
		line-height:inherit;	
	}	
}

/* METODOLOGIA */
.services .media {
  margin-bottom: 30px;
}
.services .media i.fa {
  height: 75px;
  width: 75px;
  line-height: 70px !important;
  text-align: center;
  border: 3px solid var(--cor-primaria);
  border-radius: 100%;
  font-size: 30px;
  color: var(--cor-primaria);
}
.services .media .media-body {
  min-width: none;
  padding-left: 15px;
}
.services .media .media-body h3 {
  margin-bottom: 15px;
}
.services .media .media-body ul {
  list-style: inside;
  padding: 0;
}
.services .media .media-body ul li {
  margin-bottom: 10px;
}
@media (min-width: 390px) {
  .services .media .media-body {
    min-width: 260px;
  }
}
@media (min-width: 992px) {
  .services .media .media-body {
    min-width: 193px;
  }
}
@media (min-width: 1199px) {
  .services .media .media-body {
    min-width: 260px;
  }
}
@media (min-width: 992px) {
  .services .media {
    margin-bottom: 0;
  }
}

/* BANNER 1 */
.cta-quote {
	color: #ffffff;
	background-color: #060606;
	background: no-repeat center center scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	padding: 100px 0;
	text-align: center;
}
.cta-quote span.quote {
	display: block;
	font-size: 30px;
	line-height: 32px;
	font-weight: 300;
}
@media (min-width: 768px) {
	.cta-quote {
		background-attachment: scroll;
		padding: 150px 0;
	}
	.cta-quote span.quote {
		font-size: 36px;
		line-height: 38px;
	}
}
@media (min-width: 992px) {
	.cta-quote {
		padding: 100px 0;
	}
	.cta-quote span.quote {
		font-size: 50px;
		line-height: 85px;
	}
}
@media (min-width: 1025px) {
	.cta-quote {
		background-attachment: fixed;
	}
}

/* PORTFOLIO */
.portfolio-carousel {
  padding: 0;
  color: #ffffff;
  background-color: #060606;
}
.portfolio-carousel .item {
  background-color: #060606;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  padding: 50px 55px;
  text-align: center;
}
.portfolio-carousel .item .portfolio-image {
  margin-top: 50px;
}
.portfolio-carousel .item .project-details {
  padding: 0;
}
.portfolio-carousel .item .project-details img.client-logo {
  margin: 0 auto 25px;
}
.portfolio-carousel .item .project-details .project-name {
  display: block;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 5px;
  font-weight: 900;
  text-transform: uppercase;
}
.portfolio-carousel .item .project-details .project-description {
  display: block;
  font-size: 18px;
  line-height: 18px;
}
.portfolio-carousel .owl-controls {
  margin-top: 0;
}
.portfolio-carousel .owl-controls .owl-prev,
.portfolio-carousel .owl-controls .owl-next {
  text-align: center;
  position: absolute;
  height: 75px;
  width: 50px;
  border-radius: 0 !important;
  line-height: 70px;
  font-size: 30px !important;
  margin: auto 0 !important;
  top: 0;
  bottom: 0;
  background-color: var(--cor-primaria) !important;
  color: #ffffff !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio-carousel .owl-controls .owl-prev:hover,
.portfolio-carousel .owl-controls .owl-next:hover {
  opacity: 1;
}
.portfolio-carousel .owl-controls .owl-prev {
  left: 0;
}
.portfolio-carousel .owl-controls .owl-next {
  right: 0;
}
@media (min-width: 992px) {
  .portfolio-carousel .item {
    padding: 85px 55px 85px;
    text-align: left;
    min-height: 100%;
  }
  .portfolio-carousel .item .portfolio-image {
    margin-top: 0;
  }
  .portfolio-carousel .item .project-details {
    padding: 15% 0 0;
  }
  .portfolio-carousel .item .project-details img.client-logo {
    margin: 0 auto 25px 0;
  }
  .portfolio-carousel .item .project-details .project-name {
    display: block;
    font-size: 50px;
    line-height: 50px;
  }
  .portfolio-carousel .item .project-details .project-description {
    font-size: 20px;
    line-height: 20px;
  }
  .portfolio-carousel .item hr.colored {
    margin: 20px auto 20px 0;
  }
}
.portfolio-gallery .item {
  padding: 15px;
}

.portfolio-modal {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.portfolio-modal .modal-backdrop {
  display: none;
}
.portfolio-modal .modal-content {
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
}
.portfolio-modal .modal-content h2 {
  margin: 0;
  font-size: 46px;
}
.portfolio-modal .modal-content img {
  margin: 30px auto;
}
.portfolio-modal .modal-content .item-details {
  margin: 30px 0;
}
.portfolio-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #ffffff;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #ffffff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}
.portfolio-filter {
  display: inline-block;
}
.portfolio-filter #filters {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.portfolio-filter #filters li {
  display: inline-block;
}
.portfolio-filter #filters li .filter {
  display: block;
  cursor: pointer;
  padding: 10px 15px;
  margin: 2px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
  color: #060606;
  background: transparent;
  border: 1px solid #060606;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio-filter #filters li .filter.active {
  background-color: var(--cor-primaria);
  color: #ffffff;
  border-color: var(--cor-primaria);
}
#portfoliolist .portfolio {
  width: 31%;
  margin: 1%;
  display: none;
  float: left;
  overflow: hidden;
}
#portfoliolist .portfolio .portfolio-wrapper {
  overflow: hidden;
  position: relative !important;
  background: #060606;
  cursor: pointer;
}
#portfoliolist .portfolio .portfolio-wrapper img {
  max-width: 100%;
  position: relative;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
#portfoliolist .portfolio .portfolio-wrapper img:hover {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
#portfoliolist .portfolio .portfolio-wrapper .caption {
  position: absolute;
  width: 100%;
  height: 75px;
  bottom: -75px;
}
#portfoliolist .portfolio .portfolio-wrapper .caption .caption-bg {
  background: var(--cor-primaria);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#portfoliolist .portfolio .portfolio-wrapper .caption .caption-text {
  color: #ffffff;
  position: relative;
  z-index: 500;
  padding: 15px 8px;
}
#portfoliolist .portfolio .portfolio-wrapper .caption .caption-text a.text-title {
  color: #ffffff;
}
#portfoliolist .portfolio .portfolio-wrapper .caption .caption-text .text-category {
  display: block;
  font-size: 12px;
}
/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
  #portfoliolist .portfolio {
    width: 92%;
    margin: 3% 4%;
  }
}

/* HOSPEDAGENS */
.pricing {
  color: #ffffff;
  background-color: #060606;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.pricing .pricing-item {
  text-align: center;
  background: #ffffff;
  color: #060606;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.75);
  -moz-box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.75);
  box-shadow: 0px 0px 30px 5px rgba(34, 34, 34, 0.75);
  z-index: 1;
  margin-bottom: 30px;
}
.pricing .pricing-item h3 {
  margin: 0;
}
.pricing .pricing-item hr {
  max-width: 100px;
}
.pricing .pricing-item .price {
  margin-bottom: 20px;
}
.pricing .pricing-item .price .number {
  font-weight: 900;
  font-size: 50px;
}
.pricing .pricing-item .price .number sup {
  font-size: 30px;
}
.pricing .pricing-item .list-group-item {
  border-radius: 0;
}
@media (min-width: 992px) {
  .pricing {
    background-attachment: scroll;
  }
  .pricing .pricing-item {
    margin-bottom: 0;
  }
  .pricing .pricing-item.featured-first {
    margin-right: -15px;
    margin-top: 15px;
  }
  .pricing .pricing-item.featured {
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 45px 30px;
  }
  .pricing .pricing-item.featured-last {
    margin-left: -15px;
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  .pricing {
    background-attachment: fixed;
  }
}


/* CONTATO */
.form-control{
	border: solid 2px var(--cor-primaria);
	padding:30px 20px !important;
	font-size:18px;
	color: #060606;
	font-weight:600;
}


/* FOOTER */
footer.footer {
  color: rgba(255, 255, 255, 0.7);
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  padding: 50px 0 20px;
}
footer.footer a {
  color: #ffffff;
}
footer.footer a:hover {
  color: var(--cor-primaria);
}
footer.footer p {
  font-size: 22px;
}
footer.footer .contact-details {
  margin: 75px 0;
}
footer.footer .social {
  margin-bottom: 75px;
}
footer.footer .copyright p.small {
  font-size: 14px;
}
@media (min-width: 1025px) {
  footer.footer {
    background-attachment: fixed;
  }
}

/* MODAL NEWSLETTER */
#modalNewsletter .modal-header{
	background:#060606;
	height:auto
}
#modalNewsletter .form-control{
	padding:25px 20px !important;
}

/* BLOG TEXT LIST */
.box-text-list{
	height:100px !important;
	max-height:100px !important;
	overflow:hidden !important;	
}
@media only screen and (max-width: 600px) {
	.box-text-list{
		height:auto !important;
		max-height:auto !important;
		overflow:auto !important;	
	}
}

/* MARGIN TOP HEADER EXTERNO MOBILE */
.margin-top-mobile-header{
	
}
@media only screen and (max-width: 600px) {
	.margin-top-mobile-header{
		padding-top:60px
	}
}