@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.contact-section {
  width: 100%;
  /* background-color: aqua; */
  /* background-color: #1f4127; */
}
.contact-section .social-media-container ul li::before {
  top: 2px;
  overflow: visible;
}

.contact-top {
  width: 100%;
  height: 100%;
  margin-top: 5rem;
  display: flex;
}
.contact-top img {
  width: 100%;
  height: auto;
}

.contact-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  color: #1f4127;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  margin-bottom: 5rem;
}

.about-us-mini {
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 1px;
  padding: 2rem 1rem;
}
.about-us-mini div {
  margin-bottom: 1rem;
}
.about-us-mini-contact div i {
  margin-right: 1rem;
}
.about-us-mini-contact {
  display: flex;
  flex-direction: column;
}
.about-us-mini-contact a {
  color: #1f4127;
  line-height: 1.6rem;
}

.about-us-mini .phone {
  display: none;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  padding: 1rem 0;
  border-radius: 4px;
  width: 100%;
}
.contact-wrapper h2 {
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 1rem;
  margin-bottom: 1rem;
}
.contact-desc {
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  margin: 0 1rem;
  text-align: justify;
  max-width: 100%;
}

textarea {
  height: 20vh;
}
.text-message {
  border-left: none;
}
input[type="submit"] {
  background-color: #33533b;
  color: #fff;
  border: none;
  border: 1px solid #33533b;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.actions {
  margin: 15px 20px 0 0;
  display: flex;
  justify-content: flex-end;
}
.contact-wrapper .social-media-container ul li a .fa-brands {
	color: rgb(47, 99, 60);
}
@media screen and (max-width: 991px) {
  .about-us-mini {
    order: 1;
    margin-top: 1rem;
    padding-bottom: 0;
  }
  .contact-form {
    order: 2;
  }
  .contact-wrapper {
    max-width: 650px;
  }
}