*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: aliceblue;
}
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* text-decoration: none; */
}
.navb{
    display: flex;
    gap: 2rem;
 }
.navb a {
    text-decoration: none;
}
.logo{
    font-size: 2rem;
}
.cat{
    font-size: 2rem;
    background-color: red;
    color: white;
    border: none;
}

.navbSidebar{
    display:flex;
    align-items:center;
    gap:20px;
}

 
.search-box{
    display:flex;
    align-items:center;
    background:white;
    padding:6px;
    border-radius:30px;
}

.search-box input{
    border:none;
    outline:none;
    padding:6px;
    font-size:14px;
}

.search-icon{
     
    margin-right:5px;
}

.callBox{
    /* font-size: 3rem; */
    display: flex;
    align-items: center;
}
.call{
    width: 30px;
    height: 40px;
}
.cart{
    display: flex;
    align-items: center;
}
.cartA{
    width: 30px;
    height: 40px;
}
 
 .hero{
    padding: 5rem;
 }
 .hero h1{
    font-size: 3rem;
    font-weight: bold;
 }
 .class{
    color: red;
 }
.btn{
   margin-top: 20px;
   padding: 12px;
   background-color: red;
   color: white;
   border: none;
    border-radius: 6px;
    font-size: 2rem;
    cursor: pointer;
}
.btn:hover{
    background-color: darkblue;
}
.hero-img{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-img img{
    width: 450px;
    max-width: 100%;
}
