@charset "UTF-8";
/* CSS Document */

/*NAVIGATION START*/
#navContainer{
	height: 100vh;
	position: fixed;
	background-color:#fff;
	width:0px;
	top: 0;
	transition: .5s ease-in-out;
	overflow: hidden;
	left: 0;
	box-shadow: 0px 0px 8px #000;
	z-index: 5001;
	padding-top: 30px;
}
.navLI, .navLink{
	list-style-type: none;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 30px;
	font-weight: 400;
	text-decoration: none;
	color:hsla(359,69%,35%,1.00);
	margin-top: 20px;
}
.hamb{
	width: 50px;
	height: 5px;
	margin: 8px;
	background-color: /*#981C1E;*/#cc0000;
	border-radius: 5px;
}
#bigHamContainer{
	width:100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	z-index: 2000;
}

#navLogo{
	z-index: 3000;
    transition: .5s ease-in-out;
}
		
#hamContainer{
	position: fixed;
	top:0px;
	left: 0px;
	transition: .5s ease-in-out;
	width:100%;
	background-color: rgba(241,241,241,1);
	padding: 30px;
	z-index: 1000;
	box-shadow:0px 0px 8px #000;

	
}

body{
    transition: .5s ease-in-out;
}

#body{
		max-width:650px;
		margin: 130px auto 20px auto;
        transition: .5s;
        
	}
	img{
		float: left;

	}

	.left{
		float: left;
		width:50%;
	}
	.right{
		float: right;
		width:50%;
	}

	.full{
		width:100%;
	}

	a, img{
		margin: 0;
	}