
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  .fadeInUp {
    animation-name: fadeInUp;
  }
  .fadeInDown {
    animation-name: fadeInDown;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
  }
  .fa-flask:before {
    content: "\f0c3";
  }
  .fa-heart-o:before {
    content: "\f08a";
  }
  .fa-tablet:before {
    content: "\f10a";
  }


  .xlight .section-title,
.xlight .element-title {
    /* Ajoutez vos styles spécifiques ici */
}

.xlight .wrapper-why-us .col-lg-4,
.xlight .wrapper-why-us .col-sm-4 {
    /* Ajoutez vos styles spécifiques ici, par exemple: */
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }

}

#therapeute .section-title,
#therapeute .element-title {
    animation: fadeInUp 1s;
}

#therapeute .wrapper-why-us .col-lg-4,
#therapeute .wrapper-why-us .col-sm-4 {
    animation: fadeInDown 1s;
}

.clients-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.clients-logo-wrapper {
    gap: 30px;
}

.client-logo img {
    max-width: 150px; /* Taille du logo ajustable selon vos besoins */
    transition: transform 0.3s ease-in-out;
}

.client-logo:hover img {
    transform: scale(1.1); /* Effet de zoom au survol */
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5); /* Légère transparence */
    transition: background-color 0.3s ease; /* Transition fluide */
}

.navbar.scrolled {
    background-color: #202020 !important; /* Couleur opaque lorsque la navbar descend */
}

/* Liens de la navbar */
.navbar .navbar-brand,
.navbar .nav-link {
    color: #fff; /* Texte blanc */
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #f8f9fa; /* Blanc plus brillant au survol */
    background-color: transparent; /* Aucun fond au survol */
}

/* Bouton toggler */
.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1); /* Bordure personnalisée */
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Style mobile */
@media (max-width: 991px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0.85); /* Plus foncé sur mobile */
    }
}

html body .boutonaccueil {
    background-color: #dc3545; /* Rouge standard */
    border: none; /* Aucune bordure */
    color: #ffffff; /* Texte en blanc */
    padding: 12px 24px; /* Espacement interne */
    font-size: 18px; /* Taille du texte appropriée */
    border-radius: 8px; /* Coins arrondis pour un style moderne */
    transition: all 0.3s ease; /* Transition douce pour tous les changements */
    text-align: center; /* Texte centré */
    display: inline-block; /* Affichage en bloc avec ligne */
    cursor: pointer; /* Curseur pointeur pour indiquer la possibilité de cliquer */
    text-decoration: none; /* Pas de soulignement du texte */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre légère pour un effet de profondeur */
    outline: none; /* Aucun contour lors de la sélection ou du clic */
}

html body .boutonaccueil:hover {
    color: #dc3545; /* Le texte devient rouge */
    background-color: #202020; /* Fond noir */
    border: 2px solid #dc3545; /* Bordure rouge */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Ombre plus prononcée au survol */
}

html body .boutonaccueil:active {
    background-color: #ac2025; /* Rouge encore plus foncé lors du clic */
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2); /* Effet enfoncé */
}



/* Style global pour la section Thèmes abordés */
#blog .card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Assure que toutes les cartes ont la même hauteur */
    border: 1px solid #fff; /* Bordure blanche pour contraste sur fond sombre */
    background-color: transparent; /* Arrière-plan transparent pour les cartes */
    color: #fff; /* Texte en blanc */
}

#blog .card-img-top {
    width: 100%; /* Largeur complète pour l'image */
    height: auto; /* Hauteur automatique pour maintenir l'aspect ratio */
    border-bottom: 1px solid #fff; /* Bordure sous l'image pour la séparation */
}

#blog .card-body {
    flex-grow: 1; /* Le corps de la carte remplit l'espace disponible */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre le contenu verticalement */
    align-items: center; /* Centre le contenu horizontalement */
    padding: 20px; /* Padding pour l'espacement interne */
}

#blog h4 {
    margin-top: auto; /* Marge en haut pour pousser le contenu vers le bas */
    margin-bottom: auto; /* Marge en bas pour une symétrie verticale */
}

/* Responsive design pour assurer une bonne visibilité sur tous les appareils */
@media (max-width: 768px) {
    #blog .card {
        margin-bottom: 15px; /* Espacement supplémentaire entre les cartes sur mobile */
    }
}

@media (max-width: 992px) {
    #blog .col-2 {
        flex: 0 0 50%; /* Sur les tablettes, deux cartes par ligne au lieu de cinq */
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    #blog .col-2 {
        flex: 0 0 20%; /* Maintien de 20% de la largeur pour les écrans larges */
        max-width: 20%;
    }
}

html {
    scroll-behavior: smooth;
}

/* Ajustement des cartes dans la section blog */
#blog .row {
    margin-bottom: 30px; /* Plus d'espace entre les lignes */
}

#blog .card {
    border: none; /* Supprime les bordures pour un look plus moderne */
    background-color: transparent;
    text-align: center; /* Centrer le contenu des cartes */
}

