.hero {
  padding: 30px 40px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 70px;
}

@media screen and (min-width: 1200px) {
  .hero-banner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
.hero-banner-wrapper .hero-banner-img {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .hero-banner-wrapper .hero-banner-img {
    width: 600px;
    height: 491px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

.hero-banner-section {
  background: #f7f4ef;
  padding: 60px 0;
}

.label-container {
  margin-bottom: 15px;
}
.label-container input,
.label-container textarea,
.label-container select {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 1px solid #4b6043;
  padding: 5px;
  font-size: 16px;
  color: #4b6043;
  font-weight: 300;
  border-radius: 5px;
}
.label-container textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  max-height: 500px;
}
@media screen and (min-width: 1200px) {
  .label-container textarea {
    min-height: 250px;
  }
}
.label-container label {
  color: #4b6043;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}

.checkbox-container {
  display: flex;
  gap: 10px;
  color: #4a4a47;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.checkbox-container input {
  translate: 0 7px;
}
.checkbox-container label {
  color: inherit;
  font-size: 11px;
}

@media screen and (min-width: 1200px) {
  .form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.form-wrapper .form-wrapper-text-area {
  margin-bottom: 60px;
}
.form-wrapper .btn-container {
  margin-top: 50px;
}

.product-btn,
.contact-btn {
  background-color: transparent;
  color: #4b6043;
  border-radius: 5px;
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s all ease-in-out;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4b6043;
  cursor: pointer;
}
.product-btn:hover,
.contact-btn:hover {
  width: 220px;
}

.btn-container--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=contact.css.map */