#home {
  padding: 20px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
#home h1 {
  text-align: center;
  color: #1d8e7b;
}
#home p {
  max-width: 800px;
  width: 100%;
  margin: auto;
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
  padding: 0 15px;
  box-sizing: border-box;
}
#home .vendor-img {
  text-align: center;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#home .vendor-img img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 900px) {
  #home .vendor-img img {
    width: 480px;
    height: 360px;
    border-radius: 10px;
    object-fit: cover;
  }
}
@media (max-width: 780px) {
  #home .vendor-img img {
    width: 380px;
    height: 270px;
    border-radius: 10px;
    object-fit: cover;
  }
}
