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

* a {
  text-decoration: none;
}

* li {
  list-style: none;
}

* p {
  font-size: clamp(14px, 5vw, 16px);
}

* figcaption {
  font-style: italic;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  padding: 0;
  top: 0;
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 100;
  border-bottom: 1px solid black;
}
@media (max-width: 575px) {
  header .navbar {
    background-color: rgba(255, 255, 255, 0.76);
  }
}
header .navbar #img_logo_header {
  width: 60px;
  height: 60px;
  margin: 0 15px;
  z-index: 100;
}
@media (max-width: 560px) {
  header .navbar #img_logo_header {
    height: 50px;
    width: 50px;
  }
}
header .navbar .collapse {
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
}
@media (max-width: 750px) {
  header .navbar .collapse {
    display: none;
  }
}
header .navbar .nav-logo-insta {
  margin-right: 10px;
  border-radius: 50% !important;
  padding: 3px 7px;
  background: #35885d;
  color: #fff;
}
header .navbar .nav-logo-insta:hover {
  color: #35885d;
  background: #fff;
}
@media (max-width: 560px) {
  header .navbar .nav-logo-insta {
    float: right;
    transform: translateY(-50%);
  }
}
header .navbar .navbar-nav.ml-auto {
  margin-top: 5px;
}
header .navbar .navbar-nav.ml-auto .nav-item {
  margin-right: 45px;
}
@media (min-width: 560px) and (max-width: 800px) {
  header .navbar .navbar-nav.ml-auto .nav-item {
    margin-right: 15px;
  }
}
header .navbar .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.62);
}
header .navbar .nav-link, header .navbar .dropdown-item {
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  display: block;
  position: relative;
  z-index: 100;
}
header .navbar .nav-link::before, header .navbar .dropdown-item::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
  background: #C28585;
}
header .navbar .nav-link:hover::before, header .navbar .dropdown-item:hover::before {
  transform: scale3d(1, 1, 1);
}
header .navbar .img_flag {
  width: 30px;
  height: 30px;
  transform: translateY(-10%);
  padding: 0;
  margin: 0;
}

.carousel {
  width: 100vw;
  max-height: 500px;
  min-height: 250px;
}
.carousel .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.carousel .carousel-inner .carousel-item img {
  width: 100vw;
  max-height: 500px;
  min-height: 250px;
  margin: auto;
  transform: translateX(-10px);
}

.section-acceuil .title-home {
  margin: auto;
  text-align: center;
  width: 80%;
}
@media (max-width: 550px) {
  .section-acceuil .title-home {
    width: 90%;
  }
}
.section-acceuil .title-home h1 {
  margin-top: 40px;
  font-size: min(2.2rem, max(1.4rem, 4vw));
}
.section-acceuil .title-home figcaption {
  margin-bottom: 20px;
}

