* {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    border: border-box;
}
.cursor {
    cursor: pointer;
}

/** border **/


.border {
    border: 2px solid transparent;
}
.border:hover {
    border: 2px solid white;
}


/** Navigation Bar **/


.navbar {
    height: 70px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


/** Navigation Bar Box 1 **/


.nav-logo {
    height: 50px;
    width: 100px;
    margin-left: 3px;
    margin-bottom: 3px;
}
.logo {
    background-image: url(Images/amazon_logo.png);
    background-size: cover;
    height: 60px;
    width: 100px;
}


/** Navigation Bar Box 2 **/


.nav-address {
    margin-top: 3px;
    margin-left: 3px;
}
.add-first {
    color: #cccccc;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 20px;
}
.add-sec {
    font-size: 1rem;
    font-weight: bold;
}
.add-icon {
    display: flex;
    align-items: center;
    margin-left: 0px;
}


/** Navigation Bar Box 3 **/


.nav-search {
    display: flex;
    justify-content: space-evenly;
    background-color: #cccccc;
    width: 650px;
    height: 40px;
    border-radius: 5px;
    border: 3px solid transparent;
}
.search-select {
    background-color: #f3f3f39a;
    width: 50px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    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.2rem;
    color: #0f1111;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.nav-search:hover {
    border: 3px solid orange;
}


/** Navigation Bar Box 4 **/


span {
    font-size: 0.85rem;
}
.nav-sec {
    font-size: 1rem;
    font-weight: bold;
}


/** Navigation Bar Box 5 **/



/** Navigation Bar Box 6 **/ 


.nav-cart i {
    font-size: 30px;
}
.nav-cart {
    font-size: 1rem;
    font-weight: bold;
}


/** Panel **/


.panel {
    height: 40px;
    background-color: #222f3d;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.panel-opt p {
    display: inline;
    margin-left: 20px;
}
.panel-opt {
    width: 70%;
    font-size: 0.85rem;
}
.panel-deals {
    font-size: 1rem;
    font-weight: bold;
}


/** Hero Section **/


.hero-section {
    background-image: url(Images/hero_image.jpg);
    background-size: cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-msg {
    width: 90%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: linear-gradient(to right, rgb(53, 63, 102),#d5dad8);
    color: #0f1111;
    font-weight: bold;
    word-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 25px;
}


/** Shop Section **/


.shop-section {
    display: flex;
    flex-wrap: wrap;
    height: 950px;
    justify-content: space-evenly;
    background-color: #cdd8d5;
}
.box {
    height: 400px;
    width: 23%;
    background-color: white;
    padding: 20px 0px 15px;
    margin-top: 15px;
}
.box:hover {
    box-shadow:rgba(0, 0, 0, 0.5) 0px 0px 15px;;
}


/** Shop Section Boxes **/


.box-img {
    height: 300px;
    background-size: cover;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.box-content {
    margin-left: 1rem;
    margin-right: 1rem;
}
.box-content p:hover {
    text-decoration: underline;
    color: #00505e;
}
.box-content p {
    color: #007185;
}


/** Footer **/


footer {
    margin-top: 15px;
}
.foot-panel1 {
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}
.foot-panel1:hover {
    background-color: #37475aa8;
}
.foot-panel2 {
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}
ul {
    margin-top: 20px;
}
ul p {
    font-weight: bold;
}
ul a {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #dddddd;
}
ul a:hover {
    text-decoration: underline;
}
.foot-panel3 {
    background-color: #222f3d;
    border-top: 0.1px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    background-image: url(Images/amazon_logo.png);
    background-size: cover;
    height: 50px;
    width: 100px;
}
.foot-panel4 {
    background-color: #0f1111;
    color: white;
    height: 80px;
    font-size: 0.7rem;
    text-align: center;
}
.pages {
    font-size: 0.7rem;
    text-align: center;
    padding-top: 25px;
}
.copyright {
    padding-top: 5px;
}