/********************MODALE DE CONTACT*******************/
#modal-contact {
  width: 35%;
  max-width: 500px;
  min-width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  border: 5px solid #000000;
  border-radius: 25px;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#modal-contact * {
  font-family: "Special Elite", sans-serif;
}
#modal-contact .modal-form {
  background: linear-gradient(to bottom, #f1efea, #eed4c1);
}
#modal-contact .modal-form form fieldset {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: none;
  padding: 35px;
}
#modal-contact .modal-form form fieldset .form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#modal-contact .modal-form form fieldset .form-field input[type=text], #modal-contact .modal-form form fieldset .form-field input[type=email], #modal-contact .modal-form form fieldset .form-field textarea {
  height: 2rem;
  border-radius: 10px;
  font-size: 14px;
  max-width: 410px;
  width: 100%;
}
#modal-contact .modal-form form fieldset .form-field textarea {
  height: 6rem;
}
#modal-contact .modal-form form fieldset .form-field input[type=submit], #modal-contact .modal-form form fieldset .form-field button {
  background-color: #f5eedd;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  max-width: 420px;
  height: 4rem;
  border-radius: 10px;
}
#modal-contact .modal-form form fieldset .form-field input[type=submit]:hover, #modal-contact .modal-form form fieldset .form-field button:hover {
  cursor: pointer;
}
#modal-contact .modal-form form fieldset .form-field input.nospam {
  display: none;
}
#modal-contact .modal-form form fieldset .form-field button {
  border-radius: 10px;
  color: red;
}
#modal-contact .modal-header, #modal-contact .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 20px 20px 0 0;
  background-color: #f5eedd;
  background-image: url("/images/20240508_vue_drone.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#modal-contact .modal-header h2, #modal-contact .modal-footer h2 {
  color: whitesmoke;
}
#modal-contact .modal-footer {
  border-radius: 0 0 20px 20px;
  background-position: bottom;
}

#modal-contact.active {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease, visibility 0.9s ease;
}

@media (max-width: 530px) {
  #modal-contact {
    width: 340px;
    height: -moz-fit-content;
    height: fit-content;
    top: 60% !important;
  }
}
@media screen and (orientation: landscape) and (max-height: 850px) {
  #modal-contact {
    max-height: 95vh;
    overflow-y: auto;
  }
}
/******************FIN MODALE DE CONTACT*****************/
/**************************POLICY************************/
#policy-contain header nav {
  display: none;
}
#policy-contain main {
  width: 80%;
  margin: 2vw auto;
}
#policy-contain main h1.policy {
  font-size: 20px;
  color: black;
  text-align: center;
  margin-bottom: 2vw;
}
#policy-contain main h2 {
  font-size: 15px;
  margin-top: 1vw;
  margin-bottom: 0.2vw;
}/*# sourceMappingURL=parts.css.map */