.contact {
  gap: 0;
}

.contacts-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-item {
  justify-self: center;
}

.contact-item-content {
  display: flex;
  align-items: center;
}

.contact-select {
  border: 1px solid #707070;
  padding: 20px;
  border-radius: 5px;
}

select {
  border: none;
  width: 100%;
  font-size: 18px;
}

.contact-select option {
  font-size: 18px;
  color: #293e5c;
}

#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-form {
  max-width: 1400px;
  text-align: center;
  border: 2px solid #b1b695;
  padding: 40px 50px;
  /* margin: auto;
  margin-bottom: 50px; */
}

.contact-form-block {
  max-width: 1200px;
  margin: auto;
  text-align: initial;
}

/* .contact-items-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
} */

.input {
  width: 100%;
  border: 1px solid #707070;
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
}
.contact-subtitle {
  margin: 40px 0;
}

.g-recaptcha {
  margin-bottom: 40px;
}

.privacy-check {
  font-size: 15px;
  color: #293e5c;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* * ---------------------------------------- Grid area styles ---------------------------------- */

.sujet {
  grid-area: 1 / 1 / span 1 / span 2;
}

.question {
  grid-area: 2/1 / span 1 / span 2;
}

.organisation {
  grid-area: 3/1 / span 1 / span 2;
}

/* * ---------------------------------------- Position ---------------------------------- */
.left {
  text-align: left;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  background-color: #2196f3;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}

.item1 {
  grid-area: 1 / 1 / span 1 / span 2;
}

.item2 {
  grid-area: 2 / 1 / span 1 / span 2;
}

.item3 {
  grid-area: 3 / 1 / span 1 / span 2;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                               */
/* * -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .contacts-content-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 50px 10px;
  }

  /* .contact-items-block {
    grid-template-columns: 1fr;
  } */

  .sujet {
    grid-area: initial;
  }

  .question {
    grid-area: initial;
  }

  .organisation {
    grid-area: initial;
  }

  .definition-content {
    padding: 0;
  }
}
