
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
body{
    font-family: "Lato", sans-serif !important;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    max-width: 1170px;
    width: 100%;
}

  /* ************************ start of top navbar******************** */
.top-nav{
    background-color: #f4f4f4;
}
.top-nav .top-nav-container{
    width: 100%;
    padding:10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    font-size: 14px;

}

.top-nav .top-nav-container .top-nav-part2 ul li{
    display: inline-block;
    margin: 5px;
    position: relative;
    cursor: pointer;
}
.top-nav .top-nav-container .top-nav-part2 ul li ul{
    position: absolute;
    margin-top: 50px;
    /* opacity: 0; */
    display: none;
    transition: all .5s ease;
    background-color: white;
    border-radius: 2px;
    z-index: 2;
    padding: 0px;

}
.top-nav .top-nav-container .top-nav-part2 ul li ul li{
    width:50px;
}

.top-nav .top-nav-container .top-nav-part2 ul li:hover ul{
    margin-top: 0px;
    display: block;
}



.top-nav .top-nav-container .top-nav-part2 ul li ul li{

}

@media screen  and (max-width:991px) {
    .top-nav{
      display:none;
    } 
}
 /* ************************ end of top navbar******************** */




  /* ************************ start of navbar******************** */
.navbar{
    background-color: #f4f4f4;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    -moz-box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    border-bottom: 1px solid #efefef;
}
.navbar .nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px;

}
.navbar .nav .logo img{
    height: 60px;
}
.navbar .nav .nav-menu ul li{
    display: inline-block;
    margin-right: 15px;
    position: relative;
}
.navbar .nav .nav-menu ul li ul{
    position: absolute;

    margin-top: 50px;
    display: none;
    transition: all .5s ease;
    background-color: white;
    border-radius: 2px;


}
.navbar .nav .nav-menu ul li ul li{
    padding: 5px;
    width: 100%;
    /* border-bottom: 1px groove grey; */
    text-align: center;
    min-width: 150px;
}
.navbar .nav .nav-menu ul li ul li:last-child{
    border-bottom: none;
}
.navbar .nav .nav-menu ul li:hover ul{
    margin-top: 0px;
    display: block;
}
.navbar .nav .nav-menu ul li a{
    text-decoration: none;
    color:#222222;
    transition: all .4s ease;
    font-size: 17px;
}
.navbar .nav .nav-menu ul li a:hover{
    color: #c29958;
}
.navbar .nav .nav-menu ul li a.active{
    color: #c29958;

}
.navbar .nav .nav-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .nav .nav-search .search{
    position: relative;
    margin-right: 30px;
    z-index: 1;
}
.navbar .nav .nav-search .search i{
    position: absolute;
    left:10px;
    top: 50%;
    transform:translateY(-50%);
}

.navbar .nav .nav-search input[type='search']{
    height: 40px;
    border-radius:20px;
    border: none;
    outline: none;
    padding-left: 35px;
}
.navbar .nav .nav-search .nav-icons i{
    font-size: 20px;
    padding: 5px;
}

