#Contact {
  padding: 80px 0;
}

#Contact h2 {
  font-size: 40px;
  color: #58468c;
  margin-bottom: 35px;
  margin-top: 6px;
  font-weight: 900;
  line-height: 50px;
  text-align: center;
}

#Contact h4 {
  color: #04c98b;
  font-weight: bold;
  text-align: center;
}

.contact_form {
  display: flex;
  padding-top: 36px;
  flex-direction: column;
  gap: 24px 0;
  width: 1140px;
  margin: auto;
}
.contact_form .two_input {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.two_input > input {
  border: 1.8px solid #eee;
  padding: 15px 20px;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}

.contact_form textarea {
  border: 1.8px solid #eee;
  padding: 15px 20px;
  border-radius: 5px;
  max-width: 100%;
  overflow: hidden;
  min-height: 120px;
  height: auto;
}

.contact_form button {
  background: #fe4801;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  padding: 17px 40px;
  display: inline-block;
  width: fit-content;
}
.contact_form button:hover {
  box-shadow: 0px 0px 10px 0px #eee;
}

@media (max-width: 1200px) {
  .contact_form {
    width: 92%;
  }
}

@media (max-width: 767px) {
  .contact_form .two_input {
    flex-direction: column;
  }
}
