
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    scroll-behavior:smooth;
    
  
}
.our a{
    color: #f1f6f7;
    text-decoration: none;
  }

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.mySlides {display: none;}
 img {vertical-align: middle;}
 
 /* Slideshow container */
 .slideshow-container {
   max-width: 1000px;
   position: relative;
   margin: auto;
   top: 6rem;
   z-index: -1;
 }
 
 
 
 /* Number text (1/3 etc) */
 .numbertext {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
 }
 
 /* The dots/bullets/indicators */
 .dot {
   height: 15px;
   width: 15px;
   margin: 0 2px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
   transition: background-color 0.6s ease;
 }
 .dott{
    margin-top: 5rem;
 }
 
 .active {
   background-color: #717171;
 }
 
 /* Fading animation */
 .fade {
   animation-name: fade;
   animation-duration: 1.5s;
 }
 
 @keyframes fade {
   from {opacity: .4} 
   to {opacity: 1}
 }
 
 /* On smaller screens, decrease text size */
 @media only screen and (max-width: 300px) {
   .text {font-size: 11px}
 }






/* navigation */



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 14%;
    transition: 0.9s ease;
    
    
    
    

}
.container{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    

    
}
.container img{
    height: 60px;
    width: 150px;
}


header.sticky{
    padding: 0.3rem 14%;
    background: #484440;
    color: white;
    z-index: 1000;
  
}
 header.sticky ul a{
    color: white;
}
nav{
    display: flex;
    flex-direction: row;
    gap: 12rem;
    
    font-size: 1.2rem;
    align-items: center;
    font-weight: 500;
    
    

    
}

nav ul{
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

nav ul a{
    text-decoration: none;
    color: black;
    transition: 0.5s;
   

}

ul a:hover{
    background-color: #484440;
    color:white;
    border-radius: 5px;
    padding: 0px 4px;
   
   

}

header.sticky ul a:hover{
    background-color: white;
    color: #000000;
}


 .box_icon { 
    display: flex;
 
    flex-direction: row;
}


.box_icon a{
    transition: .0s cubic-bezier(.495,.05,.55,.95);
    font-size: 1.5rem;
    text-decoration: none;
    color: #000000;

}
.box_icon a:hover{  
        transform: scale(1.8);
}
header.sticky .box_icon a{
    color: white;
}
.logo{
    font-size: 2rem;
    

}

.nav-toggle{
    font-size: 2rem;
    cursor: pointer;
    display: none;
    
}
.closeMenu{
    font-size: 2rem;
    cursor: pointer;
    display: none;

}


/* home */
#home{
	display: flex;
    
	align-items: center;
    margin: 7rem 7rem;

}
#home-data{
	display: flex;
    flex-wrap: wrap;
	flex-direction: column;
	gap:1.5rem;
	margin:  3rem ;
	padding: 3rem;
    top: 0;
}
#home-data h1
    {
        text-transform:capitalize;
       background-image: linear-gradient(
         -225deg,
         #fafafa 0%,
         #000000 37%,
         #484440 67%,
         #484440 100%
       );
       background-size: auto auto;
       background-clip: border-box;
       background-size: 200% auto;
       color: #fff;
       background-clip: text;
       text-fill-color: transparent;
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       animation: textclip 3s linear infinite;
       display: inline-block;
       flex-wrap: wrap;
      
           font-size: 2.2rem;
     }
     .img img{
        height: 600px;
        width: auto;
        
        
     }
     
     @keyframes textclip {
       to {
         background-position: 200% center;
       }
     }

#home-data h3{
    font-size: 1.7rem;
    flex-wrap: wrap;
}
#home-data p{
    font-size: 1.2rem;
}
.btn a{
    background: #484440;


    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    padding: .5rem 2rem;
    border-radius: 30px;
    display: inline-block;
    transition: 1s;
}
.btn a:hover{
    background: #f1f6f7;
    outline-color: transparent;
    outline-style:solid ;
    box-shadow: 0 0 0 1px black;
    
    color: black;
  
}

/* gender */

