* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

.flags {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20px;
    height: 15px;
    margin-right: 20px;
    border-radius: 5px;
    gap: 5px;
}

#logo-navbar-index {
    height: 110px;
    padding-top: 25px;
    padding-bottom: 15px;
    display: block;
}

#logo-navbar {
    height: 150px;
    padding-top: 25px;
    padding-bottom: 15px;
    display: block;
}

#logo-burger {
    display: none;
    height: 130px;
    padding: 20px;
}

.flags img {
    width: 100%
}

/* BURGER MENU */

#side-bar {
    position: absolute;
    width: 330px;
    height: 100%;
    background: #F5F5F5;
    top: 0;
    left: -330px;
    transition: 0.5s ease-out;
    z-index: 4;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    font-weight: 600;
    text-transform: uppercase;
  }

  #side-bar a {
    color: rgb(35, 67, 66);
    text-decoration: none;
    padding: 10px;
  }

  #side-bar ul {
    margin-top: 20px;
  }

  #side-bar li {
    padding: 20px;
  }

  #side-bar li:hover {
    background-color: #d2c8c8;
    transition: 0.1s ease-in-out;
  }
  
  #side-bar.active {
    left: 0;
  }
  
  .active span {
    position: absolute;
  }
  
  .active span:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .active span:nth-child(2) {
    opacity: 0;
  }
  
  .active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  
  .active ~ .content {
    opacity: 0.3;
  }
  
  .toggle-btn {
    position: absolute;
    top: 40px;
    left: 350px;
    cursor: pointer;
    height: 50px;
    width: 50px;
  }
  .toggle-btn span {
    width: 40px;
    height: 7px;
    border-radius: 5px;
    background: #a8a4a4;
    display: block;
    margin-top: 4px;
    transition: 0.3s ease;
    display: none;
  }
  
/* END BURGER MENU */


nav {
    height: 50px;
    justify-content: space-between;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px;
    background-color:#F5F5F5;

}

nav a {
    color: rgb(35, 67, 66);
    text-decoration: none;
}

nav a:hover {
    opacity: 70%;
}

.padding-li {
    padding: 7px;
}

.max-width {
    max-width: 70%;
}

#charte {
    color:#1E3933;
    text-decoration: underline;
}

.logo {
    font-family: 'Questrial';
    font-weight: 600;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:#F5F5F5;
    position: fixed;
    width: 100%;
    transition: top 0.5s ease-in-out;
    padding: 20px;
}

.carrousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carrousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.carrousel-track img {
    cursor: pointer;
    height: 300px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.carrousel-track img:hover {
    transition: 0.2s ease;
    filter: opacity(75%);
}

.image-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox-container {
    position: fixed;
    inset: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 999;
    touch-action: pan-y;
}

.image-lightbox {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: background .2s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,.9);
}

.image-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/*.carrousel-chevron-left, .carrousel-chevron-right {
    align-items: center;
    background-color: transparent;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    backdrop-filter: blur(15px);
    height: 50px;
    justify-content: center;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 2;
}

.carrousel-chevron-left {
    left: 15px;
}

.carrousel-chevron-right {
    right: 15px;
}

.carrousel-chevron-left span, .carrousel-chevron-right span {
    font-size: 50px;
}*/

.desktopMenu {
    display: block;
    position: fixed;
    width: 100%;
    top: 120px;
    transition: 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    z-index: 4;
}

.flex {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.flex-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-symbols {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flex-champ {
    display: flex;
    align-items: center;
    gap: 30px;
}

.flex-champ img {
    max-width: 350px;
    max-height: 100%;
}

.flex-tarif {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    
}

.article {
    align-items: center;
    background-color: #F5F5F5;
}

.article-page {
    align-items: center;
    padding: 70px;
    background-color: #F5F5F5;
}

.blocs-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px;
    background-color: #F5F5F5;
}

.background-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    padding-top: 170px;
    background-image: url("../img/br-index.jpg");
    background-size: cover;
    max-width: 100%;
    height: 720px;
    text-align: center;
}

