:root {
  --black: #000;
  --green: #1e523c;
  --white: #f0efed;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "PT Sans";
}

.wrapper {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
  /* background-color: red; */
}

html {
  background-color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

.green-btn {
  color: var(--white);
  background-color: var(--green);
  padding: 10px 25px;
  border-radius: 100px;
}

.white-btn {
  color: var(--green);
  background-color: var(--white);
  padding: 10px 25px;
  border-radius: 100px;
  max-width: fit-content;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "PT Sans Narrow";
}

p {
  line-height: 1.5;
  font-family: "PT Sans";
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
}

header ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* background-color: green; */
}

.close,
.menu {
  display: none;
}

section {
  padding-top: 30px;
  padding-bottom: 20px;
}

.hero-section h1 {
  color: var(--green);
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-section p {
  max-width: 110ch;
}

.crops {
  padding-top: 10px;
}

.crops .wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.crops h2 {
  color: var(--green);
  font-size: 24px;
  margin-bottom: 5px;
}

.crops .crop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crops .crop-img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.crops .crop-img img {
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  aspect-ratio: 1.65/1;
}

.description-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}

.description-container .description {
  flex: 1 1 400px;
}

.description-container .description h3,
.how-we-grow h3 {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 5px;
}

/* .description-container .description ul li {
  list-style: disc;
  list-style-position: inside;
} */

.how-we-grow ul {
  list-style: none;
  padding-left: 0;
}

.how-we-grow ul li {
  position: relative;
  padding-left: 1.5em;
}

.how-we-grow ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 20%;
  font-size: 1em;
  line-height: 1;
}


footer {
  background-color: var(--green);
  color: var(--white);
  margin-top: 20px;
  padding-block: 30px;
}

footer .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .wrapper * {
  flex: 1 0 200px;
  /* background-color: red; */

}

footer img {
  width: 100px;
  height: fit-content;
}

footer strong {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

footer li {
  margin-bottom: 3px;
}

@media only screen and (max-width: 840px) {
  .close,
  .menu {
    display: block;
  }

  header nav {
    position: fixed;
    padding: 30px 25px 30px 25px;
    background-color: var(--green);
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    right: -100%;
    color: #000;
    transition: right 350ms linear;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  nav img {
    max-width: fit-content;
  }

  nav .close {
    margin-left: auto;
  }

  header ul {
    color: var(--white);
    flex-direction: column;
    align-items: center;
    height: 50%;
  }

  header ul .green-btn {
    color: var(--green);
    background-color: var(--white);
  }

  .open-menu {
    right: 0%;
  }

  .hero-section h1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 460px) {
  .crops .crop-img {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
}
