/* universal */
* {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    border: border-box;
}
/* header */
/* navigation bar */
.navbar {
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.border {
    border: 2px solid transparent;
}
.border:hover {
    border: 2px solid white;
}
/* box1 */
.nav-logo {
    height: 40px;
    width: 132px;
    padding: 5px;
}
.logo {
    height: 100%;
    width: 100%;
    background-image: url("Images/amazonLogo3.png");
    background-size: cover;
}
/* box2 */
.nav-address {
    padding: 7px;
}
.address1 {
    color: #cccccc;
    font-size: 0.85rem;
    margin-left: 15px;
}
.address2 {
    font-size: 1rem;
    margin-left: 3px;
}
.add-icon {
    display: flex;
    align-items: center;
}
/* box3 */
.nav-search {
    display: flex;
    justify-content: space-evenly;
    background-color: pink;
    width: 620px;
    height: 40px;
    border-radius: 4px;
}
.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.2rem;
    background-color: #febd68;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #0f1111;
}
.nav-search:hover {
    border: 2px solid orange;
}
/* box4 */
.nav-signin {
    padding: 9px;
}
.navsmall {
    font-size: 0.7rem;
}
.navlarger {
    font-size: 0.85rem;
    font-weight: 700;
}
/* box5 */
.nav-returns {
    padding: 9px;
}
/* box6 */
.nav-cart{
    padding: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    i {
        font-size: 30px;
    }
}
/* header panel */
.panel {
    display: flex;
    height: 40px;
    background-color: #222f3d;
    color: white;
    justify-content: space-evenly;
    align-items: center;
}
.panel-option {
    width: 70%;
    font-size: 0.85rem;
    p {
        display: inline;
        margin-left: 15px;
    }
}
.panel-deals {
    font-size: 0.9rem;
    font-weight: 700;
}
.padding-increaser {
    padding: 8px;
}

/* main */
/* hero section */
.hero-section {
    background-image: url("Images/heroBGI.jpg");
    background-size: cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-massage {
    background-color: white;
    color: black;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    width: 90%;
    margin-bottom: 25px;
    a {
        color: #007185;
    }
}
/* shoppping contents */
.shop-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: #fbfb0534;
}
.box {
    /* border: 2px solid black; */
    height: 400px;
    width: 23%;
    background-color: white;
    padding: 20px 0px 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.box:hover {
    border: 2px solid black;
    transform: scale(1.01);
}
.boxcontent {
    margin-left: 1rem;
    margin-right: 1rem;
    a {
        color: #007185;
        margin-left: 5px;
    }
}

.box-image1 {
    background-image: url('Images/content1.jpg');
}
.box-image2 {
    background-image: url('Images/content2.jpg');
}
.box-image3 {
    background-image: url('Images/content3.jpg');
}
.box-image4 {
    background-image: url('Images/content4.jpg');
}
.box-image5 {
    background-image: url('Images/content5.jpg');
}
.box-image6 {
    background-image: url('Images/content6.jpg');
}
.box-image7 {
    background-image: url('Images/content7.jpg');
}
.box-image8 {
    background-image: url('Images/content8.jpg');
}

.imageproperty {
    height: 350px;
    margin: 5px;
    background-size: cover;
}

/* footer */
footer {
    margin-top: 15px;
}
/* footer panel1 */
.foot-panel1 {
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}
.foot-panel2 {
    background-color: #222f3d;
    color: white;
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 15px;
    ul {
        margin-top: 20px;
        a {
            display: block;
            font-size: 0.85rem;
            margin-top: 10px;
            color: #dddddd;
        }
    }
}
.foot-panel3 {
    background-color: #222f3d;
    color: white;
    border-top: 0.5px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot-logo { /*this class is same as the .logo class defined in header section and can be skipped including some changes..*/
    background-image: url("Images/amazonLogo.png");
    background-size: cover;
    height: 50px;
    width: 100px;
}
.foot-panel4 {
    background-color: #0f1111;
    color: white;
    font-size: 0.7rem;
    align-items: center;
    text-align: center;
    padding: 5px;
    a {
        padding-right: 10px;
    }
}
.page {
    padding-top: 25px;
}
.copyright {
    padding-top: 5px;
}