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

.navbar {
    height: 60px;
    background: rgb(19,25,33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

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

.logo {
    height: 50px;
    background: url(images/amazon_logo.png);
    width: 100%;
    background-size: cover;
}

.border {
    border: 1.5px solid transparent;
}

.border:hover {
    border: 1.5px solid #fff;
    cursor: pointer;
}

/* box2 */

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

.add-second {
    font-size: 1rem;
    color: #ffffff;
    margin-left: 3px;
}

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

/* box3 */

.nav-search {
    display: flex;
    justify-content: space-evenly;
    width: 620px;
    height: 40px;
    border-radius: 4px;
}

::placeholder {
    padding-left: 10px;
}

.search-select {
    border-radius: 4px 0 0 4px;
    background:rgb(212,212,212);
    width: 50px;
    text-align: center;
    border: none;
    color: #0f1111;
}

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

.search-icon {
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(19,25,33);
    font-size: 1.5rem;
    background: #F3A847;
    border-radius: 0 4px 4px 0;
}

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

/* box 4 */

span {
    font-size: 0.7rem;
}

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

/* box 6 */


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

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

/* panel */

.panel {
    height: 40px;
    background: rgb(35,47,62);
    display: flex;
    color: #fff;
    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: url(images/hero_image.jpg);
    height: 380px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg {
    background: #fff;
    color: #000;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 80%;
    margin-bottom: 25px;
    
}

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

/* Shop section  */

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

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

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

}

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

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

/* Footer */

footer {
    margin-top: 15px;
}

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

.foot-panel2{
    background: #232F3E;
    color: #fff;
    height: 330px;
    display: flex;
    justify-content: space-evenly;
}

.foot-panel2 ul {
    margin-top: 50px;
}

.foot-panel2 a {
    color: #dddddd;
    display: block;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 10px;
}

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

.foot-panel3 .logo {
    background-image: url(images/amazon_logo.png);
    background-size: cover;
    height: 50px;
    width: 100px;
}

.foot-panel4 {
    background: #131A22;
    color: #fff;
    height: 80px;
    font-size: 0.7rem;
    text-align: center;

}

.foot-panel4 .pages {
    text-align: center;
    padding-top: 25px;
}

.foot-panel4 .pages a {
    color: #fff;
    text-decoration: none;
}

.foot-panel4 .copyright {
    padding-top: 5px;

}