@charset "UTF-8";
/*#region Settings*/
@font-face {
  font-family: "Teko";
  src: url("../fonts/Teko-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px !important;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* Empêche les sauts de ligne */
  border: 0;
}

body {
  padding: 0;
  color: #0d0d0d;
}
body header, body footer, body nav {
  padding: 8px;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
body h2, body h3, body h4, body h5, body h6 {
  margin-bottom: 8px;
}
body p, body a, body quote, body ul {
  font-family: "Open Sans", sans-serif;
}
body ul {
  list-style: inside;
  margin: 1rem;
}
@media (max-width: 539px) {
  body h1 {
    font-size: 28px;
  }
  body h2 {
    font-size: 24px;
  }
  body h3 {
    font-size: 20px;
  }
  body p {
    font-size: 16px;
  }
}
@media (min-width: 538px) {
  body h1 {
    font-size: 48px;
  }
  body h2 {
    font-size: 36px;
  }
  body h3 {
    font-size: 28px;
  }
  body p {
    font-size: 18px;
  }
}

/*#endregion Settings*/
/*#region Base*/
nav ul {
  list-style-type: none; /* Remove bullets */
  padding: 0;
  margin: 0;
  display: flex; /* Horizontal layout */
}
nav ul li div {
  display: flex;
  align-items: center;
  pointer-events: none;
}
nav ul li div span {
  font-family: "Teko", sans-serif;
  margin-left: 10px;
  font-size: 40px;
  margin-top: 8px;
}
nav ul li div img {
  width: 50px;
  height: auto;
}
nav ul li a {
  text-decoration: none;
  color: #0d0d0d;
}
nav ul li a svg {
  width: 40px;
  height: auto;
  text-decoration: none;
  fill: #0d0d0d;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  padding: 5px;
}
nav ul li a svg:hover {
  background-color: hsl(0, 0%, 85%);
  fill: #5865F2;
}

.gauche {
  margin: auto auto auto 0;
}

.droite {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.droite a {
  margin: 0 0 0 16px;
}

main .background-image {
  width: 100%;
  height: 100%;
}
main .hero {
  display: grid;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0;
  height: auto;
}
main .hero img {
  width: 100%;
  height: auto;
}
main .hero__content {
  z-index: 1; /* [1] */
  grid-area: 1/-1;
  display: flex;
  flex-direction: column;
  margin: auto; /* [2] */
  text-align: center;
  max-width: 60%;
}
main .hero__content h1 {
  color: #F7F7F7;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); /* Ombre plus grande et plus floue */
  font-weight: bold;
  text-align: center;
}
main .hero__thumb {
  grid-area: 1/-1;
  -o-object-fit: cover;
     object-fit: cover; /* [3] */
  width: 100%;
  height: 100%;
  min-height: 0; /* [4] */
}
main .hero__thumb img {
  width: 100%;
  pointer-events: none;
  position: absolute;
}
main .a-propos {
  margin: 4rem auto;
  padding: 0 2rem;
}
main .a-propos h2, main .a-propos h3 {
  text-align: center;
}
main .a-propos P {
  margin: 1rem;
}
main .services {
  background-color: #0d0d0d;
  padding: 4rem 2rem;
}
main .services h2, main .services h3, main .services p {
  color: #F7F7F7;
  text-align: center;
}
main .services .grille-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
main .services .grille-services .service {
  background-color: #F7F7F7;
  padding: 1rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
main .services .grille-services .service h4 {
  text-align: center;
  font-size: 24px;
}
main .services .grille-services .service svg {
  margin: 1rem;
  width: 60px;
  height: auto;
  fill: #0d0d0d;
}
main .services .grille-services .service p {
  color: #0d0d0d;
  font-size: 16px;
}
main .services .plus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .services .plus p {
  margin: 1rem;
}
main .services .plus a {
  color: #F7F7F7;
  font-weight: bold;
  text-decoration: none;
}
main .services .plus a:hover {
  text-decoration: underline;
  color: hsl(0, 0%, 85%);
}
main .recrutement {
  margin: 4rem auto;
  padding: 0 2rem;
}
main .recrutement h2, main .recrutement h3, main .recrutement h4 {
  text-align: center;
}
main .recrutement section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .recrutement section p {
  margin: 0 1rem;
}
main .recrutement section div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
main .recrutement section div div {
  max-width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 1rem;
}
main .recrutement section div div ul {
  list-style: inside;
}
main .recrutement section div div svg {
  margin: 1rem;
  width: 60px;
  height: auto;
  fill: #0d0d0d;
}
main .recrutement span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .recrutement span a {
  color: #F7F7F7;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #0d0d0d;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
main .recrutement span a:hover {
  background-color: #5f5f5f;
}

@media (max-width: 539px) {
  .hero {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Empêche les sauts de ligne */
    border: 0;
  }
}
@media (min-width: 540px) {
  .background-image {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Empêche les sauts de ligne */
    border: 0;
  }
}
footer {
  background-color: hsl(0, 0%, 85%);
}
footer section {
  padding: 10px;
  font-size: 12px;
}
footer section .contact {
  margin: 2rem 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
footer section .contact div h3 {
  text-align: start;
}
footer section .contact div div a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  color: #0d0d0d;
  transition: all 0.3s ease-in-out;
}
footer section .contact div div a svg {
  width: 40px;
  height: auto;
  text-decoration: none;
  fill: #0d0d0d;
  border-radius: 5px;
  padding: 0 10px 0 0;
  transition: all 0.3s ease-in-out;
}
footer section .contact div div a:hover {
  text-decoration: underline;
}
footer section .contact div div a:hover svg {
  fill: #5865F2;
}
footer section .contact img {
  width: 150px;
  height: auto;
}
footer section p {
  text-align: center;
}

/*#endregion Base*/
/*#region Erreur*/
/*#endregion Erreur*//*# sourceMappingURL=styles.css.map */