/* CSS Document */



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;
	outline: none;
	text-decoration: none;
	font-family: 'Roboto';
	font-weight: normal;
	-webkit-tap-highlight-color: transparent;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	min-height: 100%;
	height: auto;
}
body {
	width: 100%;
	background: #fff;
	position: relative;
	font-size: 16px;
	font-family: 'Roboto';
	font-weight: normal;
	color: #fff;
	min-height: 100%;
	height: auto;
	overflow-y: scroll;
	float: left;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
	font-family: 'Roboto';
	color: #ffffff;
}
ol, ul, li {
	list-style: none;
}
a {
	-webkit-transition: .5s;
	transition: .5s;
	color: inherit;
	cursor: pointer;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin-bottom: 15px;
	color: #ffffff;
}
img {
	max-width: 100%;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
::-webkit-input-placeholder {
 color: #000;
 opacity: 1;
 font-size: 1em;
 text-transform: uppercase;
 font-family: 'Roboto';
}
:-moz-placeholder {
 color: #000;
 opacity: 1;
 font-size: 1em;
 text-transform: uppercase;
 font-family: 'Roboto';
}
::-moz-placeholder {
 color: #000;
 opacity: 1;
 font-size: 1em;
 text-transform: uppercase;
 font-family: 'Roboto';
}
:-ms-input-placeholder {
 color: #000;
 opacity: 1;
 font-size: 1em;
 text-transform: uppercase;
 font-family: 'Roboto';
}
input {
	webkit-appearance: none;
	border-radius: 0;
	border: none;
}
input:focus, select:focus, textarea:focus {
	outline: none;
}
.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	width: 100%;
	clear: both;
	display: inline-block;
}
.desktop {
	display: block;
}
.mobile {
	display: none;
}
/* main styles */
#wrapper {
	width: 100%;
	margin: 0;
	height: auto;
	float: left;
	overflow: hidden;
	position: relative;
	transition: opacity 1.5s ease 0s;
	opacity: 0;
}
#wrapper.landing {
	background: #b10f1f;
	min-height: 100vh;
	padding-bottom: 40px;
	box-sizing: border-box;
}
#wrapper.active {
	opacity: 1;
}

header {
	background-color: transparent;
	background-image: none;
	background-size: 190px 50px;
	background-position: center 15px;
	background-repeat: no-repeat;
	height: 80px;
	overflow: hidden;
	transition: all 0.5s ease 0s;
	position: fixed;
	z-index: 200;
	width: 100%;
}

img.landingLogo {
  display: block;
  margin: 10% auto 5%;
  width: 80%;
  max-width: 400px;
}
.landing h1 {
  font-size: 2em;
  margin: 0 auto 30px;
  text-align: center;
  text-transform: uppercase;
}
p.landingP {
  text-align: center;
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 0 auto 30px;
  font-size: 1.2em;
  letter-spacing: 1px;
  line-height: 200%;
  font-weight: 500;
}
/*************** non hd desktop Styles *****************/

@media screen and (max-width: 1700px) {
body {
	font-size: 14px;
}
}

/*************** smaller display Styles *****************/
@media screen and (min-width: 1280px) and (max-width: 1490px) {
body {
	font-size: 14px;
}


}

/*************** tablet Landscape Styles *****************/
@media screen and (min-width: 900px) and (max-width: 1280px) {
body {
	font-size: 14px;
}

}

/*************** tablet portrait Styles *****************/
@media screen and (min-width: 600px) and (max-width: 900px) {
body {
	font-size: 14px;
}

}


/***************** Mobile Portrait Styles *****************/
@media screen and (max-width: 600px) {
body {
	font-size: 14px;
}
a.menu {
	display: block;
	position: absolute;
	width: 60px;
	height: 60px;
	top: 10px;
	left: 10px;
}
.menu span {
	display: block;
	position: absolute;
	left: 10px;
	width: 40px;
	height: 2px;
	background-color: #fff;
}

.open .menu span {
	background-color: #000;
}
.menu span:first-child {
	top: 15px;
	-webkit-transition: width .5s ease .8s, background .2s ease .5s;
	transition: width .5s ease .8s, background .2s ease .5s;
}
.menu span:nth-child(2) {
	top: 30px;
	left: auto;
	right: 10px;
	-webkit-transition: width .5s ease .6s, background .2s ease .5s;
	transition: width .5s ease .6s, background .2s ease .5s;
}
.menu span:nth-child(3) {
	bottom: 15px;
	-webkit-transition: width .5s ease .4s, background .2s ease .5s;
	transition: width .5s ease .4s, background .2s ease .5s;
}
.menu span:nth-child(4) {
	top: 15px;
	width: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: width .5s ease .2s, top .5s ease .2s, background .2s ease .5s;
	transition: width .5s ease .2s, top .5s ease .2s, background .2s ease .5s;
}
.menu span:last-child {
	bottom:15px;
	width: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: width .5s ease 0s, bottom .5s ease 0s, background .2s ease .5s;
	transition: width .5s ease 0s, bottom .5s ease 0s, background .2s ease .5s;
}

.open .menu span:first-child {
	width: 0;
	-webkit-transition: width .2s ease 0s, background .2s ease 0s;
	transition: width .2s ease 0s, background .2s ease 0s;
}
.open .menu span:nth-child(2) {
	width: 0;
	-webkit-transition: width .2s ease .2s, background .2s ease 0s;
	transition: width .2s ease .2s, background .2s ease 0s;
}
.open .menu span:nth-child(3) {
	width: 0;
	-webkit-transition: width .2s ease .4s, background .2s ease 0s;
	transition: width .2s ease .4s, background .2s ease 0s;
}
.open .menu span:nth-child(4) {
	width: 40px;
	top: 29px;
	-webkit-transition: width .2s ease .6s, top .2s ease .6s, background .2s ease 0s;
	transition: width .2s ease .6s, top .2s ease .6s, background .2s ease 0s;
}
.open .menu span:last-child {
	width: 40px;
	bottom:29px;
	-webkit-transition: width .2s ease .8s, bottom .2s ease .8s, background .2s ease 0s;
	transition: width .2s ease .8s, bottom .2s ease .8s, background .2s ease 0s;
}
}

/*************** Mobile Landscape Styles *****************/
@media screen and (max-width: 640px) and (max-height: 400px) {
body {
	font-size: 10px;
}
}
	
/***************** little mobile phone Styles *****************/
@media screen and (max-width: 320px) and (max-height: 480px) {
body {
	font-size: 12px;
}

}


