@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.main {
  min-height: 160vh;
  width: 100%;
  background-color: rgb(241, 233, 222);
}

.main-section {
  margin-top: -20px;
  width: auto;
  min-height: 50vh;
  padding: 0px 80px;
}

.title {
  font-size: 50px;
  color: rgb(34, 34, 34);
  font-weight: 500;
}

.subtitle {
  font-size: 25px;
  opacity: 0.8;
  margin-top: 4px;
}

.catalouge {
  margin-top: 70px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

.top p {
  background-color: rgba(249, 217, 159, 0.742);
  padding: 30px;
  width: 60%;
  position: relative;
  top: -70.6vh;
  color: black;
  font-size: 24px;
}

.bottom p {
  background-color: rgba(249, 217, 159, 0.742);
  padding: 30px;
  width: 60%;
  position: relative;
  top: -13vh;
  color: black;
  font-size: 24px;
}

.products {
  width: auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: white;
}

.cat img {
  width: 18vw;
  height: 70vh;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .main-section {
    padding: 0px 40px;
  }
  .title {
    font-size: 45px;
    text-align: center;
    line-height: 120%;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 50px 0px;
  }
  .subtitle {
    font-size: 25px;
    text-align: center;
  }

  .catalouge {
    flex-direction: column;
  }

  .top p {
    width: auto;
    text-align: center;
    font-size: 20px;
  }
  .bottom p {
    width: auto;
    top: -70.6vh;
    text-align: center;
    font-size: 20px;
  }

  .cat img {
    width: 100%;
  }
}
