/* =========================
   PAGE CONTACT
========================= */

.contact-page {
  padding: 28px 90px 55px;
}

.contact-container {
  max-width: 1320px;

  margin: 0 auto;
}

/* =========================
   GRID
========================= */

.contact-grid {
  display: grid;

  grid-template-columns: 420px minmax(0, 620px);

  justify-content: space-between;

  gap: 70px;

  align-items: start;
}

/* =========================
   INFOS
========================= */

.contact-info {
  padding-top: 6px;
}

.contact-name {
  margin: 0 0 28px !important;

  font-family: "Bebas Neue", sans-serif;

  font-size: 36px !important;

  line-height: 1;

  color: #111;
}

.contact-address-block {
  margin-bottom: 18px;
  font-weight: 600;
}

.contact-location {
  margin-bottom: 10px !important;

  font-family: "Bebas Neue", sans-serif;

  font-size: 22px;

  letter-spacing: 0.6px;

  color: #111;
}

.contact-separator {
  width: 42px;

  height: 1px;

  background: #b8b8b8;

  margin: 26px 0;
}

.contact-info p {
  margin: 0 0 10px;

  font-family: "Roboto Slab", serif;

  font-size: 18px;

  line-height: 1.35;

  color: #111;
}

.contact-phone {
  margin-top: 32px !important;
}

.contact-mail {
  margin-top: 18px !important;
}

/* =========================
   FORMULAIRE
========================= */

.contact-form,
.wpcf7,
.wpcf7 form,
.cf7-contact {
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  margin-top: 14px !important;

  padding: 0 !important;

  border: none !important;

  color: #111;

  font-size: 13px;
}

/* =========================
   CHAMPS COMPACTS
========================= */

.cf7-row {
  margin-bottom: 10px;
}

.cf7-row label {
  display: block;

  margin-bottom: 4px;

  font-family: "Roboto Slab", serif;

  font-size: 15px;

  font-weight: 500;

  line-height: 1.2;

  color: #111;
}

.cf7-contact input,
.cf7-contact textarea,
.cf7-contact select {
  width: 100%;

  padding: 8px 12px;

  min-height: 46px;

  border: 1px solid #2a2a2a;

  border-radius: 0;

  background: transparent;

  font-family: "Roboto Slab", serif;

  font-size: 14px;

  line-height: 1.3;

  color: #111;

  outline: none;

  box-shadow: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.cf7-contact textarea {
  min-height: 110px;

  resize: vertical;
}

.cf7-contact input:focus,
.cf7-contact textarea:focus,
.cf7-contact select:focus {
  border-color: #000;
}

/* =========================
   BOUTON
========================= */

.cf7-submit {
  margin-top: 18px;
}

.cf7-submit input[type="submit"] {
  appearance: none;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 70px;

  padding: 0 42px;

  border: 1px solid #111;

  background: transparent;

  color: #111;

  font-family: "Bebas Neue", sans-serif;

  font-size: 22px;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.18s ease;
}

.cf7-submit input[type="submit"]:hover {
  background: #111;

  color: #fff;

  border-color: #111;
}

.cf7-submit input[type="submit"]:active {
  transform: translateY(1px);
}

.wpcf7-form.submitting .cf7-submit input[type="submit"] {
  opacity: 0.7;

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1200px) {
  .contact-page {
    padding: 30px 40px 55px;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}

@media screen and (max-width: 900px) {
  .contact-page {
    padding: 28px 22px 50px;
  }

  .contact-name {
    font-size: 40px;
  }

  .contact-location {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .cf7-contact textarea {
    min-height: 95px;
  }

  .cf7-submit input[type="submit"] {
    height: 62px;

    font-size: 20px;
  }
}
