section {
  margin: 70px 0 5%;
}

.contact-section {
  margin: 14% 0 15%;
  padding-top: 15%;
}
.contact-section .container {
  background: #FAF7F2;
  padding: 8% 25px;
  box-shadow: 0 4px 6px rgba(168, 168, 168, 0.5);
}
.contact-section .title p {
  margin-top: 2%;
}
.contact-section p {
  margin-bottom: 0;
}
.contact-section .contact-content {
  background: #fff;
  padding: 12% 25px 12%;
}
.contact-section .contact-form {
  margin-top: 12%;
}
.contact-section .contact-form .form_row {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form .form-group {
  padding: 0;
}
.contact-section .btn_orange {
  width: 100%;
  /* margin-top: 20px; */
  height: 40px;
  position: relative;
  background: #C9A07A;
  box-shadow: rgb(157.1818181818, 108.7272727273, 63.8181818182) 0px 4px 0px 0px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  color: #fff;
  border: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  margin-top: 2%;
}
.contact-section .btn_orange:before {
  content: "";
  background: rgb(208.3636363636, 172.9545454545, 140.1363636364);
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}
.contact-section .btn_orange:hover {
  background: #C9A07A;
  color: #fff;
}
.contact-section .btn_orange:hover:before, .contact-section .btn_orange:focus:before {
  width: 100%;
}

@media (min-width: 500px) and (max-width: 699px) {
  .contact-section {
    padding-top: 15%;
  }
  .contact-section .contact-content {
    padding-top: 15%;
  }
}
@media (min-width: 700px) {
  .contact-section .container {
    padding: 3%;
  }
  .contact-section .contact-form .form_row {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-section .contact-form .form_row .form-group {
    padding: 0 15px 0 0;
  }
}
@media (min-width: 700px) and (max-width: 1042px) {
  .contact-section {
    margin: 16% 0 12%;
    padding: 3% 15px 0;
  }
  .contact-section .contact-content {
    padding: 5%;
  }
  .contact-section .contact-form {
    margin-top: 8%;
  }
  .contact-section .btn_orange {
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .contact-section {
    margin: 8% 0 6%;
    padding-top: 3%;
  }
  .contact-section .contact-content {
    padding: 5%;
  }
  .contact-section .contact-form {
    margin-top: 6%;
  }
  .contact-section .btn_orange {
    width: 20%;
  }
}
@media (min-width: 1024px) and (max-width: 1500px) {
  .contact-section {
    margin: 18% 0 10%;
  }
  .contact-section .contact-content {
    padding-top: 5%;
  }
}/*# sourceMappingURL=contact-us.css.map */