@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

header {
  background-image: url("../img/Banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  text-align: center;
}
header h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f4f4f4;
}
header p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #f4f4f4;
  width: 45vw;
  margin: 0 auto;
  margin-bottom: 25px;
}
header button {
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #66bb6a;
  color: #f4f4f4;
  border: none;
  border-radius: 68px;
  padding: 15px 30px;
  width: 250px;
}
header button:hover {
  background-color: #4caf50;
  transition: 0.3s;
}
header .box-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 145px 20px 80px 20px;
  height: 100%;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.cards {
  background-color: #F1F8E9;
  padding: 80px 40px;
  height: 500px;
  text-align: center;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-around;
}
.cards .card {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 250px;
  height: 350px;
  text-align: center;
  margin: 0 15px;
}
.cards .card img {
  width: 100%;
  height: 150px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 5px;
}
.cards .card h3 {
  width: 100%;
  height: 50px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333333;
  align-content: center;
}
.cards .card p {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 5px;
}
.cards .card h3, .cards .card p, .cards .card button {
  padding: 0 15px;
}
.cards .card button {
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #66bb6a;
  color: #f4f4f4;
  border: none;
  border-radius: 68px;
  padding: 15px 30px;
  width: 150px;
}
.cards .card button:hover {
  background-color: #4caf50;
  transition: 0.3s;
}

.form-container {
  background-color: #e7f6e9;
  padding: 80px 40px;
  text-align: center;
}
.form-container form {
  width: 500px;
  margin: 0 auto;
}
.form-container form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333333;
}
.form-container form p {
  font-size: 14px;
  padding: 8px 10px;
  margin-bottom: 20px;
  color: #767676;
}
.form-container form input[type=text], .form-container form input[type=email], .form-container form select {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  color: #b3b3b3;
  font-weight: 700;
}
.form-container form button {
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #66bb6a;
  color: #f4f4f4;
  border: none;
  border-radius: 68px;
  padding: 15px 30px;
  align-self: center;
  width: 200px;
}
.form-container form button:hover {
  background-color: #4caf50;
  transition: 0.3s;
}

footer {
  background-color: #4caf50;
  color: #f4f4f4;
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */