@charset "UTF-8";
.has-dark-color-background-color {
  background-color: var(--dark-color) !important;
}

.has-light-color-background-color {
  background-color: var(--light-color) !important;
}

.has-primary-color-color {
  background-color: var(--primary-color) !important;
}

.has-secondary-color-color {
  background-color: var(--secondary-color) !important;
}

.service-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.service-layout.left {
  flex-direction: row;
}
.service-layout.right {
  flex-direction: row-reverse;
}
.service-layout .service-image {
  flex: 1;
}
.service-layout .service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.service-layout .service-content {
  flex: 2;
}
.service-layout .service-content h2 {
  margin-top: 0;
  font-size: 2rem;
}
.service-layout .service-content .service-description {
  font-size: 1rem;
  line-height: 1.6;
}
.service-layout .service-content .service-buttons {
  margin-top: 20px;
}
.service-layout .service-content .service-buttons .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 10px;
}
.service-layout .service-content .service-buttons .button:hover {
  background-color: #005bb5;
}
@media (max-width: 768px) {
  .service-layout {
    flex-direction: column;
  }
  .service-layout.left, .service-layout.right {
    flex-direction: column;
  }
  .service-layout .service-image, .service-layout .service-content {
    flex: none;
    width: 100%;
  }
}

/* Style global pour le formulaire */
.wpcf7 {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--dark-color);
  margin-bottom: 40px;
}

/* Label des champs de formulaire */
.wpcf7 label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* Champs de texte, email, etc. */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--dark-color);
  border-radius: 4px;
  box-sizing: border-box; /* Pour inclure le padding dans la largeur */
  margin-bottom: 5px;
  transition: border-color 0.3s ease;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  border-color: var(--secondary-color); /* Changer la couleur du bord au focus */
  outline: none;
}

/* Bouton de soumission */
.wpcf7 input[type=submit] {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
}
.wpcf7 input[type=submit]:hover {
  background-color: transparent;
}
.wpcf7 input[type=submit]:focus {
  outline: none;
}

/* Message d'erreur */
.wpcf7 .wpcf7-response-output {
  padding: 10px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 0.9rem;
  display: none; /* Cacher initialement */
}

/* Message de succès */
.wpcf7 .wpcf7-mail-sent-ok {
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 0.9rem;
  display: none; /* Cacher initialement */
}

/* Pour les champs obligatoires */
.wpcf7 .wpcf7-validates-as-required {
  border-color: #f44336; /* Rouge pour les champs obligatoires */
}