/* .gender{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    
}
.male{
    align-items: center;
    justify-content: center;
    display:flex;
    flex-direction: column;
    gap: 1rem;
    outline-color: rgb(48, 44, 44);
    outline-style:solid;
    
   
    
    
}

.women{
    align-items: center;
    justify-content: center;
    display:flex;
    flex-direction: column;
    gap: 2rem;
    outline-color: rgb(48, 44, 44);
    outline-style:solid;
    
}

.male img {
    height: 400px;
    width: auto;
}
.women img {
    height: 386px;
    width: auto;
} */


 /* category ...................................................................................... */

.first-sec{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.sec-sec{
    display: flex;
    flex-direction: row;
    gap: 1rem
}

.photo img{
    height: 300px;
    width: auto;
    border-radius: 30px;
    transition: transform .2s;
}
.photo img:hover {
    transform: scale(1.1); 
  }


.grid{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 10rem;
}

.box{
    display: flex;
    align-items:  center;
    flex-direction: column;
}
.box a{
    text-decoration: none;
}

.text{
    display: flex;
    align-items: center;
    justify-content: center;

}

.text h3 {
    display: inline-block;
    border-radius: 4px;
    background-color: #484440;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    padding: 5px 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }
  
  .text h3 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .text h3 span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .text h3:hover span {
    padding-right: 25px;
  }
  
  .text h3:hover span:after {
    opacity: 1;
    right: 0;
  }










/* brand section */

.brand{
    margin-top: 8rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.margin{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.margin h3{
    font-weight:500;
}

.brands{
    display: flex;
    flex-direction: column;
}
.brands .brand1 img{
   margin: 2rem;
}
.brands .brand2 img{
   margin: 2rem;
}

/* best seller */

.bestseller{
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bestseller h3{
    font-weight: 500;
}

.bestgal {
    display: flex;
    flex-direction: row;
    margin-top: 5rem;
    gap: 1rem;
}
 .best1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgb(216, 215, 215);
    box-shadow: 3px 3px  10px rgb(122, 122, 122);
    height: auto;
    width: auto;
    transition: transform .2s;
 }
.best1:hover{
    transform: scale(1.1); 
}


.best1 img{
    width: 280px;
    height: auto;
}



 .div1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
 }
 .div2 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
 }

 /* welcome section */

 .welcome{
    margin: 5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 4rem;
    gap: 1rem;
 }
.welcome h3{
    color: #a16c29;
}
 /* contact section  */

 .contact{
    display: flex;
    flex-direction: row;
    margin-top: 5rem;
    gap: 1rem;
    

 }
 .logo105{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 3rem;
    gap: 2rem;
 }
 .logo105 p{
    font-weight: 700;
 }
 .logo105 .add{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
 }
 .log{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
 }
 .logo105 img{
    height: 120px;
    width: 300px;
 }
 .phone {
    color:#000000;
    font-size: 20px;
    
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction:row ;
    
 }

 .mail {
    color:#000000;
    font-size: 20px;
    
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction:row ;
    
    
 }

 .contact2{
    display: flex;
    flex-direction: row;
    background-color:#484440;
    width: 100%;
    padding-top: 2rem;
    padding-left: 3rem;
    gap: 4rem;
    color: #f1f6f7;
    
    
    
    

 }
 .info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }
 #info a{
    text-decoration: none;
    color: white;
 }

 .cate{
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }

 .follow{
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }

 .foll i{
    color: #fff;
    font-size: 2rem;
 }





/* bestseller */
@media all and (max-width:1195px){

.best1 img{
    width: 180px;
    height: auto;
}
}

/* gender */

@media all and (max-width:891px){
.male img {
    height: 350px;
    width: auto;
}
.women img {
    height: 340px;
    width: auto;
}
}
@media all and (max-width:890px){
.img img{
    height: 400px;
    width: auto;
} 

}   
    

