/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Tangerine');


/* MAIN */
html, body {
	border: 0;
	margin: 0;
	background-color: #0d0d0d;
	max-width: 100%;
    overflow-x: hidden;
}

/* HEADER */
#header {
	width: 100%;
	height: 240px;
	background-color: #111111;
	color: white;
	display: flex;
}

#logo {
	width: 35%;
	height: 100%;
	display: inline-block;
	text-align: center;
}

#title {
	width: 65%;
	text-align: left;
	padding-top: 30px;
	display: inline-block;
}

#logo img {
	height: 100%;
}

#title h1 {
	font-size: 80px;
	font-family: Tangerine;
	color: white;
	line-height: 180px;
}

/* NAV MENU */
#menubutton {
	position: fixed;
	margin: 15px;
	top: 0;
	left: 0;
	z-index: 999;
}

.panel {
    position: fixed;
    left: -15.625em; /*left or right and the width of your navigation panel*/
    width: 15.625em; /*should match the above value*/
}

.wrap {
    position: relative;
}

#menu {
	background-color: #111111;
}

#menu ul {
	list-style-type: none;
	padding: 0;
	width: 100%;
	text-align: center;
	margin-top: 50px;
}

#menu ul li {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 20px;
}

#menu a {
	color: white;
}
#menu a:hover {
	text-decoration: none;
	color: #a7933f;
	background-color: grey;
}

.active {
	color: #25c3c9;
}

/* WELCOME */
#info {
	width: 100%;
	min-height: calc(100vh - 240px);
}

/* CONTACT */
.form {
	width: 500px;
	margin: auto;
	border: 3px solid #111111;
	background-color: #1b1b1b;
	margin-top: 100px;
	margin-bottom: 100px;
	padding-bottom: 200px;
	color: white;
}

#contactform {
	padding: 20px;
}

.required:after {
    content: " *";
    font-weight: bold;
    color: red;
}

button {
	width: 100%;
	margin-top: 50px;
}

.error, .success, .signedout {
	margin: auto;
	margin-top: 20px;
	box-shadow: 0 0 250px #000;
	background-color: #a20f0f;
	color: white;
	font-size: 18px;
	text-align: center;
	width: 100%;
}

.success {
	background-color: #278c29;
}

.signedout {
	background-color: orange;
}

/* FOOTER */
footer {
	background-color: #111111;
	color: white;
}

.footer-copyright {
	background-color: black;
}

footer img {
	height: 150px;
}

footer i {
	padding-right: 15px;
}

footer p {
	margin-bottom: 2px;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 1000px) {
	#title h1 {
		font-size: 65px;
	}
}

@media only screen and (max-width: 800px) {
	footer .row {
		display: block;
	}
	
	footer .row div {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 550px) {
	.form {
		width: 80%;
	}
}

@media only screen and (max-width: 550px) {
	#title {
		display: none;
	}
	
	#logo {
		width: 100%;
	}
	
	#header {
		height: 130px;
	}
}