*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
}
header{
    position:fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
 }
 .logo img{
    max-width: 120px;
    height: auto;
 } 
 .navmenu{
    display: flex;
 }
 .nav-item{
    color: #2c2c2c;
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400px;
    transition: all .42s ease;
 }
 .navmenu :hover{
    color: red;
 }
 .nav-icon{
    display: flex;
    align-items: center;
 }
 .nav-icon i{
    margin: 20px;
    color: #2c2c2c;
    font-size: 25px;
    font-weight:400;
    transiton:all 42s ease;
 }
 .nav-icon i:hover{
    transform: scale(1.1); 
    color: red;
 }
 #menu-icon{
    font-size:35px ;
    color: #2c2c2c;
    z-index: 10001;
    cursor: pointer;
 }
 section{
    padding: 5% 10%;
 }
 .main-home{
    width: 100%;
    height: 100vh;
    background-image: url(images/banner-3.png);
    background-position:center ;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
 }
 .main-text h5{
    color: red;
    font-size: 16px;    
    text-transform: capitalize;
    font-weight:500 ;
 }
 .main-text h1{
    color: #000;
    font-size: 65px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 600;
    margin: 6px 0 10px;
 }
 .main-text p{
    color: #333c56;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
 }
 .main-btn{
    display: inline-block;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border:2px solid #111;
    padding: 12px 25px;
    transition: all.42s ease;
 }
 .main-btn:hover{
    background-color: #000;
    color: #fff;
}
.main-btn i{
    vertical-align: middle;
}
.down-arrow{
    position: absolute;
    top: 85%;
    right: 11%;   
}
.down i{
    font-size: 30px;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 50px;
    padding: 12px 12px;
}
.down i:hover{
    background-color: #2c2c2c;
    color: #fff;
    transition: all.42s ease;
}
header.sticky{
    background: #fff;
    padding: 10px 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
/* trending-section-css */
.center-text h2{
   color: #111;
   font-size: 20px;
   text-transform: capitalize;
   text-align: center;
   margin-bottom: 30px;
}
.center-text span{
   color: red;
}
.product{
   display: grid;
   grid-template-columns:repeat(auto-fit, minmax(200px, auto));
   gap: 2rem;
}
.row{
   position: relative;
   transition: all .40s;
}
.row img{
   width: 100%;
   height: auto;
   transition: all .40s;
}
.row img:hover{
   transform: scale(0.9);
}
.product-text h5{
   position: absolute;
   top: 13px;
   left: 13px;
   color: #fff;
   font-size: 12px;
   font-weight: 500;
   text-transform: uppercase;
   background-color: #27b737;
   padding: 3px 10px;
   border-radius: 2px;
}
.heart-icon{
   position: absolute;
   right: 0;
   font-size: 20px;
}
.heart-icon :hover{
   color:red;
}
.rating i{
   color: #ff8c00;
   font-size: 18px;
}
.price h4{
   color: #111;
   font-size: 16px;
   text-transform: capitalize;
   font-weight: 400;
}
.price p{
   color: #151515;
   font-size: 14px;
   font-weight: 600;
}
/* update-section-css */
.up-center-text h2{
   text-align: center;
   color: #111;
   font-size: 25px;
   text-transform: capitalize;
   font-weight: 700;
   margin-bottom: 30px;
}
.cart img{
   width: 380px;
   height: auto;
   border-radius: 5px;
}
.update-cart{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px,auto));
   gap: 1rem;
}
.cart h5{
   color: #636872;
   font-size: 14px;
   text-transform: capitalize;
   font-weight: 500;
}
.cart h4{
   color: #111;
   font-size: 16px;
   font-weight: 600;
}
.cart p{
   color: #707070;
   font-size: 15px;
   max-width: 300px;
   line-height: 25px;
   margin-bottom: 12px;
}
.cart h6{
   color: #151515;
   font-size: 14px;
   font-weight: 500;
}
.first-info h3{
   color: red;
}
   

   