@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 200;
	src: url(../fonts/woff/SourceSansPro-ExtraLight.otf.woff) format('woff');
	/*src: url(../fonts/svg/SourceSansPro-ExtraLight.svg) format('svg');*/
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/woff/SourceSansPro-Light.otf.woff) format('woff');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/woff/SourceSansPro-Regular.otf.woff) format('woff');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/woff/SourceSansPro-Semibold.otf.woff) format('woff');
}

body {
	background: #0a0a0a;
	font-size: 22px;
	font-weight: 300;
}

body, h1, h2, h3 {
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	line-height: 1.2em;
}

.uk-button {
	color: #eee;
	background: linear-gradient(#4e4e4e, #242424);
}
.uk-button:hover {
	color: #fff;
}

.content {
	position: relative;
}

h1 {
	padding-top: 25px;
	font-size: 92px;
	line-height: 1em;
	text-transform: uppercase;
	padding-bottom: 0 !important;
}
h2 {font-size: 48px;}

h3 {
	font-size: 36px;
	color: #aaaaaa;
}

h1, h2, h3 {
	font-weight: 200;
	margin-bottom: 25px;
}

#banner {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

a:focus {
	border: 0;
	outline : 0;
	background-color: rgba(255,255,255,0.02);
}

#banner a:focus {
	border: 0;
	outline : 0;
	background-color: transparent;
}

#banner, nav {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.banner-text div {
	position: absolute;
	top: 50%;
	width: 100%;
	/*margin-top: -46px;*/
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	text-align: center;

	font-size: 92px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1em;
}

#banner-3dbackground {
	width: 100%;
	height: 100%;
	z-index: -1;
}

.banner-text div{
	display: none;
	transition: opacity 1.2s;
	cursor: default;
}
.banner-text div:first-child{
	display: block;
}

nav {
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 82px;
	background: rgba(10,10,10,0.9);
	border-bottom: solid 2px #272727;
}
nav a {
	padding: 26px 0;
	height: 84px;
	text-align: center;
}
nav a.current {
	background: rgba(255,255,255,0.1);
	border-bottom: solid 2px #fff;
}
nav a:hover, nav a {
	color: #ebebeb;
	text-decoration: none;
}

.nav-padding {
	padding-top: 82px;
}

.arrow-center, .arrow-right {
	display: block;
	transition: background-position 0.4s;
	padding-top: 93px;
}

.arrow-center:hover, .arrow-right:hover {
	text-decoration: none;
}

.arrow-down {
	background: url(../img/arrow-down.png) no-repeat 50% 0%;
	width: 100%;
	height: 93px;
	text-align: center;
	position: absolute;
	bottom: 0;

	-webkit-animation: arrow-down 5s infinite;
	animation: arrow-down 5s infinite;
}

@-webkit-keyframes arrow-down {
	0% {background-position: 50% 0%;}
	5% {background-position: 50% 25%;}
	10% {background-position: 50% 0%;}
	15% {background-position: 50% 25%;}
	20% {background-position: 50% 0%;}
}
@keyframes arrow-down {
	0% {background-position: 50% 0%;}
	5% {background-position: 50% 25%;}
	10% {background-position: 50% 0%;}
	15% {background-position: 50% 25%;}
	20% {background-position: 50% 0%;}
}

.arrow-center {
	margin-top: 70px;
	background: url(../img/arrow-left.png) no-repeat 50% 0%;
	text-align: center;
}

.arrow-center:hover {
	background-position: 51% 0%;
}

.arrow-right {
	margin-top: 70px;
	background: url(../img/arrow-up.png) no-repeat 50% 0%;
	text-align: center;
	position: absolute;
	width: 25%;
	right: 0;
}

.arrow-right:hover {
	background-position: 50% -20%;
}

.copyrights {
	text-align: center;
	margin: 30px 0 30px 0;
}

input, textarea {
	background: #222 !important;
	padding: 10px !important;
	height: inherit !important;
	margin: 0 0 15px 0 !important;
	border: none !important;
	color: #fff !important;
}

.invalid {
	box-shadow: 0px 0px 0px 2px rgba(140, 0, 0, 1);
}

textarea {
	height: 110px !important;
}

.address {
	position: relative;
	z-index: 2;
	height: 60px
}

