/*-- Fonts --*/
@font-face {
    font-family: 'Exo2-Bold';
    src: url('../fonts/Exo2-Bold.eot');
	src: url('../fonts/Exo2-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Exo2-Bold.svg#Exo2-Bold') format('svg'),
		url('../fonts/Exo2-Bold.ttf') format('truetype'),
		url('../fonts/Exo2-Bold.woff') format('woff'),
		url('../fonts/Exo2-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Exo2-ExtraBold';
    src: url('../fonts/Exo2-ExtraBold.eot');
	src: url('../fonts/Exo2-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Exo2-ExtraBold.svg#Exo2-ExtraBold') format('svg'),
		url('../fonts/Exo2-ExtraBold.ttf') format('truetype'),
		url('../fonts/Exo2-ExtraBold.woff') format('woff'),
		url('../fonts/Exo2-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Exo2-Medium';
    src: url('../fonts/Exo2-Medium.eot');
	src: url('../fonts/Exo2-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Exo2-Medium.svg#Exo2-Medium') format('svg'),
		url('../fonts/Exo2-Medium.ttf') format('truetype'),   
		url('../fonts/Exo2-Medium.woff') format('woff'),
		url('../fonts/Exo2-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Exo2-Regular';
    src: url('../fonts/Exo2-Regular.eot');
    src: url('../fonts/Exo2-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Exo2-Regular.svg#Exo2-Regular') format('svg'),
		url('../fonts/Exo2-Regular.ttf') format('truetype'),	
		url('../fonts/Exo2-Regular.woff') format('woff'),
		url('../fonts/Exo2-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
/*-- //Fonts --*/

/*-- Basic --*/
html {
  	min-height: 100%;
  	position: relative;
}

body {
  	/* Margin bottom by footer height */
  	margin-bottom: 52px;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-stroke: 1px transparent;
}

.mask{
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.37);
}

.scrolloff {
	pointer-events: none;
}

a[href^="tel"] {
    color: inherit;
    text-decoration:none;
}
/*-- //Basic --*/

/*-- Typo --*/
h2 {
	color: #6f6f6f;
    font-family: 'Exo2-Bold';
    text-align: center;
    text-transform: uppercase;
}

h3 {
	color: #fff;
	font-family: 'Exo2-Regular';
    text-transform: uppercase;	
}

p {
	color: #fff;	
	font-family: 'Exo2-Regular';
}

@media (min-width: 1024px) {

	h2 {
		margin: 0 auto 50px;
	}
}
/*-- //Typo --*/

/*-- Buttons --*/
#header button.btn {
    color: #fff;
    font-family: 'Exo2-Bold';
    text-transform: uppercase;
    background-color: #6f6f6f;
    border: 2px solid #6f6f6f;
    display: inline-block;
    -webkit-transition: .75s ease;
    -moz-transition: .75s ease;
    -ms-transition: .75s ease;
    -o-transition: .75s ease;
    transition: .75s ease;
}

#header button.btn:hover {
	color: #6f6f6f;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#projetos a.btn {
    color: #6f6f6f;
    font-family: 'Exo2-Bold';
    text-transform: uppercase;
    border: 2px solid #6f6f6f;
    display: inline-block;
	margin: 50px auto;
	-webkit-transition: .75s ease;
	-moz-transition: .75s ease;
	-ms-transition: .75s ease;
	-o-transition: .75s ease;
	transition: .75s ease;
}

#projetos a.btn:hover {
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


#anuncie a.btn {
	color: #fff;
    font-family: 'Exo2-Bold';
    text-transform: uppercase;
    border: 2px solid #fff;
    display: inline-block;
    margin: 20px auto;
    -webkit-transition: .75s ease;
    -moz-transition: .75s ease;
    -ms-transition: .75s ease;
    -o-transition: .75s ease;
    transition: .75s ease;
}

#anuncie a.btn:hover {
	color: #6f6f6f;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#contato .btn {
	color: #fff;
    font-family: 'Exo2-Bold';
	text-transform: uppercase;
	background-color: #6f6f6f;
    border: 2px solid #6f6f6f;
    display: inline-block;
    -webkit-transition: .75s ease;
    -moz-transition: .75s ease;
    -ms-transition: .75s ease;
    -o-transition: .75s ease;
    transition: .75s ease;
}

#contato .btn:hover {
	color: #6f6f6f;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/*-- //Buttons --*/

/*-- Header --*/
#header .navbar-fixed-top {
	text-align: center;
	background-color: #FFF;
	border: none;
}

