*{
    margin: 0;
    padding: 0;
    font-family: Arial;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar{
    height: 60px;
    background-color: #161D1F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nav-logo{
    height: 50px;
    width: 100px;
}

.logo{
    background-image: url("image.png");
    background-size: cover;
    height: 50px;
    width: 100%;
}

.border{
    border: 1.5px solid transparent;
}
.border:hover{
    border: 1.5px solid white;
}

/* ADDRESS */
.add-first{
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 22px;
}

.add-second{
    font-size: 1rem;
    margin-left: 3px;
}

.add-icon{
    display: flex;
    align-items: center;
}

/* SEARCH BAR */
.nav-search{
    display: flex;
    background-color: orange;
    width: 100%;
    max-width: 620px;
    height: 40px;
    border-radius: 4px;
}

.nav-search:hover{
    border: 2px solid orange;
}

.search-select{
    background-color: #f3f3f3;
    width: 50px;
    border: none;
}

.search-input{
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: orange;
}

/* TEXT */
span{
    font-size: 0.7rem;
}
.nav-second{
    font-size: 0.85rem;
    font-weight: 700;
}

/* CART */
.nav-cart i{
    font-size: 30px;
}
.nav-cart{
    font-size: 0.85rem;
    font-weight: 700;
}

/* PANEL */
.panel{
    height: 39px;
    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.8rem;
}

/* HERO */
.hero-section{
    background-image: url(main-pic.jpg);
    background-size: cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg{
    background-color: white;
    height: 40px;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 90%;
    margin-bottom: 25px;
}

/* SHOP */
.shop-section,
.shop-section1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: rgb(186, 167, 151);
}

.box{
    height: 420px;
    width: 23%;
    margin: 15px;
    background-color: white;
    padding: 15px;
}

.box-img{
    height: 300px;
    background-size: cover;
    margin: 1rem 0;
}

.box-content{
    margin: 0 1rem;
}

.box-content p{
    color: #007185;
}

/* FOOTER */
footer{
    margin-top: 25px;
}

.foot-panel{
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-panel2{
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

ul{
    margin-top: 20px;
}

ul a{
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
}

.foot-panel3{
    background-color: #222f3d;
    border-top: 0.5px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-panel4{
    background-color: #0f1111;
    color: white;
    height: 80px;
    font-size: 0.7rem;
    text-align: center;
}

.pages{
    padding-top: 30px;
}

.copyright{
    padding-top: 5px;
}