.logo-manuscrit {
    width: 60%;
}

.background-title {
    background-image: url("../img/br-title.png");
    background-size: cover;
    background-position: bottom;
    height: 500px;
    padding: 80px;
    padding-top: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.background-title-child {
    background-image: url("../img/enfant.jpg");
    background-size: cover;
    background-position: bottom;
    height: 500px;
    padding: 80px;
    padding-top: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.background-title-contact {
    background-image: url("../img/sagrada.jpg");
    background-size: cover;
    background-position: bottom;
    height: 500px;
    padding: 80px;
    padding-top: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.text-align-center {
    text-align: center;
}

.name {
    font-family: 'Questrial';
    text-transform: uppercase;
    color: white;
    font-size: 3em;
}


.description {
    font-family: 'Questrial';
    text-transform: uppercase;
    color: white;
    font-size: 1.6em;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 50px;
}


.questions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


.position {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.whatsapp-block {
    margin: 0 auto;
    background-color: #E5E7E6;
    padding: 10px;
    border-radius: 50px;
    width: 80%;
}

.card {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
    font-family: 'Figtree';
    width: 300px;
    height: 200px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    transition: 0.3s ease-in-out;
}

.tarif {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
    font-family: 'Figtree';
    width: 100%;
    min-height: 250px;
    position: relative;
    transition: transform 0.6s;
    transition: 0.3s ease-in-out;
    margin-bottom: 40px;
}

.tarif:hover {
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.card:hover {
    scale: 1.03;
}

.display {
    display: none;
}

.uppercase {
    font-size: 1.3em;
    text-transform: uppercase;
}

.contact-card {
    display: flex;
    justify-content: center;
}


/* Style de la face avant de la carte */

.card-front,
.card-back,
.whatsapp-front,
.whatsapp-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.whatsapp-front img {
    width: 70px;
    margin: 30px;
}

.whatsapp-front {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: grey;
    border-radius: 10px;
    text-transform: uppercase;
}

.card-front {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}


/* Style de la face arrière de la carte */

.whatsapp-back {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    color: grey;
    padding: 30px;
    border-radius: 10px;
}

.card-back {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    transform: rotateY(180deg);
    background-color: rgba(35, 67, 66, 0.174);
    color: grey;
    padding: 20px;
}

/* Classe pour le retournement de la carte */
 .flipped {
     transform: rotateY(180deg);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.flex-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

.flex-jcc {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 4px;
}

.flex-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 60px;
    gap: 30px;
}

.flex-contact, .flex-press {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    align-items: center;
    background-color: #EFEBE9;
    padding-top: 60px;
    padding-bottom: 60px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.flex-press{
  display:flex;
  align-items:stretch;
}

.map-container iframe {
    width: 700px;
    height: 400px;
}

.press-card{
  flex:0.9;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.press-thumb{
  position:relative;
  display:block;
}

.press-thumb img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
}

.press-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  background:rgba(0,0,0,.75);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-size:.95rem;
}

.press-meta{
  padding:16px 18px 20px;
}

.press-source{
  margin:0 0 6px;
  opacity:.7;
  font-size:.9rem;
}

.press-meta h3{
  margin:0 0 8px;
  font-size:1.2rem;
}

.press-desc{
  margin:0 0 14px;
  opacity:.85;
}

.press-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:#1E3933;
  color:#fff;
  text-decoration:none;
}

.flex-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.press-container {
    position: relative;
    width: 45%;
    padding-top: 25%; /* Aspect ratio (hauteur/largeur) 4:3 */
}

.press-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.padding {
    padding: 30px;
}

.padding-fixed {
    padding: 30px;       
}

.padding-img {
    padding: 50px;
}

.title-margin {
    padding: 30px;
}

.text-margin {
    padding: 15px;
}

.button-margin {
    padding: 15px;
}

.question-margin {
    padding: 10px;
}

.darker-bg {
    background-color: #EFEBE9;
    padding: 30px;
}

.green-bg {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #425e58;
    line-height: 30px;
    text-align: justify;
}


.success {
    background-color: #99B0AB;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid grey;
    opacity: 50%;
    text-align: center;
}

.green-questrial-title {
    
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #425e58;
    font-size: 1.4em;
    text-align: left;
    padding-bottom: 10px;
}

.green-title {
    padding: 40px;
    font-family: 'DM Serif Display';
    font-style: italic;
    color: #425e58;
    font-size: 1.5em;
    text-align: center;
}

.white-button {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: white;
    font-size: 1.3em;
    padding: 30px 10px;
    border: 2px solid white;
    text-decoration: none;
    margin: 30px;
    width: 150px;
    transition: 0.3s;
}

.white-button:hover {
    background-color: white;
    color: rgb(88, 88, 88);
}

.black-button {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #366359;
    padding: 10px 20px;
    border: 2px solid #366359;
    text-decoration: none;
    width: 300px;
    transition: 0.3s;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.DM-Serif-title {
    font-family: 'DM Serif Display';
    color: #1E3933;
}

.DM-Serif-white {
    font-family: 'DM Serif Display';
    color: #ffffff;
    text-align: center;
    font-size: 1.7em;
}

.DM-Serif-white-title {
    font-family: 'DM Serif Display';
    color: #ffffff;
    text-align: center;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
}

.grid-categories {
    background-color: #F5F5F5;
    display: grid;
    grid-template-columns: 49% 49%;
    justify-items: center;
    gap: 35px;
}

#contactForm {
    width: 100%;
}

a {
    text-decoration: none;
}

.addictions:hover, .stress:hover, .sommeil:hover, .poids:hover, .peurs:hover, .confiance:hover, .relations:hover, .passé:hover, .deuil:hover, .douleur:hover, .cat-enfant:hover {
    opacity: 80%;
    transition: 0.2s ease-in-out;
    transform: translateY(-3px);

}

.addictions, .stress, .sommeil, .poids, .douleur, .peurs, .confiance, .relations, .passé, .deuil {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addictions {
    background-image: url('../img/addiction.webp');
}

.stress {
    background-image: url('../img/stress.webp');
}

.sommeil {
    background-image: url('../img/sommeil.webp');
}

.poids {
    background-image: url('../img/poids.webp');
}

.douleur {
    background-image: url('../img/douleur.jpeg');
}

.peurs {
    background-image: url('../img/peur.webp');
}

.confiance {
    background-image: url('../img/confiance.webp');
}

.relations {
    background-image: url('../img/relations.png');
}

.passé {
    background-image: url('../img/passé.webp');
}

.deuil {
    background-image: url('../img/deuil.jpeg');
}

.hidden-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
  }

.hidden-right {
    opacity: 0;
    transform: translateX(+20px);
    transition: opacity 0.5s, transform 0.5s;
  }

.visible {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
  }

.grid {
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: #F5F5F5;
}

.grid-pic {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 65px;
}

.grid-pic img {
    max-width: 95%;
}

.grid-man-pic {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
}

.man-img {
    height: 400px;

}

.img-apropos {
    width:40%; 
    float:right; 
    margin-left:40px;
}

.img-portrait {
    width:35%; 
    float:left; 
    margin-right: 20px; 
    margin-left:0
}

.link-color {
    color: white;
}

.cats-enfant {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 25px;
}

.cat-enfant {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    background-position: contain;
    background-size: cover; /* Vous pouvez remplacer 'cover' par 'contain' ou 'auto' selon vos besoins */
    transition: 0.2s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.ecrans {
    background-image: url('../img/ecrans.jpg');
}

.comportement {
    background-image: url('../img/comportement.jpg');
}

.substance {
    background-image: url('../img/substance.jpg');
}

.white-title-children {
    font-family: 'DM Serif Display';
    color: #ffffff;
    text-align: center;
}

.cursor {
    cursor: pointer;
}

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

.scolaire-hidden-text, .professionnel-hidden-text, .enseignant-hidden-text, .therapeute-hidden-text, .anxiete-text, .sommeil-text,
.humeur-text, .colere-text, .alimentation-text, .estime-text, .comportement-text, .TSA-text, .hyperactivite-text, .TSPT-text,
.substances-text, .ecrans-text, .perte-text, .stress-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.figtree {
    font-family: 'Figtree';
    font-weight: 800;
}

.figtree-background {
    background-color: #264c45;
    color: #F5F5F5;
    padding: 5px;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    padding: 20px;
    padding-left: 25px;
    padding-right: 25px;
    text-transform: uppercase;
    color: #15322c;
    /*background-color: #8fa09cb0;*/
    border-bottom: 2px solid #8fa09cb0;
    font-family: 'DM Sans';
    font-weight: 500;
}

.question:hover {
    /*background-color: #6f918ab0;*/
    border-bottom: 2px solid #6f918ab0;
    transition: 0.2s ease;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.question-hidden-text {
    max-height: 0;
    overflow: hidden;
    text-transform: none;
}

.visible {
    max-height: 3500px;
}

.chevron-icon {
    transition: transform 0.3s;
  }
  
.chevron-icon.rotate {
    transform: rotate(180deg);
  }

p {
    font-family: 'DM Sans';
    font-size: 1.1em;
    text-align: justify;
}

.black-button:hover {
    background-color: #366359;
    color: white;
}

.thomas {
    max-width: 700px;
}

legend {
    padding: 3px 10px;
  }

fieldset {
    text-align: center; /* Centrer le contenu du fieldset */
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin: 0 auto;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

label p {
    color: rgb(81, 81, 81);
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], select, textarea {
    width: 70%;
    padding: 8px;
    margin-bottom: 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: rgba(72, 95, 87, 0.094);
}

select, option, input, input:focus, textarea {
    font-family: 'DM Sans';
  }

input:focus, textarea:focus {
    border: none;
  }

textarea {
    resize: none;
  }

.cards {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    padding-top: 35px;
    text-align: center;
    margin-right: 30px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-image: url("../img/br-index.jpg");
    background-size: cover;
    max-width: 100%;
    height: 20vh;
    text-align: center;
    font-family: 'Questrial';
    text-transform: uppercase;
    color: white;
}

.fixed-element {
    position: fixed;
    bottom: -60px;
    right: 30px;
    z-index: 200;
    backdrop-filter: blur(15px); 
    color: #15322c;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0; /* Cachée par défaut */
    transition: bottom 0.5s ease, opacity 0.5s ease; /* Transition pour l'animation */
  }
  
  .fixed-element.visible {
    bottom: 30px; /* Position quand visible */
    opacity: 1; /* Rendre visible */
  }

  #arrow {
    color: #15322c;
  }

.review button {
    position: absolute;
    top: 50%;
    background-color: transparent;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    margin: 20px;
}

#reviews-slider {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 400px;
}

.review {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: all 0.5s ease;
    height: 250px;
}

.review.active {
    left: 0;
    opacity: 1;
}

.review.inactive {
    right: 100%;
    opacity: 0;
}


.review h3 {
    margin: 0;
    padding-bottom: 5px;
    font-size: 1.2em;
}

.review p {    
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
    margin: 5px auto;
}


.review.active {
    display: block;
}

button.prev-slide, button.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button.prev-slide {
    left: 10px;
}

button.next-slide {
    right: 10px;
}


.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

.footer {
    display: flex;
    align-items: stretch;
    padding: 30px;
    background-color: #EFEBE9;
    min-height: 150px;
    justify-content: space-around;
    align-items: flex-start;
    color: rgb(82, 82, 82);
    font-size: 0.9em;
}

.logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
}

.logos-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
}

.arche {
    margin-top: 15px;
}

.arche-text {
    text-transform: lowercase;
    font-size: 0.9em;
}

.realisation {
    text-align: right;
}

.logos #lydia {
    height: 20px;
}

.logos #espece, .logos #bizum {
    height: 40px;
}

.logos-card #lydia {
    height: 15px;
}

