@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;1,400&display=swap');
:root{
    --green:#1a4adcf5;
}


*{
 font-family: 'Roboto', sans-serif;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 text-decoration: none;
 outline: none;
 border: none;
 text-transform: capitalize;
 transition: all 0.2s linear;
}
*::selection{
    background: var(--green);
    color:#fff;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}
section{
    padding: 2rem 5%;
}
.header-1,
.header-2,
.header-3{

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2%;
    background: var(--green);
}
.header-1{
    border-bottom: 0.1rem solid rgba(255,255,255, .2);
}
.header-3{
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    position: relative;
    z-index: 10000;
}
.header-1 span{
 font-weight: lighter;
 color: #fff;
 font-size: 1.8rem;
}
.header-1  a{
    padding: 0 .8rem;
    color: #fff;
    font-size: 2rem;
}
.header-1  a:hover{
    color: yellow;
}
.header-2 .logo{
    font-weight: bolder;
    font-size: 3rem;
    color: white;

}
.header-2 .logo i{
    color: yellow;
}
.header-2 .search-bar-container{
    display: flex;
    align-items: center;
    width: 50rem;
    padding: 1.5rem;
    background: rgba(255,255,255, .2);
    border-radius: 0.5rem;
}
.header-2 .search-bar-container #search-bar{
    width: 100%;
    background: none;
    text-transform: none;
    color: white;
    font-size: 1.7rem;
}
.header-2 .search-bar-container #search-bar::placeholder{
    text-transform: capitalize;
    color: #fff;
}
.header-2 .search-bar-container label{
    color: #fff;
    cursor: pointer;
    padding: 0 .5rem;
    font-size: 1.7rem;
}
.header-2 .search-bar-container label:hover{
    color: yellow;
}
.header-3 .navbar a{
    color: black;
    font-size: 2rem;
    margin-right: 2rem;
     
}
.header-3 .icons a{
    color: black;
    font-size: 1.8rem;
    margin-left: 2rem;
}
.header-3  a:hover{
    color: var(--green);
}
#menu-bar{
    font-size: 3rem;
    color: #666;
    border: .1rem solid #666;
    border-radius: .5rem;
    padding: 0.5rem 1.5rem;
    display: none;
