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

/* NavBar */

.nav-bar{
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.logo{
    background-image: url('logo1.jpg');
    height: 50px;
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 15px;
}

.nav-logo{
    height: 50px;
    width: 100px;
}

.border{
    border: 1px solid transparent;
}

.border:hover{
    border: 1px solid white;
}

#addr-first{
    color: #CCCCCC;
    font-size: 1rem;
    margin-left: 15px;
}

#addr-second{
    font-size: 0.85rem;
    margin-left: 3px;;
}

.addr-icon{
    display: flex;
    align-items: center;
}

.nav-search{
    display: flex;
    background-color: rgb(255, 183, 0);
    width: 600px;
    height: 40px;
    border-radius: 5px;
    justify-content: space-evenly;
}

.nav-search:hover{
    border: 2px solid orange;
}

.search-category{
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-radius: 5px 0px 0px 5px;
    border: none;
}


.search-input{
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon{
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #0f1111;
}

span{
    font-size: 0.7rem;
}

.nav-second{
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-cart i {
    font-size: 30px;
}

.nav-cart{
    font-size: 0.8rem;
    font-weight: bold;
}

/* second navbar */

.panel{
    height: 40px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
}

.panel-ops p{
    display: inline;
    margin-left: 15px;
}

.panel-ops{
    width: 70%;
    font-size: 0.85rem;
}

.panel-deals{
    font-size: 0.9rem;
    font-weight: 700;
}

/* Hero Section */


.hero-section{
    background-image: url('hero_image.jpg');
    height: 300px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg{
    background-color: white;
    color: black;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 85%;
    margin-bottom: 25px;

}

.hero-msg a{
    color: #007185;

}

/* shop section */

.shop-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.box{
    height: 400px;
    width: 23%;
    background-color: rgb(233, 231, 231);
    padding: 20px 0px 15px;
    margin-top: 15px;
}

.box-img{
    height: 300px;
    background-size: cover;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.box-content{
    margin-left: 1rem;
    margin-right: 1rem;
}

.box-content p{
    color: #007185;
}

/* footer */

footer{
    margin-top: 15px;
}

.foot-panel-1{
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.foot-panel-2{
    background-color: #222f3d;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

ul a{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    margin-top: 10px;
}

ul{
    list-style-type: none;
    margin-top: 20px;
}

.foot-panel-3{
    background-color: #222f3d;
    color: white;
    border-top: 0.1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-panel-3 .logo{
    background-image: url('logo1.jpg');
    height: 50px;
    width: 100px;
    background-size: contain;
}

.foot-panel-4{
    background-color: #0f1111;
    color: white;
    height: 50px;
    text-align: center;
    padding-top: 30px;
}

.foot-ops{
    font-size: 0.8rem;
}

.foot-ops a{
    color: white;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

.copy-right{
    padding-top: 8px;
    font-size: 0.9rem;
}

