body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  background-color: rgba(241, 236, 255, 0.836);
}

.header {
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url("pics/bg2.jpg");
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.about-background {
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url('pics/about.jpg');
  background-position: center;
  background-size: cover;
}



.logo {
  width: 70px;
  padding-left: 1rem;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
}
nav ul {
  display: flex;
}
nav ul li {
  padding-right: 4em;
  list-style: none;
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 17px;
  text-transform: uppercase;
}
nav ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
nav ul li:hover::after {
  width: 100%;
}

.home nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: unset;
}
.home nav ul {
  display: flex;
}
.home nav ul li {
  padding-right: 4em;
  list-style: none;
  display: inline-block;
}

.home nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 17px;
}

.home nav ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.home nav ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 100%;
  color: white;
  text-align: center;
}
.text-box h1 {
  font-size: 70px;
  margin-bottom: auto;
  padding-top: 13%;
}

.text-box p {
  font-size: 17px;
  margin: 10px 0 40px;
}
@media (max-width: 700px) {
  .text-box h1 {
    font-size: 25px;
  }
}

/*-- Frangrance Free*/

.free {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.free h4 {
  font-size: 40px;
  margin-bottom: 0px;
}

.free p {
  color: rgb(53, 30, 30);
  font-size: 14px;
}

.free-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.free-col {
  background-color: white;
  box-sizing: border-box;
  border-radius: 10px;
  flex-basis: 31%;
  padding: 15px 10px;
  transition: 0.5s;
}
.free h2 {
  text-align: center;
}

.free-col:hover {
  box-shadow: 30px 30px 30px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
  .free-row {
    flex-direction: column;
  }
}

/*best selling*/

.best {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.best h4 {
  font-size: 40px;
  margin-bottom: auto;
}

.best p {
  color: black;
  font-size: 14px;
}

.best-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.best-col {
  /* box-sizing: border-box; */
  flex-basis: 30%;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
.best-col img {
  width: 100%;
  height: 350px;
}

/* shop locally*/

.shop {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.shop h4 {
  font-size: 40px;
  margin-bottom: auto;
}

.shop p {
  color: rgb(53, 30, 30);
  font-size: 14px;
}

.shop-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.shop-col {
  background-color: rgb(235, 215, 250);
  box-sizing: border-box;
  border-radius: 10px;
  flex-basis: 31%;
  padding: 15px 10px;
  transition: 0.5s;
}
.shop-col image {
  width: 100%;
  border-radius: 10px;
}
.shop h3 {
  text-align: center;
}

.shop-col:hover {
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.2);
}

/* comment section*/

.yes {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
  padding-bottom: 10rem;
}
.yes h4 {
  font-size: 40px;
  margin-bottom: auto;
}

.yes p {
  color: rgb(53, 30, 30);
  font-size: 14px;
}

.yes-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.yes-col {
  background-color: rgb(235, 215, 250);
  box-sizing: border-box;
  border-radius: 10px;
  flex-basis: 45%;
  padding: 15px;
  transition: 0.5s;
  text-align: left;
  display: flex;
}
.yes-col img {
  height: 50px;
  margin-left: 5px;
  margin-right: 20px;
}
.yes h2 {
  text-align: left;
  margin-bottom: auto;
  margin-top: auto;
}

.comment p {
  padding-top: 0;
  quotes: '"' '"' "'" "'";
}

.comment p::before {
  content: open-quote;
}
.comment p::after {
  content: close-quote;
}

.yes-col:hover {
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.2);
}

/*foot*/

footer {
  width: 100%;
  display: flex;
  background-color: black;
  justify-content: space-between;
  padding: 1px;
  justify-content: center;
  display: flex;
}

footer ul li {
  display: inline-block;
  list-style: none;
  padding-right: 3em;
  align-items: center;
  color: #fff;
  font-size: 25px;
  vertical-align: middle;
}

footer ul li img {
  height: 50px;
  border-radius: 60px;
  padding-top: 10px;
}
/*tools*/

.tool {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}

.tool p {
  color: rgb(53, 30, 30);
  font-size: 14px;
}

.tool-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.tool-col {
  /* background-color: rgb(235, 215, 250); */
  box-sizing: border-box;
  border-radius: 10px;
  flex-basis: 25%;
  padding: 15px 10px;
  transition: 0.5s;
}
.tool-col img {
  width: 100%;
  border-radius: 10px;
  height: 230px;
}
.tool h3 {
  text-align: center;
}

.tool-col:hover {
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.2);
}
.picss {
  align-items: center;
}

/*list name section*/

.listname {
  padding-top: 30px;
  text-align: center;
  font-size: 60px;
  font-weight: lighter;
  



