body{
   font-family: "Poppins", sans-serif;
}
header{
    border: 1px solid rgb(117, 117, 120);
    height: 70px;
}
.logo>img{
    width: 230px;
}
.navbar{
    /* display: flex; */
    /* border: 2px solid blue; */
}
.navdiv{
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    /* border: 2px solid blue; */
    /* float: right; */
    width: 1150px;
    /* display: inline; */
    /* text-decoration: none; */
}
.links>ul>li{
    display: inline-flex;
    /* text-decoration: none; */
    padding-right: 30px;
    color: rgb(59, 57, 57);

}
.links>ul>li>a{
    text-decoration: none;
    color: rgb(59, 57, 57);
    font-size: larger;
}
.links>ul>li>a>img{
    width: 100px;
    align-items: center;
}
.fa-solid{
    /* border:2px solid blue; */
    
    font-size: 20px;
    
    
}
#login{
    font-size: 7px;
    justify-content: space-around;
    margin-left: 0px;
    align-items: center;
}
#order{
    font-size: 7px;
    justify-content: space-around;
    margin-left: 0px;
    align-items: center;
}
/* header end */
.btns{
    margin-top: 2px;
    border: 1px solid rgb(83, 83, 86);
    height: 45px;
}
.btns>UL>LI{
    display: inline-flex;
    padding-right: 30px;
}
.btns>ul{
    justify-content: space-around;
}
.marq{
    margin-top: 10px;
    border: 1px solid rgb(83, 83, 86);
    height: 40px;
}
#h3{
    font-size: small;
    font-style: initial;
    font-weight: 400;
}
.hero1{
    display: flexbox;
}
.hero1>img{
    width: 1203px;
}
.boxes{
    display:inline-flex;
    margin: 12.5px;
}
.boxes>img{
    width: 373px;
    transition: 0.7s;
}
.boxes>img:hover{
    transform: scale(1.1);
    border-radius: 200px;
}
.last>img{
    width: 1203px;
    height: 500px;
}
.container{
    display: flexbox;
} 

@media screen and (max-width:400px) {
    .hero1>img{
        width: 380px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .boxes{
        padding-left: 20px;
        padding-right: 20px;
        border: 2px solid black;
    }
    .boxes>img{
        width: 440px;
    }
    .boxes:hover{
        display: none;
        
    }
    header{
        border: none;
    }
    .btns{
        display: none;
    }
    .marq{
        width: 400px;
        border: none;
    }
    .links{
        display: none;
    }
    .last>img{
        width: 440px;
    }
}


