<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts auto-hÃ©bergÃ©es */

/* Main title - Bandeau header */

@font-face {
    font-family: 'HuntingStarRegular';
    src: url('../fonts/HuntingStarRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Stringline';
    src: url('../fonts/Stringline.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Sous-titres */

@font-face {
    font-family: 'Cormorant-Regular';
    src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Corps de texte */

@font-face {
    font-family: 'HypatiaSansPro-Regular';
    src: url('../fonts/HypatiaSansPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/*? PropriÃ©tÃ© pour dÃ©finir un dÃ©filement doux vers le bas de page lors du clic sur le CTA rdv */

html {
    --scroll-behavior: smooth;
    scroll-behavior: smooth;
}

body {
    background-color: #F8F8FF;
}

/* Header */

.main-title {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
    font-family: 'Stringline', sans-serif;
    font-size: 2.5rem;
    color: white;
    background-color: #abd4f8;
    border-radius: 10px 10px;
    font-weight: 500;
}

@media (min-width: 350px) and (max-width: 1010px) {
    .main-title {
        font-size: 2rem;
        line-height: 2;
    }
}

/* Nav main menu (desktop) */

nav {
    display: flex;
    justify-content: right;
}

nav &gt; a {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: 'Cormorant-Regular', sans-serif;
    margin: 0 15px;
    text-align: center;
}

nav &gt; a:hover {
    color: #aa93b2;
}

nav &gt; .special-offer-link {
    animation: colorize 10s ease-in infinite;
}

@keyframes colorize {
    0% {
        color: black;
    }

    25% {
        color: #ffd700;
    }
    
    50% {
        color: black;
    }

    75% {
        color: #FCDC12;
    }

    100% {
        color: black;
    }
}

.mini-fb-icon {
    height: 30px;
    width: 30px;
    margin-right: 15px;
    filter: grayscale(100%);
}

.mini-fb-icon:hover {
    filter: grayscale(0%);
}

.cta-pick-a-date {
    position: relative;
    font-size: 17px;
    font-family: 'Cormorant-Regular', sans-serif;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color: white;
   }
   
   .cta-pick-a-date:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }
   
   .cta-pick-a-date:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
   }
   
   .cta-pick-a-date::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
   }
   
   .cta-pick-a-date::after {
    background-color: #fff;
   }
   
   .cta-pick-a-date:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
   }

@media (min-width: 350px) and (max-width: 1010px) {

    nav {
        display: none;
    }
}

/* Nav main menu (desktop) */

/* Menu burger mobile */

.burger-icon {
    display: none;
}

dialog {
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: #8b699a8c;
    top: 0px;
    left: 0px;
    position: fixed;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 9999;

}

.mobile-menu{
    margin-left: -5vw;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;

}

.mobile-menu &gt; a {
    font-family: 'Cormorant-Regular', sans-serif;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    padding: 5px 0;
    margin: 10px 0;
}

@media (min-width: 350px) and (max-width: 1010px) {

    .burger-icon {
        position: fixed;
        top: 20vh;
        right: 5vw;
        display: block;     
    }

    .close-burger-menu-icon {
        position: fixed;
        top: 7vh;
        right: 10vw;
        height: auto;
        width: 10vw;      
    }

}

/* Menu burger mobile */

/* Header */

/* Home */

.home-video-wrapper {
    width: 100%;
}

.home-video {
    width: 100%;
    border-radius: 10px 10px;
}

.home-text {
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    margin: 2vh 10px;
    font-size: 1.3rem;
}

strong {
    font-weight: bold;
    font-size: 1.3rem;
}

.first-subtitle {
    display: none;
}

.subtitle {
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.5rem;
    color: #abd4f8;
    font-weight: bolder;
}

ul {
    list-style-type: circle;
}

@media (min-width: 1010px) {
    .home-text {
        margin: 2vh 8vw;
    }
    
    .home-video-wrapper {
        height: 65vh;
        background-color: #abd4f87e;
    }

    .home-video {
        height: 65vh;
        border-radius: 10px 10px;
    }

    .first-subtitle {
        display: block;
        position: absolute;
        top: 77vh;
        left: 32vw;
        width: 50vw;
        color: white;
        font-family: 'HypatiaSansPro-Regular', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        text-shadow: 0 0 2px black;
    }
}

@media (min-width: 1919px) {
    .first-subtitle {
        display: block;
        position: absolute;
        top: 76vh;
        left: 32vw;
        width: 50vw;
        color: white;
        font-family: 'HypatiaSansPro-Regular', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        text-shadow: 0 0 2px black;
    }
}

/* Home */

/* Offre de bienvenue */

.gift-ticket-container {
    margin: auto;
    width: 90vw;
}

.gift-audio-file-container {
    display: flex;
    justify-content: center;
}

.gift-image-container {
    margin-top: 5vh;
    display: flex;
    justify-content: center;
}

.gift-image {
    height: auto;
    width: 90vw;
}

@media (min-width: 1010px) {
    .gift-ticket-container {
        width: 40vw;
    }

    .gift-image {
        width: 25vw;
    }
}

/* Offre de bienvenue */

/* Articles - Groupement d'articles */

.articles-main-container {
    margin: auto;
    height: auto;
    width: 90vw;
    display: flex;
    flex-direction: column;
}

.article-card {
    margin: 5vh 2vw;
    height: auto;
    width: 90vw;
    background-color: rgba(255, 255, 255, 0.795);
    border-radius: 15px 15px;
}

.article-thumbnail &gt; img {
    height: auto;
    width: 90vw;
}

.article-category {
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    background-color: #aa93b2;
    width: 50%;
    border-radius: 10px;
    color: white;
    margin: 0 10px;
    padding: 5px 5px;
}

.article-card-title {
    text-align: center;
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.5rem;
}

.article-summary + p {
    margin-left: 15px;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
}

.article-date {
    text-align: right;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    margin-right: 10px;
}

.article-author {
    text-align: right;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    margin-right: 10px;
}

.article-link {
    margin-left: 15px;
    text-align: center;
    text-decoration: none;
    color: #aa93b2;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
}

@media (min-width: 1010px) {
    .articles-main-container {
    background-image: url('../img/articles-background.jpg');
    background-size: cover;
    flex-direction: row;
    flex-wrap: wrap;
    }
    
    .article-card {
        width: 25vw;
    }

    .article-thumbnail &gt; img {
        width: 25vw;
    }
}

/* Articles - Groupement d'articles */

/* Page article unique - Single */

.back-to-list-link-container {
    display: flex;
    justify-content: center;
}

.back-to-list-link {
    margin: 30px 0;
    text-decoration: none;
    color: #aa93b2;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
}

.single-article-container {
    margin: auto;
    width: 90vw;
}

.single-article-container &gt; h1 {
    font-family: 'Cormorant-Regular', sans-serif;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
}

.wp-post-image {
    margin: 5vh auto;
    height: auto;
    width: 90vw;
}

.single-article-container &gt; p {
    margin: 2vh auto;
    text-align: justify;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    font-size: 1.3rem;
}

.wp-block-image &gt; figure &gt; img {
    margin: 5vh 0;
}

.wp-element-caption {
    text-align: center;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    font-style: italic;
    font-size: 1rem;
}

.single-article-footer {
    display: flex;
    flex-direction: column;
    justify-content: right;
}

.article-date-single-post {
    text-align: right;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    font-size: 1rem;
}

.article-author-single-post {
    text-align: right;
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    font-size: 1rem;
}

@media (min-width: 1010px) {
    .single-article-container {
        width: 40vw;
    }
}

/* Page article unique - Single */

/* KinÃ©siologie humaine */

.subtitle-level2 {
    margin-left: 10px;
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.2rem;
}

.human-kinesiology-image-container {
    display: flex;
    justify-content: center;
}

.human-kinesiology-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

@media (min-width: 767px) {

    .human-kinesiology-image {
        width: 50vw;   
    }    
}

@media (min-width: 1010px) {
    .subtitle {
        text-align: center;
    }

    .subtitle-level2 {
        text-align: left;
        margin: 2vh 28vw;
    }

    .text-wrapper {
        display: block;
        justify-content: center;
    }

    .human-kinesiology-card {
        margin: auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
        
    .human-kinesiology-image {
        width: 30vw;
        object-fit: contain;
    }

    .text-wrapper-2 {
        margin: 2vh 20vw;
        width: 70vw;
    }
}

/* KinÃ©siologie humaine */


/* KinÃ©siologie animale */

.animal-kinesiology-image-container {
    display: flex;
    justify-content: center;
}

.animal-kinesiology-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

@media (min-width: 767px) {

    .animal-kinesiology-image {
        width: 50vw; 
    }    
}

@media (min-width: 1010px) {
    .animal-kinesiology-image {
        width: 30vw;
        object-fit: contain;
    }

    .animal-kinesiology-card {
        margin: auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}

/* KinÃ©siologie animale */


/* Massages */

.subtitle-massage {
    text-align: center;
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.4rem;
}

.intuitive-massage-image-container {
    display: flex;
    justify-content: center;
}

.intuitive-massage-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.chi-nei-tsang-massage-card {
    margin-top: 10vh;    
}

.chi-nei-tsang-massage-image-container {
    display: flex;
    justify-content: center;
}

.chi-nei-tsang-massage-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.feet-massage-card {
    margin-top: 10vh;    
}

.feet-massage-image-container {
    display: flex;
    justify-content: center;
}

.feet-massage-image {
    margin-top: 5vh;
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.back-massage-card {
    margin-top: 10vh;    
}

.back-massage-image-container {
    display: flex;
    justify-content: center;
}

.back-massage-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

@media (min-width: 767px) {

    .intuitive-massage-image {
        width: 50vw;
    }
    
    .chi-nei-tsang-massage-image {
        width: 50vw;
    }    

    .feet-massage-image {
        width: 50vw;
    }    

    .back-massage-image {
        width: 50vw;
    }    
}

@media (min-width: 1010px) {

    .intuitive-massage-image {
        width: 30vw;
        object-fit: contain;
    }

    .intuitive-massage-card {
        margin: auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chi-nei-tsang-massage-image {
        width: 30vw;
        object-fit: contain;
    }

    .chi-nei-tsang-massage-card {
        margin: 5vh auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .feet-massage-image {
        margin-top: 0vh;
        width: 30vw;
        object-fit: contain;
    }

    .feet-massage-card {
        margin: 5vh auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .back-massage-image {
        width: 30vw;
        object-fit: contain;
    }

    .back-massage-card {
        margin: 5vh auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Massages */


/* EFT */

.eft-subtitle {
    margin-left: 10px;
    font-family: 'Cormorant-Regular';
    font-weight: bold;
    font-size: 1.4rem;
}

.eft-text-content {
    margin: 0 5vw;
}

.eft-schema-container {
    display: flex;
    justify-content: center;
}

.eft-schema-image {
    height: auto;
    width: 90vw;
}

@media (min-width: 1010px) {
    .eft-subtitle {
        margin-left: 80px;
    }
    
    .eft-text-content {
        margin: 0 25vw;
    }

    .eft-schema-image {
        height: auto;
        width: 30vw;
    }
}

@media (min-width: 1439px) {
    .eft-subtitle {
        margin-left: 114px; 
    }

}

@media (min-width: 1919px) {
    .eft-subtitle {
        margin-left: 152px;
    }
}

/* EFT */

/* A propos de moi */

.linda-elephant-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.linda-elephant-image {
    height: auto;
    width: 90vw;
    border-radius: 10px 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.linda-elephant-image-caption {
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.2rem;
}

@media (min-width: 767px) {
    .linda-elephant-image {
        margin: auto;
        width: 50vw;
    }

    .linda-elephant-image-caption {
        text-align: center;
    }
}

@media (min-width: 1010px) {
    .linda-elephant-image {
        width: 25vw;
        object-fit: contain;
    }

    .about-card {
        margin: auto;
        width: 70vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* A propos de moi */

/* Politique de confidentialiÃ© */

.policy-subtitle {
    text-align: center;
    font-family: 'Cormorant-Regular', sans-serif;
}

.cookies-subtitle {
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1rem;
}

.policy-ul-list {
    width: 60vw;
    margin: auto;
    padding: 0 5%;
    border: 2px solid black;
}

@media (min-width: 1010px) {
    .policy-container {
        margin: auto;
        width: 40vw;
    }

    .policy-ul-list {
        width: 30vw;
    }

    .cookies-subtitle {
        margin-left: 5vw;
    }

}

/* Politique de confidentialiÃ© */

/* Mentions lÃ©gales */

.legals-subtitle {
    text-align: center;
    font-family: 'Cormorant-Regular', sans-serif;
}

.legals-klwebify-logo-container {
    display: flex;
    justify-content: center;
}

.legals-ovh-logo-container {
    display: flex;
    justify-content: center;
}

@media (min-width: 1010px) {

    .legals-container {
        margin: auto;
        width: 40vw;
    }
}

/* Mentions lÃ©gales */

/* Page 404 */

.image-404-container {
    display: flex;
    justify-content: center;
}

.image-404 {
    height: auto;
    width: 90vw;
}

.text-404-message-container {
    text-align: center;
}

@media (min-width: 1919px) {
    .image-404 {
        width: 15vw;
    }
}

/* Page 404 */

/* Footer */

footer {
    margin: 10px 0;
    padding: 10px 0;
    background-color: #aa93b2;
    border-radius: 10px 10px;
}

.footer-text {
    color: white;
    text-align: center;
    font-family: 'Cormorant-Regular', sans-serif;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: right;
    margin-top: 30vh;
}

.adress-footer-cta {
    text-decoration: none;
    color: #abf8c0;
}

.mail-footer-cta {
    text-decoration: none;
    color: #abf8c0;
}

.phone-footer-cta {
    font-size: 2.5rem;
    text-decoration: none;
    color: #abf8c0;
}

.klwebify-signature {
    font-family: 'HypatiaSansPro-Regular', sans-serif;
    text-align: center;
}

.klwebify-external-link {
    text-decoration: none;
    color: black;
}

.klwebify-external-link:hover {
    color: #aa93b2;
}

.footer-links &gt; a {
    margin: 0 15px;
    text-decoration: none;
    font-family: 'Cormorant-Regular', sans-serif;
    color: black;
    font-size: 1.2rem;
}

.footer-links &gt; a:hover {
    color: #aa93b2;
}

/* Footer */
</pre></body></html>