@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright&display=swap");
html {
  scroll-padding-top: 115px;
}

body {
  font-family: "Cormorant Upright", Constantia, serif;
  text-align: center;
  color: #545454;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

main {
  display: block;
}

em {
  font-style: normal;
}

dfn {
  font-style: normal;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1200px), screen and (max-height: 750px) and (max-width: 1200px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  display: inline-block;
  margin: 0 10%;
  font-size: 26px;
  font-weight: bold;
  color: white;
}
@media screen and (min-width: 800px) {
  h3 {
    font-size: 50px;
  }
}

p, .p {
  font-size: 20px;
  color: #545454;
}
@media screen and (min-width: 800px) and (max-width: 1200px), screen and (max-height: 750px) and (max-width: 1200px) {
  p, .p {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  p, .p {
    font-size: 28px;
  }
}

.p {
  margin: 0;
}

li {
  list-style: none;
}

a {
  color: #292727;
  text-decoration-color: #f5b46e;
  font-size: 20px;
}
@media screen and (min-width: 1200px) {
  a {
    font-size: 28px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1200px), screen and (max-height: 750px) and (max-width: 1200px) {
  a {
    font-size: 22px;
  }
}

address {
  font-style: normal;
}

abbr {
  text-decoration: none;
}

.content {
  margin: 100px 30px;
  text-align: left;
}
@media screen and (min-width: 800px) {
  .content {
    padding: 0 6em;
    text-align: center;
  }
}

.header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0px;
  background-color: #fafafa;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .header {
    position: absolute;
    flex-direction: column;
    background-color: transparent;
    color: white;
  }
}
.header .header-heah {
  display: flex;
  flex-direction: column;
  width: 80%;
  font-size: 24px;
  padding: 20px 0 10px 0;
}
.header .header-heah .hide-on-mobile {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header .header-heah {
    font-size: 40px;
    transition: padding 600ms;
    padding-top: 10px;
    letter-spacing: 0.2em;
  }
  .header .header-heah strong {
    margin-top: 10px;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 28px;
  }
  .header .header-heah .hide-on-mobile {
    display: inline;
  }
  .header .header-heah .name {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 800px) {
  .header .header-heah {
    font-size: 30px;
  }
  .header .header-heah .name {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.header .menu-burger {
  display: block;
  position: absolute;
  left: 25px;
  top: 27px;
}
@media screen and (min-width: 800px) {
  .header .menu-burger {
    display: none;
  }
}
.header .menu-burger-icon span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #f5b46e;
  opacity: 0.8;
  margin: 6px 0;
}
.header nav {
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  transition: left 0.5s ease;
}
@media screen and (min-width: 800px) {
  .header nav {
    position: initial;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.header nav.active {
  left: 0;
  z-index: 2;
}
.header nav .close-menu {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 50px;
}
@media screen and (min-width: 800px) {
  .header nav .close-menu {
    display: none;
  }
}
.header .close-menu {
  text-decoration: none;
}
.header ul {
  margin: 60px 0;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .header ul {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}
.header ul li {
  list-style: none;
  font-size: 18px;
  margin: 50px 0;
  padding: 10px 10px;
}
@media screen and (min-width: 800px) {
  .header ul li {
    margin-top: 5px;
    margin-bottom: 0;
  }
}
.header ul li a {
  transition: all 400ms;
}
@media screen and (min-width: 800px) {
  .header ul li a {
    color: white;
    text-decoration-color: white;
  }
}
.header ul li a:hover {
  text-decoration-color: #f5b46e;
  font-weight: bold;
}
.header ul li a.active {
  text-decoration-color: #f5b46e;
  font-weight: bold;
}

.sticky {
  transition: all 600ms;
}
@media screen and (min-width: 800px) {
  .sticky {
    position: fixed;
    top: 0;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    background-color: rgba(255, 254, 254, 0.8);
    color: #545454;
  }
  .sticky .header-heah {
    padding: 0;
    width: auto;
    display: flex;
    flex-direction: row;
    letter-spacing: 0em;
    font-size: 35px;
  }
  .sticky .header-heah .hide-on-stick, .sticky .header-heah strong {
    display: none;
  }
  .sticky .header-heah p {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .sticky nav ul {
    flex-wrap: wrap;
  }
  .sticky nav ul li {
    margin: 0;
  }
  .sticky nav ul li a {
    color: #545454;
    text-decoration-color: #545454;
  }
}

.home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/osteofluidique.jpeg") no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home h2 {
  margin-top: 80px;
  padding-top: 0;
  color: white;
}
@media screen and (min-width: 800px) {
  .home h2 {
    margin-top: auto;
    padding-top: 260px;
    margin-bottom: 10px;
  }
}
.home .short-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
@media screen and (min-width: 1200px) {
  .home .short-nav {
    flex-direction: row;
    align-items: initial;
  }
}
.home .short-nav a:first-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .home .short-nav a:first-child {
    margin-bottom: 0px;
  }
}
.home .short-nav a {
  text-decoration: none;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  font-size: 25px;
  font-weight: bold;
  color: white;
  padding: 60px 20px;
  transition: all 0.4s;
}
@media screen and (min-width: 1200px) {
  .home .short-nav a {
    font-size: 40px;
    background-image: linear-gradient(180deg, #0000002e, rgba(255, 255, 255, 0));
    box-shadow: initial;
  }
}
.home .short-nav a:hover {
  color: #f5b46e;
  background-image: linear-gradient(180deg, #00000040, rgba(255, 255, 255, 0));
}
.home address {
  margin-top: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 800px) {
  .home address {
    margin-bottom: 100px;
  }
}
.home address a {
  border: 2px solid white;
  border-radius: 60px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 32px;
  line-height: 0;
  transition: all 200ms;
}
@media screen and (width: 800px) {
  .home address a {
    font-size: 38px;
  }
}
.home address a:hover {
  color: #f5b46e;
  border-color: #f5b46e;
  cursor: pointer;
}

.h2-meditation {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  background-image: url("../images/meditation.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  word-wrap: break-word;
  box-shadow: inset 1px 1px 500px 600px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 800px) {
  .h2-meditation {
    height: 100vh;
  }
}
.h2-meditation h2 {
  display: inline-block;
  color: #dedede;
  text-align: center;
  margin: 0;
  letter-spacing: 0.15em;
  width: 80%;
}
@media screen and (min-width: 800px) {
  .h2-meditation h2 {
    font-size: 45px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
  .meditation-container .p-container .p {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .meditation-container .p {
    width: 30%;
  }
}
@media screen and (min-width: 800px) {
  .meditation-container .p-container {
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    margin-bottom: 40px;
  }
  .meditation-container .p-container .meditation-p-1 p {
    width: 100%;
  }
  .meditation-container .p-container .meditation-p-1 p:nth-child(1) {
    margin-bottom: 0;
  }
  .meditation-container .p-container .meditation-p-1 p:nth-child(2) {
    margin-top: 0;
  }
}
.meditation-container .info {
  text-align: center;
  line-height: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 0 5%;
}
@media screen and (min-width: 800px) {
  .meditation-container .info {
    padding: 0 25%;
  }
}
.meditation-container .info p {
  margin: 0;
}
.meditation-container .info .duree {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #f5b46e;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .meditation-container .info .duree {
    font-size: 30px;
  }
}

.ostefluidique {
  padding-top: 75px;
}
.ostefluidique .content {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .ostefluidique .content {
    padding: 0 10em;
  }
}
@media screen and (min-width: 800px) and (max-width: 1200px) {
  .ostefluidique .content {
    padding: 0 8em;
  }
}
.ostefluidique h2 {
  text-align: center;
  margin: 10px 30px;
}
.ostefluidique h2 span {
  text-decoration: underline;
}
.ostefluidique h3 {
  color: #545454;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .ostefluidique h3 {
    font-size: 30px;
  }
}
.ostefluidique .list-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 800px) {
  .ostefluidique .list-container {
    flex-direction: row;
  }
}
.ostefluidique .list-container .list {
  width: 100%;
  line-height: 1.6em;
  text-align: center;
  margin-bottom: 30px;
}
.ostefluidique .list-container .list h3 {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .ostefluidique .list-container .list h3 {
    font-size: 26px;
  }
}
.ostefluidique .list-container .list ul {
  margin: 0 25px;
  list-style-position: outside;
  padding-left: 0;
}
@media screen and (min-width: 800px) {
  .ostefluidique .list-container .list ul {
    font-size: 26px;
    padding-left: 40px;
  }
}
.ostefluidique .list-container .list ul li {
  line-height: 1.4em;
  white-space: break-spaces;
  font-size: 18px;
  display: list-item;
  list-style: none;
  color: #737475;
  text-decoration: underline 2px;
  text-underline-offset: 6px;
  padding: 8px 0;
}
@media screen and (min-width: 800px) {
  .ostefluidique .list-container .list ul li {
    font-size: 24px;
    list-style: disc;
  }
}
.ostefluidique .seance {
  margin: 0 20%;
  text-align: center;
}

@media screen and (min-width: 800px) {
  .background-presta {
    height: 100vh;
    background: url("../images/prestation.jpg") fixed no-repeat center;
    background-size: cover;
  }
}

.header-prestation {
  height: 30vh;
  background-color: rgba(250, 241, 227, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .header-prestation {
    height: 50vh;
  }
}
.header-prestation h2 {
  margin: 0;
  display: inline-block;
}
@media screen and (min-width: 800px) {
  .header-prestation h2 {
    font-size: 40px;
  }
}

.acu-moxi-container header {
  background: url("../images/accu-moxi.jpg") fixed no-repeat center;
  background-size: cover;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.acu-moxi-container header h3 {
  margin: 0 10%;
}
@media screen and (min-width: 800px) {
  .acu-moxi-container header {
    height: 100vh;
  }
}
@media screen and (min-width: 800px) {
  .acu-moxi-container .content {
    text-align: center;
  }
}

.osteo-container header {
  background: url("../images/medecine-manuelle.jpg") fixed no-repeat center;
  background-size: cover;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .osteo-container header {
    height: 100vh;
  }
}
.osteo-container .content {
  margin: 15vh 40px;
}
@media screen and (min-width: 800px) {
  .osteo-container .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .osteo-container .content p {
    width: 50%;
  }
}

.tuina-container header {
  background: url("../images/tuina.jpg") fixed no-repeat center;
  background-size: cover;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .tuina-container header {
    height: 100vh;
  }
}
@media screen and (min-width: 800px) {
  .tuina-container .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tuina-container .content p {
    width: 50%;
  }
}

.diet-container header {
  background: url("../images/dietetique.jpg") fixed no-repeat center;
  background-size: cover;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 1px 1px 500px 500px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 800px) {
  .diet-container header {
    height: 100vh;
  }
}
@media screen and (min-width: 800px) {
  .diet-container .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .diet-container .content p {
    width: 65%;
  }
}

.tarif-container {
  background-color: rgba(250, 241, 227, 0.64);
  padding: 50px 0;
}
.tarif-container .strong {
  text-align: center;
  font-size: 1.1em;
  border: 1px solid #f5b46e;
  border-radius: 15px;
  padding: 15px 20px;
  display: block;
  margin-bottom: 40px;
}
.tarif-container .strong ul {
  padding-left: 0;
}
@media screen and (min-width: 800px) {
  .tarif-container .strong ul {
    flex-direction: row;
  }
}
.tarif-container .strong ul li {
  list-style: none;
  padding: 20px 0;
  text-decoration: underline 2px;
  text-decoration-color: #f5b46e;
  text-underline-offset: 6px;
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .tarif-container .strong ul li {
    font-size: 28px;
  }
}
.tarif-container .strong ul li:hover {
  color: #545454;
  cursor: initial;
}
.tarif-container abbr {
  text-decoration: none;
}
.tarif-container .content {
  margin-top: 40px;
}
.tarif-container .content .mention-legal p {
  font-size: 20px;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 800px) {
  .tarif-container .content .mention-legal p {
    font-size: 26px;
  }
}
@media screen and (min-width: 800px) {
  .tarif-container .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
  }
  .tarif-container .content p {
    line-height: 1.6em;
    width: 50%;
  }
}
.tarif-container p strong {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .tarif-container p strong {
    font-size: 37px;
  }
}

.qui-container {
  padding: 50px 0;
}
.qui-container .content {
  margin-top: 0;
  display: flex;
  flex-direction: column-reverse;
  text-align: left;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .qui-container .content {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 20%;
  }
}
.qui-container .content img {
  max-width: 400px;
  margin: 0 60px;
}

.partenaires {
  padding: 50px 0;
  background-color: rgba(250, 241, 227, 0.64);
}
.partenaires .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .partenaires .content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.partenaires .content a {
  width: 12em;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 30px;
  padding: 10px 20px;
  border: solid #f5b46e 2px;
  border-radius: 10px;
  transition: color 0.2s;
}
@media screen and (min-width: 800px) {
  .partenaires .content a {
    font-size: 28px;
  }
}
.partenaires .content a span {
  margin-top: 25px;
  font-size: 18px;
  font-weight: normal;
  color: #545454;
}
@media screen and (min-width: 800px) {
  .partenaires .content a span {
    font-size: 24px;
  }
}
.partenaires .content a:hover {
  color: #f5b46e;
}

footer address {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.5em;
}
@media screen and (min-width: 800px) {
  footer address {
    font-size: 30px;
    line-height: 1.7em;
  }
}
footer iframe {
  border: 1px solid #f5b46e;
  margin-bottom: 20px;
}
footer p {
  margin: 0 10%;
}
footer .btn {
  display: inline-block;
  margin: 15px 0;
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 20px;
  color: white;
  background-color: #f5b46e;
  border-radius: 10px;
}

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