* {
  /* border: 1px solid red; */
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  width: 100vw;
}

#hero-section {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10vh;
  /* display: none; */
}


.pq-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(70%);
  background-image: url(../images/premium-quality-hero.png);
}

.has-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(70%);
  background-image: url(../images/hygenic-and-safe-hero.png);
}

.responsible-manufacturing-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(70%);
  background-image: url(../images/rm-hero.png);
}

.hero-section-title {
  color: white;
  background-color: transparent;
  font-size: 50px;
  text-transform: uppercase;
  font-family: "Italianno", "cursive";
  letter-spacing: 5px;
  padding: 10px;
  font-weight: 400;
}

.hero-section-slogan {
  font-size: 25px;
  color: white;
  text-align: center;
  width: 50%;
  letter-spacing: 2px;
  padding: 10px;
  line-height: 130%;
  background-color: transparent;
}


.feature-desc-section {
  margin: 20px 0px;
  height: 70vh;
  width: 100vw;
  display: flex;
  gap: 10px;
}

.feature-desc-section > div {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.feature-desc-img-container > img {
  /* height: 70%; */
  width: 80%;
  border-radius: 35px;
  overflow: hidden;
}

.feature-desc-text {
  gap: 30px;
}

.feature-desc-text > h3 {
  font-size: 40px;
  width: 80%;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
  position: relative;
}

.feature-desc-text > h3::after {
  content: "";
  position: absolute;
  background-color: #d4c0a9;
  height: 7px;
  margin-top: 15px;
  width: 10%;
  left: 0;
  bottom: -2px;
  transition: all 0.7s;
}

.feature-desc-text > h3:hover::after {
  width: 100%;
}


.feature-desc-text > p {
  width: 70%;
  padding: 20px;
  font-size: 20px;
  letter-spacing: 1.5px;
  line-height: 130%;
  text-align: center;
  color: rgb(93, 93, 93);
}

li {
  width: 70%;
  font-size: 20px;
  transition: all 0.2s;
  list-style: none;
  color: rgb(93, 93, 93);
}

li:hover {
  scale: 1.05;
}

@media screen and (max-width: 600px) {
  .hero-section-title {
    text-align: center;
  }
  .hero-section-slogan{
    font-size: 20px;
    width: 80%;
  }
  .feature-desc-section {
    flex-direction: column;
    margin: 10vh 0px;
    margin-left: -50px;
    width: 90%;
  }
  .feature-desc-section >div{
    width: 100vw;
  }
  .feature-desc-text > h3{
    font-size: 20px;
  }
  .feature-desc-text > p{
    font-size: 15px;
    width: 90%;
  }
  li{
    font-size: 15px;
  }
}