/* Responsivité */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 15px;
  }
  .wpcf7 input[type=submit] {
    padding: 10px 15px;
  }
}
.massage-item.reverse .wp-block-columns {
  flex-direction: row-reverse;
}
.massage-item .wp-block-columns {
  align-items: center;
  gap: 20px;
}
.massage-item .wp-block-columns .wp-block-column.has-media {
  flex: 1;
}
.massage-item .wp-block-columns .wp-block-column.has-media img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.massage-item .wp-block-columns .wp-block-column.has-content {
  flex: 1;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .massage-item .wp-block-columns {
    flex-direction: column;
  }
  .massage-item .wp-block-columns .wp-block-column.has-media, .massage-item .wp-block-columns .wp-block-column.has-content {
    flex: unset;
    width: 100%;
  }
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

html, body {
  height: 100%;
  min-height: 100%;
}

html, body {
  overscroll-behavior: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

body {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  color: var(--dark-color);
  font-weight: 500;
  line-height: 1.5rem;
  font-size: 1.125rem;
}

sup {
  font-size: 1rem;
  vertical-align: super;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media (min-width: 576px) {
  h1 {
    font-size: 35.2px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 38.4px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 41.6px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 44.8px;
  }
}

h2 {
  font-size: 28.8px;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
@media (min-width: 576px) {
  h2 {
    font-size: 31.68px;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 34.56px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 37.44px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 40.32px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 0.7em;
}
@media (min-width: 576px) {
  h3 {
    font-size: 30.8px;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 33.6px;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 36.4px;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 39.2px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 0.8em;
}
@media (min-width: 576px) {
  h4 {
    font-size: 26.4px;
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: 28.8px;
  }
}
@media (min-width: 992px) {
  h4 {
    font-size: 31.2px;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 33.6px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0.9em;
}
@media (min-width: 576px) {
  h5 {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  h5 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  h5 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 28px;
  }
}

h6 {
  font-size: 17.6px;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  h6 {
    font-size: 19.36px;
  }
}
@media (min-width: 768px) {
  h6 {
    font-size: 21.12px;
  }
}
@media (min-width: 992px) {
  h6 {
    font-size: 22.88px;
  }
}
@media (min-width: 1200px) {
  h6 {
    font-size: 24.64px;
  }
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
p:has(+ ul), p:not(:last-child) + ul {
  margin-bottom: 0;
}

li {
  font-size: 16px;
  line-height: 1.6;
  list-style-position: inside;
}

/* Page 404 */
.error-404 {
  text-align: center;
  padding: 60px 0;
}

.error-404 .page-title {
  margin-bottom: 20px;
}

.error-404 p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.error-404 .search-form {
  margin-bottom: 20px;
}

.error-404 .button {
  background-color: var(--dark-color);
  color: #fff;
  padding: 12px 20px;
  border: 2px solid var(--dark-color);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.error-404 .button:hover {
  background-color: transparent;
  color: var(--dark-color);
}

.error-404 .button:focus {
  outline: none;
}

.banner {
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 80px 0;
  margin-bottom: 60px;
  /* Le fond déborde du container */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.banner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner .banner-title {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.banner .banner-subtitle {
  text-align: center;
  margin-bottom: 0px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .container {
    padding: 0 50px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}

.wp-block {
  max-width: 1200px; /* Ajuste selon ton design */
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1400px; /* Dépasse le container normal */
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--light-color);
  color: var(--dark-color);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-left {
  flex: 1;
  max-width: 500px;
}
.footer-left .footer-logo {
  max-width: 300px;
  margin-bottom: 10px;
}
.footer-left p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-center {
  flex: 1;
  max-width: 300px;
}
.footer-center .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-center .footer-links li {
  margin: 10px 0;
}
.footer-center .footer-links li a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-center .footer-links li a:hover {
  color: var(--dark-color);
  text-decoration: underline;
}

.footer-right {
  flex: 1;
  max-width: 300px;
}
.footer-right .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.footer-right .social-links li a {
  display: block;
}
.footer-right .social-links li a img {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
  fill: var(--dark-color);
}
.footer-right .social-links li a img:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-left, .footer-center, .footer-right {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer-right .social-links {
    justify-content: center;
  }
}
.header-container {
  background-color: var(--light-color);
  color: var(--dark-color);
  font-weight: 500;
  padding: 20px;
}
.header-container img {
  max-height: 70px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
}
.burger-menu__line {
  width: 100%;
  height: 3px;
  background: var(--dark-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav.active {
    right: 0;
  }
}
@media (max-width: 768px) {
  .nav__inner {
    padding: 20px;
  }
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-menu li {
  margin: 0 10px;
}
@media (max-width: 768px) {
  .main-menu li {
    margin: 10px 0;
  }
}
.main-menu li a {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .main-menu li a {
    font-size: 1.2rem;
  }
}
.main-menu .menu-item {
  display: inline-block;
  position: relative;
  width: auto;
  text-align: center;
}
.main-menu .menu-item.current-menu-item {
  font-weight: 700;
}
.main-menu .menu-item:hover {
  font-weight: 700;
}
.main-menu .menu-item::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Ajuste la distance du soulignement */
  left: 0%; /* Commence en dehors de l'élément */
  width: 0px;
  height: 2px; /* Épaisseur du soulignement */
  background-color: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}
.main-menu .menu-item:hover::after,
.main-menu .menu-item.current-menu-item::after {
  width: 100%;
  left: 0; /* Revient de droite à gauche */
}

.services-list .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
.services-list .service-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 40px;
  transition: background 0.3s;
}
.services-list .service-item.alternate-bg {
  background-color: var(--light-color);
}
.services-list .service-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.services-list .service-item .service-image {
  flex: 1;
}
.services-list .service-item .service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.services-list .service-item .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80%;
}
.services-list .service-item .service-content h2 {
  margin-bottom: 10px;
}
.services-list .service-item .service-content .service-description {
  margin-bottom: 15px;
}
.services-list .service-item .service-content .service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  align-items: center;
}
.services-list .service-item .service-content .service-buttons .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  border: 2px solid var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
}
.services-list .service-item .service-content .service-buttons .button:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.services-list .service-item .service-content .service-buttons .button.secondary {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.services-list .service-item .service-content .service-buttons .button.secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}
@media (max-width: 768px) {
  .services-list .service-item {
    flex-direction: column !important;
    text-align: center;
  }
  .services-list .service-item .service-content {
    order: 1;
  }
  .services-list .service-item .service-image {
    order: 2;
  }
  .services-list .service-item .service-image img {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .services-list .service-item .service-image img {
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
