*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
}
header{
	width: 100%;
	min-height: 150px;
	background-color: darkgreen;
}
#header_Menu ul {
	display: flex;
	width: 70%;
	margin: 0 auto;
	text-transform: uppercase;
	font-size: 0.8em;
	padding: 10px 0;
}
#header_Menu ul li{
	color: azure;
}
#header_Menu ul li:last-child{
	flex-grow: 1;
	text-align: right;
}
#header_Menu ul li a{
	padding: 0 10px;
	color: #fff;
}
#header_Menu ul li a:hover{
	text-decoration: underline;
}
#headerInfo{
	display: flex;
	width: 70%;
	margin: auto;
	padding: 15px;

}
.headerInfo_Logo{
	padding: 35px 15px 0 15px;
}
.headerInfo_Img{
	flex-grow: 1;
	opacity: 0.6;
}
.headerInfo_Img>div{
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 20px 25px #006400;
}

.headerInfo__Contacts{
	color: #fff;
}
.headerInfo_info__contacts p{
	display: block;
	font-weight: bolder;
	
}

nav{
	background-color: darkgreen;
}
nav ul{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
nav ul li{
	
}
nav ul li a{
	display: block;
	padding: 20px 30px;
	color: #fff;
	font-size: 1.1em;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 0.05em;
}
nav ul li a:hover{
	color:yellow;
}

#content{
	padding-top: 10px;
	width:100%;
	min-height: 600px;
}
.pageContent{
	min-height: 500px;
	margin: auto;
	width: 90%;
}
footer{
	width: 100%;
	min-height: 250px;
	background-color: darkgreen;
	padding: 10px 0;
	font-size: 1em;
	color:#fff;
	margin-top: 15px;
}
.footer_Info{
	display: -webkit-box;display: -ms-flexbox;display: flex;
	width: 70%;
	margin: auto;
}
.footer_Info h3{
	display: block;
	padding-bottom: 10px;
}
.footer_Info .about, .footer_Info .goods, .footer_Info .contacts{
	min-height: 200px;
	padding:20px;
}
.footer_Info a{
	color:yellow;
}
.footer_Info a:hover{
	text-decoration: underline;
}
.footer_Info .about{
	width: 45%;
}
.footer_Info .goods{
	width: 25%;
}
.footer_Info .contacts{
	width: 30%;
}
footer>p{
	padding: 10px;
	text-align: center;
	color:aliceblue;
}
/*-----------------------media query--------------------*/

@media screen and (min-width:1280px){
	.pageContent{
		max-width: 1200px;
	}
}
	

@media screen and (min-width:1024px) and (max-width:1279px){
	.pageContent{
		max-width: 900px;
	}
}


@media screen and (min-width:768px) and (max-width:1023px){
	.footer_Info{
		width: 100%;
	}
}

@media screen and (min-width:600px) and (max-width:767px){
	.footer_Info{
		width: 100%;
	}
}

@media screen and (min-width:480px) and (max-width:599px){
	#header_Menu{
		background-color: aliceblue;
		height: 25px;
	}
	#header_Menu ul{
		display: none;
	}
	nav ul{
		flex-direction: column;
	}
	nav ul li{
		text-align: center;
		border-bottom: 1px solid green;
	}
	nav ul li a{
		padding: 10px 0;
	}
	.footer_Info{
		display: block;
		width: 100%;
		text-align: center;
	}
	.footer_Info .about, .footer_Info .goods, .footer_Info .contacts{
		width: 90%;
		margin: auto;
	}
}

@media screen and (min-width:320px) and (max-width:479px){
	
	#header_Menu{
		background-color: aliceblue;
		height: 25px;
	}
	#header_Menu ul{
		display: none;
	}
	nav ul{
		flex-direction: column;
	}
	nav ul li{
		text-align: center;
		border-bottom: 1px solid green;
	}
	nav ul li a{
		padding: 10px 0;
	}
	.footer_Info{
		display: block;
		width: 100%;
		text-align: center;
	}
	.footer_Info .about, .footer_Info .goods, .footer_Info .contacts{
		width: 90%;
		margin: auto;
	}
}

@media screen and (max-width:319px){
	#header_Menu{
		background-color: aliceblue;
		height: 25px;
	}
	#header_Menu ul{
		display: none;
	}
	nav ul{
		flex-direction: column;
	}
	nav ul li{
		text-align: center;
		border-bottom: 1px solid green;
	}
	nav ul li a{
		padding: 10px 0;
	}
	.footer_Info{
		display: block;
		width: 100%;
		text-align: center;
	}
	.footer_Info .about, .footer_Info .goods, .footer_Info .contacts{
		width: 90%;
		margin: auto;
	}
}