a{
   text-decoration: none;
}

.container{
   min-width: 100vh;
   padding: 0px 8px 0px 8px;
}

.navbar{
    display: flex;
    justify-content: space-between;
}

.hamburger{
    font-size: 13px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: none;
}

nav ul li {
    cursor: pointer;
    display: inline;
    margin-right: 8px;
    font-size: 14px;
}

nav ul li:hover {
    text-decoration: underline;
}

.logo{
    width: 60px;
    margin: 10px 19px 0px 0px;
    cursor: pointer;
}
.icons{
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.icons2{
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.text{
    margin-right: 10px;
    margin-left: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.img2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.heart,
.bag,
.signup,
.search-btn{
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.heart2,
.bag2,
.signup2,
.search-btn2{
    width: 23px;
    height: 23px;
    cursor: pointer;
}

.grid{
    display: flex;
    align-items: center;
    justify-content: right;
    flex-shrink: 0;
    margin: 20px 0px 20px 0px;
    
   }
   .category{
    font-size: 14px;
    white-space: nowrap;
    margin: 30px 20px 30px 0px;
    position: relative;
    right: 16%;
    cursor: pointer;
   }

   .category:hover {
    text-decoration: underline;
   }

.search-section{
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 0px;
}

.search-btn{
    margin-top: 10px;
    font-size: 13px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.search-products{
    margin-top: 5px;
    height: 30px;
    width: 125px;
    outline: none;
    color: black;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    padding: 0px 10px;
    border-bottom-color: black;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.search-products::placeholder{
    color: black;
    font-size: 14px;
}

.members {
    display: flex;
    justify-content:space-around;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 40px;
}
.members1:hover,
.members2:hover {
    text-decoration: underline;
}


@media only screen and (max-width:1020px) {
    .navbar{
        display: flex;
        position: relative;
        align-items: center;
    }

    .hamburger{
        display: block;
        width: 23px;
    }

    nav ul li{
        display: none;
    }

    .logo{
       position: absolute;
       left: 35px;
       top: -10px;
       width: 40px;

    }
    .icons{
        display: none;
    }
    .icons2{
        display:block;
       display: flex;
       justify-content:center;
       align-items: center;
    }
    .img2{
        margin-right: 20px;
    }

    .grid{
        display: none;
    }

    .members{
        margin: 30px 0px 30px -20px;
        
    }
    
}

@media only screen and (max-width:700px){

    nav ul li{
        margin-right: 50px;
    }

}