/* FONT FACE */
/* Imports des fonts */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "StingerFitTrial";
  src: url("../fonts/stinger-fit-trial/StingerFitTrial-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* VARIABLES */
.cta {
  background-color: #2E4995;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.cta__yeux {
  display: none;
}
.cta__titre {
  margin: 0;
  font-size: 2.25rem;
}
.cta__texte {
  font-weight: 700;
  max-width: 30rem;
}
.cta .btn {
  margin: 0;
}
@media (min-width: 1170px) {
  .cta {
    position: relative;
  }
  .cta__yeux {
    display: block;
    position: absolute;
    right: 10%;
    top: 30%;
    width: 10rem;
    transform: scaleX(-1);
  }
}

/**********
* CONTACT *
**********/
@media (min-width: 1170px) {
  .hero__image {
    position: relative;
    transform: translateX(10vw);
  }
}
@media (min-width: 1500px) {
  .hero__image {
    transform: translateX(15vw);
  }
}

.contact__titre {
  text-align: center;
  margin-bottom: 2rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.contact form label {
  display: block;
  margin-bottom: 0.5rem;
}
.contact form input[type=text],
.contact form input[type=email],
.contact form input[type=tel],
.contact form textarea,
.contact form select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid black;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
}
.contact form textarea {
  resize: vertical;
  min-height: 10rem;
  max-height: 20rem;
}
.contact form > div:last-of-type {
  margin-top: 1rem;
}
.contact form > div:last-of-type textarea {
  min-height: 5rem;
}
.contact .btn {
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.contact .formulaire__ligne {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact .formulaire__ligne > div {
  flex: 1;
}
.contact {
  /* Responsive desktop */
}
@media (min-width: 1170px) {
  .contact {
    position: relative;
  }
  .contact::after {
    content: url("/wp-content/uploads/2026/04/Message.svg");
    position: absolute;
    top: -6rem;
    left: 10%;
  }
  .contact .formulaire__ligne {
    flex-direction: row;
    gap: 3rem;
  }
}