*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#navbar{
    min-height: 60px;
    width: 100%;
    color: white;
    background-color:#131921;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px;
}

/* box1 */

#logo {
    height: 56px;
    width: 114px;
    background-image: url(images/amazon_logo.png);
    background-size: cover;
}

.border:hover{
    border:2px solid white;
    cursor: pointer;
}

/* box2 */

.nav-add{
    display: flex;
    margin-left: 10px;
    gap:5px;
}

#icon{
    margin-top: 8px;
}

.small {
    font-size: 0.75rem;
    color: #CCCCCC;
}


/* box3 */

.nav-fill{
    margin: 10px;
    flex: 1;
}

.nav-search{
    height: 40px;
    width: 100%;
    display: flex;
    background-color: rgb(254, 189, 105);
    border-radius: 5px;
}

.nav-search:hover{
    border: 4px solid rgb(254, 189, 105);
}

.search-select{
    width: 50px;
    background-color: #e6e6e6;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
}

.search{
    flex:1;
    border: none;
    padding: 5px;
}

.search-icon{
    width:45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* box4 */

.sign-in{
    display: flex;
    flex-direction: column;
    margin: 0px 0px 0px 20px;
}

#id4{
    font-size: 0.70rem;
    margin-left: 4px;
}

#id5{
    font-size: 0.80rem;
    background-color:#131921;
    border: none;
    color: #FFFFFF;
    font-weight: bolder;
}

/* box5 */

.order-return{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 0px 0px 32px;
}

#id6{
    font-size: 0.70rem;
}

#id7{
    font-size: 0.8rem;
    font-weight: bolder;
}

/* box6 */

.cart i{
     font-size: 28px; 
}

.cart{
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 45px;
}

/* nav-bar2 */

.nav-bar2{
    background-color: #232f3e;
    color: white;
    display: flex;
    padding: 10px;
}

.box-2{
    font-size: 0.9rem;
    display:flex;
    gap:10px;
    margin-left: 20px;
}

/* content */

.content{
    height: 315px;
    background-image: url("images/hero_image.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;

}

.div1{
    background-color: white;
    width: 90%;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 25px;
}

/* shop grid */

.shop-content{
    background-color: #CCCCCC;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap:wrap;
    
}

.box{
    background-color: #FFFFFF;
    height: 420px;
    margin: 10px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

}

h2{
    margin: 20px 20px 10px 20px;
}

.box-img{
    height: 304px;
    width: 310px;
    background-size: cover;
    margin: 0px 20px 0px 20px;

}

.box p{
    font-size: 0.8rem;
    color: #2162A1;
    margin: 0 20px 0px 20px;
}

.bar{
    background-color: #37475A;
    color: white;
    height: 49px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.bar2{
    background-color: #232F3e;
    height: 292px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bar-content{
    width: 100%;
    background-color: #232F3e;
    color: #FFFFFF;
    display: flex;
    justify-content: space-around;
    margin-top: 45px;
    gap: 3px;
}

.text-box h4{
    margin: 6px 0 20px 0;
}

.text-box p{
    margin: 7px 0 7px 0;
    font-size: 0.87rem;
}

.footer-line{
    border-bottom: 1px solid white;
}

.end{
    background-color: #131A22;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    font-size: 0.7rem;
}

.end p{
    padding: 2px 0 3px 0;
}

.sign{
    padding-top: 10px;
    font-size: 25px;
    transition: 0.3s ease;
}

.sign:hover {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #00e5ff,
        0 0 40px #00e5ff;
    transform: scale(1.05);
}

/* RESPONSIVE */


@media (max-width: 850px){
    .nav-add{
        display: none;
    }
}

@media (max-width: 795px){
    .bar2{
        height: 320px;
    }
    .bar-content{
        font-size: 0.5rem;
    }
}

@media (max-width: 750px){
    .sign-in{
        display: none;
    }

    .order-return{
        display: none;
    }

    .cart{
        display: none;
    }
}

/* Small Mobile */
/* @media (max-width: 480px){

    .search-select{
        display: none;
    }

    .search{
        font-size: 0.9rem;
    }
} */
