@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}
button.normal{
  font-size: 16px;
  font-weight: 700;
  padding: 17px 30px ;
  color: #000;
  background-color: #fff;
  border-radius: 20px;
  border: none;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.button1{
  background-color: #088178;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 30px ;
  color: white;
  border-radius: 4px;
  border: none;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.section-p1 {
  padding: 40px 80px;
 
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}
/* +++++++++++++++++++++++++++Header++++++++++++++++++++++++++++++ */
.header{
  display: flex;
  padding: 20px 80px;
  background: #e3e6f3;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar{
  display: flex;
  align-items: center;
  justify-content: center; 

}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}
li a{
  color: rgb(58, 57, 57);
}
li a:hover{
  color: #088178;
}
#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
 
  transition: 0.3s ease ;
}
.active{
  color: #088178;
}
.active::after{
  content: "";
  width: 30%;
  height: 2px;
  background-color: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;

}

li a:hover::after,
li a.active::after{
  content: "";
  width: 30%;
  height: 2px;
  background-color: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}
/* hero++++++++++++++++++++++++++++++++++++++++++++++++++ */
.hero{
  background-image:url("img/hero4.png");
  background-position: top  25% right 0;
  /* object-fit: cover; */
  background-size: cover;
  padding: 0 80px;
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;

}

.hero h4 {
  padding-bottom: 15px;
  color: #465b52;
}

.hero h1{
  color: #088178;
}
.hero button{
  width: 200px;
  height: 70px;
  background:#000;
  color: #ffffff ;
  border-radius: 20px 40px 20px 40px;
  padding-top: 24px;;
  padding-bottom: 24px;
 margin-top: 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
}
/* feature box +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.fe-box{
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0);
  border: 1px solid #cce7d0;
  margin: 15px 0;
  border-radius: 5px;
  

 
}


.febox img{
  width: 100%;
  margin-bottom: 10px;
}
.fe-box:hover{
 
  box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.05);
}

.fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}
.fe-box:nth-child(2) h6{
  background-color: #d1e8f2;
}
.fe-box:nth-child(3) h6{
  background-color: #cdd4f8;
}
.fe-box:nth-child(4) h6{
  background-color: #f6dbf6;
}
.fe-box:nth-child(5) h6{
  background-color: #f0dcc9;
}
.fe-box:nth-child(6) h6{
  background-color: #cdebbc;
}
/* product++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#product1{
text-align: center;
}
.pro-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;

}
#product1 .pro{
  position: relative;
  width: 23%;
  min-width: 250px;
  padding: 10px 12px ;
  border: 1px solid #cce7d0;
  line-height: 1.5;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.3s ease;
}
#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.07);
}
#product1 .pro img{
  width: 100%;
  border-radius: 20px;
  height: auto;
}

#product1 .pro .des{
text-align: start;
padding: 10px 0;
}
#product1 .pro .des span
{
 color: #060606;
 font-size: 12px
}
#product1 .pro .des h5{
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
.star{
  text-align: start;
}
.fa-star{
  font-size: 14px;
  color: rgb(243, 181,25 );
}

.star h4{
  padding-top: 7px;
  font-size: 15px;
  color: #088178;
  font-weight: 700;
  padding-bottom: 5px;
}

.fa-shopping-cart{
 
  color: #000;
  width: 40px;
  height: 40px;
  background: #e8f6ea;
  line-height: 40px;
  border-radius: 50px;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  
}

/* ================================================================= */

#banner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 3;
  background-image: url(img/banner/b2.jpg);
  width: 100%;
  height: 40vh;
  background-position: center;
  background-size: cover;
  
}
#banner h4{
  color: white;
 
}
#banner h2{
  color:white ;
 
}

#banner button:hover{
  background-color: #088178;
  color:white ;
}

/* bannerbox */

#sm-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

#sm-banner .banner-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 3;
  padding-left: 30px;
  background-image: url(img/banner/b17.jpg);
  min-width: 580px;
  height: 50vh;
  background-position: center;
  background-size: cover;
}
#sm-banner h4 {
  color: white;
  font-size: 20px;
  font-weight: 400;
}
#sm-banner h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span{
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 15px;
}

button.white{
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px ;
  color: #000;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid white ;
  transition: 0.3s ease;
  cursor: pointer;
}
button.white:hover{
  background-color: #088178;
  color: #cce7d0;
  border: #088178;
  padding: 15px 23px
}
#sm-banner .banner-box2{
  background-image: url("img/banner/b10.jpg");
}