.logos-card #espece, .logos-card #bizum {
    height: 25px;
}

.footer h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer a {
    text-decoration: none;
    color: rgb(82, 82, 82);
}

.liens {
    font-size: 0.9em;
    display: block;
}

.liens h3 {
    padding: 3px;
}

.footer a:hover {
    opacity: 50%;
}

.address, .phone {
    display: flex;
    gap: 30px;
}

.whatsapp-img {
    width:50px;
}

@media screen and (max-width: 1650px) {
    
    .press-thumb img{
      height:260px;
    }
    
    .thomas {
        max-width: 500px;
    }
}

@media screen and (max-width: 1500px) {
     
    .press-container {
        width:100%;
        padding-top: 80%;
    }
    
    .flex-press, .flex-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        margin: 0px;
        padding: 20px;
        width: 100%;
    }
}


@media screen and (max-width: 1200px) {

    nav {
        font-size: 0.8em;
    }

    .background-title, .background-title-child, .background-title-contact {
        height: 360px;
    }

    .description {
        font-size: 1.5em;
    }

    .name {
        font-size: 2.5em;
    }

    .grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .question {
        font-size: 1em;
    }

    .text-card-front {
        padding: 50px;
        font-weight: 400;
    }

    .max-width-enfance {
        max-width: 85%;
        font-size: 0.8em;
    }

    .cats-enfant {
        display: block;
    }

    .cat-enfant {
        margin-bottom: 30px;
    }

    .padding-img {
        padding: 0;
    }

    .flex-champ {
        display: flex;
        flex-direction: column;
    }

    .DM-Serif-white {
        font-size: 1.5em;
    }

    .flex-champ img {
        max-width: 100%;
        max-height: 100%;
    }

    .flex-center {
        flex-direction: column;
    }

    .flex-whatsapp {
        font-size: 0.9em;
    }

    .whatsapp-block {
        min-width: 80%;
        gap: 0;
    }

    .cards {
        margin-right: 0;
    }

    .grid-categories {
        justify-content: center
    }

    .display {
        display: block;
    }

    .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex-contact .card {
        width: 200px;
    }

    #contactForm {
        text-align: center;
    }

    .grid-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex {
        align-items: center;
    }

    .liens {
        display: none;
    }

    .text-card {
        font-size: 1.8em;
        line-height: 20px;
    }

    .whatsapp-img {
        width:40px;
    }
    
}

