@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html {
    font-size: 62.5%;
}

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

/* nav */

.navbar {
    height: 60px;
    background-color: #0f1111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* box 1 */

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a img {
    height: 60px;
}


/* box2 */
.nav-add {
    margin-left: 1rem;
}

.add-icon i {
    font-size: 19px;
}

.add-first-para {
    color: #CCCCCC;
    font-size: 1rem;
    margin-left: 20px;
    line-height: 3px;
}

.add-sec-para {
    color: #FFF;
    font-size: 1.5rem;
    display: inline-block;
    margin-left: 3px;
}

/* box3 */
.nav-search {
    margin-left: 2rem;
    display: flex;
    justify-content: space-evenly;
    background-color: blueviolet;
    width: 78rem;
    height: 40px;
    border-radius: 4px;
}

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

.search-select {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border:none;
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    font-size: 12px;
}

.search-input{
    width: 100%;
    font-size: 1.5rem;
    padding-left: 10px;
    border: none;
    border-left: 0.1px solid black;
}

.search-input::placeholder{
    font-size: 15px;
}

.search-icon{
    width: 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size: 20px;
    background-color: #febd68;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #0f1111;
}

/* box4 and box5*/
.login-first-para{
    font-size: 12px;
}
.login-sec-para{
    font-size: 14px;
    font-weight: 900;
}

/* box6 */
.cart i{
    font-size: 25px;
}
.cart-para{
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}

/* navbar end  */

/* panel start  */
.panel{
    height: 40px;
    background-color: #222f3d;
    color: #FFF;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 15px;
    font-weight: 900;
}
.panel-all{
    display: flex;
}
.panel-all i{
    font-size: 20px;
    padding-right: 5px;
}
.panel-ops {
    width: 70%;
    display: flex;
    gap: 15px;
}
.panel-ops a{
    text-decoration: none;
    color: #fff;
}
.panel-deals a{
    text-decoration: none;
    color: #fff;
}


/* header end  */


/* hero section start  */
.hero-section{
    background-image: url("Images/hero_image.jpg");
    height: 350px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-msg{
    background-color: #fff;
    color: #0f1111;
    width: 95%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.hero-msg p{
    font-size: 1.5rem;
    text-align: center;
}
.hero-msg a{
    color: #007185;
}

/* hero section end  */

/* shop section start  */
.shop-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background: #c6d6d3;
}

.box{
    margin: 15px 0;
    height: 400px;
    width: 23%;
    background: #fff;
    padding: 10px;
}
.box-img{
    display:flex;
    justify-content:center;
    align-items:center;
}
.box-img img{
    height: 300px;
    width: 85%;
    margin: 15px;
}
.box p{
    font-size: 14px;
}
.box p a{
    font-size: 14px;
    text-decoration: none;
    color: #007185;
}
.box p a:hover{
    text-decoration: underline;
    color: #C7511F;
}


/* footer section style  */

.foot_pan1{
    background-color: #37475a;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_pan1 a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer2{
    background-color: #232F3E;
}
.foot_pan2{
    display: flex;
    justify-content: space-evenly;
    padding: 50px 0px;
}
.para{
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin: 6px 0 14px 0;
}
.foot_pan2 ul li{
    list-style-type: none;
}
.foot_pan2 ul li a{
    text-decoration: none;
    color: #DDDDDD;
    font-size: 14px;
}
.foot_pan2 ul li a:hover{
    text-decoration: underline;
}

.footer3{
    border-top: 0.1px solid white;
    background-color: #232F3E;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    color:#fff;
}

.img{
    margin-top: 10px;
    margin-right: 60px;
}

.img img{
    height: 50px;
}

.border{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
}

.border i{
    font-size: 20px;
}
.border img{
    height: 20px;
}


.footer4{
    background-color: #232F3E;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    padding-bottom: 50px;
}

.pages_link ul{
    display: flex;
    gap:20px;
}
.pages_link ul li{
    list-style-type: none;
}
.pages_link ul li a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.copyright p{
    color: #fff;
    font-size: 12px;
}