* {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

/** Navbar **/
.navbar {
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nav-logo {
    height: 50px;
    width: 110px;
}

.logo {
    height: 50px;
    width: 100%;
    background-image: url("image/amazon-logo1.png");
    background-size: cover;

}

.border {
    border: 2px solid transparent;
}

.border:hover {
    border: 1.5px solid white;
}

/** Box2 **/

.add-first {
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 15px;
}

.add-second {
    font-size: 1rem;
    margin-left: 3px;
}

.add-icon {
    display: flex;
}


/** Box3 **/

.nav-search {
    display: flex;
    justify-content: space-evenly;
    background-color: red;
    width: 620px;
    height: 40px;
    border-radius: 4px;
}

.nav-search:hover {
    border: 2px solid rgb(250, 165, 67);
}

.search-select {
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: none;
}

.search-input {
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon {
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: #0f1111;
    background-color: rgb(250, 165, 67);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;

}


/** Box4-5 **/

span {
    font-size: 0.7rem;
}

.nav-second {
    font-size: 0.85rem;
    font-weight: 700;
}


/** Box6  **/
.nav-cart i {
    font-size: 30px;
}

.nav-cart {
    font-size: 0.85rem;
    font-weight: 700;
}



/** Panel **/

.panel {
    height: 40px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
    font-size: 0.85rem;
}

.panel-ops p {
    display: inline;
    margin-left: 20px;
}

.panel-ops {
    width: 70%;
    font-size: 0.85rem;
}

.panel-deals {
    font-size: 0.95rem;
    font-weight: 700;
}


/******* Hero Section *******/

.hero-section {
    background-image: url("image/hero_image.jpg");
    height: 400px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg {
    background-color: rgb(255, 255, 255, .50);
    height: 40px;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 25px;

}

.hero-msg a {
    color: #007185;
    text-decoration: none;
}


/*******  Shop Section *******/

.shop-section {
    display: flex;
    justify-content: space-evenly;
    background-color: rgb(255, 201, 232);
    flex-wrap: wrap;
}

.box {
    border: none;
    height: 450px;
    width: 23%;
    background-color: white;
    padding: 20px 0 15px;
    margin-top: 15px;
}

.box-img {
    height: 300px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.box-content {
    margin-left: 1rem;
    margin-right: 1rem;
}

.box-content p {
    color: #007185;
    font-size: 0.80rem;
}

/***** Footer *****/

footer {
    margin-top: 30px;
}

.foot-panel1 {
    background-color: #37475a;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 250;
}

.foot-panel2 {
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

ul {
    margin-top: 20px;
}

.foot-panel2 ul li {
    list-style-type: none;
    line-height: 35px;
}

.foot-panel2 ul li a {
    font-size: 0.85rem;
    color: #cacaca;
}

.foot-panel2 ul li p {
    font-size: 1.2rem;
}

.foot-panel3 {
    background-color: #222f3d;
    height: 80px;
    border-top: 1px solid rgb(163, 163, 163);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo {
    height: 50px;
    width: 120px;
    background-image: url("image/amazon-logo1.png");
    background-size: cover;
}

.foot-panel4 {
    background-color: #0f1111;
    height: 80px;
    color: white;

}

.pages a {
    text-decoration: none;
    color: white;
    margin: 15px 10px 0 10px;
    font-size: 0.90rem;
}

.pages {
    padding-top: 15px;
    text-align: center;
}

.copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 0.70rem;
}