
/* Header Start */

#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #E3E6F3;
  box-shadow:  0 5px 15px rgba(0, 0, 0, 0.6);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#header h3{
  font-size: 25px;
}

#header a{
  text-decoration: none;
  color: black;
}

#navbar{
  display:flex;
  align-items: center;
  justify-content: center;
}

#navbar li{
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;

}

#navbar li a img{
  width: 40px;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after, 
#navbar li a:hover::after{
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position:absolute;
  bottom: -4px;
  left: 20px;
}

#mobile{
  display: none;
  align-items: center;
}

#close{
  display: none;
}

/* Home Page */


#hero{
  background-image: url("img/der8.png");
  height: 90vh;
  width: 100%;
  background-position: top 25% right 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

}

#hero h4{
  padding-bottom: 15px;
}

#hero h1{
  color: #088178;
}

#hero button{
  background-image: url("img/button.png");
  background-color: transparent;
  color: #088178;
  border: none;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}


/* Products */

#product1{
  text-align: center;
}

#product1 .pro-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#product1 .pro{
  width: 21%;
  min-width: 250px;
  height: 320px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 25px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro a{
  text-decoration: none;
  background-color: black;
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
  position: absolute;
  bottom: 30px;
  right: 130px;
  cursor: pointer;
}

#product1 .pro a:hover{
  background-color: white;
  color: black;
  box-shadow: 0px 13px 20px rgba(0, 0, 0, 0.5);
}

#product1 .pro #icon{
  background-color: #e5e0e7;
  border-radius: 50px;
  padding: 10px;
  width: 70px;
  height: 70px;
  position: absolute;
  right: 165px;
  top: -35px;
}

#product1 .pro #icon img{
  width: 100%;
}

#product1 .pro h4{
  margin-top: 55px;
  margin-bottom: 15px;
  text-align: center;
}

#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}


#product1 .pro {
  color: #606063;
  font-size: 12px;
}

#product1 .pro p{
  color: #606063;
}



/* goals */

#goal{
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h2{
  position: relative;
  margin-bottom: 80px;
}



.review-box{
  width: 90%;
  max-width: 900px;
  height: 650px;
  border-radius: 10px;
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.card{
  height: 650px;
  padding: 40px 40px 40px 20px;
  color: #777;
  line-height: 22px;
  box-sizing: border-box;
  background: #fff;
  position: relative;

}

.card p{
  color: #777;
}

.profile{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.profile img{
  width: 100%;
  margin-bottom: 30px;
  border-radius: 30px;
}

.profile h3{
  font-size: 26px;
  color: black;
  margin-bottom: 8px;
}

#slide{
  width: 100%;
  padding-right: 60px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.sidebar{
  width: 80px;
  height: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  background: #e1e1e1;
  position:absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sidebar img{
  width: 50px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  margin: 20px 0;
}





/* footer */

footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.3);
}

footer .col{
  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;
  color: black;
}

footer a{
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow{
  margin-top: 20px;

}

footer .follow i{
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img{
  border: 1px solid #088178;
  border-radius: 6px;
}

footer .install img{
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
  color: #088178;
}

footer .copyright{
  width: 100%;
  text-align: center;
}






@media (max-width: 600px){

  #icon{
    position: absolute;
    right: 120px;
    top: -40px;
  }


  #product1 .pro{
    width: 400px;
    height: 320px;
    
  }

}

@media (max-width: 1200px){

  #product1 .pro-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }


  #icon{
    position: absolute;
    right: 160px;
    top: -40px;
  }


  #product1 .pro{
    width: 400px;
    height: 320px;
    
  }
  
}

@media (max-width: 799px){
  #navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #E3E6F3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active{
    right: 0px;
  }

  #navbar li{
    margin-bottom: 25px;
  }

  #mobile{
    display: flex;
    align-items: center;
  }

  #mobile i{
    color: #1a1a1a;
    font-size: 24px;
  }

  #close{
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 50%;
  }

  #hero h1 {
    font-size: 28px;
  }

}




@media(max-width: 477px){
  #about-head{
    width: 100%;
    flex-direction: column;
  }

  #about-head img{
    width: 100%;
    margin-bottom: 20px;
  }

  #about-head div{
    padding-left: 0px;
  }
}








/* slider */