.section-acceuil2 {
  margin: auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
}
@media (max-width: 400px) {
  .section-acceuil2 {
    margin: auto 15px;
  }
}
.section-acceuil2 .box {
  position: relative;
  padding: 5%;
}
.section-acceuil2 .box .divBtn {
  display: flex;
  justify-content: center;
}
.section-acceuil2 .box .divBtn .reponse {
  margin: 20px;
  background: #35885d;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-acceuil2 .box .divBtn .reponse:hover {
  background: white;
  color: #35885d;
}
.section-acceuil2 .box .divBtn .reponse2 {
  margin: 20px;
  background: #e2c1ad;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-acceuil2 .box .divBtn .reponse2:hover {
  background: white;
  color: #e2c1ad;
}
.section-acceuil2 .box .divBtn .reponse3 {
  margin: 20px;
  background: #c28585;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-acceuil2 .box .divBtn .reponse3:hover {
  background: white;
  color: #c28585;
}
.section-acceuil2 .box ul li {
  list-style: circle;
  font-size: clamp(14px, 5vw, 16px);
}
.section-acceuil2 .box:first-child {
  border: 5px solid #ACE0B8;
  margin-left: 5px;
}
.section-acceuil2 .box:nth-child(2) {
  border: 5px solid #E2C1AD;
  transform: translateY(-15px);
}
.section-acceuil2 .box:nth-child(2):hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}
.section-acceuil2 .box:last-child {
  border: 5px solid #C28585;
  margin-right: 5px;
}
.section-acceuil2 .box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}
.section-acceuil2 .box .icon-hamsa {
  width: 32px;
  height: 32px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.section-acceuil2 .box .icon-soleil {
  width: 32px;
  height: 32px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.section-acceuil2 .box .icon-peace {
  width: 32px;
  height: 32px;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .section-acceuil2 {
    grid-template-columns: 100%;
  }
  .section-acceuil2 .box:first-child {
    margin: 0;
  }
  .section-acceuil2 .box:nth-child(2) {
    transform: translateY(0);
  }
  .section-acceuil2 .box:nth-child(2):hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
  }
  .section-acceuil2 .box:last-child {
    margin: 0;
  }
}

.box-contact-acceuil {
  border: 10px solid #ACE0B8;
  text-align: center;
}
.box-contact-acceuil h3 {
  margin-top: 10px;
}
.box-contact-acceuil p {
  margin-top: 15px;
  margin-bottom: 0;
}
.box-contact-acceuil figcaption {
  margin-bottom: 15px;
}
.box-contact-acceuil .reponse {
  margin-bottom: 20px;
  background: #35885d;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.box-contact-acceuil .reponse:hover {
  background: white;
  color: #35885d;
}

.section-presentation {
  background-color: #35885d;
  width: 100%;
}
.section-presentation .row {
  margin: auto;
}
.section-presentation .row .btn {
  margin-bottom: 30px;
}
.section-presentation .row h3 {
  margin: 30px;
  color: white;
}
@media (max-width: 760px) {
  .section-presentation .row h3 {
    margin-top: 25px;
  }
}
.section-presentation .img-presentation {
  margin: auto;
  margin-top: 30px;
}

.section-presentation-methode {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin: auto;
  margin-top: 150px;
  width: 90%;
}
.section-presentation-methode #yoga li, .section-presentation-methode #ecriture li, .section-presentation-methode #meditation li {
  list-style: circle;
}
.section-presentation-methode #yoga .divBtn, .section-presentation-methode #ecriture .divBtn, .section-presentation-methode #meditation .divBtn {
  display: flex;
  justify-content: center;
}
.section-presentation-methode #yoga .divBtn .reponse, .section-presentation-methode #ecriture .divBtn .reponse, .section-presentation-methode #meditation .divBtn .reponse {
  margin: 20px;
  background: #35885d;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-presentation-methode #yoga .divBtn .reponse:hover, .section-presentation-methode #ecriture .divBtn .reponse:hover, .section-presentation-methode #meditation .divBtn .reponse:hover {
  background: white;
  color: #35885d;
}
.section-presentation-methode #yoga .divBtn .reponse2, .section-presentation-methode #ecriture .divBtn .reponse2, .section-presentation-methode #meditation .divBtn .reponse2 {
  margin: 20px;
  background: #e2c1ad;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-presentation-methode #yoga .divBtn .reponse2:hover, .section-presentation-methode #ecriture .divBtn .reponse2:hover, .section-presentation-methode #meditation .divBtn .reponse2:hover {
  background: white;
  color: #e2c1ad;
}
.section-presentation-methode #yoga .divBtn .reponse3, .section-presentation-methode #ecriture .divBtn .reponse3, .section-presentation-methode #meditation .divBtn .reponse3 {
  margin: 20px;
  background: #c28585;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.section-presentation-methode #yoga .divBtn .reponse3:hover, .section-presentation-methode #ecriture .divBtn .reponse3:hover, .section-presentation-methode #meditation .divBtn .reponse3:hover {
  background: white;
  color: #c28585;
}
@media (max-width: 750px) {
  .section-presentation-methode {
    margin-top: 100px;
  }
}
@media (max-width: 400px) {
  .section-presentation-methode {
    margin-top: 50px;
  }
}
.section-presentation-methode .img-presentation {
  margin: auto;
}
.section-presentation-methode .row {
  margin: 20px auto;
}
.section-presentation-methode .row .icon-hamsa, .section-presentation-methode .row .icon-soleil, .section-presentation-methode .row .icon-peace {
  width: 32px;
  height: 32px;
  padding: 0;
  transform: translateX(-15px);
}

