/* @import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Abhaya+Libre:wght@400;500;600;700;800&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap'); */

:root {
  --body-color: #faf7f3;
  --header-bg-color: #f6e1cf;
  --footer-bg-color: #f6e1cf;
  --section1-bg-color: #f6e1cf;
  --section2-bg-color: #f6e1cf;
  --section3-bg-color: #f6e1cf;
  --section4-bg-color: #f6e1cf;
  --h2-h3-color: rgb(130, 53, 53);
  --text-color: #000;
  --reserve-color: #000;
  --link-color: #b85042;
  --link-hover-color: #632f27;
  --font1: "Abhaya Libre";
  --font2: "Libre Franklin";
  --font3: "ABeeZee";
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

/* ****************** REVEAL *****************  */

.reveal-loaded .reveal [class*="reveal-"] {
  opacity: 0 !important;
  animation: none !important;
  transition: 0s !important;
}
.reveal-loaded [class*="reveal-"] {
  animation: revealAnimation 1s cubic-bezier(0.5, 0, 0, 1) both;
}
.reveal-loaded .reveal-1 {
  animation-delay: 0.05s;
}
.reveal-loaded .reveal-2 {
  animation-delay: 0.1s;
}
.reveal-loaded .reveal-3 {
  animation-delay: 0.2s;
}
.reveal-loaded .reveal-4 {
  animation-delay: 0.3s;
}
.reveal-loaded .reveal-5 {
  animation-delay: 0.4s;
}
.reveal-loaded .reveal-6 {
  animation-delay: 0.5s;
}
.reveal-loaded .reveal-7 {
  animation-delay: 0.6s;
}
.reveal-loaded .reveal-8 {
  animation-delay: 0.7s;
}
.reveal-loaded .reveal-9 {
  animation-delay: 0.8s;
}
.reveal-loaded .reveal-12 {
  animation-delay: 1.1s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-loaded [class*="reveal-"] {
    animation: none !important;
  }
}
@keyframes revealAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

strong {
  font-weight: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text-color);
  background-color: var(--body-color);
  /*width: 100vw;*/
  /*overflow: hidden;*/
}

.hiddenTitles {
  display: none;
}

.logo {
  position: sticky;
  display: block;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

h2 {
  font-family: var(--font1);
  color: var(--h2-h3-color);
  font-weight: 400;
  font-size: 4rem;
  text-align: left;
  margin: 0 5%;
  padding-top: 80px;
  text-shadow: 3px 3px 15px #f4e0d9;
}

h3 {
  font-family: var(--font2);
  font-size: 2.7em;
  color: var(--h2-h3-color);
  font-weight: 400;
  text-align: center;
  margin-bottom: 70px;
}

p,
.sign {
  font-family: var(--font3);
  font-size: 1.2rem;
}

/* ****************** MENU ******************* */

.hamburger {
  position: fixed;
  z-index: 10;
  top: 40px;
  right: 40px;
  height: 40px;
  width: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.line {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--link-hover-color);
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}

.l1 {
  transform: translateY(-12px);
}
.l3 {
  transform: translateY(12px);
}
.hamburger.open .l1 {
  transform: translateY(0px) rotate(135deg);
}
.hamburger.open .l2 {
  opacity: 0;
}
.hamburger.open .l3 {
  transform: translateY(0px) rotate(-135deg);
}

.navlinks-container {
  position: fixed;
  z-index: 9;
  width: 100vw;
  min-height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--section1-bg-color);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #cfcfcf;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.73, 0.11, 0.67, 0.84);
}

.navlinks-container.open {
  transform: translate(0);
}

.menu-link {
  position: relative;
  font-family: var(--font3);
  font-size: 2rem;
  color: var(--link-color);
  width: max-content;
  height: 37px;
  display: block;
  margin: 10px 0;
  overflow: hidden;
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 4px;
  width: 100%;
  left: 0;
  background-color: var(--link-hover-color);
  transition: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.3s;
  transform: scaleX(1);
}

.menu-link:hover::after {
  transform: scaleX(1);
}

