@import url("components/styles.css");
@import url("components/header.css");
@import url("components/footer.css");

/* contact us */
.contact-us::before {
  content: "";
  height: 534px;
  width: 100%;
  position: absolute;
  background-image: url("../../assets/img/car-preview.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-us-wrap {
  background: rgba(0, 0, 0, 0.65);
  position: relative;
  z-index: 2;
  height: 534px;
  width: 100%;
}

.contact-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-us-title {
  font-family: Arimo;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
  color: white;
}

.touch-form {
  position: relative;
  z-index: 2;
}
.touch-form:not(.pages-form) {
  @media screen and (min-width: 48em) {
    margin-bottom: 20px;
    transform: translateY(-40px);
  }
  @media screen and (min-width: 80em) {
    transform: translateY(-70px);
    margin-bottom: 100px;
  }
}
.touch-form-wrap {
  max-width: 1280px;
  background: rgba(243, 245, 248, 1);
  border-radius: 20px;
  margin: 0 auto;
  @media screen and (min-width: 48em) {
    padding: 40px 60px;
  }
  @media screen and (min-width: 80em) {
    padding: 80px 130px;
  }
  @media all and (min-width: 320px) and (max-width: 767px) {
    padding: 20px;
  }
}
.touch-form .touch-form-title {
  font-family: Arimo;
  font-size: 35px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
  margin-bottom: 54px;
}
.touch-form .touch-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.touch-form input,
.touch-form textarea {
  border: 1px solid rgba(0, 0, 0, 1);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  border-radius: 10px;
  padding: 18px 22px;
}
.touch-form textarea {
  min-height: 150px;
  resize: none;
  margin-bottom: 50px;
}
.touch-form .button-submit {
  color: black;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.75px;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(90deg, #6ce5d4 0%, #71f7df 100%);
  height: 48px;
  width: 210px;
  align-self: center;
  border: none;
}
.touch-form input::placeholder,
.touch-form textarea::placeholder {
  color: black;
}
