.navbar{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 align-items: center;
 margin: 80px;
}
.Img_container{
    display: flex;
    height: 90px;
    width: 30%;
}
.logo_Img{
    border-radius: 100px;
    height: 80px;
    box-shadow:1px 3px 20px -3px rgba(243,91,12,0.75);
}

.search_container{
    display: flex;
    justify-content: center;
    width: 30%;
}
.search_input{
    width: 300px;
    height: 35px;
    padding-left: 15px;
    font-size: 17px;
    font-weight: 100px;
    border-radius: 13px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 2px solid rgba(243,91,12,0.75);
    box-shadow: 0px 3px 13px -5px rgba(243,91,12,0.75);
    outline: 0;
}
.search_btn{
    width: 80px;
    border: none;
    border-bottom-right-radius: 13px;
    border-top-right-radius: 13px;
    outline: 0px;
    cursor: pointer;
    background-color: rgba(243,91,12,1);
    box-shadow: 3px 4px 18px -5px rgba(243,91,12,0.75);
    color: aliceblue;
    transition: all 300ms;
    
}
.search_btn:hover{
    transform: scale(1.1);
}
.selectContainer{
    display: flex;
    justify-content: space-around;
    width: 30%;
}
#sortAlpha{
    height: 30px;
    width: 200px;
    padding-left: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 100px;
    background-color:rgb(250, 250, 250);
    color:grey;
    box-shadow: 1px 1px 10px -3px rgba(0, 0, 0, 0.75);
   
    
}
option{
    color:  rgba(243,91,12,0.75);
}
#sortPrice{
    height: 30px;
    width: 200px;
    padding-left: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 100px;
    background-color:rgb(250, 250, 250);
    color:grey;
    box-shadow: 1px 1px 10px -3px rgba(0, 0, 0, 0.75);
}
.mainInfoContainer{
    display: flex;
}
#categories{
    display: flex;
    flex-direction: column;
    width: 300px;
    border: 2px white;
    margin-left: 25px;
}
.cat-btn{
    margin: 10px 50px 10px 30px;
    width: 200px;
    height: 45px;
    border-radius: 10px;
    border: none;
    border-bottom: 2px solid  rgba(243,91,12,0.75);
    box-shadow: 3px 4px 10px -5px rgba(243,91,12,0.75);
    transition: all 300ms;
    color:grey;
}
.cat-btn:hover{
    transform: scale(1.1);
    background-color: rgba(243,91,12,0.85);
    color: aliceblue;
    cursor: pointer;
}
#products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   
}

.group-cat{
    background-color: rgb(246, 245, 243);
    margin: 0px 15px 35px 15px;
    box-shadow: 1px 4px 15px -6px rgba(0, 0, 0, 0.75);
    transition: all 300ms;
}
.group-cat:hover{
    transform: scale(1.1);
}
.group-cat img{
    display: flex;
    justify-content: center;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom: 2px solid  rgba(243,91,12,0.85);
    margin: 15px 15px 30px 15px;
    box-shadow: 0px 8px 8px -5px rgba(243,91,12,0.75);
}
.group-cat div{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    width: 230px;
    margin: 8px 0px 15px 0px;

}

@media screen and (max-width: 1600px){
    .navbar{
        margin: 80px 0px 80px 0px;
        justify-content: space-between;
    }
    .Img_container{
        justify-content: center;
       
    }
    #sortPrice{
        margin-left: 10px;
    }
    
}
@media screen and (max-width: 900px){
    .navbar{

        justify-content:space-around;
    }
    .Img_container{
       justify-content: center;
       width: 100%;
       margin-bottom: 50px;
    }
    .cat-btn{
        width: 150px;
        margin: 10px 30px 10px 30px;
    }
}
@media screen and (max-width: 650px){
    .navbar{
        flex-direction: column;
        justify-content: center;
        margin: 80px 0px 80px 0px;
        
    }
    .Img_container{
        justify-content: center;
        margin-bottom: 15px;
    }
    .search_container{
        margin-bottom: 20px;
    }
    .mainInfoContainer{
        flex-direction: column;
    }
    #categories{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0px 0px 50px 0px;
    }
}