#header .navbar-brand {
    width: auto;
    height: auto;
    display: inline-block;
    margin: auto;
	float: none;
	vertical-align: middle;
}

#header .navbar-brand img {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;
}

#header .navbar-brand img:hover {
	-webkit-filter: brightness(0.5);
	filter: brightness(0.5);
}

#header form {
    display: inline-block;
    position: absolute;
    right: 0;
    margin: 20px;
}

#header form input {
	font-family: 'Exo2-Regular';
    border: 2px solid #6f6f6f;
    border-radius: 4px;
}

/*-- Navegação --*/
a.nav-expander {
	width: 72.5px;
	height: auto;
	color: #6f6f6f;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 12;
	padding: 1em 1.6em 2em;
	margin-right: 0;
	-webkit-transition: left 0.3s ease-in-out 0s;
	-moz-transition: left 0.3s ease-in-out 0s;
	-ms-transition: left 0.3s ease-in-out 0s;
	-o-transition: left 0.3s ease-in-out 0s;
	transition: left 0.3s ease-in-out 0s;
}

a.nav-expander:hover {
	cursor: pointer;
}

a.nav-expander.fixed {
	width: 30px;
	font-size: 25px;
    line-height: 1;
    text-align: center;
    display: block;
    position: fixed;
    padding: 0;
    margin: 25px;
    vertical-align: top;
}

.nav-expanded a.nav-expander.fixed {
	left: 12em;
}

a.nav-expander .fa {
    line-height: 0.75;
	text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}

nav {
	width: 20em;
	height: 100%;
	font-size: 15px;
	background: #fff;
	display: block;
	position: fixed;
	top: 0;
	left: -20em;
	overflow: auto;
	z-index: 2000;
	-webkit-transition: left 0.3s ease-in-out 0s;
	-moz-transition: left 0.3s ease-in-out 0s;
	-ms-transition: left 0.3s ease-in-out 0s;
	-o-transition: left 0.3s ease-in-out 0s;
	transition: left 0.3s ease-in-out 0s;
}
.nav-expanded nav {
	left: 0;
}

body.nav-expanded {
	margin-left: 0em;
	-webkit-transition: left 0.4s ease-in-out 0s;
	-moz-transition: left 0.4s ease-in-out 0s;
	-ms-transition: left 0.4s ease-in-out 0s;
	-o-transition: left 0.4s ease-in-out 0s;
	transition: left 0.4s ease-in-out 0s;
}

#nav-close {
	font-size: 25px;
	font-weight: 300;
	line-height: 1;
	padding-right: 10px;
}

.main-menu {
	padding-top: 0;
}

.main-menu li {
	font-family: 'Exo2-ExtraBold';
	font-size: 18px;
	text-transform: uppercase;
	padding: 20px;
	margin-left: 20px;
}

.main-menu li a {
	color: #6F7D8C;
	text-decoration: none;
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;
}

.main-menu li a:hover {
	color: #000;
	text-decoration: none;
}

.main-menu li .sub-nav {
	border-bottom: 0px;
	padding: 4px;
}

.main-menu a .caret {
	content: "";
	width: 0;
	height: 0;
	border-top: 4px solid #4f5963;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	display: inline-block;
	vertical-align: top;
	margin-top: 8px;
}

.main-menu a:hover .caret {
	border-top-color: #4f5963;
}

.main-menu li.open > a > .caret {
	border-top: none;
	border-right: 4px solid transparent;
	border-bottom: 4px solid #4f5963;
	border-left: 4px solid transparent;
}

.main-menu li.open > a:hover > .caret {
	border-bottom-color: #4f5963;
}

.icon:before {
	content: '\f105';
	font-family: 'FontAwesome';
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	text-transform: none;
}
/*-- //Navegação --*/
/*-- //Header --*/

/*-- Loading PAGE --*/
.no-js #loader { 
	display: none;  
}

.js #loader { 
	display: block; 
	position: absolute; 
	left: 100px; 
	top: 0; 
}

.se-pre-con {
	width: 100%;
	height: 100%;
	background: url(../img/loader.gif) center no-repeat #000;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
}
/*-- //Loading PAGE --*/

/*-- Main --*/
main {
	padding-top: 50px;
}