.menu-link:hover .letter,
.menu-link.play .letter {
  transform: translateY(-100%);
}

.menu-link .blockmenu {
  width: max-content;
  height: 37px;
  display: block;
}

.menu-link .blockmenu::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 3px;
  width: 100%;
  left: 0;
  background-color: var(--link-hover-color);
  transition: 0.55s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.3s;
  transform: scaleX(0);
}

.menu-link .blockmenu:hover::after {
  transform: scaleX(1);
}

.menu-link .blockmenu:last-child {
  color: var(--link-hover-color);
}

.menu-link .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
}

.letter:nth-child(1) {
  transition-delay: 0s;
}
.letter:nth-child(2) {
  transition-delay: 0.03s;
}
.letter:nth-child(3) {
  transition-delay: 0.06s;
}
.letter:nth-child(4) {
  transition-delay: 0.09s;
}
.letter:nth-child(5) {
  transition-delay: 0.12s;
}
.letter:nth-child(6) {
  transition-delay: 0.15s;
}
.letter:nth-child(7) {
  transition-delay: 0.18s;
}
.letter:nth-child(8) {
  transition-delay: 0.21s;
}
.letter:nth-child(9) {
  transition-delay: 0.24s;
}
.letter:nth-child(10) {
  transition-delay: 0.27s;
}
.letter:nth-child(11) {
  transition-delay: 0.3s;
}
.letter:nth-child(12) {
  transition-delay: 0.33s;
}
.letter:nth-child(13) {
  transition-delay: 0.36s;
}
.letter:nth-child(14) {
  transition-delay: 0.39s;
}
.letter:nth-child(15) {
  transition-delay: 0.42s;
}
.letter:nth-child(16) {
  transition-delay: 0.45s;
}
.letter:nth-child(17) {
  transition-delay: 0.48s;
}
.letter:nth-child(18) {
  transition-delay: 0.51s;
}

/* ****************** MAIN ******************* */

main {
  position: relative;
}

