@charset "utf-8";

img, object, embed, video {
	max-width: 100%;
}

body {
	background-color: #222;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	max-width: 800px;
}

a {
	color: #eee;
	text-decoration: none;
}

a:visited {
	color: #eee;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here… */
}

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

#header-back {
	position: absolute;
	top: 0;
	left: 0;
}

#header {
	width: 100vw;
	height: 60vh;
	text-align: center;
}

#header #overlay {
	background-color: rgba(24, 24, 24, 1);
	width: 100%;
	height: 100%;
	opacity: 1;
}

#header d {
	font-family: 'Work Sans', sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 60px;
	color: #EEE;
	width: 100%;
	z-index: 1;
}

.fixed-header {
	position: fixed;
	top: calc(-60vh + 60px);
	z-index: 100;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
}

nav {
	position: fixed;
	top: 0;
	width: 100vw;
	background-color: #181818;
	z-index: 200;
}

nav div {
	height: 60px;
	width: 100%;
	background-color: #181818;
	position: absolute;
	z-index: 100;
}

nav img {
	height: 30px;
	margin-left: 15px;
	margin-top: 15px;
	width: auto;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 300;
}

nav ul {
	height: 210px;
	width: 100%;
	margin-left: 15px;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

nav ul li {
	height: 40px;
	font-size: 18px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	color: #EEE;
}

#menu-div {
	opacity: 0;
}

#menu-button {
	opacity: 1;
}

#menu {
	margin-top: -215px;
	z-index: 100;
}

#overlay-all {
	background-color: rgba(40, 40, 40, 0.95);
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/*--------screen0---------*/

#screen0 {
	width: 90%;
	height: auto;
	margin-left: 5%;
	margin-top: 40px;
	color: #EEE;
	padding-top: 50px;
}

#screen0 d {
	width: 100vw;
	font-size: 34px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 900;
	text-align: left;
	line-height: 28px;
}

#screen0 img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
}

/*--------footer---------*/

footer {
	height: auto;
	padding: 20px;
	margin-top: 50px;
	background-color: #181818;
	width: calc(100vw - 40px);
}

footer d {
	font-size: 26px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 900;
	color: #EEE;
	margin: 0;
	padding: 0;
}

footer p {
	font-size: 14px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	color: #EEE;
	margin: 0;
	padding: 0;
}

@media only screen and (min-width: 481px) {
	.gridContainer {
		width: 100%;
	}
	#LayoutDiv1 {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
	.gridContainer {
		width: 100%;
		max-width: 1232px;
		margin: auto;
	}
	#LayoutDiv1 {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}
}

@media only screen and (min-width: 800px) {
	body {
		margin-left: calc(50vw - 400px);
	}
	nav {
		width: 100vw;
		margin-left: calc(400px - 50vw);
	}
	#header {
		width: 100vw;
		margin-left: calc(400px - 50vw);
	}
	footer {
		width: calc(100vw - 40px);
		margin-left: calc(400px - 50vw);
	}
}