
#header {
	background-color: #FFF;
	width: 100%;
	height: 300px;
	position: relative;
}
#wrapper {
	background-color: #FFF;
	width: 100%;
	height: 1000px;
}
#footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

 {
    list-style: none;
    padding: 0;
}

 li {
    display: inline;
    margin: 0 10px;
}

 a {
    color: #ff9900;
    text-decoration: none;
}


#container{
		width: 80%;
		min-height: 500px;
		margin: 40px auto;
}
.cate {
	width: 100%;
	height: 450px;
	margin-bottom: 40px;
}
.cate-title {
	width: 300px;
	line-height: 40px;
	height: 40px;
	background-color: green;
	color: #FFF;
	border-radius: 15px;
	font-size: 18px;
	margin: 20px 0px;
	padding-left: 20px;
	font-weight: bold;
	text-transform: uppercase;
}
.list-product {
	height: 368px;
	width: 100%;
	display: flex;
	gap: 40px;
}
.product {
	flex: 1;
	text-align: center;
	border: 1px solid #CCC;
	border-radius: 15px;
	padding: 20px;
}
.photo {
	
}

.name {
	color: green;
}
.price {
	color: yellow;
}

#menu {
	background-color: green;
	height: 48px;
	width: 100%;
	line-height: 48px;
	position: absolute;
	bottom: 0px;
}
#menu ul{
	margin: 0px auto;
	padding: 0px;
	width: 80%;
	height: 100%;
	list-style: none;
}
#menu ul li{
	float: left;
	line-height: 48px;
	position: relative;
}
#menu ul li a{
	text-decoration: none;
	color: #FFF;
	display: block;
	padding: 0px 15px;
}
	
#menu a:hover{
	background-color: Orange;
}

#menu ul ul {
	display: none;
	
}

#menu li li{
	float: none;
	border-bottom: 1px solid #CCC;
    background-color: #DDD;
	width: 200px;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	color: #000;
}

#menu li:hover ul{
		display: block;
		position: absolute;
		top: 48px;
		left: 0px;	
}

#menu li li a{
	color: #000;
}

#quick-contact{
	background-color: orange;
	width: 80px;
	height: 80px;
	border-radius: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;