cursor: pointer
;}
.header-3.active{
    position: fixed;
    top:0; left:0; right: 0;
}
.home{
    padding-top: 0;
}
.home .home-slider{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border: .1rem solid rgba(0,0,0,.3);
    border-top: 0;
}
.home .home-slider .box{
    background-size: cover !important;
    background-position: center !important;
    min-height: 55rem;
    position: relative;

}
.home .home-slider .box .content{
      position: absolute;
      top:50% ; left: 5%;
      transform: translateY(-50%);
      max-width: 50rem;
}
.home .home-slider .box .content span{
    font-size: 3rem;
    color: #333;

}
.home .home-slider .box .content h3{
    font-size: 6rem;
    color: #333;
    padding: .5rem 0;
    
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    background: var(--green);
    padding: 0.8rem 3rem;
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
}
.btn:hover{
    background: #333;
}
.banner-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.banner-container .banner{
    flex: 1 1 50rem;
    height: 25rem;
    border: .1rem solid rgba(0,0,0,.3);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    overflow: hidden;
    position: relative;
}
.banner-container .banner .content{
    position: absolute;
    top: 50%; left: 4%;
    transform: translateY(-50%);

}
.banner-container .banner .content img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-container .banner .content span{
     color:#666;
     font-size: 1.7rem;

}
.banner-container .banner .content h3{
    color: #333;
    font-size: 3rem;
    padding:  .5rem 0;

}
.banner-container .banner:hover img{
    transform: scale(1.2);
}
.category .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.category .box-container .box{
    flex: 1 1 23rem;
    position: relative;
    height: 35rem;
    overflow: hidden;
    border: .1rem solid rgba(0,0,0,.3);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
.category .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.category .box-container .box .content{
    position: absolute;
    bottom: -5.5rem;
    background: #fff;
    border-top: 0.1rem solid rgba(0,0,0,.3);
    text-align: center;
    padding: .5rem 0;
    width: 100%;
}
.category .box-container .box:hover .content{
    bottom: 0;
}
.category .box-container .box .content h3{
   color: #333;
   font-size: 2.5rem; 
   padding: .5rem 0;
}
.category .box-container .box .content .btn{
    margin-bottom: 1.3rem;

}
.category .heading{
    font-size: 5rem;
    margin-bottom: 2rem;
    border-bottom: .1rem  solid rgba(0,0,0,.1);
}
.product .heading{
    border-bottom: .1rem  solid rgba(0,0,0,.1);
    font-size: 3rem;
    margin-left: 2rem;
    
 }
 .product .box-container{
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
 }
 .product .box-container .box{
     flex: 1 1 30rem;
     position: relative;
     border: .1rem solid rgba(0,0,0,.3);
     box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
     overflow: hidden;
 }
 .product .box-container .box .discount{
     position: absolute;
     top: 1rem; left: 1rem;
     background: rgba(0,255,0,.1);
     color: var(--green);
     font-size: 2rem;
     padding:.5rem 1rem;

 }
 .product .box-container .box .icons{
     position: absolute;
     top: 1rem;right: -8rem;
     display: flex;
     flex-flow: column;
     background: #fff;
     border-radius: 0.5rem;
     padding: 0.5rem;
     box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
 }
 .product .box-container .box:hover .icons{
     right: 1rem;
 }
 .product .box-container .box:hover .icons a{
     height: 4rem;
     width: 4rem;
     line-height: 4rem;
     font-size: 1.5rem;
     color: #333;
     border-radius: 5rem;
     margin: .1rem;
     text-align: center;

 }
 .product .box-container .box:hover .icons a:hover{
     color: #fff;
     background: var(--green);
 }
 .product .box-container .box img{
     height: 30rem;
     width: 100%;
     border-bottom: .1rem solid rgba(0,0,0,.3);
     object-fit: cover;

 }
 .product .box-container .box h3{
     color: #333;
     font-size: 2.5rem;
     padding: 1rem 0;
     border-bottom:.1rem solid rgba(0,0,0,.1) ;
 }
 .product .box-container .box .start i{
     color: gold;
     font-size: 2rem;
 }
 .product .box-container .box .qauntity{
     padding: 1rem 0;
     text-align:center;
 }
 .product .box-container .box .qauntity span{
     font-size: 2rem;
 }
 .product .box-container .box .qauntity input{
     font-size: 2rem;
     padding: .2rem;
     text-align: center;
     background: rgba(0,0,0,.1);

 }
 .product .box-container .box .price{
     font-weight: bolder;
     color: var(--green);
     font-size: 2rem;
     text-align:center;
 
 }
 .product .box-container .box .price span{
     text-decoration: line-through;
     color: #999;
     font-size: 1.5rem;
 }
 .product .box-container .box .btn{
     display: block;
     margin: 2rem;
     text-align: center;
 }
 .icon-container{
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
 }
 .icon-container .icon{
     padding: 2rem 0;
     display: flex;
     align-items: center;
     flex: 1 1 25rem;
     border: .1rem solid rgba(0,0,0,.1);
     box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
 }
 .icon-container .icon img{
     display: flex;
   
 }
 .icon-container .icon .content{
     padding-left:2rem;
 }
 .icon-container .icon .content h3{
     color: var(--green);
     font-size: 2rem;
 }
 .icon-container .icon .content p{
     font-size: 1.5rem;
     color: #666;
 }
 .deal .heading{
     font-size: 3rem;
     margin-bottom: 2rem;
     border-bottom: .1rem solid rgba(0,0,0,.1);
 }
 .deal .row{
     display: flex;
     flex-wrap:wrap ;
     gap: 1.5rem;
     align-items: center;
 }
 .deal .row .image{
     flex: 1 1 40rem;
 }
 .deal .row .image img{
     width: 100%;
 }
 .deal .row .content{
     flex: 1 1 40rem;
 }
 .deal .row .content .title{
     font-size: 3.5rem;
     color: #333;

 }
 .deal .row .content p{
     font-size: 1.5rem;
     color: #333;
     padding: 1rem 0;
 }
 .deal .row .content .count-down{
     display: flex;
     gap: 1.5rem;
     padding: 1rem 0;

 }
 .deal .row .count-down .box{
     width: 9rem;
     text-align: center;
     border: .1rem solid rgba(0,0,0,.3);
 }
 .deal .row .count-down .box h3{
     font-size: 5rem;
     color: var(--green);
 }
 .deal .row .count-down .box span{
     font-size: 1.5rem;
     color: #fff;
     display: block;
     background: #666;
     padding: .5rem;
 }
 .review .box-container{
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
 }
 .review .heading{
     font-size: 3rem;
     border-bottom: .1rem solid rgba(0,0,0,.3);
     box-shadow: 0 .5rem 1rem beige;
     text-align: center;
     margin-bottom: 3rem;
     color: #3A9943;
 }
 .review .box-container .box{
     flex: 1 1 30rem;
     box-shadow:  0 .5rem 1rem rgba(0,0,0,.1);
     border: .1rem solid rgba(0,0,0,.1);
     padding: 3rem 2rem;
     border-radius: 0.5rem;
     position: relative;
     /* flex-flow: column; */
 }
 .review .box-container .box .user{
     display: flex;
     align-items: center;
     padding-top: 2rem;
 }
 .review .box-container .box .user img{
     height: 6rem;
     width: 6rem;
     border-radius: 50%;
     object-fit: cover;
 }
 .review .box-container .box .user .info h3{
     color: #3A9943;
     font-size: 1.5rem;
     margin-left: 1rem;

 }
 .review .box-container .box .user .info span{
    color: #3A9943;
    font-size: 1.5rem;
    margin-left: 1rem;

}
.contact .row{
    display: flex;
    flex-wrap: wrap;
    border: .1rem solid rgba(0,0,0,.3);
}
.contact .row .map{
    width: 100%;
    flex: 1 1 40rem;
}
.contact .row form{
    padding: 2rem;
    flex: 1 1 40rem;
}
.contact .row form .inputbox{
    position: relative;
}
.contact .row form .inputbox input ,.contact .row form .inputbox textarea{
    
  width: 100%;
  border-bottom:0.1rem solid rgba(0,0,0,.3) ;
  padding: 1rem 0;
  margin: 1.5rem 0;
  text-transform: none;
  color: #333;


}
.contact .row form .inputbox textarea{
    resize: none;
    height: 15rem;

}
.contact .row form .inputbox input:focus,
.contact .row form .inputbox textarea:focus{
    border-color: var(--green);
}
.contact .row form .inputbox label{
    position: absolute;
    top: 2.3rem; left: 0;
    font-size: 1.7rem;
}
.contact .row form .inputbox input:focus~label,
.contact .row form .inputbox textarea:focus~label,
.contact .row form .inputbox input:valid~label,
.contact .row form .inputbox textarea:valid~label{
    top: 0.1rem;
    font-size: 1.5rem;
    color: #666;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    /* background: greenyellow; */
    padding-left: 1rem;
 }
 .footer .box-container .box{
    flex: 1 1 25rem;  
}
 .footer .box-container .box h3{
    color: #333;
    font-size: 2.5rem;
    padding: 1rem 0;
}
.footer .box-container .box p{
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
    text-align: center;
}
 .footer .box-container .box  a{
    display: block;
    color: #333;
    font-size: 1.5rem;
    padding: 1rem 0;
}
.footer .box-container .box  a:hover{
    text-decoration: underline;
    color: var(--green);
}
.footer .credit{
    font-size: 2rem;
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-top: .1rem solid rgba(0,0,0,.1);
    text-align: center;
    font-weight: normal;

}
.footer .credit span{
    color: rgb(181, 21, 4);
}























body{
    height: 200rem;
}


@media(max-width: 1200px){
    html{
        font-size: 55.5%;
      
    }

}

@media(max-width: 991px){
    .header-1,
    .header-2,.header-3{
        padding: 2rem;
    }

}

@media(max-width: 768px){
    #menu-bar{
    display: initial;
}
    .header-3 .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #eee;
        padding: 1rem 2rem;
        border-top: .1rem solid rgba(0,0,0,.3);
        clip-path: polygon(0 0,100% 0,100% 0 ,0 0);
        
    }
    .header-3 .navbar.active{
        clip-path:  polygon(0 0 ,100% 0,100% 100%,0% 100%);
    }
    .header-3 .navbar a{
        display: block;
        margin: 1.5rem 0;
        padding: 1.5rem;
        border-radius: .5rem;
        background: #fff;
        border: 0.1rem solid rgba(0,0,0,.3);
        text-align: center;
        
    }
    .header-2{
        flex-flow: column;

    }
    .header-2 .search-bar-container{
        width: 100%;
        margin-top: 2rem;
    }

}

@media(max-width: 450px){
    html{
        font-size: 50%;
      
    }
    .header-1{
        display: none;
    }
}
