/* text bannner */
#text-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

}
#text-banner .banner-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 3;
  padding-left: 30px;
  background-image: url(img/banner/b7.jpg);
  min-width: 30%;
  height: 30vh;
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
}
#text-banner h2{
  color: white;
  font-weight: 900;
  font-size: 22px;
}
#text-banner h3{
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}
#text-banner .banner-box2{
  background-image: url("img/banner/b4.jpg");
}
#text-banner .banner-box3{
  background-image: url("img/banner/b18.jpg");
}

/* newsletter */
.newsletters{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-image: url('img/banner/b14.png');
  background-repeat: no-repeat;
  background-position:20% 30% ;
  background-color: #041e42;

}
.newsletters h4{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.newsletters p{
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}
.newsletters input
{
  /* height: 3.125rem;
  padding: 0 1.25; */
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
}


.newsletters form{
  display: flex;
  width: 40%;
  
  
}
.newsletters button{
background-color: #088178;
color: white;
padding: 15px 30px;
border-radius: 5px;

}

/* <!-- footer block  --> */
footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between ;
}
footer .col {
  width: 250px;
  display: flex;
  flex-direction: column;
align-items: flex-start;
margin-bottom: 20px;
}
footer .logo{
  margin-bottom: 30px;

}
footer h4{
  font-size: 14px;
  padding-bottom: 20px;
}
footer p{
  font-size: 13px;
  margin: 0 0 8px 0;
}
footer a{
  text-decoration:none ;
  font-size: 13px;
  color: #222;
  margin-bottom: 10px;
}

footer .Follow i{
color: #465b52;
padding-right: 4px;
cursor: pointer;
}
footer .Follow i:hover{
  color: #088178;
}
footer .install .row img{
  border: 1px solid #088178 ;
  border-radius: 6px;
  cursor: pointer;

}
footer a:hover, footer .Follow i :hover{
  color: #088178;
}
.copyright{
width: 100%;
text-align: center;
}

/* start media querry */

#mobile{
  display: none;
 align-items: center;
}
#close{
  display: none;
}
#navbar.active1{
  right: 0;
}
@media screen and (max-width:799px) {
  .section-p1{
    padding: 40px 40px;
  }
  #navbar {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    width: 300px;
    right: -300px;
    height: 100vh;
    background-color:#e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0,0.1);
    transition: 0.5s ease-out;
    padding: 80px 0 0 10px;
}

#navbar li{
  margin-bottom: 25px;
}
#mobile{
  display: flex;
 align-items: center;
}
#mobile i{
  color: #000;
  margin-right: 24px;
}
#mobile i:hover{
   color: #088178;
}

#close{
  position: absolute;
  color: #222;
  top: 30px;
  left: 30px;
  font-size: 22px;
  display: initial ;
}

#lg-bag{
  display: none;
}
.hero {
height: 70vh;
padding: 0 80px;
background-position: top 30% right 30%;
/* background-position:  center; */
}
#feature{
  justify-content: center;
}
.fe-box{
  margin: 15px 15px;
}

.pro-container {
  justify-content: center;
  gap: 10px 40px;
}

#banner{
  height: 26vh;
}
#banner h4{
  font-size: 15px;
  margin-top: 10px;
}
#banner h2 {
  font-size: 34px;
  margin-top: 10px;
  text-align: center;
}
#banner button{
  margin-bottom: 15px;
  padding: 12px 20px ;
}

#sm-banner {
  gap: 20px;
}
#sm-banner .banner-box {
 min-width: 100%;
 height: 40vh;

}

.banner-box{
  width: 28%;
}

}
/* for mobile  */
@media screen and (max-width:477px) {
  
  .section-p1{
    padding: 20px;
  }
  .header { 
    padding: 10px 30px;  
}
h2{
  font-size: 32px;
}
h1{
  font-size: 38px;
}

.hero{
  padding: 0 20px;
  background-position: 57%;
}
#feature{
  justify-content: space-between;
}
.fe-box{
  width: 156px;
  overflow: hidden; 
}

#product1 .pro{
min-width: 100%;
width: 150px;

}
.newsletters p {
  line-height: 2;}

  #banner{
    height: 40vh;
  }

  #sm-banner .banner-box{
    height: 40vh;
  }
  .banner-box {
   width: 100%;
}
footer p{
  text-align: left;
}
}
