@charset "UTF-8";
/* CSS Document */

*{
	margin: 0px;
	padding: 0px;
	border: 0px none;	
}
html{
	background-color: #dddddd;
}
body{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
.wrapper{
	margin: 0px auto;
	max-width: 950px;
	width: 100%;
	overflow-x: hidden;
}
#bg{
	background-image: url(../images/header-background.jpg);
	background-repeat: repeat-x;
}
#ft-bg{
	background-color: #353535;
}
/* -----------------HEADER----------------- */
header{
	max-width: 100%;
	display: flex;
	justify-content: space-between;
}
	header img{
		max-width: 100%;
		margin: 40px 0px 10px 0px;
	}
/*----NAV----*/
nav{
	display: flex;
	align-content: center;
	margin: 70px 0px 0px 0px;
}
.menu{
	display: block;
}
	.menu li{
		display: inline-block;
		position: relative;
		z-index: 100;
	}
		.menu li:first-child{
			margin-left: 0px;
		}
		.menu li:last-child{
			margin-right: 0px;
		}
		.menu li a{
			font-weight: 200;
			font-size: 12px;
			text-decoration: none;
			padding: 10px;
			margin: 0px 10px 0px 10px;
			display: block;
			color: #ffffff;

			-webkit-transition: all 0.2s ease-in-out 0s;
			-moz-transition: all 0.2s ease-in-out 0s;
			-o-transition: all 0.2s ease-in-out 0s;
			-ms-transition: all 0.2s ease-in-out 0s;
			transition: all 0.2s ease-in-out 0s;
		}
			.menu li a:hover, .menu li:hover > a{
				color: #ffffff;
				background: #464646;
			}
#active{
	background: #464646;
}
/*----NAV----*/
#mobile{
	display: none;
	margin: 60px 0px 0px 0px;
}
.sidenav{
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #111111;
	overflow-x: hidden;
	padding-top: 15px;
	transition: 0.5s;
}
	.sidenav a{
		padding: 8px 8px 8px 32px;
		text-decoration: none;
		font-size: 25px;
		color: #818181;
		display: block;
		transition: 0.3s;
	}
		.sidenav a:hover{
			color: #f1f1f1;
		}
.closebtn{
	top: 0;
	right: 25px;
	margin-left: 180px;
	display: none;
}
#open{
	color: #f1f1f1;
	font-size: 30px;
}
#icon{
	display: none;
}
/* -------------------CONTENT--------------------- */
#content{
	text-align: center;
	margin: 0px auto 30px auto;
}

h1{
	font-size: 30px;
	color: #000;
	margin: 0px 0px 8px 0px;
}
 p{
	font-size: 15px;
	font-weight: 500;
	color: #3d3d3d;
}
/* -------------------FOOTER--------------------- */
footer{
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	flex-flow: wrap;
	flex-wrap: wrap-reverse;
	padding: 25px 0px;
	clear: both;
}
footer p{
	font-weight: 300;
	line-height: 16px;
	font-size: 12px;
	color: #a1a1a1;
}
#contact{
	text-align: right;
}
#contact a{
	text-decoration: none;
	color: #a1a1a1;
}
#contact a:hover{
	color: #ec1d25;
}
/* ----------------------------------------------- */

/* ----------------MEDIA QUERIES------------------ */
@media screen and (max-width: 360px){
	#mobile{
		margin-top: 60px;
	}
	#open{
		display: none;
	}
	#icon{
		display: block;
		color: #f1f1f1;
		font-size: 30px;
	}
}


@media screen and (max-width: 390px) and (min-width: 359px){
	#mobile{
		margin-top: 70px;
	}
	#open{
		font-size: 20px;
	}
}

@media screen and (max-width: 450px){
	.sidenav a{
		font-size: 18px;
	}
}

@media screen and (max-width: 733px){
	footer{
		text-align: center;
		justify-content: center;
	}
	#contact{
		text-align: center;
		margin: 0px auto 20px auto;
	}
}

@media screen and (max-width: 908px){
	#mobile{
		display: block;
	}
	nav{
	 	display: none;
	}
}
@media screen and (max-width: 940px){
	#bottom{
		flex-flow: wrap;
		flex-direction: column;
		margin: 0px auto 40px auto;
	}
	.column{
		margin: 0px 0px 0px 0px;
	}
	.column:last-child{
		margin: 15px 0px 0px 0px;
	}
}

@media screen and (max-width: 950px){
	header{
		max-width: 90%;
		margin: 0px auto;
	}
	#bottom{
		max-width: 90%;
		margin: 0px auto 30px auto;
	}
	#title{
		max-width: 90%;
	}
	footer{
		max-width: 90%;
		margin: 0px auto;
	}
}