/*-- Slider --*/
.carousel .full-screen {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
  
.carousel .carousel-caption {
	width: 100%;
	background-color: rgba(0, 0, 0, .66);
    right: 0;
    bottom: 0;
	left: 0;
	padding-bottom: 15px;
}
  
.carousel .carousel-caption h1 {
	color: #fff;
	font-family: 'Exo2-Regular';
	text-transform: uppercase;
}

.carousel .carousel-caption h1 strong {
	font-family: 'Exo2-ExtraBold';
}

.carousel .carousel-caption p {
	color: #fff;
	font-family: 'Exo2-Regular';
}

.carousel .carousel-caption a {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;				
}

.carousel .carousel-caption a:hover {
	color: #6f6f6f;
}

/*-- FADE --*/
.carousel-fade .carousel-inner .item {
	opacity: 0;
	transition-property: opacity;
}
  
.carousel-fade .carousel-inner .active {
	opacity: 1;
}
  
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
  
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
  
.carousel-fade .carousel-control {
	display: none;
}
  
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
	
	.carousel-fade .carousel-inner > .item.next,
	.carousel-fade .carousel-inner > .item.active.right {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.carousel-fade .carousel-inner > .item.prev,
	.carousel-fade .carousel-inner > .item.active.left {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.carousel-fade .carousel-inner > .item.next.left,
	.carousel-fade .carousel-inner > .item.prev.right,
	.carousel-fade .carousel-inner > .item.active {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

}
/*-- //FADE --*/

@media screen and (min-width: 1024px) {
	
	.carousel .carousel-caption h1 { 
		font-size: 3.5em;
		margin: 0 auto;
	}

	.carousel .carousel-caption p {
		font-size: 1.5em;
		margin: 0 auto;
	}
	
}
/*-- //Slider --*/

/*-- Projetos --*/
#projetos {
	text-align: center;
	background-color: #ededed;
	padding: 20px 0;
}

#projetos a img {
	-webkit-transition: .75s ease;
	-moz-transition: .75s ease;
	-ms-transition: .75s ease;
	-o-transition: .75s ease;
	transition: .75s ease;
}

#projetos a:hover img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

#projetos a figcaption {
    width: 100%;
    color: #fff;
    font-size: 2em;
    font-family: 'Exo2-Bold';
    text-align: center;
    text-shadow: 0 0 2.5px #000;
    text-transform: uppercase;
	position: absolute;
    top: 50%;
	padding: 0 20px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .75s ease;
	-moz-transition: .75s ease;
	-ms-transition: .75s ease;
	-o-transition: .75s ease;
	transition: .75s ease;
}

@media (min-width: 1024px) {

	#projetos {
		padding: 50px 0 0;
	}

	#projetos .col-lg-3 {
		padding: 0;
	}

	#projetos a {
		display: block;
	    position: relative;	
	}

	#projetos img {
		width: 100%;
	}

}
/*-- //Projetos --*/

/*-- Anuncie --*/
#anuncie {
	text-align: center;
	background-color: #a9a9a9;
	padding: 20px 0;
}

#anuncie p {
	text-transform: uppercase;
}

@media (min-width: 1024px) {
	
	#anuncie {
		padding: 50px 0;
	}

	#anuncie h3 {
		font-size: 3em;
		margin: 0 auto;
	}

	#anuncie p {
		font-size: 1em;
	}

	#anuncie a.btn {
		padding: 15px 50px;
		margin: 10px 0;
		float: left;
	}

}	
/*-- //Anuncie --*/

/*-- Contato --*/
#contato {
	padding: 20px 0;
}

#contato form {

}

#contato form label {
	color: #6f6f6f;
	font-family: 'Exo2-Bold';
	text-transform: uppercase;
}

#contato form input,
#contato form textarea {
	color: #6f6f6f;
	font-family: 'Exo2-Regular';
	border: 2px solid #6f6f6f;	
}

#contato form textarea {
	resize: vertical;
}

@media (min-width: 1024px) {

	#contato {
		padding: 50px 0;
	}

}
/*-- //Contato --*/
/*-- //Main --*/

/*-- FOOTER-- */
#footer {
  	width: 100%;
  	/* Set the fixed height of the footer here */
	min-height: 52px;
  	background-color: #fff;
	position: absolute;
  	bottom: 0;
}

#footer .container > .text-muted {
    color: #6f6f6f;
    font-family: 'Exo2-Regular';
    font-size: 12px;
    text-align: center;
    margin: 10px 0;
}

/*-- Logo Moka --*/
#footer .logo-moka {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.5em;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}
	
	#footer .logo-moka:hover {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
/*-- Logo Moka --*/
/*-- //FOOTER-- */