@media screen and (max-width:1200px) {
    .navbar .nav .nav-search .search{
        display: none;
    } 
}
@media screen and (max-width:991px) {
    .navbar{
        display: none;
    } 
    
}
 /* ************************ end of navbar******************** */



  /* ************************ start of mobile navbar******************** */
  .mob-navbar{
    display: none;
    background-color: #f4f4f4;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    -moz-box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    box-shadow: 0px 0px 2px 0px rgba(138,131,138,1);
    border-bottom: 1px solid #efefef;
}
    .mob-navbar .nav{
        width: 100%;
        display:flex ;
        justify-content:space-between;
        align-items: center;
        padding: 15px;
    }
    .mob-navbar .nav .logo img{
        height: 60px;
    }
    .mob-navbar .nav .toggle-bar i{
        font-size: 25px;
    }
    .mob-navbar .res-menu{
        display: none;
    }
    .mob-navbar .res-menu ul{
        padding: 0px 20px;
        list-style: none
    }
    .mob-navbar .res-menu ul li{
        padding:10px 0px;
        border-bottom: 1px groove grey;
        position: relative;
        padding-bottom: 0px;
    }
    .mob-navbar .res-menu ul li:hover{
        background-color: #c29958;
        color: white;
    }
    .mob-navbar .res-menu ul li a{
        text-decoration: none;
        color: black;
    }
    .mob-navbar .res-menu ul li i{
        position: absolute;
        right:5px;
        top:50%;
        transform: translateY(-50%);
    }
    .mob-navbar .res-menu ul li:last-child{
        border-bottom: none;
    }
    .mob-navbar .res-menu ul li ul{
        background-color:#f4f4f4;
        color: #c29958;
        display: none;
    }
    .mob-navbar .res-menu ul li:hover ul{
        display: block;
    }
    @media screen and (max-width:991px) {
        .mob-navbar{
            display: block;
        }
    }
    @media screen and (max-width:480px) {
        .mob-navbar .nav .logo img{
            height: 50px;
        } 
    }
    @media screen and (max-width:350px) {
        .mob-navbar .nav .logo img{
            height: 40px;
        } 
    }
   /* ************************End of mobile navbar******************** */






   /* ************************start of banner******************** */
   .banner{
    width: 100%;
    height: 450px;
    background-image: url(../image/banner.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .banner .container{
    /* width: 100%; */
    height: 100%;
    /* padding: 0px 135px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
   }
   .banner .container h2{
    color: #222222;
    font-size: 60px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 30px;
   }
   .banner .container p{
    color: #222222;
    font-size: 20px;
    margin-bottom: 38px;

   }
   .banner .container button{
    color: #ffffff;
    background-color: #c29958;
    font-size: 15px;
    padding: 14px 30px;
    border-radius:50px;
    border: none;
    outline: none;
    transition: all .5s ease;
   }
   .banner .container button:hover{
    background-color: #222222;
   }
   
   @media screen and (max-width:1200px) {
    .banner{
        background-image: url(../image/banner1200.png);
    }
    .banner .container{
        padding: 0px 60px;
    }
   }
   @media screen and (max-width:1024px) {
    .banner{
        height: 350px;
        background-image: url(../image/banner1024.png);

    }
    .banner .container h2{
        font-size: 55px;
    }
   }
   @media screen and (max-width:991px) {
    .banner{
        height: 350px;
    }
    .banner .container{
        padding: 0px 60px;

    }
    .banner .container h2{
        font-size: 50px;
    }
   }
   @media screen and (max-width:767px) {
    .banner{
        height: 300px;
        background-image: url(../image/banner767.png);
        background-position: right;
    }
    .banner .container{
        padding: 0px 40px;

    }
    .banner .container h2{
        font-size:40px;
        margin-bottom: 20px;
    }
    .banner .container p{
        font-size:18px;
        margin-bottom: 25px;
    }
   }
   @media screen and (max-width:575px) {
    .banner{
        height: 250px;
        background-image: url(../image/banner575.png);

    }
    .banner .container{
        padding: 0px 15px;

    }
    .banner .container h2{
        font-size:35px;
        margin-bottom: 15px;
    }
    .banner .container p{
        font-size:16px;
        margin-bottom: 20px;
    }
    .banner .container button{
        padding: 8px 17px;
    }
    
   }

   @media screen and (max-width:480px) {
    .banner{
        height: 220px;
        background: linear-gradient(rgba(194, 153, 88,0.2),rgba(194, 153, 88,0.6)),url(../image/banner.png) right;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .banner .container{
        align-items:center;
        text-align: center;
    }
    .banner .container h2{
        font-size:30px;
        margin-bottom: 12px;
    
    }
    .banner .container p{
        font-size:15px;
        margin-bottom: 15px;
    }
   }
   @media screen and (max-width:350px) {
    .banner{
        height: 180px;
    }
    .banner .container h2{
        font-size:25px;
        margin-bottom: 10px;
        
    }
    .banner .container p{
        font-size:14px;
        margin-bottom: 15px;
    }
    .banner .container button{
        padding: 5px 11px;
        font-size:13px ;
    }
   }
   /* ************************End  of banner********************1px solid #efefef */





    /* ************************Start of about us******************** */
   .about{
    height: 200px;
    padding:60px 0px;
    border-bottom: 1px solid #efefef;
   }
   .about .container{
    height: 100%;
   
    display: flex;
    justify-content: space-between;
    align-items: center;
   }
   .about .container .about-blocks{
    width: 20%;
    display: flex;
    align-items: flex-start;
   }
   .about .container .about-blocks .about-icon{

   }
   .about .container .about-blocks .about-icon i{
    font-size: 30px;
    color:#c29958;
   }
   .about .container .about-blocks .about-details{
    padding-left: 15px;
   }
   .about .container .about-blocks .about-details h6{
    font-size: 16px;
    color: #222222;
    line-height: 1.2;
    font-weight: 700;
   }
   .about .container .about-blocks .about-details p{
    font-size: 14px;
    color: #777777;
    padding-top: 9px;
   }

   @media screen and (max-width:1200px) {
    .about .container{
        padding: 0px 60px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

    }
    .about .container .about-blocks{
        width: 50%;
        justify-content: center;
       }
   }
   @media screen and (max-width:575px) {
    .about{
        padding: 40px 0px 0px 0px;
        height: auto;
       
    }
    .about .container{
        /* padding: 0px 60px; */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    .about .container .about-blocks{
        width: 100%;
        justify-content: center;
        padding:30px 0px;
       }
    
   }
    /* ************************End of about us******************** */


  

    

    /* ************************start of our product******************** */
.section-title {
    margin-top: -7px;
    margin-bottom: 30px;
    text-align: center;
}
.section-title .title{
    text-transform: capitalize;
    font-size: 30px;
    line-height: 1.2;
    background: linear-gradient(90deg, #c29958, #000, #c29958);
    background-repeat: no-repeat;
    background-size: 90%;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color:rgba(255, 255, 255, 0);

}
.section-title .sub-title{
    font-size: 16px;
    color: #222222;
}
@media screen and (max-width:767px) {
    .section-title {
        margin-bottom:15px;
    }
    .section-title .title{
        font-size: 25px;
    }
    .section-title .sub-title{
        font-size: 13px;
    }
}
@media screen and (max-width:575px) {
    .section-title .title{
        font-size: 20px;
    }
    .section-title .sub-title{
        font-size: 11px;
    }
}


@keyframes shine{
    0% {
        background-position: -500%;
    }
    
    100% {
        background-position: 100%;
    }
}




.products{
    padding: 50px 0px;
}
.products .product-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products .product-container .product{
    width:23.5%;
    display: flex;
    flex-direction: column;
    padding: 15px 0px;
}
.products .product-container .product .product-image{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.products .product-container .product .product-image .price-img{
    width: 100%;
}
.products .product-container .product .product-image .sec-img{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .5s ease;
    opacity: 0;

}
.products .product-container .product .product-image .tag{
    width: 40px;
    height: 18px;
    border-radius: 10px;
    position: absolute;
    z-index: 3;
    top: 5%;
    left: 5%;
    background-color: #c29958;
    color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products .product-container .product .product-image .discount{
    width: 40px;
    height: 18px;
    border-radius: 10px;
    position: absolute;
    top: 13.5%;
    left: 5%;
    z-index: 3;
    background-color:#222222;
    color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products .product-container .product .product-image .hover-button{
    position: absolute;
    z-index: 3;
    bottom: -100%;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 40px;
    background-color:#ffffff;
    color: #222222;
    border-radius: 50px;
    border: none;
    outline: none;
    transition: all .5s ease;
}
.products .product-container .product .product-image .hover-button:hover{
    background-color: #c29958;
    color:#ffffff;
}


.products .product-container .product .product-image:hover .sec-img{
    opacity: 1;
}

.products .product-container .product .product-image:hover .hover-button{
    bottom: 6%;
}

.products .product-container .product .product-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.products .product-container .product .product-details p{
    font-size: 14px;
    line-height: 1;
    color: #777777;
    text-transform: capitalize;
    text-align: center;
    margin: 3px 0px 2px 0px;
}

.products .product-container .product .product-details .colors{
    width: 25%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 8px 0px;
   
}
.products .product-container .product .product-details .colors .colorball{
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.products .product-container .product .product-details .colors  .color1{
    background-color: rgb(176, 196, 222);
}
.products .product-container .product .product-details .colors  .color2{
    background-color: rgb(170, 158, 120);
}
.products .product-container .product .product-details .colors .color3{
   background-color: rgb(128, 128, 128);
}
.products .product-container .product .product-details .colors  .color4{
    background-color: rgb(150, 75, 0);
}
.products .product-container .product .product-details h6{
    color: #c29958;
    line-height: 1.2;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400px;
}
.products .product-container .product .product-details .price .price-regular{
    color: #c29958;
    padding-right: 6px;
}
.products .product-container .product .product-details .price .price-old{
  color: #777777;
  text-decoration: line-through;  
}
@media screen and (max-width:1200px) {
    .products .container{
        padding: 0px 15px;
        flex-wrap: wrap;
    }

   }
   @media screen and (max-width:1024px) {
    .products .product-container .product .product-image .discount{
        top:16%;
    }

   } 
   
   @media screen and (max-width:991px) {
    .products .product-container{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content:center;

    }
    .products .product-container .product{
        width:35%;
        padding: 30px;

    }

   }  

   @media screen and (max-width:767px) {
    .products{
        padding: 40px 0px;
    }
    .products .product-container .product{
        width:51%;

    }
    .products .product-container .product .product-image .discount{
        top:14.5%;
    }

   } 
   @media screen and (max-width:575px) {
    .products .product-container .product{
        width:60%;

    }

   } 

   @media screen and (max-width:480px) {
    .products .product-container .product{
        width:80%;

    }
    .products .product-container .product .product-image .discount{
        top:15.5%;
    }
    .products .product-container .product .product-details .colors{
        padding:0px;
       
    }
    .products .product-container .product .product-details h6{
        margin-bottom:0px;
    }

   } 
   @media screen and (max-width:350px) {
    .products .product-container .product{
        width:90%;

    }
    .products .product-container .product .product-image .discount{
        top:16%;
    }

   } 
/* ************************end of our product******************** */





/* ************************Start of banner statics******************** */
.banner-statics .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.banner-statics .banner-statics-parts{
    width: 49%;
    position: relative;
    padding-bottom:10px;
}
.banner-statics .banner-statics-parts img{
    width:100%;
    transition: all 0.4s ease;
}
.banner-statics .banner-statics-parts img:hover{
    filter: brightness(130%);
}
.banner-statics .banner-statics-parts .banner-statics-parts-content{
    position: absolute;
    top: 15%;
    right: 5%;
}
.banner-statics .banner-statics-parts .banner-statics-parts-content h5{
    font-size: 15px;
    line-height: 1.1;
    padding-bottom: 15px;
    color: #777777;
    text-transform: uppercase;
}
.banner-statics .banner-statics-parts .banner-statics-parts-content h2{
    padding-bottom: 34px;
    color:#222222 ;
    line-height: 1.2;
}
.banner-statics .banner-statics-parts .banner-statics-parts-content a{
    color: #222222;
    line-height: 1;
    font-size: 16px;
    pointer-events: visible;
    text-transform: capitalize;
    font-weight: 400;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px groove #222222;
    transition: all 0.5 ease;
}
.banner-statics .banner-statics-parts .banner-statics-parts-content a:hover{
    color: #c29958;
    border-color: #c29958;
}
@media screen and (max-width:991px){
    .banner-statics .banner-statics-parts .banner-statics-parts-content h2{
        line-height: 1;
        padding-bottom: 15px;
    } 
}
@media screen and (max-width:767px) {
    .banner-statics .banner-statics-parts .banner-statics-parts-content{
        top: 10%;
        right: 5%;
    }

    .banner-statics .container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner-statics .banner-statics-parts{
        width: 65%;
        padding: 5px 0px;
    }
}
@media screen and (max-width:575px) {
    .banner-statics .banner-statics-parts .banner-statics-parts-content{
        top:15%;
        right: 5%;
    }

.banner-statics .banner-statics-parts .banner-statics-parts-content h2{
    font-size: 16px;
    color:#222222 ;
    line-height: 1.2;
    padding-bottom: 9px;
}
.banner-statics .banner-statics-parts .banner-statics-parts-content a{
    padding-bottom: 1px;
    font-size: 9px;
}
}
@media screen and (max-width:480px) {
    .banner-statics .banner-statics-parts{
        width: 80%;
    }
    
    .banner-statics .banner-statics-parts .banner-statics-parts-content h5{
        padding-bottom: 0px;
        margin-bottom: 6px;
    }
    .banner-statics .banner-statics-parts .banner-statics-parts-content h2{
        padding-bottom: 0px;
        margin-bottom: 2px;
        line-height: 1;
    }
    .banner-statics .banner-statics-parts .banner-statics-parts-content a{
        font-size: 9px;
        padding-bottom: 1px;
    }
    
} 
@media screen and (max-width:350px) {
    .banner-statics .banner-statics-parts .banner-statics-parts-content{
        top:20%;
        right: 5%;
    }
    .banner-statics .banner-statics-parts .banner-statics-parts-content h5{
        font-size: 9px;
        padding-bottom: 5px;
    }
    .banner-statics .banner-statics-parts .banner-statics-parts-content h2{
        font-size: 12px;
        padding-bottom: 5px;
    }
    .banner-statics .banner-statics-parts .banner-statics-parts-content a{
        font-size: 8px;
        padding-bottom: 1px;
    }
}
/* ************************End of banner statics******************** */




/* ************************Start of testimonials******************** */
.testimonials{
    padding: 40px 0px;
    background-color: #f5f5f5;
}
.testimonials .container{
    text-align: center;
    
}
.testimonials .container .testi-img-container{
    display: flex;
    justify-content:center;
    align-items: center;
}
.testimonials .testi-img-container .testi-img1{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right:10px;
    background: url(../image/testi1.png);
    background-size: cover;
    background-repeat: no-repeat;
    
}
.testimonials .testi-img-container .testi-img2{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: url(../image/testi2.png);
    background-size: cover;
    background-repeat: no-repeat;
    
}
.testimonials .testi-img-container .testi-img3{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
    background: url(../image/testi3.png);
    background-size: cover;
    background-repeat: no-repeat;
    
}
.testimonials .container>p{
    font-size: 15px;
    color: #555555;
    text-align: center;
    margin:30px auto;
    padding: 0px 100px;

}
.testimonials .container .icons{
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials .container .icons i{
    margin-right: 2px;
    color: #f9bd22;
}
.testimonials .container h5{
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    color: #222222;
    margin-top: 5px;
}
@media screen and (max-width:480px) {
    .testimonials .container>p{
        font-size: 11px;
        padding: 0px 40px;
    }
    .testimonials .container h5{
        font-size: 13px;
    }
    .testimonials .container .icons i{
        font-size: 11px;
    }
    .testimonials .testi-img-container .testi-img1{
        height: 60px;
        width: 60px;
        
    }
    .testimonials .testi-img-container .testi-img2{
        height: 80px;
        width: 80px;
        
    }
    .testimonials .testi-img-container .testi-img3{
        height: 60px;
        width: 60px;
        
    }
}
/* ************************End of testimonials******************** */




/* ************************Start of Group product********************  */
.group-product{
    padding: 50px 0px; 
}
.group-product .container{
    display: flex;
}
.group-product .group-product-part1{
    width: 50%;
    position: relative;
    transition: all 0.4s ease;
}
.group-product .group-product-part1:hover{
    filter: brightness(115%);
}
.group-product .group-product-part1 img{
    width: 100%;
}
.group-product .group-product-part1 .group-product1-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
}
.group-product .group-product-part1 .group-product1-content h6{
    font-size: 15px;
    line-height: 1.1;
    padding-bottom: 15px;
    color: #777777;
    text-transform: uppercase;
}
.group-product .group-product-part1 .group-product1-content h2{
    color: #222222;
    font-weight: 700;
    line-height: 1.2;
    font-size: 30px;
    padding-bottom: 34px;
}
.group-product .group-product-part1 .group-product1-content a{
    font-size: 16px;
    pointer-events: visible;
    text-transform: capitalize;
    color: #222222;
    line-height: 1;
    transition: all 0.4s ease;
    text-decoration: none;
    border-bottom: 1px groove black;
    padding-bottom: 2px;
}
.group-product .group-product-part1 .group-product1-content a:hover{
    color: #c29958;
    border-color: #c29958;
}
.group-product .group-product-part2{
    width: 50%;
    display: flex;
}
.group-product .group-product-part2 .group-product-content{
    width: 50%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}
.group-product .group-product-part2 .group-product-content .group-product-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.group-product .group-product-part2 .group-product-content .group-product-title h4{
    font-size: 20px;
    font-weight: 700;
    color: #222222;
}
.group-product .group-product-part2 .group-product-content .group-product-title .group-icons{
    width: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.group-product .group-product-part2 .group-product-content .group-product-item{
    display: flex;
    padding-bottom: 20px;
}

.group-product .group-product-part2 .group-product-content .group-product-item .item-image{
    width: 30%;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-image img{
    width: 100%;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content{
    width: 70%;
    padding-left: 15px;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content h5{
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 18px;
    color: #222222;
    transition: all 0.4s ease;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content h5:hover{
    text-decoration: underline;
    color: #c29958;
    cursor: pointer;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content .price-box{
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content .price-regular{
   color: #c29958;
   margin-right: 15px;
}
.group-product .group-product-part2 .group-product-content .group-product-item .item-content .price-old{
    color:#999999;
    margin-right: 15px;
    text-decoration:line-through;

 }

 @media screen and (max-width:1024px) {
    .group-product .group-product-part2 .group-product-content .group-product-title{
        padding-bottom:15px;
    }
    .group-product .group-product-part2 .group-product-content .group-product-item{
        padding-bottom: 10px;
    }
 }
 @media screen and (max-width:991px) {
    .group-product .container{
        flex-direction: column;
        align-items: center;
    }
    .group-product .group-product-part1{
        width: 60%;
        margin-bottom: 30px;
    }
    .group-product .group-product-part2{
        width: 60%;
    }
    .group-product .group-product-part2 .group-product-content{
        padding-left: 0px;
    }
    .group-product .group-product-part2 .group-product-content:last-child{
        padding-left: 15px;
    }

 }
 @media screen and (max-width:767px){
    .group-product .group-product-part2{
        display: flex;
        flex-direction: column;
    }
    .group-product .group-product-part2 .group-product-content{
        width: 100%;
        padding-bottom: 30px;

    }
    .group-product .group-product-part2 .group-product-content:last-child{
        padding-left: 0px;
        padding-bottom: 0px;
    }
 }
 @media screen and (max-width:575px) {
    .group-product .group-product-part1{
        width: 80%;
    }
    .group-product .group-product-part2{
        width: 80%;
    }
    .group-product .group-product-part2 .group-product-content .group-product-title .group-icons{
        width: 10%;
    }
 }
 @media screen and (max-width:480px) {
    .group-product{
        padding: 40px 0px; 
    }
    .group-product .group-product-part1{
        width: 90%;
    }
    .group-product .group-product-part2{
        width: 90%;
    }
    .group-product .group-product-part1 .group-product1-content h6{
        font-size: 10px;
        padding-bottom: 10px;
    }
    .group-product .group-product-part1 .group-product1-content h2{
        font-size: 18px;
        padding-bottom: 10px;
    }
    .group-product .group-product-part1 .group-product1-content a{
        font-size: 10px;
    }
    .group-product .group-product-part2 .group-product-content .group-product-title h4{
        font-size: 13px;
    }
    .group-product .group-product-part2 .group-product-content .group-product-item .item-content h5{
        font-size: 11px;
    }
    .group-product .group-product-part2 .group-product-content .group-product-item .item-content .price-box{
        font-size: 10px;
    }
    .group-product .group-product-part2 .group-product-content .group-product-item .item-content .price-regular{
       margin-right: 10px;
    }
}
    @media screen and (max-width:350px) {
        
    .group-product .group-product-part1{
        width: 100%;
    }
    .group-product .group-product-part2{
        width: 100%;
    }
 }
/* ************************Start of Group product********************  */






/* ************************Start of blogs********************  */
.blogs .blog .blog-image{
    overflow: hidden;
}
.blogs .blog .blog-image img{
    transition: all 0.4s ease;
}
.blogs .blog .blog-image:hover img{
    scale: 1.3;
    filter: brightness(150%);
}

.blogs .blog .blog-content p span:first-child{
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #777;
    border-right: 1px groove #777777;
    padding-right: 5px;
}
.blogs .blog .blog-content p span:last-child{
    padding-left: 5px;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #c29958;
}
.blogs .blog .blog-content h5{
    line-height: 1.3;
    text-transform: capitalize;
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    transition: all 0.4s ease;
}
.blogs .blog .blog-content h5:hover{
    color: #c29958;
}
@media screen and (max-width:767px) {
    .blogs .blog .blog-content h5{
        font-size: 15px;
    }  
    .blogs .blog .blog-content p {
        margin-bottom:8px;
    }
}
/* ************************end of blogs********************  */




/* ************************Start of clients********************  */
.clients{
    padding: 50px 0px;
}
.clients .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.clients .client{
    width: 10%;
}
.clients .client img{
    width: 100%;
}
@media screen and (max-width:767px) {
    .clients .client{
        width: 12%;
    }  
}
@media screen and (max-width:480px) {
    .clients{
        padding: 60px 0px;
    }
}
@media screen and (max-width:350px) {
    .clients{
        padding: 40px 0px;
    }
}
/* ************************End of clients********************  */





/* ************************* Start of footer ********************  */
footer{
    background-color: rgb(247, 247, 247);
    padding: 80px 0px;
}
footer  .container{

}
footer  .container .footer-part1{
    display: flex;
    flex-wrap: wrap;
}
.footer-part1-sec1 , .footer-part1-sec2 , .footer-part1-sec3 , .footer-part1-sec4{
    width: 25%;
}
footer  .footer-part1 .footer-logo img{
    height: 50px;
}
footer  .footer-part1-sec1 p{
    color: #555555;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
}
footer  h6{
    margin-bottom: 23px;
    font-size: 16px;
    color: #222222;
    font-weight: 700;
    line-height: 1.2;
}
footer  ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
footer  ul li{
    font-size: 14px;
    margin-bottom: 8px;
    color: #555555;
    font-weight: 400;
}
footer  ul li i{
    margin-right: 10px;
}
footer .info-list{
    display: grid;
    grid-template-columns: auto auto;
}
footer .icons{
    display: flex;
    align-items: center;
}
footer .icons .icon{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    background-color: white;
    color: #777777;
    transition: all .4s ease;
}
footer .icons .icon:hover{
    background-color: #c29958;
    color: #f5f5f5;
}
footer  .container .footer-part2{
    display: flex;
    padding-top: 30px;
    flex-wrap: wrap;
}
.footer-part2-sec1 , .footer-part2-sec2{
    width: 50%;
}
.footer-part2-sec1 form{
    position: relative;
    margin-top: 16px;
    width: 100%;
}
.footer-part2-sec1 .news-field{
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px 0;
    color: #777777;
    padding-right: 80px;
    background-color: transparent;
    border-bottom: 1px solid #bcbcbc;
    outline: none;
}
.footer-part2-sec1 .news-btn{
    top: 0;
    right: 10px;
    line-height: 40px;
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    color: #c29958;
    border: none;
    outline:none;
    background: transparent;
    transition: all 0.4s ease;
}
.footer-part2-sec1 .news-btn:hover{
    color: #222222;
}
.footer-part2-sec2{
    text-align: right;
}
.footer-part2-sec2 img{
    vertical-align: middle;
}
@media screen and (max-width:991px) {
    .footer-part1-sec1 , .footer-part1-sec2 , .footer-part1-sec3 , .footer-part1-sec4{
        width: 50%;
        padding: 0px 60px 20px 60px;
    } 
    .footer-part2-sec1 , .footer-part2-sec2{
        padding: 0px 60px 20px 60px;
    }
    .footer-part2-sec2 img{
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    footer{
        padding: 40px 0px;
    }
    footer  .container .footer-part1{
        justify-content: center;
        align-items: center;
    }
    .footer-part1-sec1 , .footer-part1-sec2 , .footer-part1-sec3 , .footer-part1-sec4{
        width: 90%;
        padding: 0px 60px 20px 60px;
    } 
    .footer-part2-sec1 , .footer-part2-sec2{
        width:90%;
    }
    .footer-part2-sec2{
        padding-top:15px;
    }
    footer  .container .footer-part2{
        justify-content: center;
        align-self: center;
    }
}
@media screen and (max-width:480px) {
    footer{
        padding: 20px 0px;
    }
    .footer-part1-sec1 , .footer-part1-sec2 , .footer-part1-sec3 , .footer-part1-sec4{
        width: 100%;
        padding: 0px 15px 15px 15px;
    } 
    
    .footer-part2-sec1 , .footer-part2-sec2{
        width: 100%;
        padding: 0px 15px 15px 15px;

    }
    footer  .footer-part1 .footer-logo img{
        height: 30px;
    }
    footer  h6{
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1;
    }
    .footer-part2-sec1 input::placeholder{
        font-size: 13px;
    }
}
/* *************************End of footer ********************  */
