@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  /* font-size: ; */
  font-size: calc(62.5% + 0.390625vw);
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  color: #333;
}
.flex {
  display: flex;
}

.row {
  flex-direction: row;
}
.row-reverse {
  flex-direction: row-reverse;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

.column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.hidden {
  display: none;
}
.container {
  margin: auto;
}
header {
  padding: 2vw 4vw 1rem;
}
header .logo {
  width: 100%;
  max-width: 20rem;
}
header .logo img {
  width: 100%;
  max-width: 8rem;
}
.hero {
  text-align: center;
  padding: 1rem 4vw 2vw;
  gap: 2%;
}
.hero .deets {
  width: 40%;
}
.hero h1 {
  color: #5fbc49;
  text-align: left;
  font-size: 1.8rem;
  font-family: "Bricolage Grotesque", sans-serif;
}
.hero h2 {
  color: #5fbc49;
  text-align: left;
  font-size: 1.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
}
.hero img {
  width: 100%;
}
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-container input {
  width: 100%;
  /* max-width: 28rem; */
  padding: 10px;
  border: 1px solid #5fbc4a;
  border-radius: 0.6rem;
  margin-block: 0.3rem;
}
.form-container .flex {
  width: 100%;
  gap: 1rem;
}
.form-container input:focus {
  outline: none;
  border-color: #5fbc49;
}
.form-container input::placeholder {
  color: #9ea1ae;
  font-weight: 500;
}
.form-container button {
  background-color: #5fbc49;
  color: white;
  border: none;
  padding: 10px 1rem;
  cursor: pointer;
  border-radius: 0.6rem;
  font-size: 1rem;
  width: 100%;
}
.features {
    width: 55%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  background-color: #eafee5;
  padding: 2vw;
}
.feature {
  padding: 1rem;
  border-radius: 10px;
}
.feature img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 0.7rem;
}
.feature h3 {
  margin: 10px 0;
  color: #156302;
}
.feature p {
  color: #156302;
}

/* make it responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-inline: 0;
  }
  .hero .deets {
    width: 100%;
    max-width: 100%;
    padding-inline: 4vw;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .form-container {
    width: 100%;
    max-width: 100%;
  }
  .features {
    width: 100%;
    max-width: 100%;
    padding-inline: 4vw;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .form-container input {
    padding: 8px;
    font-size: 0.9rem;
  }
  .form-container button {
    padding: 8px;
    font-size: 0.9rem;
  }
}
