@charset "UTF-8";

html
{
	font-size: 16px;
	@media (max-width:800px){
		font-size: 12px;
	}
}
body{
	line-height: 1.5;
}

a,a:hover,a:visited
{
	color: inherit;
}
header
{
	position: relative;
	height: 80px;
	
	img
	{
		width: 200px;
		height: 80px;
		position: absolute;
		left: 25px;
		top: 5px;
	}
	
	ul
	{
		display:inline;
		position: absolute;
		right: 100px;
        top: 30px;
        
	}
	li
	{
		display:inline;
		margin-left: 75px;
	}
	#nav-open{
		display: none;
	}
	#nav-input{
		display: none;
	}
	#nav-top{
		display: none;
	}
	@media (max-width:800px){
		.nav-drawer__top{
			display: block;
		}
		#nav-open{
			display:inline;
			position: absolute;
			right: 50px;
	        top: 30px;
	        width: 25px;
			height: 25px;
		}
		#nav-open span,#nav-open span:before,#nav-open span:after{
			position:  absolute;
			height: 2px;
			width: 30px;
			background-color:black;
			display: block;
			content: "";
		}
		#nav-open span:before{
			bottom:-10px;
		}
		#nav-open span:after{
			bottom:-20px;
		}
		#nav-close{
			z-index: 999;
			display: none;
			position:fixed;
			top:0;
			left:0;
			width: 100%;
			height: 100%;
			background-color: black;
			opacity:0.5;
		}
		#nav-content{
			z-index: 9999;
			display: block;
			position: fixed;
			top:0;
			left:0;
			width: 30%;
			height: 100%;
			background-color: white;
			text-align: left;
			padding: 25px 0 0 25px;
			transform: translateX(-105%);
			transition: 0.3s ease-in-out;
			box-shadow: 5px 0 25px rgba(0,0,0,0.50);
		}
		#nav-top{
			display: block;
		}
		.header_navigation ul{
        	position: static;
		}
		.header_navigation li{
			display: block;
			margin-bottom: 35px;
			margin-left: 0px;
		}
		.header_navigation li a{
			color: black;
			text-decoration: none;
			font-weight: 600;
		}
		#nav-input:checked ~ #nav-close{
			display: block;
		}
		#nav-input:checked ~ #nav-content{
			transform: translateX(0%);
		}
	}
}

footer
{
	background-color:green;
	color:white;
	text-align: center;
	padding: 30px 0;
	
	h3
	{
		font-size: 1.5rem;
		line-height: 2.5rem;
	}
	small
	{
		display:    block;
		padding-top: 20px;
		font-size: 0.8rem;
	}
}


