/* BODY */
body h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: "Poppins", sans-serif;
}
img {
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* SECTION - ONE */
.contact-bg {
  height: auto;
  width: 100%;
  background-image: url(../images/contact-us-page/contact-us-bg.svg);
  background-size: cover;
}
.section-one {
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 7em;
}
.section-one h1 {
  color: #fffbf6;
  font-size: 72px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  padding-block: 1em;
  -webkit-animation: tracking-in-expand 0.5s ease-in-out both;
  animation: tracking-in-expand 0.5s ease-in-out both;
}
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .section-one h1 {
    font-size: 50px;
  }
}

/* CONTACT FORM */
.contact {
  padding-top: 2em;
}
.contact .image img {
  height: 10em;
  object-fit: cover;
  object-position: center;
  width: 100%;
  margin-bottom: 20px;
  display: none;
}
.contact .origami-form {
  border-radius: 0px 20px;
  width: 100%;
  /* border-bottom: 2px solid #3c2c1e;
  border-left: 2px solid #3c2c1e; */
  padding: 30px;
  background: #fffcfc;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .origami-form .form-group {
  margin-bottom: 20px;
}
.contact .origami-form label {
  padding-bottom: 0px;
  font-size: 14px;
  margin-left: 2px;
  color: #22191292;
}
.contact .origami-form input,
.contact .origami-form textarea,
.contact .origami-form select {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  background: #fffcfc;
  border: none;
  border-bottom: 2px solid #3023184a;
}
.contact .origami-form input:focus,
.contact .origami-form textarea:focus,
.contact .origami-form select:focus {
  border-color: #302318c2;
}
.contact .origami-form textarea {
  padding: 0px 0px;
}
.contact .origami-form button[type="submit"] {
  background: #302318;
  width: 100%;
  border: 2px solid #302318;
  padding: 8px 32px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #fffcfc;
  transition: 0.3s;
  border-radius: 0px 10px;
}
.contact .origami-form button[type="submit"]:hover {
  color: #302318;
  background: #684d2f0d;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 1em;
  }
  .contact .image img {
    display: block;
  }
}

/* SECTION - THREE */
.section-three {
  padding-top: 4em;
  padding-bottom: 3em;
}
.section-three h1 {
  color: #3a2d1d;
  font-size: 32px;
  font-weight: 700;
  word-spacing: 3px;
  line-height: 1.5em;
  margin-bottom: 0;
  padding-inline: 3em;
  text-align: center;
}
@media (max-width: 992px) {
  .section-three {
    padding-top: 1em;
    padding-bottom: 2em;
  }
  .section-three h1 {
    padding-inline: 0;
    font-size: 18px;
    padding-top: 1em;
    word-spacing: 2px;
  }
}
