*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    margin-top: 70px;
    font-family: sans-serif;
    font-size: 15px;
    background-color: white;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ebecf0;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0px;
    height: 70px;
    z-index: 10;
}
header nav{
    display: flex;
}
header nav .logo{
    margin: 0px 20px;
}
header nav .menu{
    display: flex;
    padding: 0px 10px;
    font-size: 15px;
    align-items: center;
}
header .menu .border{
    border-right: 2px solid red;
    height: 20%;
}
header .menu > li{
    list-style: none;
}
header .menu > li > a{
    text-decoration: none;
    padding: 20px;
    display: block;
    color: black;
}
header .menu > li > a .icon{
    margin-left: 5px;
}
header .menu > li > a:hover{
    border-bottom: 2px solid red;
}
header .menu .dropdown{
    position: relative;
} 
header .menu .dropdown-content{
    background-color: white;
    list-style: none;
    z-index: 1;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    display: none;
}
header .menu .dropdown-content a{
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    min-width: 200px;
    display: block;
}
header .menu .dropdown:hover .dropdown-content{
    display: block;
}
header .menu .dropdown:hover .icon{
    transform: rotateX(180deg);
}
header .menu .dropdown-content a:hover{
    border-bottom: 2px solid red;
}
header .user{
    font-size: 20px;
    display: flex;
    padding: 0px 30px;
    list-style: none;
}
header .user .icon{
    margin-left: 20px;
    color: black;
}
aside{
    float: left;
    width: 25%;
    margin: 10px 20px;
}
aside .title{
    padding: 10px;
    background-color: red;
    font-size: 20px;
    color: white;
}
aside .menu{
    background-color: #f7f7f7;
}
aside .menu .box{
    display: flex;
    padding: 5px 15px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid;
    align-items: center;
}
aside .menu .box .logo{
    width: 15%;
    height: 100%;
}
aside .menu .box ul{
    list-style: none;
    margin: 5px 15px;
}
aside .menu .box ul li:first-child{
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
aside .menu .box ul li:last-child{
    font-style: italic;
    font-weight: 100;
}
aside .menu .box:last-child{
    border: none;
}
aside .menu .box:hover{
    background-color: #fcfcfc;
}
aside .menu .box:hover ul li:first-child{
    color: #459e2b
}
aside .sidebar-img{
    display: block;
    width: 100%;
    height: 100%;
    margin: 20px 0px;
}
aside .sidebar-product{
    margin-top: 20px;
    display: block;
    text-decoration: none;
    color: #797979;
    position: relative;
}
aside .sidebar-product img{
    width: 100%;
    height: 100%;
    display: block;
}
aside .sidebar-product img:nth-child(2){
    width: 100%;
    height: 82%;
    position: absolute;
    top: 0px;
    margin: auto;
    z-index: -1;
}
aside .sidebar-product p{
    margin-top: 10px;
    font-size: 16px;
}
aside .sidebar-product p:last-child{
    color: red;
}
aside .sidebar-product:hover img:nth-child(2){
    z-index: 1;
}
aside .button{
    display: block;
    border: 2px solid red;
    text-decoration: none;
    text-align: center;
    color: red;
    padding: 10px;
    margin-top: 20px;
}
aside .button:hover{
    background-color: red;
    color: white
}
.content{ 
    float: left;
    width: 70%;
    margin: 10px;
}
.content .title{
    font-size: 20px;
    padding: 10px;
    background-color: red;
    color: white;
}
.content section .new-product{
    display: flex;
    padding: 10px 0px;
}
.content .new-product img{
    display: block;
    width: 40%;
    height: 100%;
}
.content .new-product ul{
    width: 60%;
    list-style: none;
    color: #525252;
}
.content .new-product ul li a{
    text-decoration: none;
    display: block;
    padding: 10px 30px;
    border: 2px solid red;
    text-align: center;
    color: red;
    margin-top: 40px;
}
.content .new-product ul li a:hover{
    background-color: red;
    color: white;
}
.content section .more-product{
    display: flex;
    margin: 10px 30px;
    flex-wrap: wrap;
}
.content .more-product .product{
    display: block;
    width: 25%;
    height: 100%;
    text-decoration: none;
    color: #797979;
    position: relative;
    margin-top: 20px;
    border-right: 2px solid #dddddd;
    padding: 10px;
}
.content .more-product .product img{
    width: 100%;
    height: 100%;
    display: block;
}
.content .more-product .product img:nth-child(2){
    position: absolute;
    top: 0px;
    z-index: -1;
    height: 71%;
    width: 89%;
}
.content .more-product .product:hover img:nth-child(2){
    z-index: 2;
}
.content .more-product .product p{
    margin-top: 10px;
}
.content .more-product .product p:last-child{
    color: red;
    margin-bottom: 10px;
}
.content .more-product .product-4{
    border: none;
}
.content .more-product .product:hover{
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.content article .box{
    margin-top: 20px;
    display: flex;
    border-bottom: 1px dashed #525252;
}
.content .box img{
    width: 40%;
    height: 100%;
    display: block;
}
.content .box ul{
    list-style: none;
    margin-left: 20px;
    color: #525252;
}
.content .box ul li{
    margin-bottom: 5px;
}
.content .box ul .title-small{
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    color: #525252;
}
.content .box ul li:nth-child(2){
    color: #999999;
}
.content .box:last-child{
    border: none;
}
.clear{
    clear: both;
}
footer{
    border-top: 2px solid #ebecf0;
    display: flex;
    font-weight: 100;
    justify-content: space-evenly;
    line-height: 1.5;
}
footer .box{
    width: 20%;
    padding: 10px;
    list-style: none;
}
footer .box .title{
    margin: 30px 0px;
    font-size: 17px;
    font-weight: 600;
    color: black;
    list-style: none;
}
footer .box:nth-child(2){
    margin-top: 85px;
}
footer .box-last{
    list-style-type: disc;
    list-style-position: inside;
}
footer .box-last li{
    margin-bottom: 5px;
}
footer .box-last a{
    text-decoration: none;
    color: black;
}
footer .box-last a:hover{
    color: #A80A0A;
}
footer .logo{
    width: 80%;
    height: 100%;
    margin-top: 10px;
}
.footer-mini{
    text-align: center;
    padding: 10px;
    background-color: #333333;
    color: white;
    font-weight: 100;
    font-size: 13px;
}