/* footer section */


 
 @media all and (max-width:798px){
    .logo105 img{
        height: 60px;
        width: 150px;
     }
     .contact{
        display: flex;
        flex-direction:column;
     }

 }

 @media all and (max-width:773px){
    .male img {
        height: 300px;
        width: auto;
    }
    .women img {
        height: 290px;
        width: auto;
    }
    .bestgal{
        flex-direction: column;
    }
 }

 @media all and (max-width:688px){
    .male img {
        height: 250px;
        width: auto;
    }
    .women img {
        height: 240px;
        width: auto;
    }
 }

 /* home section  */


 @media all and (max-width:975px){

    #home-data h3{
        font-size: 1.2rem;
        
    }
    #home-data p{
        font-size: 1rem;
    }
    .btn a{
        
        font-size: 1rem;
 }
       #home-data h1{
       font-size: 2rem;
 }
 #home{
	
    margin: 7rem 0rem;

}
#home-data{
	
	margin:  1rem ;
	padding: 1rem;
    top: 0;
}
 }
 @media all and (max-width:599px){

    #home-data h3{
        font-size: 1rem;
        
    }
    #home-data p{
        font-size: 10px;
    }
    .btn a{
        
        font-size: 10px;
 }
       #home-data h1{
       font-size: 1rem;
 }
 #home{
	
    margin: 7rem 0rem;

}
#home-data{
	
	margin:  1rem ;
	padding: 1rem;
    top: 0;
}
 }

/* home image */

 @media all and (max-width:466px){
    .img img{
        height: 200px;
        width: auto;
    }
 }




 @media all and (max-width:572px){

 .gender{
   
    gap: 1rem;
    
}
.gender h1{
    font-size: 1rem;
}
 }
 @media all and (max-width:426px){
   
    /* home section */

    .img img{
        height: 220px;
        width: auto;
        
    }
    #home-data h3{
        font-size: 14px;
        
    }
    #home-data p{
        font-size: 8px;
    }
    .btn a{
        
        font-size: 8px;
 }
       #home-data h1{
       font-size: 13px;
 }
 #home{
	
    margin: 7rem 0rem;

}
#home-data{
	
	margin:  1rem ;
	padding: 1rem;
    top: 0;
}

    




    .male img {
        height: 190px;
        width: auto;
    }
    .women img {
        height: 180px;
        width: auto;
    }
    
    /* footer */

    .contact2{
        display: flex;
        flex-direction:column;
    }
    
    /* brands */


    .margin h3{
        font-size: 10px;
    }
    .margin h1{
        font-size: 1rem;
    }
    
    .brand2 img{
        width: 78px;
        height: auto;
    }
    .brand1 img{
        width: 78px;
        height: auto;
    }
    .brands {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction:row;
    }

    .brand1{
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction:column;
    }
    .brand2{
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction:column;
    }

   /* bestseller */

   .bestseller h3{
    font-size: 12px;
}
    .bestseller h1{
    font-size: 1.2rem;
}
.bestseller {
    margin-bottom: 4rem;
}

/* welcome */

.welcome h1{
   
        font-size: 14px;   
}
.welcome h3{
   
        font-size: 11px;
         
}
.welcome p {
    font-size: 11px;
    text-align: center;
    display: flex;
    justify-content: center;
}