.logoH1 {
  position: relative;
  height: 100vh;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.logoH1 img {
  position: absolute;
  width: 100%;
}

/* .logoH1 img {
  height: 100%;
} */

.xxl {
  display: block;
}

.xl {
  display: none;
  /* width: 75%; */
}

/* ********************* GHOST ********************** */

.ghostpopup-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.ghostpopup-overlay.open {
  display: block;
  /* à passer en NONE si pas de Ghost */
}
.ghost {
  /* background-color: var(--h2-h3-color); */
  position: relative;
  width: 45vw;
  height: 45vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ghost .image-promo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghost .image-promo img {
  position: absolute;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--link-color);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
.popup-exit {
  position: absolute;
  top: 0%;
  right: 0%;
  transform: translate(0%, 0%);
  /* color: var(--h2-h3-color); */
  color: var(--link-color);
  font-size: 3rem;
  transform-origin: 50% 50%;
  transition: transform 0.3s ease-in-out;
}
.popup-exit:hover {
  transform: rotate(45deg);
}
/* .ghost p {
  color: var(--header-bg-color);
  font-family: var(--font1);
  font-size: 5vw;
  font-weight: 400;
  letter-spacing: 1vw;
  white-space: nowrap;
  margin : 100px 0;
  text-align: center;
} */

section {
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.2);
}

.block {
  min-height: 100vh;
  background: var(--section1-bg-color);
  text-align: center;
  color: #333;
}

.content {
  padding: 25px;
}

/* ************************* INFOS ************************ */

.info {
  background-color: var(--section4-bg-color);
  position: relative;
  width: 100vw;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.info .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.info .image-bols {
  width: 100%;
}
.info .image-bols img {
  width: 100%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
}

.info .find {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  width: 90vw;
  margin-top: 35px;
}

.info .adresse {
  display: block;
  font-size: 1rem;
  padding: 50px;
}

.info .pmr {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 0 40px;
}
.info .pmr i {
  font-size: 1.4rem;
  padding: 10px;
  margin-right: 25px;
  color: white;
  background-color: blue;
  border-radius: 7px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.info .pmr p {
  font-size: 1.2rem;
}

.info .horaires {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info .horaires span {
  font-size: 2rem;
}
.info .horaires p {
  margin: 10px;
}

.info h3 {
  margin-bottom: 0;
}

.info p {
  padding-top: 25px;
  font-size: 1.5rem;
}

.info .vitrine {
  width: 33vw;
}
.info .vitrine img {
  width: 100%;
}

.info .social {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  margin: 0 0 45px 0;
}
.info .social a {
  color: var(--h2-h3-color);
  margin: 0 10px;
  font-size: 3em;
  transition: 0.5s;
}
.info .social a:hover {
  color: var(--h2-h3-color);
  transform: rotateZ(4deg) translateY(-5px) scale(1.2);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.liseret {
  width: 100%;
}
.liseret img {
  width: 100%;
}

/* ******************** PRESENTATION ******************* */

.presentation {
  background-color: var(--section1-bg-color);
}

.presentation .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 120px 0 40px;
}

.pic {
  width: 35%;
}

.presentation .description {
  width: 80%;
}

.presentation .description p {
  text-align: justify;
}
.sign {
  text-align: right;
}
.pic img {
  position: relative;
  background-size: cover;
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

/* ******************** PRESTATIONS ******************** */


.prestations {
  background-color: var(--section2-bg-color);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
}

.prestations h3 {
  margin-left: 35px;
}

.prestations .container {
  position: relative;
}


/* ------------------ CARDS ------------------- */


.card {
  position: relative;
  /* overflow: hidden; */
  min-width: 255px;
  max-width: 500px;
  min-height: 355px;
  background: #f2c8b5;
  padding: 25px 25px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 50px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  border: 1px solid var(--link-color);
}
.cercle {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cercle img {
  /* position: absolute; */
  width: 85%;
  opacity: 0.65;
}

.card .h3 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 25px;
}
.card h3 {
  display: block;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--font1);
  font-size: 1.8rem;
  margin-right: 25px;
  margin: 0;
  text-shadow: 1px 1px 5px black;
  width: 65%;
  text-wrap: balance;
  text-align: right;
}


.kobido .img-service {
  background: url(img/kobido.jpg);
}
.douceur .img-service {
  background: url(img/douceur.jpg);
}
.drainage-corps .img-service {
  background: url(img/drainage_mini.jpg);
}
.drainage-visage .img-service {
  background: url(img/visage_mini.jpg);
}
.reflex-plantaire .img-service {
  background: url(img/reflex-plantaire_mini.jpg);
}
.reflex-faciale .img-service {
  background: url(img/reflex-faciale.jpg);
}
.sport .img-service {
  background: url(img/recup-sportive.jpg);
}
.post-natal .img-service {
  background: url(img/post-natal.jpg);
}
.face-anterieure .img-service {
  background: url(img/face-anterieure.jpg);
}
.hotstones .img-service {
  background: url(img/pierre-chaudes.jpg);
}
.sound .img-service {
  background: url(img/sonore.jpg);
}
.olfactif .img-service {
  background: url(img/olfactif_mini.jpg);
}
.visage .img-service {
  background: url(img/massage-visage.jpg);
}
.detente .img-service {
  background: url(img/corps_mini.jpg);
}
.niromathe .img-service {
  background: url(img/niromathe.jpg);
}

.card .img-service {
  position: absolute;
  width: 200px;
  height: 100px;
  box-shadow: -5px -5px 1px var(--link-color);
  top: -50px;
  left: -50px;
  background-size: cover;
  background-position: center center;
}

.card p {
  position: relative;
  font-size: 1rem;
  text-align: justify;
  color: var(--reserve-color);
}

.tableau-style {
  position: relative;
  /* margin: auto 0; */
  width: 100%;
  bottom: -10px;
}
td:first-child {
  padding: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
  color: var(--reserve-color);
}
.card td:last-child {
  min-width: 47px;
  padding: 5px;
  color: crimson;
  font-weight: bold;
  text-align: right;
}

/* ************************ Bouton Réservation **************************** */

.btn {
  /* position: absolute; */
  /* top: 180px;
  right: 7%; */
  text-align: center;
  width: 33%;
  margin-left: 66%;
  margin-top: 25px;
  padding: 15px 0;
  background-color: #fff1f1;
  border: 1px solid black;
  border-radius: 12px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  z-index: 19;
  cursor: pointer;
}

.btn a {
  color: #823535;
  font-size: 1rem;
  font-family: var(--font3);
}
.btn:hover a {
  text-shadow: 1px 1px 3px rgba(130, 53, 53, 0.2);
}
.btn:hover {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-accueil {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 20%;
  min-width: 206px;
  margin: 0;
}

.services {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

/* .massage-zone {
  margin-top: 100px;
  width: 66%;
  min-width: 585px;
  height: 500px;
  border-radius: 10px;
  background: url(img/massages_par_zone.jpg);
  background-size: cover;
  background-position: center center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
} */

.advert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  width: 100%;
}
.pregnant,
.ados {
  padding: 25px 20px;
  text-align: left;
  width: 100%;
}


/* ********************** GROUPES ********************* */

.group-content {
  margin-bottom: 75px;
}
.group-content h3 {
  margin-top: 45px;
}
.group {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.group p {
  width: 45%;
  padding: 15px;
  text-align: justify;
}

.img-group,
.img-yoga {
  height: 375px;
  border-radius: 10px;
  background: url(https://www.holistic19.fr/wp-content/uploads/2019/07/Yoga-nidra-Christine-BOIN-BRIVE-e1602866935237.jpg);
  background-size: cover;
  background-position: center center;
  width: 45%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* ************************ YOGA ************************* */

.link-yoga {
  margin-bottom: 30px;
}

.cours-yoga {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.cours-yoga p {
  margin: 25px;
}

.description-yoga1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 30px 0;
}
.description-yoga2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  margin: 30px 0;
}

.yoga1 {
  background: url(img/aurel1.jpg);
  background-size: cover;
  background-position: center center;
  min-width: 355px;
  min-height: 355px;
}
.yoga2 {
  background: url(img/aurel2.jpg);
  background-size: cover;
  background-position: center bottom;
  min-width: 355px;
  min-height: 420px;
}
.yoga3 {
  background: url(img/aurel3.jpg);
  background-size: cover;
  background-position: center center;
  min-width: 355px;
  min-height: 355px;
}

/* ******************* AVIS CLIENTS **************************** */

/* Section globale */
#avis-clients {
  padding: 0 20px 65px 20px;
  background: var(--body-color);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow: hidden;
  /* font-family: 'Arial', sans-serif; */
  position: relative;
}

#avis-clients h2 {
  margin-bottom: 40px;
}

.google-link {
  margin-left: 4vw;
}

/* Conteneur carrousel */
.carrousel {
  display: flex;
  gap: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  margin-top: 100px; 
}

/* Cartes */
.carte {
  flex: 0 0 300px; /* Largeur stricte des cartes */
  display: flex;
  background-color: var(--section1-bg-color);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-size: 1rem;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte .no-rate {
  display: none;
}

/* Effet au survol */
.carte:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.top-carte {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.carte blockquote {
  padding-top: 30px;
  text-align: justify;
}


/* *********************** CONTACT *********************** */

.contact {
  background-color: var(--section3-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
}

.contact .block {
  width: 100%;
}

.pic-salon-mini {
  display: none;
  width: 100vw;
}


/* ************************ FORMULAIRE *********************** */

form {
  display: block;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  height: 100%;
  padding-bottom: 25px;
}
form input,
textarea {
  border: 1px solid var(--hover-a-color);
  background-color: #fff1f1;
  color: var(--text-color);
  width: 90%;
  margin: 15px 0;
  padding: 5px;
  outline: 0;
  border-radius: 6px;
  font-size: 15px;
  resize: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.75);
  padding: 15px;
  border-radius: 6px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--text-color);
}
form input[type="submit"] {
  margin-bottom: 10px;
  background-color: #fff1f1;
  padding: 15px;
  font-weight: 600;
  color: var(--a-color);
  border: 0;
  transition: 0.4s;
  cursor: pointer;
}
form input[type="submit"]:hover {
  background-color: #ffe4e4;
  text-decoration: underline;
}



/* ***************************** CGU *************************** */

.checkbox {
  font-size: 0.8em;
  margin: 20px 0;
}
form input[type="checkbox"] {
  background-color: rgba(255, 255, 255, 0.2);
  width: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0px;
  float: left;
  margin: 3px 10px 0 0;
}

form .hidden {
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -10000px;
  width: 1px;
}

.cgu {
  position: relative;
  color: var(--link-hover-color);
  line-height: 1.4em;
}
.cgu:hover {
  color: var(--link-color);
}
.cgu::before {
  content: "";
  position: absolute;
  background: var(--link-color);
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cgu:hover::before {
  transform-origin: 0 0;
  transform: scaleX(1);
}

/* *********************** ALERT ERROR Formulaire ************** */

.alert-error {
  background-color: #fbb7b3;
  border: 3px solid #98070a;
  color: #98070a;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}
.alert-success {
  background-color: #b3fbb5;
  border: 3px solid #07980e;
  color: #079813;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* *********************** PHOTOS SECTIONS ************************** */

.iphone {
  display: none;
}

.prestations {
  background: url("img/3statues.webp");}

.third {
  background: url("img/salon.webp");
}
.prestations,
.third {
  padding-top: 100vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* ************************* FOOTER ************************* */

footer {
  position: relative;
  z-index: 5;
  width: 100%;
  background-color: #fbc79a;
  bottom: 0px;
}

footer .footercontent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-top: 25px;
  font-size: 14px;
  color: var(--link-hover-color);
}

footer p {
  color: var(--link-hover-color);
}
footer p a,
.cours-yoga p a,
.link-yoga a {
  position: relative;
  color: var(--link-hover-color);
}
.cours-yoga a:hover,
footer p:hover a,
.link-yoga a:hover {
  color: var(--link-color);
}
.cours-yoga a::before,
footer p a::before,
.link-yoga a::before {
  content: "";
  position: absolute;
  background: var(--link-hover-color);
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.4s;
}
.cours-yoga a:hover::before,
footer p a:hover::before,
.link-yoga a:hover::before {
  transform-origin: 0 0;
  transform: scaleX(1);
}
.webcod {
  font-size: 1.1em;
}
.webcod #mouse {
  font-weight: bold;
  text-shadow: 0 0 0.2em #00f5ff;
  transition: 0.4s;
  color: #555;
}
.webcod span #w {
  color: #cc0b0d;
}
.webcod #mouse:hover {
  text-shadow: 0 0 0.5em #cc0b0d;
}

.avertissement {
  padding: 25px;
}
.avertissement p {
  font-size: 0.8rem;
}

/* *********************** RESPONSIVE ************************* */

@media (max-width: 1380px) {
  .info .content {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1080px) {
  .ghost {    
    width: 70vw;
    height: 70vw;
  }
  .info .find {
    flex-direction: column-reverse;
  }
  .info .vitrine {
    width: 66vw;
  }
}

@media (max-width: 1000px) {
  .hamburger {
    top: 30px;
    right: 30px;
  }
  .logoH1 img {
    width: 75vw;
  }
  .first .container {
    flex-direction: column;
    align-items: center;
    text-align: justify;
    margin: 25px 40px 0 40px;
  }
  .first .pic {
    width: 60%;
  }
  .first .description {
    width: 100%;
    margin-bottom: 40px;
  }
  .prestations .group {
    flex-direction: column-reverse;
  }
  .group p,
  .prestations .img-group {
    width: 90%;
  }
  .prestations p {
    text-align: justify;
    margin-top: 50px;
  }
  .prestations .consigne {
    margin: 0 auto;
    text-align: center;
  }
  .tableau-style td p {
    margin-top: 0px;
  }
  .info h3 {
    font-size: 2.1rem;
  }
  .info p {
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .info .pmr {
    flex-direction: column;
  }
}

@media (max-width: 800px) {  
  .ghost {    
    width: 80vw;
    height: 80vw;
  }
  .hamburger {
    height: 30px;
    width: 30px;
  }
  .l1 {
    transform: translateY(-10px);
  }
  .l3 {
    transform: translateY(10px);
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.3rem;
  }
  /* .ghost {
    height: 75vh;
  } */

  .description-yoga1,
  .description-yoga2 {
    flex-direction: column;
  }
  form {    
  width: 95%;
  }
  form p {
    font-size: 1.7rem;
  }
  .info .adresse {
    padding: 45px 0;
  }
}

@media (max-width: 600px) {
  /* .ghost {
    width: 80vw;
  } */
  .saut-de-ligne,
  .rdv {
    top: -65px;
  }
  .saut-de-ligne a,
  .rdv a {
    font-size: 1rem;
    padding: 5px 10px;
  }
  form p {
    font-size: 1.3rem;
  }
  .info .pmr i {
    font-size: 1.3rem;
    padding: 10px;
  }
  footer .footercontent {
    flex-direction: column;
    padding: 0;
  }
  footer p {
    padding: 8px;
  }
}

@media (max-width: 530px) {
  p,
  form p {
    font-size: 1rem;
  }
  .ghost {    
    width: 90vw;
    height: 90vw;
  }
  .first .container {
    margin: 25px 15px 0 15px;
  }
  .pregnant,
  .ados {
    font-size: 0;
  }
}

@media (max-width: 500px) {
  .xxl {
    display: none;
  }
  .xl {
    display: block;
  }
  /* .ghost {
    height: 55vh;
  } */
  .block {
    min-height: 0;
  }
  .hamburger {
    top: 20px;
    right: 20px;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  .presentation .container {
    margin: 0 25px;
  }
  .services .vertical {
    display: block;
  }
  .services .horizontal {
    display: none;
  }
  .card .img-service {
    position: absolute;
    width: 150px;
    height: 100px;
    box-shadow: -5px -5px 1px var(--link-color);
    top: -25px;
    left: -25px;
    background-size: cover;
    background-position: center center;
}
  .card h3 {
    font-size: 26px;
  }
  .tableau-style td {
    text-wrap: wrap;
  }
  .prestations .group p {
    width: 100%;
  }
  .info .adresse {
    padding: 45px 0;
  }
  .info h3 {
    font-size: 1.7rem;
  }
  .prestations,
  .third {
    background: url("");
    padding-top: 0;
    background-size: 0;
    background-position: center center;
    background-attachment: fixed;
    box-shadow: 0 0 0 #000;
  }
  .iphone {
    display: block;
    width: 100vw;
  }
  
}

@media only screen and (max-device-width: 500px) {
  .background-image {
    background-size: auto;
    -webkit-background-size: auto;
  }
}

@media (max-width: 450px) {
  .hamburger {
    right: 10px;
  }
  /* .ghost {
    height: 48vh;
  } */
  .saut-de-ligne {
    display: none;
  }
  .rdv {
    display: inline;
    top: -60px;
    padding: 5px 10px;
  }
  .rdv a {
    padding: 0;
  }
  .fa-brands,
  .fab {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  .first .container,
  .prestations .group p {
    margin: 25px 20px 0 20px;
  }
  .rdv a {
    font-size: 0.7rem;
  }
  .group-content {
    margin-bottom: 0;
  }
  /* .ghost {
    height: 44vh;
  } */
  .fa-brands,
  .fab {
    font-size: 35px;
  }
  .info .adresse {
    padding: 30px 0;
  }
}

@media (max-width: 360px) {
  /* .ghost {
    height: 40vh;
  } */
  .phone-mini p {
    font-size: 0.8rem;
  }
  .info .adresse {
    padding: 30px 0px;
  }
  .info p {
    font-size: 0.8rem;
  }
  .info .pmr i {
    font-size: 1rem;
    padding: 8px;
  }
}