.text-container-presentation-cestquoi,
.text-container-presentation {
  text-align: center;
}
.text-container-presentation-cestquoi p,
.text-container-presentation p {
  width: 70%;
  margin: auto;
}
@media (max-width: 800px) {
  .text-container-presentation-cestquoi p,
  .text-container-presentation p {
    width: 90%;
  }
}
.text-container-presentation-cestquoi h2,
.text-container-presentation h2 {
  margin-bottom: 10px;
}
@media (max-width: 760px) {
  .text-container-presentation-cestquoi h2,
  .text-container-presentation h2 {
    margin-top: 25px;
  }
}
.text-container-presentation-cestquoi ul,
.text-container-presentation ul {
  text-align: left;
  width: 70%;
  margin: auto;
}
@media (max-width: 800px) {
  .text-container-presentation-cestquoi ul,
  .text-container-presentation ul {
    width: 90%;
  }
}
.text-container-presentation-cestquoi ul li,
.text-container-presentation ul li {
  list-style: circle;
}
.text-container-presentation-cestquoi img,
.text-container-presentation img {
  width: 90%;
  max-width: 900px;
  max-height: 350px;
  border-radius: 10px;
  margin: 10px auto;
}
@media (max-width: 760px) {
  .text-container-presentation-cestquoi img,
  .text-container-presentation img {
    max-width: 400px;
    max-width: 250;
    padding: 0;
  }
}
.text-container-presentation-cestquoi .btn,
.text-container-presentation .btn {
  background: #35885d;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 10px;
  border: solid white 2px;
  color: white;
}
.text-container-presentation-cestquoi .btn:hover,
.text-container-presentation .btn:hover {
  background: white;
  color: #35885d;
}

.image-container-presentation {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container-presentation img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: solid white 10px;
  margin: 30px auto;
}
@media (max-width: 760px) {
  .image-container-presentation img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 410px) {
  .image-container-presentation img {
    width: 230px;
    height: 230px;
  }
}

.image-container-presentation-methode-yem {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.image-container-presentation-methode-yem img {
  width: 100%;
  max-width: 350px;
  min-width: 200px;
  max-height: 500px;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 760px) {
  .image-container-presentation-methode-yem img {
    max-width: 350px;
    max-height: 450px;
  }
}

.menu-presentation-methode {
  padding-top: 10px;
  display: flex;
}
.menu-presentation-methode p {
  margin-bottom: 0;
}
.menu-presentation-methode img {
  width: 32px;
  height: 32px;
}
.menu-presentation-methode ul {
  display: flex;
  text-align: center;
  margin-bottom: 0;
}
.menu-presentation-methode ul li {
  margin-right: 25px;
  text-align: center;
}
.menu-presentation-methode ul li a {
  color: #35885d;
  font-weight: bold;
}
.menu-presentation-methode ul li a:hover {
  color: #C28585;
}
@media (max-width: 410px) {
  .menu-presentation-methode {
    display: block;
    text-align: center;
    padding-top: 50px;
  }
  .menu-presentation-methode img {
    display: none;
  }
  .menu-presentation-methode ul {
    padding-left: 0;
  }
  .menu-presentation-methode ul li {
    margin: auto;
  }
}

.box-contact {
  border: 10px solid #e0c3c7;
  margin-top: 80px;
  text-align: center;
}
.box-contact .question {
  margin-top: 30px;
  color: #35885d;
  font-style: italic;
  margin-bottom: 0;
}
.box-contact h1 {
  padding-top: 0;
  font-size: 2em;
}
.box-contact .reponse {
  margin-bottom: 30px;
}

.container-contact {
  margin-top: 50px;
}
.container-contact .checkbox-men {
  margin-left: 50px;
}
@media (max-width: 768px) {
  .container-contact .checkbox-men {
    margin-left: 20px;
  }
}

.tarif-page {
  margin-top: 100px;
}
@media (max-width: 500px) {
  .tarif-page {
    width: 100%;
    padding: 0;
  }
}
.tarif-page .table {
  width: 70%;
  margin: auto;
}
@media (max-width: 800px) {
  .tarif-page .table {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .tarif-page .table {
    width: 100%;
  }
}
.tarif-page .tarif-separation {
  border: 2px solid #35885d;
}
.tarif-page .tarif-separation .aLaCarte {
  border: 2px solid #C28585;
}
.tarif-page .tarif-contact {
  margin: 20px auto;
  padding: 20px;
  width: 60%;
  border-bottom: 1px solid black;
}
@media (max-width: 1000px) {
  .tarif-page .tarif-contact {
    width: 90%;
  }
}
.tarif-page .tarif-contact .btn {
  background: #35885d;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.tarif-page .tarif-contact .btn:hover {
  background: white;
  color: #35885d;
}

.faq {
  margin: 100px auto;
  text-align: center;
}
.faq p {
  width: 70%;
  margin: auto;
}
@media (max-width: 800px) {
  .faq p {
    width: 90%;
  }
}
.faq ul {
  text-align: left;
  width: 70%;
  margin: auto;
}
@media (max-width: 800px) {
  .faq ul {
    width: 90%;
  }
}
.faq ul li {
  list-style: circle;
}
.faq img {
  width: 90%;
  max-width: 900px;
  max-height: 350px;
  border-radius: 10px;
  margin: 30px auto;
}
@media (max-width: 760px) {
  .faq img {
    max-width: 400px;
    max-width: 250;
    padding: 0;
  }
}
.faq .btn {
  background: #35885d;
  border-radius: 20px;
  border: solid white 2px;
  color: white;
}
.faq .btn:hover {
  background: white;
  color: #35885d;
}

.desinscription {
  margin: 200px auto;
}
.desinscription #nom_user {
  margin: 200px auto 30px;
}

.mention {
  padding-top: 100px;
}
.mention h3 {
  color: #C28585;
}
.mention a {
  color: #C28585;
}
.mention a:hover {
  text-decoration: underline;
}

.instafeed {
  margin-top: 30px;
}
.instafeed h3 {
  text-align: center;
  margin: 20px auto;
}
.instafeed #instagram-feed {
  width: 90%;
  margin: 0 auto;
}