.welcome{


   top: 7rem;
    margin: 1rem;
    padding: 1rem;

 
 }
 #home{
	
    
    margin: 5rem 1rem 1rem 1rem;

}
.brand{
    margin-top: 4rem;

}
.bestseller{
    margin-top: 3rem;

}
.contact{
 
    margin-top: 3rem;


 }
 .logo105{
 
    margin-left: 0rem;
    padding: 1rem;
 }
 .phone {
    
    font-size: 14px;     
 }

 .mail {
   
    font-size: 14px;  
 }

 .log .add p {
    font-size: 14px;
 }


 }
 @media all and (max-width:403px){
    .img img{
        height: 220px;
        width: auto;
        
    }
    #home-data h3{
        font-size: 12px;
        
    }
    #home-data p{
        font-size: 8px;
    }
    .btn a{
        
        font-size: 8px;
 }
       #home-data h1{
       font-size: 13px;
 }



 .male img {
    height: 170px;
    width: auto;
}
.women img {
    height: 160px;
    width: auto;
}

 }
 @media all and (max-width:403px){
    #home-data{
	
        gap:1rem;
        margin:  0rem ;
        padding: 0rem;
        
    }
 }



 @media all and (max-width:387px){
    .best1 img{
        width: 140px;
        height: auto;
    }
 }

 @media all and (max-width:378px){
    #home-data h3{
        font-size: 10px;
        
    }
 }
 @media all and (max-width:367px){
    #home-data h3{
        font-size: 10px;
        
    }
    #home-data h1{
        font-size: 11px;
  }
 }
 @media all and (max-width:356px){
    #home-data h3{
        font-size: 8px;
        
    }
    #home-data h1{
        font-size: 9px;
  }
 }
 @media all and (max-width:359px){
    .male img {
        height: 150px;
        width: auto;
    }
    .women img {
        height: 140px;
        width: auto;
    }
 }



 @media all and (max-width:349px){
    .btn a{
        
        font-size: 7px;
 }
 }

 @media all and (max-width:332px){
    .margin h3{
        font-size: 9px;
    }
 }

 /* responsive 1024 navigation */

 @media all and (max-width:1025px){
    /* nav{
        gap: 5rem ;
    } */
    header {
       
        padding: 2rem 7%;
    }
    header.sticky{
        padding:  0.3rem 7%;
    }


    #home-data{
	
        gap:1.5rem;
        margin:  1rem ;
        padding: 1rem;
        
    }
    #home{
        
        margin: 6rem 2rem;
    
    }

    .logo105{
      
        margin-left: 1rem;
}


}

@media all and (max-width:1004px){
    /* nav{
        gap: 3rem ;
    } */
    header {
       
        padding: 2rem 7%;
    }
    header.sticky{
        padding:  0.3rem 7%;
    }
}
@media all and (max-width:962px){
    /* nav{
        gap: 3rem ;
    } */
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }
}
@media all and (max-width:924px){
    /* nav{
        gap: 2rem ;
    } */
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }
}
@media all and (max-width:906px){
    /* nav{
        gap: 2rem ;
    } */
    header {
       
        padding: 2rem 3%;
    }
    header.sticky{
        padding:  0.3rem 3%;
    }
}



@media all and (max-width:897px){
  
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }

    /* nav{
        
        gap: 1rem ;
        font-size: 1rem;
    } */
    .box_icon a{
        
        font-size: 1.2rem;
    }

}
@media all and (max-width:889px){
    header {
       
        padding: 2rem 3%;
    }
    header.sticky{
        padding:  0.3rem 3%;
    }
    /* nav{
        
        gap: 2rem ;
    } */
}


@media all and (max-width:854px){
    /* nav{
        
        gap: 1rem ;
        
    } */
}
@media all and (max-width:806px){
    /* nav{
        
        gap: 2rem ;
        
    } */
}
@media all and (max-width:796px){
    /* nav{
        
        gap: 2rem ;
        
    } */
    header {
       
        padding: 2rem 4%;
    }
    header.sticky{
        padding:  0.3rem 4%;
    }

    .logo105 img{
        height: 90px;
        width: auto;
     }


}

@media all and (max-width:896px){
    .brand2 img{
        width: 78px;
        height: auto;
    }
    .brand1 img{
        width: 78px;
        height: auto;
    }
}


@media all and (max-width:970px){
.welcome{
    margin-top: 5rem;

    padding: 1rem;}
}

@media all and (max-width:581px){
    .brands .brand1 img{
        margin: 1rem;
     }
     .brands .brand2 img{
        margin: 1rem;
     }
}
@media all and (max-width:453px){
    .brands .brand1 img{
        margin: 10px;
     }
     .brands .brand2 img{
        margin: 10px;
     }
}

@media all and (max-width:607px){
    .margin h3{
        font-size: 1rem;
    }
}
@media all and (max-width:524px){
    .margin h3{
        font-size: 13px
        ;
    }
}

@media all and (max-width:524px){
    .male img {
        height: 240px;
        width: auto;
    }
    .women img {
        height: 230px;
        width: auto;
    }
}
@media all and (max-width:499px){
    .male img {
        height: 215px;
        width: auto;
    }
    .women img {
        height: 205px;
        width: auto;
    }
}
@media all and (max-width:447px){
    .male img {
        height: 200px;
        width: auto;
    }
    .women img {
        height: 190px;
        width: auto;
    }
}

