* {
    margin: 0;
    font-family: Arial;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin-bottom: 10px;
    background-color: #ffffff;
}

.loo1 {
    height: 60px;
    width: 148px;
    margin-right: 20px;
    margin-left: 30px;
    background-image: url("logo.png");
    background-size: contain;
}

.searchall {
    display: flex;
    align-items: center;
    width: 620px;
}

.search {
    width: 620px;
    background-color: transparent;
}

.searchicon {
    height: 40px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(194, 209, 209);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.searchbox {
    width: 100%;
    height: 40px;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    border: none;
    background-color: rgb(194, 209, 209);
}

.login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.dropdown {
    border: none;
    width: 17px;
}

.cart {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    text-decoration: none;
}

.seller {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 30px;
}

.navbar::after {
    content: "";
    display: block;
    clear: both;
}

.secrow {
    display: flex;
    justify-content:center;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    height: 120px;
    outline: 10px solid rgb(220, 223, 227);
    
    
}
.kilos{
    background-image: url("kilo.jpg");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.phone{
    background-image: url("phine.webp");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Fasion{
    background-image: url("Fasion.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Electronics{
    background-image: url("Electronics.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Home{
    background-image: url("Home.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Appliances{
    background-image: url("Appliance.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Flight{
    background-image: url("Flight.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Beauty{
    background-image: url("Beauty.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.Two{
    background-image: url("Two.png");
    width:64px;
    height:80px;
    background-size:contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    align-items: center;    
    text-align: center;
}
.slideshow{
    height:250px;
    width:100%;
    overflow:hidden;
   border-radius:10px;
   outline: 10px solid rgb(220, 223, 227);
   position:relative;
}
.slider {
    display: flex;
    position:absolute;
    left: 0;
    height: 100%;
    width: 600%;
    animation: slideop 2s infinite quadratic;
}
.slider img{
    height:100%;
    width:16.66%;
    flex-shrink: 0;
}
@keyframes slideop{
    from{
        transform:translateX(0);
    }
    to{
        transform: translateX(-83.33%);
    }
}