.before_footer {
  margin: 2%;
}
.before_footer .img_logo_footer {
  width: 20%;
  max-width: 100px;
  height: 100%;
  max-height: 100px;
}
@media (max-width: 550px) {
  .before_footer .img_logo_footer {
    min-width: 70px;
  }
}
.before_footer #anchor_go_up {
  color: #c28585;
  transform: translateY(35%);
}
@media (max-width: 550px) {
  .before_footer #anchor_go_up {
    transform: scale(0.8) translateY(35%);
  }
}

footer {
  background-color: #35885d;
  color: #fff;
}
footer p {
  font-size: clamp(12px, 5vw, 14px);
}
footer a {
  font-size: clamp(12px, 5vw, 14px);
  color: #fff;
}
footer a:hover {
  color: rgb(74, 72, 72);
}
footer .hr-footer {
  width: 95%;
  border: 1px solid #c2859d;
  margin: auto;
}
footer .last-footer {
  display: flex;
  justify-content: space-between;
  margin: 1%;
}
footer .last-footer #logoCopiright {
  width: 32px;
  height: 32px;
  margin-right: 5px;
}
@media (max-width: 600px) {
  footer .last-footer {
    display: block;
  }
}
footer .first-footer {
  margin: auto 1%;
}
footer .first-footer .intern-first-footer {
  margin: auto;
}
footer .first-footer .intern-first-footer .nav-logo-insta {
  border-radius: 50% !important;
  padding: 3px 7px;
  background: #c2859d;
  color: #fff;
}
footer .first-footer .intern-first-footer .nav-logo-insta:hover {
  color: #c2859d;
  background: #fff;
}
footer .first-footer .intern-first-footer .list-unstyled {
  margin-top: 20px;
}
@media (max-width: 770px) {
  footer .first-footer .intern-first-footer .list-unstyled {
    margin-top: 0px;
  }
}
footer .first-footer h6 {
  text-transform: uppercase;
}
@media (max-width: 770px) {
  footer .first-footer h6 {
    margin-top: 15px;
  }
}
@media (max-width: 770px) {
  footer .first-footer .text-logo {
    display: flex;
  }
  footer .first-footer .text-logo p {
    margin: auto;
  }
}
footer .first-footer .img_logo_footer {
  max-width: 80px;
  max-height: 80px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 550px) {
  footer .first-footer .img_logo_footer {
    min-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }
}/*# sourceMappingURL=index.css.map */