*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    font-family: arial;
}

#header{
    height: 240px;
    width: 100%;
    background-color: #80BB35;
}

#wrapper{
    min-height: 600px;
    height: auto;   
    width: 100%;
    background-color: white;
}
#container{
    width: 80%;
    margin: 30px auto;
}

#footer{
    height: 300px;
    width: 100%;
    background-color: #65932A;
	clear: both;
}
#footer-content{
    width: 80%;
    height: 100%; 
    margin: 0px auto; 
    color: #FFF ; 
    display:flex; 
    flex-direction: row;
}
#footer-content-1{
    flex: 1; 
    background-color: #65932A;
	margin-top: 15px;
}
#footer-content-2{
    flex: 1;
    background-color: #65932A; 
    padding: 10px; 
    border-radius: 5 px; 
    color: #FFF;
	text-decoration: none;
}
#facebook{
    color: white; 
    text-decoration: none;
}
#top{
    height: 48px;
    width: 100%;
    background-color: #80BB35;
}
#banner{
    height: 144px;
    width: 100%;
    background-color: rgb(255, 255, 255);
}
#menu{
    height: 48px;
    width: 100%;
    background-color: #80BB35;
}
#list-cate{
    height: 430px;
    width: 22%;
    background-color: #FFF;
    float:left;
    border : 1px solid #CCC;
    border-radius: 20px;
}
#list-cate h1{
    background-color: #80BB35;
    line-height: 48px;
    color:#FFF;
    font-size: 16px;
    text-align: center;
    border-radius: 20px;
    margin: 0px;
    padding: 0px;
}
ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
#list-cate ul li{
    line-height: 38px;
    width: 100%;
    border-bottom: 1px solid #CCC;
}

#list-cate ul li:nth-child(10){
    border: 0px;
}

#list-cate a{
    display: block;
    width: 100%;
    line-height: 38px;
    padding-left: 15px;
    text-decoration: none;
    color: #333;
}

#list-cate a:hover{
    background-color: orange;
    color:#FFF
}

#slideshow{
    height: 430px;
    width: 78%;
    float:right;
    padding-left: 30px;
}
#slideshow img{
    width: 100%;
    height: 100%;
}
.ads{
    height: 220px;
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 30px 0px;
}
.ads img{
    flex:1;
    height: 160px;
}
.cate{
    height: 450px;
    width: 100%;
    margin-top: 20px 0px;
}
.cate-title{
    width: 300px;
    background-color:#80BB35;
    color: white;
    text-align: center;
    border-radius: 20px;
    line-height: 48px;
    margin: 0px;
    padding: 0px;
    font-size: 20px;
}
.list-product{
    display:flex;
    height: 320px;
    gap: 30px;
    margin-top: 30px;
}
.product{
	width: calc((100% - 90px)/4);
    flex: 1;
    text-align: center;
    border: 1px solid #CCC;
    border-radius: 20px;
}
.photo{
    width: 200px;
}
.name{
    color: green;
    font-size: 22px;
    font-weight: bold;
}
.price{
    color: orange;
    font-size: 20px;
    font-weight: bold;
}
.information{
    font-size: 18px; 
    text-transform: uppercase; 
    margin-bottom: 15px;
}
.information-2{
    font-size: 14px; 
    line-height: 1.5; 
    margin-bottom: 20px;
}
.contact-list{
    list-style: none; 
    padding: 0; 
    margin: 0;
}
.contact-list-2{
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 15px; 
    font-size: 14px;
}
.contact-list-3{
    flex: 1; 
    background-color: #65932A; 
    padding: 10px; 
    border-radius: 5 px; 
    color: #FFF;
}
.contact-list-3-li a{
    margin-top: 10px;
    text-decoration: none;
    color: #ffffff;
    line-height: 2.0;
}
.contact-list-self{
    color: orange; 
    width: 25px; 
    font-size: 18px; 
    margin-top: 3px;
}
.contact-list-text{
    flex: 1;
}
.fa-map-marker-alt {
    transform: scaleX(-1);
    color: orange;
    margin-right: 8px;
	margin-left: -8px;
	font-size: 22px;
}
.fa-phone-alt {
    transform: scaleX(-1);
    color: orange;
    margin-right: 8px;
	margin-left: -8px;
	font-size: 16px;
}
.fa-envelope {
	transform: scaleX(1);
	color: orange;
	margin-right: 1px;
	margin-left: 0px;
	font-size: 16px;
}
.product {
    width: 220px;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s;
	border: 2px solid green;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.phone-icon {
    font-size: 12px;
    color: white;
    background: orange;
    padding: 8px;
    border-radius: 50%;
    animation: rung 0.8s infinite;
    box-shadow: 0 0 10px orange;
}
