* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: Arial, sans-serif;
  width: 100%;
}
.section-p1 {
  padding: 40px 80px;
}
h1 {
  color: black;
  line-height: 64px;
  font-size: 48px;
}
h2 {
  color: black;
  line-height: 54px;
  font-size: 48px;
}
h4 {
  color: black;
  font-size: 20px;
}
h6 {
  color: black;
  font-size: 12px;
  font-weight: 700;
}
/*HEADER*/
#header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #e3d9d1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  position: sticky;
  top: 0;
  left: 0;
}
#navbar {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
#navbar li {
  list-style: none;
  padding: 0 20px;
}
#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}
#navbar li a:hover {
  color: chocolate;
}

/*Home Page*/
#home {
  background-image: url(images/images1.jpeg);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 20% right 0;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#home h4 {
  padding-bottom: 15px;
}
#home h1 {
  color: rgb(114, 50, 3);
}
#home button {
  /*background-image: url(Shop.jpg);*/
  background-color: rgb(214, 187, 187);
  color: rgb(0, 0, 0);
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feature .fe-box {
  width: 180px;
  height: 200px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}
#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6 px 8px;
  line-height: 1;
  border-radius: 4px;
  background-color: #fddde4;
}
#product1 {
  text-align: center;
}
#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  position: relative;
}
#product1 .pro:hover {
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}
#product1 .pro img {
  width: 100%;
  height: 70%;
  border-radius: 20px;
}
#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}
#product1 .pro .des .span {
  color: #606063;
  font-size: 12px;
}
#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}
#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: rgb(3, 57, 90);
}
#product1 .pro .cart {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 40px;
  background-color: #e8f6e8;
  font-weight: 500;
  color: #088178;
  background-color: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}
#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;

  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #330428;
}
#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #a0819b;
}
#newsletter .form {
  display: flex;
  width: 40%;
}
#newsletter p span {
  color: rgb(224, 224, 110);
}
#newsletter input {
  height: 2.5rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#newsletter button {
  background-color: #c32daa;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 20%;
}