/* Images en rond et ajustement de la taille */
#blog .card-img-top {
    width: 150px; /* Taille réduite des images */
    height: 150px; /* Assure une forme carrée */
    border-radius: 50%; /* Rend les images circulaires */
    object-fit: cover; /* Assure que les images s'ajustent bien */
    margin: 0 auto 15px auto; /* Centrer les images avec un espace en dessous */
}

/* Ajustement du texte */
#blog .card-body h4 {
    font-size: 18px; /* Ajuste la taille du texte */
    margin-top: 10px; /* Ajoute un espace entre l'image et le texte */
}

#blog .card-body {
    padding: 10px; /* Réduit l'espace intérieur */
}

/* Espacement responsive */
@media (max-width: 768px) {
    #blog .col-2 {
        flex: 0 0 50%; /* Sur mobile, deux cartes par ligne */
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    #blog .col-2 {
        flex: 0 0 100%; /* Sur petits écrans, une carte par ligne */
        max-width: 100%;
    }
}
/* Assurez-vous que la div affiche l'image comme un contenu et non en background */
.col-lg-6.has-img-bg {
    background: none; /* Supprime le background-image s'il est défini */
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-lg-6.has-img-bg img {
    width: 100%; /* L'image occupe toute la largeur */
    height: auto; /* Maintient l'aspect ratio */
    object-fit: contain; /* Assure que l'image s'ajuste sans être coupée */
    border-radius: 10px; /* Ajoute des coins arrondis pour un effet plus esthétique */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ajoute une ombre légère */
}


.col-lg-6 {
    display: flex;
    align-items: center; /* Centre le contenu verticalement */
    justify-content: center; /* Centre le contenu horizontalement */
   
}

.col-lg-6 .row {
    width: 100%; /* Assure que la largeur s'adapte */
}

.col-lg-6 .boutonaccueil {
    margin-top: 20px; /* Ajoute un espace entre le texte et le bouton */
}


/*Ils nous ont fait confiance*/

.clients-section {
    background-color: #ffffff; /* Légèrement plus foncé que blanc (#ffffff) */
    padding: 50px 0;
}

.clients-section .section-title {
    color: #202020;
    font-size: 36px; /* Plus grand pour correspondre au style de "Thèmes abordés" */
    margin-bottom: 30px;
    font-weight: bold;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel {
    display: flex;
    gap: 40px; /* Espace entre les logos */
    animation: infiniteScroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    width: 180px; /* Taille des logos */
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px; /* Coins arrondis */
}

/* Animation pour le défilement continu */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Footer */

#footer-widgets {
    width: 100%;
    background-color: #202020; /* Modifier selon la palette de couleurs */
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-around; /* Distribue l'espace uniformément */
    align-items: center; /* Centre verticalement */
}

.footer-widget {
    flex: 1; /* Donne à chaque widget une flexibilité égale */
    text-align: center;
    padding: 0 20px;
}

.footer-widget a {
    color:  #dc3545; /* Couleur des liens */
    text-decoration: none;
}

.footer-widget a:hover {
    text-decoration: underline;
}


/* Choisir son thérapeute */


#problématique.et_pb_section {
    background-color: #202020; /* Fond noir */
    color: white; /* Texte en blanc */
    padding: 20px 0; /* Ajout d'espace vertical pour la lisibilité */
}

#problématique .et_pb_text_inner h2 {
    text-align: center; /* Centre le texte des titres */
    font-weight: bold; /* Rend le texte en gras pour le titre */
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem !important;
}
#problématique .et_pb_text_inner h3 {
    text-align: center; /* Centre le texte des titres */
    font-weight: bold; /* Rend le texte en gras pour le titre */
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem !important;
}

.custom-hero-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #202020;
    padding: 40px 20px;
    min-height: 100%;
}

.custom-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.custom-card {
    list-style: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-card__background {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-bottom: 60%; /* Maintient le ratio */
    filter: brightness(0.75);
    transition: filter 0.3s ease;
}

.custom-card__background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* S'assure que l'image remplit la carte */
    border-radius: 12px; /* Applique les coins arrondis à l'image */
}

.custom-card:hover .custom-card__background {
    filter: brightness(0.9);
}

.custom-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: left;
}

.custom-card__category {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ccc;
}

.custom-card__heading {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.custom-card-grid:hover .custom-card {
    filter: blur(3px); /* Toutes les cartes deviennent floues au survol */
    transition: filter 0.3s ease;
}

.custom-card-grid:hover .custom-card:hover {
    filter: blur(0); /* La carte survolée reste claire */
    transform: scale(1.05); /* Effet de zoom */
    z-index: 1; /* Priorité visuelle pour la carte survolée */
}

#problématique {
    margin-top: 100px; /* Ajoute une marge en haut de la section */
    padding: 20px; /* Ajoute un peu d'espace interne */
    background-color: #202020 /* Couleur de fond claire pour distinction */
   
}

.custom-hero-section {
    margin-top: 30px; /* Marge en haut pour espacement */
    margin-bottom: 150px; /* Marge en bas pour espacement */
    padding: 20px; /* Espace interne pour cohérence */
    background-color: #202020; /* Fond légèrement différent pour contraste */
    border-radius: 8px; /* Coins arrondis pour un design moderne */

}



        