@media screen and (max-width: 1000px) {


    .card {
        font-size: 0.7em;
    }

    .logo-manuscrit {
        width: 50%;
    }

}

@media screen and (max-width: 900px) {
    
    .press-thumb img{ height:220px; }

    .bar {
        display: block;
    }
    
    .desktopMenu {
        display: none;
    }
    
    .question {
        font-size: 0.8em;
    }
    
    .toggle-btn span {
        display: block;
      }
    
    
    .background-title, .background-title-child, .background-title-contact {
        padding-top: 180px;
    }
    
    .map-container iframe {
        width: 640px;
    }
    
    .max-width {
        max-width: 100%;
    }
     
    .press-container {
        width:100%;
        padding-top: 80%;
    }
    
    .grid-pic {
        display: block;
    }
    
    .grid-pic img {
        display: none;
    }
    
    #contactForm {
        width: 90%;
    }
    
    .card {
        width: 100%;
    }
    
    .flex-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        margin: 0px;
        padding: 10px;
        width: 100%;
    }
    
    .background-image {
        height: 700px;
        padding-top: 130px;
    }
    
    .logo-manuscrit {
        width: 60%;
    }

}

@media screen and (max-width: 800px) {
    .map-container iframe {
        width: 550px;
    }
}


@media screen and (max-width: 700px) {
    
    .carrousel-track img {
        height: 200px;
    }

    #logo-burger {
        display: block;
    }

    #logo-navbar {
        display: none;
    }

    .flags {
        margin-right: 0;
    }
    
    .green-questrial-title {
        font-size: 1.2em;
    }

    .background-image {
        height: 750px;
        padding-top: 150px;
    }

    .logo-manuscrit {
        width: 90%;
    }
    
    .button-margin {
        padding: 0px;
    }
    
    .DM-Serif-title {
        font-size: 1.5em;
    }

    .DM-Serif-white {
        font-size: 1.5em;
        font-weight: 400;
    }

    .description {
        font-size: 1em;
        line-height: 30px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .thomas {
        max-width: 350px;
    }

    .question {
        font-size: 0.7em;
        padding: 0px;
        padding-top: 20px;
        padding-bottom: 10px;
        font-weight: 400;
        
    }

    .question-hidden-text {
        font-size: 1.3em;
        text-transform: none;
    }
    
    .contact-card .card {
        width: 300px;
    }

    .contact-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .white-button {
        font-size: 1em;
    }

    .flex-champ img {
        min-width: 250px;
        max-height: 100%;
    }

    
    .grid-categories {
        grid-template-columns: 97%;
    }

    .name {
        font-size: 2em;
        font-weight: 400;
    }
    
    .map-container iframe {
        width: 500px;
        height: 400px;
    }

    .padding {
        padding: 0;
    }

    .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card {
        margin-left: 0;
        margin-right: 0;
    }
  

    .padding-responsive {
        padding: 20px;
    }

    p {
        font-size: 1em;
    }

    .img-apropos,
    .img-portrait {
        display: none;
    }

    .grid-man-pic {
        display: block;
    }

    .man-img {
        display: none;

    }

    .flex-responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex {
        padding: 0px;
    }

    .white-button {
        width: 80%;
        display: block;
    } 
    
    .max-width {
        max-width: 100%;
    }

    .DM-Serif-white-title {
        font-size: 1.8em;
        font-weight: 400;
        padding: 30px;
    }

    .background-title, .background-title-child, .background-title-contact {
        font-size: 1.4em;
        font-weight: 400;
    }

    .DM-Serif-title, .green-title {
        font-weight: 400;
    }

    .text-card {
        font-size: 1.5em;
        line-height: 11px;
        padding: 25px;
    }

    .text-card-front {
        font-size: 1.9em;
    }

    .position {
        bottom: 30%;
        right: 50%;
    }

    .addictions, .stress, .sommeil, .poids, .douleur, .peurs, .confiance, .relations, .passé, .deuil {
        background-size:cover;
        justify-content: center;
    }

    
    .darker-bg {
        padding: 18px;
    }

    .text-margin {
        padding: 10px;
    }

    .question-margin {
        padding: 5px;
    }

    .title-margin {
        padding:15px;
    }

    .article-page, .blocs-page {
        padding: 20px;
    }

    
    .flex-champ img {
        min-width: 280px;
    }

    .green-bg {
        padding: 0;
        text-align: justify;
        font-size: 0.9em;
    }

    input[type="text"], input[type="email"], select, textarea {
        width: 90%;
    }

    .footer {
        font-size: 0.8em;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .realisation {
        text-align: center;
    }

    .paiement {
        text-align: center;
        width: 90%;
    }

    #logo-navbar {
        height: 130px;
        padding: 20px;
    }

    .review p {
        -webkit-line-clamp: 7;
    }

}

@media screen and (max-width: 600px) {

    .map-container iframe {
        width: 420px;
        height: 450px;
    }
    
    .whatsapp-img {
        width:35px;
    }
}

@media screen and (max-width: 500px) {

    .map-container iframe {
        width: 370px;
        height: 400px;
    }
    
    .press-card{
      max-height: 360px;
    }
    
    .press-desc {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 410px) {

    .map-container iframe {
        width: 270px;
    }
}