@media all and (max-width:531px){
    .contact2{
       
        gap: 1rem;
        
    }
}
@media all and (max-width:421px){
    .margin h3{
        font-size: 10px
        ;
    }
}
@media all and (max-width:417px){
    .male img {
        height: 190px;
        width: auto;
    }
    .women img {
        height: 180px;
        width: auto;
    }
}
@media all and (max-width:396px){
    .male img {
        height: 180px;
        width: auto;
    }
    .women img {
        height: 170px;
        width: auto;
    }
}
@media all and (max-width:374px){
    .male img {
        height: 170px;
        width: auto;
    }
    .women img {
        height: 160px;
        width: auto;
    }
}
@media all and (max-width:355px){
    .male img {
        height: 160px;
        width: auto;
    }
    .women img {
        height: 150px;
        width: auto;
    }
}
@media all and (max-width:336px){
    .male img {
        height: 150px;
        width: auto;
    }
    .women img {
        height: 140px;
        width: auto;
    }
}

@media all and (max-width:1157px){
    #home{
       
        margin: 7rem 1rem;
    
    }
    #home-data{
        
        gap:1.5rem;
        margin:  3rem ;
        padding: 3rem;
    
    }
}

@media all and (max-width:890px){
    #home{
       
        margin: 7rem 1rem;
    
    }
    #home-data{
        
        gap:1.5rem;
        margin:  1rem ;
        padding: 1rem;
    
    }
}



/* copy */


