* {
    margin: 0;
    font-family: Arial;
    border: border-box;
}

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

/* box 1 */

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

.logo {
    background-image: url("images/logo.png");
    background-size: cover;
    height: 50px;
    width: 70px; 
}

.border {
    border: 1.5px solid transparent;
}

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

/* box 2 */

.add-first {
    font-size: 0.85rem;
    color: #cccccc;
    margin-left: 13px;
}

.add-sec {
    font-size: 1rem;
    margin-left: 2px;
}

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

/* box 3 */

.nav-search {
    display: flex;
    justify-content: space-evenly;
    height: 40px;
    width: 650px;
    background-color: pink;
    border-radius: 5px;
}

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

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

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

.search-icon {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    background-color: #febd68;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #0f1111;
}

/* box 4 */

.nav-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 80px;
    color: #0f1111;
}

.lang-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2px;
    font-size: 1.5rem;
    color: #febd68;
}

/* box 5 */

.nav-account {
    font-size: 0.85rem;
    background-color: #0f1111;
}

/* box 6 */

.nav-return {
    font-size: 0.85rem;
    background-color: #0f1111;
}

.return-1 {
    font-size: 1rem;
    font-weight: 700;
}

/* box 7 */

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

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

/* PANEL */

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

.panel-opt {
    display: flex;
    width: 70%;
    font-size: 0.85rem;
}

.panel-opt p {
    margin-left: 15px;
}

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

/* hero-section */

.hero-section {
    height: 350px;
    background-image: url("images/hero_image.jpg");
    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: 95%;
    margin-bottom: 25px;
}

.hero-msg a {
    text-decoration: none;
    color: #007185;
}

/* shop-section */

.shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
}

.box {
    height: 400px;
    margin-top: 15px;
    width: 23%;
    background-color: white;
    padding: 20px 0 15px;
}

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

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

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

/* FOOTER */

footer {
    margin-top: 1rem;
}

.foot-panel1 {
    background-color: #37475a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.foot-panel2 {
    padding-top: 20px;
    background-color: #222f3d;
    color: white;
    height: 350px;
    display: flex;
    justify-content: space-evenly;
}

.foot-panel2 ul a {
    display: block;
    font-size: 0.85rem;
    color: #DDDDDD;
    margin-top: 10px;
}

.foot-panel3 {
    height: 70px;
    background-color: #222f3d;
    color: white;
    border-top: 0.5px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-panel4 {
    background-color: #0f1111;
    color: white;
    height: 90px;
    font-size: 0.7rem;
    text-align: center;
}

.pages {
    padding-top: 25px;
}

.copyright {
    padding-top: 5px;
}