*{
    margin: 0;
    font-family: Arial;
    border: border-box;
}

/* navbar section*/

.navbar{
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav-logo{
    height: 50px;
    width: 113px;
}
.logo{
    background-image: url(amazon_logo.png);
    background-size: cover;
    height: 50px;
    width: 113px;
}
.border{
    border: 1.5px solid transparent;
}
.border:hover{
    border: 1.5px solid white;
}
.nav-search:hover {
    border: 2px solid orange;
}
.add-First{
    color: #cccccc;
    font-size: .85rem;
    margin-left: 20px;
}
.add-Second{
    color: #ffffff;
    font-size: 1rem;
    margin-left: 3px;
}
.add-icon{
    display: flex;
    align-items: center;
}
.nav-search{
    display: flex;
    justify-content: space-evenly;
    height: 40px;
    width: 620px;
    background-color: pink;
    border-radius: 5px;
}
.search-select{
    background-color: #f3f3f3;
    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;
    background-color: rgb(255, 174, 0);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #0f1111;
}
span{
    font-size: .7rem;
}
.nav-Sec{
    font-size: .8rem;
    font-weight: 700;
}
.nav-cart i {
    font-size: 25px;

}
.nav-cart {
    font-size: .85rem;
}
.panel{
    height: 39px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
}
.panel-opt p{
    display: inline;
    margin-left: 15px;
}
.panel-opt{
    width: 70%;
    font-size: .85rem;

}
.panel-deals{
    font-size: .9rem;
    font-weight: 700;
}
/** hero section*/
.hero-section {
    background-image: url(Hero.jpg);
    background-size: cover;
    height: 350px;
    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: .85rem;
    width: 90%;
    margin-bottom: 25px;
}
.hero-msg a {
    color: #007185;
}
/** shop section*/

.shop-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
    
}
.box {
    height: 400px;
    width: 22%;    
    background-color: white;
    margin-top: 15px;
    padding: 15px;
}
.box-img {
    background-size: cover;
    height: 300px;
    padding: 20px 0px 15px;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1.5rem;
    
}
.box-img:hover {
    animation: animation1;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 3;
}
@keyframes animation1 {
    from
    {
        transform: scale(1.01)
    }
    to
    {
        transform: scale(1.10)
    }
}

.shop-sec p {
    color: #007185;
}
/**footer section */

.foot-panel1 {
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
}
.foot-panel1 a {
    color: white;
}

.foot-panel2 {
    background-color: #222f3d;
    color: white;
    height: 400px;
    display: flex;
    justify-content: space-evenly;

}
ul {
    margin-top: 10px;
}
ul a {
    display: block;
    font-size: .85rem;
    margin-top: 10px;
    color: #dddddd;
    text-decoration: none;

}

.foot-panel3 {
    background-color: #222f3d;
    color: white;
    border-top: 5px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    background-image: url(amazon_logo.png);
    background-size: cover;
    height: 50px;
    width: 113px;
}
.foot-panel4 {
    background-color: #0f1111;
    color: white;
    height: 80px;
    text-align: center;
}
.pages {
    padding-top: 25px;
    
    font-size: .7rem;
}
.copyright {
    padding-top: 5px;
    font-size: .7rem;

}
/* mobiles*/

@media (max-width:480px){
    body {
        height: 100vh;
        font-size: 14px;
    };
    header {
        font-size: 14px;
        padding: 10px;
    }
    footer {
        font-size: 14px;
        padding: 10px;
    }
    .hero-section {
        height: 150px;

    }
    .box {
        padding: 10px;
    }
}


