/*@import url("http://fonts.googleapis.com/css?family=Roboto:300,700");*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,700");

/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

/* Box Model */

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Basic */

@-ms-viewport {
	width: device-width;
}

body {
	-ms-overflow-style: scrollbar;
}

body,
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

html,
body {
	height: 100%;
	overflow-x: hidden;
	width: 100%;
}

body {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	background-color: #000;
	padding: 2em 2em 2em 2em;
}

body>* {
	position: relative;
	z-index: 2;
}

body.is-loading *,
body.is-loading *:before,
body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

/* Type */

body,
input,
select,
textarea {
	color: rgba(255, 255, 255, 0.75);
	font-family: "Roboto", sans-serif;
	font-size: 16pt;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.65em;
}


/*slide*/

#bg {
	-moz-transition: opacity 2s ease-in-out;
	-webkit-transition: opacity 2s ease-in-out;
	-ms-transition: opacity 2s ease-in-out;
	transition: opacity 2s ease-in-out;
	height: 100%;
	left: 0;
	opacity: 0.75;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

#bg div {
	-moz-transition: opacity 3s ease, visibility 3s;
	-webkit-transition: opacity 3s ease, visibility 3s;
	-ms-transition: opacity 3s ease, visibility 3s;
	transition: opacity 3s ease, visibility 3s;
	background-size: cover;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	visibility: hidden;
	width: 150%;
}

#bg div.visible {
	-moz-animation: bg 45s linear infinite;
	-webkit-animation: bg 45s linear infinite;
	-ms-animation: bg 45s linear infinite;
	animation: bg 45s linear infinite;
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

#bg div.visible.top {
	z-index: 2;
}

@media screen and (max-width: 1280px) {

	#bg div.visible {
		-moz-animation: bg 29.25s linear infinite;
		-webkit-animation: bg 29.25s linear infinite;
		-ms-animation: bg 29.25s linear infinite;
		animation: bg 29.25s linear infinite;
	}

}

@media screen and (max-width: 736px) {

	#bg div.visible {
		-moz-animation: bg 18s linear infinite;
		-webkit-animation: bg 18s linear infinite;
		-ms-animation: bg 18s linear infinite;
		animation: bg 18s linear infinite;
	}
}

#bg div:only-child {
	-moz-animation-direction: alternate !important;
	-webkit-animation-direction: alternate !important;
	-ms-animation-direction: alternate !important;
	animation-direction: alternate !important;
}

body.is-loading #bg {
	opacity: 0;
}

@-moz-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@-webkit-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@-ms-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
} /*slide End*/



h1,
h2,
h3,
h4,
h5,
h6 {
	color: #fff;
	font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 7em;
	opacity: 0.9;
	padding: 1em 0 0 0 ;
}

h1 .thin{
	font-weight: 300;
}

/* List */
ul {
	list-style: disc;
	margin: 0 0 1em 0;
	padding-left: 1em;
}
ul li {
	padding-left: 0.5em;
}

/* Footer */
#footer {
	-moz-transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
	font-size: 0.8em;
	bottom: 1em;
	color: rgba(255, 255, 255, 0.5);
	left: 1em;
	opacity: 0.75;
	position: absolute;
}

#footer .copyright {
	font-size: 1em;
	list-style: none;
	padding: 0;
}

#footer .copyright li {
	border-left: solid 1px rgba(255, 255, 255, 0.5);
	display: inline-block;
	line-height: 1em;
	margin: 0 0 0 0.75em;
	padding: 0 0 0 0.75em;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

#footer .copyright a {
	color: inherit;
}

#footer:hover {
	opacity: 1;
}

#footer> :last-child {
	margin-bottom: 0;
}


/*
	Eventually by HTML5 UP
	html5up.net | @n33co
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