@media screen and (max-width:768px) {
	.address {
		height: 120px
	}
	nav {
		height: 48px;
	}
	nav a {
		padding: 12px 0;
		height: 50px;
		font-size: 18px;
	}
	.nav-padding {
		padding-top: 48px;
	}
	body {
		font-size: 18px;
	}
	.banner-text div {
		font-size: 10vw;
	}
	.arrow-center, .arrow-right {
		display: inline-block;
		width: 50%;
	}
	.arrow-center:hover {
		background-position: 54% 0%;
	}
	h1 {font-size: 68px;}
	h2 {font-size: 34px;}
	h3 { font-size: 22px;}
	.viewer-frame-wrapper {
		top: 46px !important; bottom: 46px !important;
	}
	.view-up-logo {
		display: none;
	}
}

.servicos-page {
	background: url('../img/servicos-bg.png') 50% 0% no-repeat;
	background-size: 100%;
}

.galery-image {
	position: relative;
	cursor: pointer;
}
.galery-image:after {
	padding-top: 100%; /*1:1 ratio*/
	display: block;
	content: '';
}

.galery-image:before {
	content: "\f00e";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	font-size: 50px;
	line-height: 1;
	font-family: FontAwesome;
	text-align: center;
	color: #fff;
	z-index: 2;
	text-shadow: 0px 0px 4px rgba(0,0,0,0.5);
	opacity: 0.6;
}

.galery-image img{
	position: absolute;
	top: 0; bottom: 0; right: 0; left: 0;
}

.footer {
	position: relative;
}

.footer a{
	color: #fff !important;
	border-bottom: 2px solid #333;
}

.footer a:hover{
	text-decoration: none;
	border-bottom: 2px solid #fff;
}

.view-up-logo {
	position: absolute;
	top: 2px;
	right: 110px;
	border-bottom: none !important;
}

.viewer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background: #0a0a0a;
	z-index: 100;
	transition: -webkit-transform 600ms;
	transition: -ms-transform 600ms;
	transition: -moz-transform 600ms;
	transition: transform 600ms;
	-webkit-transform: translate(100%, 0%);
	-ms-transform: translate(100%, 0%);
	-moz-transform: translate(100%, 0%);
	transform: translate(100%, 0%);
}
.viewer.show {
	-webkit-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
}
.viewer a {
	color: #fff;
}
.viewer a:hover {
	text-decoration: none;
}
.viewer-top-bar {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 60px;
	white-space: nowrap;
}
.viewer-category, .viewer-counter, .viewer-description {
	padding: 15px;
}
.viewer-counter {
	position: absolute;
	right: 0;
	background: #0a0a0a;
}
.viewer-previous, .viewer-next {
	position: absolute;
	font-size: 60px;
	margin-top: -30px;
	top: 50%;
	z-index: 101;
}
.viewer-previous {
	left: 20px;
}
.viewer-next {
	right: 20px;
}
.viewer-frame-wrapper {
	position: absolute;
	overflow: hidden;
	top: 60px; bottom: 60px; right: 0; left: 0;
}
.viewer-frame {
	position: absolute;
	top: 0; bottom: 0; right: 0; left: 0;
	background: no-repeat 50% 50%;
	background-size: contain;
}
.viewer-description {
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
}
/* transitions */
.viewer-frame-current {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	transform: scale(1, 1);
}
.viewer-frame-previous {
	-webkit-transform: translate(-100%, 0%);
	-ms-transform: translate(-100%, 0%);
	-moz-transform: translate(-100%, 0%);
	transform: translate(-100%, 0%);
}
.viewer-frame-next {
	-webkit-transform: translate(100%, 0%);
	-ms-transform: translate(100%, 0%);
	-moz-transform: translate(100%, 0%);
	transform: translate(100%, 0%);
}

.viewer-go-next .viewer-frame, .viewer-go-previous .viewer-frame {
	transition: opacity 600ms, -webkit-transform 600ms;
	transition: opacity 600ms, -ms-transform 600ms;
	transition: opacity 600ms, -moz-transform 600ms;
	transition: opacity 600ms, transform 600ms;
}
.viewer-go-next .viewer-frame-next, .viewer-go-previous .viewer-frame-previous {
	-webkit-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
}
.viewer-go-next .viewer-frame-current, .viewer-go-previous .viewer-frame-current {
	-webkit-transform: scale(0.5, 0.5);
	-ms-transform: scale(0.5, 0.5);
	-moz-transform: scale(0.5, 0.5);
	transform: scale(0.5, 0.5);
	opacity: 0;
}
.viewer-frame-buffer {
	opacity: 0;
}