@media all and (max-width:1441px){
    nav{
        gap: 9rem ;
    }
  }
  @media all and (max-width:1334px){
    nav{
        gap: 7rem ;
    }
  }
  
  
  
  
  
  
  @media all and (max-width:1272px){
    nav{
        gap: 8rem ;
    }
    header {
       
        padding: 2rem 10%;
    }
    header.sticky{
        padding: 0.3rem 10%;
    }
  }
  @media all and (max-width:1268px){
    nav{
        gap: 8rem ;
    }
  }
  @media all and (max-width:1249px){
    nav{
        gap: 7rem ;
    }
  }
  @media all and (max-width:1234px){
    nav{
        gap: 12rem ;
    }
    header {
       
        padding: 2rem 5%;
    }
    header.sticky{
        padding: 0.3rem 5%;
    }
  }
  @media all and (max-width:1175px){
    nav{
        gap: 10rem ;
    }
  }
  @media all and (max-width:1122px){
    nav{
        gap: 8rem ;
    }
  }
  @media all and (max-width:1085px){
    nav{
        gap: 7rem ;
    }
  }
  @media all and (max-width:1048px){
    nav{
        gap: 7rem ;
    }
  }
  /* @media all and (max-width:1025px){
    
   
  
    nav{
        
        gap: 0rem ;
        font-size: 1rem;
        
        
    }
    
    .box_icon a{
        
        font-size: 1.2rem;
    }
    header {
       
        padding: 2rem 25%;
    }
    header.sticky{
        padding: 0.3rem 5%;
    }
  }
  @media all and (max-width:1022px){
  
        
    nav{
        
        gap: 0rem ;
  
    }
     
  }
   */
  
  @media all and (max-width:841px){
     
    .container{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between; 
        padding: 0rem 7%;    
    }
    
    nav{
        /* flex-wrap: wrap; */
        flex-direction: column;
         position: fixed; 
        /* position:absolute;
        z-index: 20000000; */
        background: white;
        padding: 5rem 10rem;
        height: 100vh;
        width: 100%;
        display: none;
        z-index: 10001;
        transition: top 1s ease;
        overflow: hidden;  
    }
  
    .closeMenu{
        
        position: absolute;
        top: 1rem;
        right: 2rem;
        display: block;
    }
    .nav-toggle{   
        display:block;
    }
    nav ul{
        flex-direction: column;
        align-items: center;
        
    }
    nav ul a{
        font-size: 1.8rem;
      
     
    }
    .box_icon i {
        font-size: 2.2rem;
        margin-top: 2rem;
    }
    
    header{
    
        padding: 1rem 0%;
    }
    header.sticky {
        display: none;
    }
  }
  
   /* responsive 1024 navigation */
  
   @media all and (max-width:1025px){
    nav{
        gap: 5rem ;
    }
    header {
       
        padding: 2rem 7%;
    }
    header.sticky{
        padding:  0.3rem 7%;
    }
  
  
    #home-data{
  
        gap:1.5rem;
        margin:  1rem ;
        padding: 1rem;
        
    }
    #home{
        
        margin: 6rem 2rem;
    
    }
  
    .logo105{
      
        margin-left: 1rem;
  }
  
  
  }
  
  @media all and (max-width:1004px){
    nav{
        gap: 5rem ;
    }
    header {
       
        padding: 2rem 7%;
    }
    header.sticky{
        padding:  0.3rem 7%;
    }
  }
  @media all and (max-width:962px){
    nav{
        gap: 3rem ;
    }
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }
  }
  @media all and (max-width:924px){
    nav{
        gap: 3rem ;
    }
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }
  }
  @media all and (max-width:906px){
    nav{
        gap: 4rem ;
    }
    header {
       
        padding: 2rem 3%;
    }
    header.sticky{
        padding:  0.3rem 3%;
    }
  }
  
  
  
  @media all and (max-width:897px){
  
    header {
       
        padding: 2rem 6%;
    }
    header.sticky{
        padding:  0.3rem 6%;
    }
  
    nav{
        
        gap: 4rem ;
        font-size: 1rem;
    }
    .box_icon a{
        
        font-size: 1.2rem;
    }
  
  }
  @media all and (max-width:889px){
    header {
       
        padding: 2rem 3%;
    }
    header.sticky{
        padding:  0.3rem 3%;
    }
    nav{
        
        gap: 6rem ;
    }
  }
  
  
  @media all and (max-width:854px){
    nav{
        
        gap: 5rem ;
        
    }
  }
  @media all and (max-width:806px){
    nav{
        
        gap: 2rem ;
        
    }
  }
  @media all and (max-width:796px){
    nav{
        
        gap: 2rem ;
        
    }
    header {
       
        padding: 2rem 4%;
    }
    header.sticky{
        padding:  0.3rem 4%;
    }
  
    .logo105 img{
        height: 90px;
        width: auto;
     }
  
  
  }
  
  @media all and (max-width:506px){
    nav ul a{
     
      
      font-size: 1rem;
      
  }
  nav{
    /* flex-wrap: wrap; */
    
    padding: 5rem 5rem;
  }
  
  
  }
  





  @media all and (max-width:1145px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 250px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 10rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 20px;
        padding: 5px 20px;
        width: 160px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  
  @media all and (max-width:956px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 210px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 10rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 15px;
        padding: 5px 20px;
        width: 130px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  @media all and (max-width:802px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 210px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 6rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 15px;
        padding: 5px 20px;
        width: 130px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  
  @media all and (max-width:490px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 180px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 6rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
        padding: 5px 20px;
        width: 110px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  
  @media all and (max-width:408px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 160px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 7rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 11px;
        padding: 5px 20px;
        width: 100px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  
  @media all and (max-width:403px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 1rem
    }
    
    .photo img{
        height: 140px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 7rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 9px;
        padding: 5px 20px;
        width: 90px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  @media all and (max-width:342px){
    .first-sec{
        display: flex;
        flex-direction: row;
        gap: 6px;
    }
    .sec-sec{
        display: flex;
        flex-direction: row;
        gap: 6px;
    }
    
    .photo img{
        height: 140px;
        width: auto;
        border-radius: 30px;
        transition: transform .2s;
    }
    .photo img:hover {
        transform: scale(1.1); 
      }
    
    
    .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 7rem;
    }
    .text h3 {
        display: inline-block;
        border-radius: 4px;
        background-color: #484440;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 9px;
        padding: 5px 10px;
        width: 80px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        align-items: center;
        justify-content: center;
      }
  }
  
  
  
   
  .bestseller a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    text-decoration: none;
    color: #000000;
    text-align: center;
  }
