        /* RESET */
        
        html,
        body,
        div,
        span,
        applet,
        object,
        iframe,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        blockquote,
        pre,
        a,
        abbr,
        acronym,
        address,
        big,
        cite,
        code,
        del,
        dfn,
        em,
        img,
        ins,
        kbd,
        q,
        s,
        samp,
        small,
        strike,
        strong,
        sub,
        sup,
        tt,
        var,
        b,
        u,
        i,
        center,
        dl,
        dt,
        dd,
        ol,
        ul,
        li,
        fieldset,
        form,
        label,
        legend,
        table,
        caption,
        tbody,
        tfoot,
        thead,
        tr,
        th,
        td,
        article,
        aside,
        canvas,
        details,
        embed,
        figure,
        figcaption,
        footer,
        header,
        hgroup,
        menu,
        nav,
        output,
        ruby,
        section,
        summary,
        time,
        mark,
        audio,
        video {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
        }
        /* HTML5 display-role reset for older browsers */
        
        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        menu,
        nav,
        section {
            display: block;
        }
        
        body {
            line-height: 1;
        }
        
        ol,
        ul {
            list-style: none;
        }
        
        blockquote,
        q {
            quotes: none;
        }
        
        blockquote:before,
        blockquote:after,
        q:before,
        q:after {
            content: '';
            content: none;
        }
        
        table {
            border-collapse: collapse;
            border-spacing: 0;
        }
        
        p,
        li,
        span {
            font-family: 'Raleway', sans-serif;
        }
        /* Font */
        
        @font-face {
            font-family: "Kiona";
            src: url("assets/font/Kiona-Regular.ttf") format("truetype");
        }
        /* Common */
        
        header {
            background: white;
        }
        
        header ul {
            display: flex;
            flex-flow: row;
            justify-content: space-around;
            align-items: center;
            margin: 1rem auto;
            max-width: 1100px;
        }
        
        header ul li {
            padding: 1rem;
            border-right: solid 1px #a7a1a0;
            color: #534745;
            width: 100%;
            text-align: center;
            position: relative;
        }
        
        header ul li:last-of-type {
            border-right: none;
        }
        
        header ul li a {
            color: #534745;
        }
        
        header ul li ul {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            padding-left: 0;
            left: 0;
            display: none;
            background: white;
        }
        
        header ul li:hover>ul,
        header ul li ul:hover {
            visibility: visible;
            opacity: 1;
            display: block;
            min-width: 250px;
            text-align: left;
            padding-top: 20px;
            box-shadow: 0px 3px 5px -1px #ccc;
        }
        
        header ul li ul li {
            clear: both;
            width: 100%;
            text-align: left;
            margin-bottom: 20px;
            border-style: none;
        }
        
        header ul li ul li a:hover {
            padding-left: 10px;
            border-left: 2px solid #534745;
            transition: all 0.3s ease;
        }
        
        header a {
            text-decoration: none;
        }
        
        header a:hover {
            color: #534745;
        }
        
        header ul li ul li a {
            transition: all 0.5s ease;
        }
        /* HEADER MOBILE*/
        
        header .burger {
            display: none;
            padding: 1rem;
            position: fixed;
            top: 0;
            z-index: 1000;
            background: white;
            width: 100vw;
            box-sizing: border-box;
            box-shadow: 0 0 32px -6px #00000030;
        }
        
        header .burger svg {
            width: 25px;
            height: 25px;
            position: absolute;
            top: 11px;
            left: 14px;
            cursor: pointer;
        }
        
        header .burger span {
            text-align: center;
            display: block;
        }
        
        @media (max-width: 986px) {
            header {
                height: 48px;
            }
            header .burger {
                display: block;
            }
            header .menu {
                position: absolute;
                height: calc(100% - 48px);
                width: 80vw;
                background: white;
                left: -100%;
                top: 48px;
                max-width: 250px;
                z-index: 1001;
                box-shadow: 0 0 32px -6px #00000030;
                padding: 2rem;
                box-sizing: border-box;
                transition: left 0.3s ease;
            }
            header .menu.active {
                left: 0;
            }
            header .menu ul {
                flex-flow: column;
                margin: 0;
            }
            header .menu ul li {
                /* border-bottom: solid 1px #a7a1a0; */
                border-right: none;
                width: initial;
            }
            header ul li:last-of-type {
                border-bottom: none;
            }
            header ul li ul {
                opacity: 1 !important;
                position: initial !important;
                box-shadow: none !important;
                text-align: center;
                min-width: none;
                border-top: solid 1px gainsboro;
                border-bottom: solid 1px gainsboro;
                margin: 1rem 0 !important;
                padding-top: 0 !important;
                margin-bottom: 0 !important;
            }
            header ul li ul li {
                width: initial !important;
                text-align: center !important;
                margin: 0 !important;
            }
        }
        /* Index */
        
        .logo-wrapper {
            background-image: url('assets/bg.jpg');
            padding: 2rem 0 15rem 0;
            background-image: url(assets/bg.jpg);
            background-size: cover;
            background-attachment: fixed;
        }
        
        .logo-wrapper .logo-container {
            text-align: center;
        }
        
        .logo-wrapper .logo-container img {
            max-width: 90vw;
            width: 280px;
        }
        
        .logo-wrapper .logo-container h1 {
            font-size: 50px;
            margin: 4rem 0;
            font-family: 'Kiona', serif;
        }
        
        @media (max-width: 986px) {
            .logo-wrapper {
                padding: 2rem 0 13rem 0;
            }
            .logo-wrapper .logo-container img {
                width: 180px;
            }
            .logo-wrapper .logo-container h1 {
                font-size: 30px;
                margin: 2rem 0;
            }
        }
        
        .logo-wrapper .description-container {
            text-align: center;
            font-size: 18px;
            line-height: normal;
            letter-spacing: normal;
            font-weight: 400;
        }
        
        .logo-wrapper .description-container span {
            font-family: "Times New Roman", Times, serif;
            font-style: italic;
            color: white;
            max-width: 300px;
            display: inline-block;
        }
        
        .logo-wrapper .description-container .brand {
            font-family: "Kiona", serif;
            font-style: normal;
        }
        
        .logo-wrapper.small {
            padding: 1.5rem 0 1.5rem 0;
        }
        
        .logo-wrapper.small .logo-container img {
            max-width: 90vw;
            width: 109px;
        }
        
        .logo-wrapper.small .logo-container h1 {
            margin: 1rem 0;
            font-size: 24px;
        }
        
        main.page-detail {
            margin: 2rem;
        }
        
        main.page-detail h1 {
            color: rgb(204, 174, 147);
            font-size: 24px;
            font-family: "Kiona", serif;
            font-weight: 400;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        main.page-detail .page-detail-container {
            max-width: 1100px;
            border-right: dotted 2px rgb(83, 71, 69);
            border-left: dotted 2px rgb(83, 71, 69);
            margin: auto;
            padding: 3rem;
            box-sizing: border-box;
            text-align: center;
        }
        
        main.page-detail .page-detail-container .flex-mid {
            display: flex;
        }
        
        main.page-detail .page-detail-container .flex-mid>* {
            width: 50%;
            flex-grow: 1;
        }
        
        main.page-detail .page-detail-container .quote-container {
            display: flex;
            flex-flow: column;
        }
        
        main.page-detail .page-detail-container .quote-container svg {
            width: 49px;
            height: 32px;
            margin: 3rem 1rem;
        }
        
        main.page-detail .page-detail-container .quote-container svg.left {
            transform: scaleX(-1);
        }
        
        main.page-detail .page-detail-container .quote-container .quote-content {
            text-align: center;
        }
        
        main.page-detail .page-detail-container .quote-container .quote-content p {
            max-width: 349px;
            font-family: "Times New Roman", Times, serif;
            font-style: italic;
            display: inline-block;
            color: rgb(83, 71, 69);
            font-size: 20px;
            text-indent: 3rem;
            text-align: justify;
        }
        
        @media (max-width: 986px) {
            main.page-detail {
                margin: 2rem 1rem;
            }
            main.page-detail .page-detail-container .flex-mid {
                flex-flow: column-reverse;
            }
            main.page-detail .page-detail-container .flex-mid>* {
                width: 100%;
                flex-grow: 1;
            }
            main.page-detail .page-detail-container {
                padding: 1rem;
            }
        }
        
        main.page-detail .page-detail-container .quote-container .quote-content span {
            display: inline-block;
            text-align: right;
            width: 100%;
            margin-top: 2rem;
        }
        
        main.page-detail .page-detail-container .quote-container svg.right {
            align-self: flex-end;
        }
        
        main.page-detail .page-detail-container .photo-container {
            margin: auto;
            text-align: center;
        }
        
        main.page-detail .page-detail-container .photo-container img {
            width: 100%;
        }
        
        main.page-detail .page-detail-container .photo-container div.img {
            box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px 0px;
            border: solid 5px white;
            width: 100%;
            max-width: 349px;
        }
        
        main.page-detail .page-detail-container table {
            width: 100%;
            background: #ebd0b7;
            color: white;
            margin-bottom: 3rem;
        }
        
        main.page-detail .page-detail-container table td {
            padding: 1rem;
            text-transform: uppercase;
            font-family: 'Kiona', serif;
            font-size: 18px;
        }
        
        main.page-detail .page-detail-container table td {
            /* max-width: 300px; */
        }
        
        @media (max-width: 986px) {
            main.page-detail .page-detail-container table td {
                padding: 10px 3px;
                font-size: 14px;
                text-align: left;
            }
        }
        
        main.page-detail .page-detail-text {
            font-family: "times new roman", times, serif;
            font-size: 20px;
            color: rgb(83, 71, 69);
            max-width: 869px;
            text-align: justify;
            margin: 0 auto 2rem auto;
        }
        
        main.page-detail .page-detail-text a.inline {
            color: rgb(83, 71, 69);
        }
        
        main.page-detail ul {
            list-style: initial;
        }
        
        main.page-detail ul li {
            font-family: "times new roman", times, serif;
            font-size: 20px;
            color: rgb(83, 71, 69);
            max-width: 869px;
            text-align: justify;
            /* text-indent: 2rem; */
            margin: 0 auto 2rem auto;
            list-style-position: outside;
        }

        main.page-detail ul.small-list li {
            margin: 0 auto 0.5rem auto;
        }
        
        main.page-detail ul.page-detail-list.sm-margin li {
            margin: 0.2rem auto;
        }
        
        main.page-detail ul.page-detail-list.multiple-line li {
            text-indent: 0;
            padding-left: 1rem;
            box-sizing: border-box;
            list-style-position: inside;
        }
        
        main.page-detail ul.page-detail-big-list {
            list-style: none;
            text-align: center;
        }
        
        main.page-detail ul.page-detail-big-list li {
            text-align: center;
            font-family: 'Kiona', serif;
            color: rgb(83, 71, 69);
        }
        
        main.page-detail ul.page-detail-big-list li a {
            color: rgb(204, 174, 147);
        }
        
        main.page-detail ul.page-detail-big-list .big-dot {
            color: rgb(83, 71, 69);
        }
        
        main.page-detail .page-detail-container .flex-mid .infos,
        main.page-detail .page-detail-container .flex-mid .accessibilite {
            text-align: left;
            padding: 0 1rem 1rem 1rem;
        }
        
        @media (max-width: 986px) {
            main.page-detail .page-detail-container .flex-mid .infos,
            main.page-detail .page-detail-container .flex-mid .accessibilite {
                padding: 1rem 0rem;
                text-align: center;
            }
        }
        
        main.page-detail .page-detail-container .flex-mid .infos .social-links {
            margin: 2rem 0;
        }
        
        main.page-detail .page-detail-container .flex-mid .infos .social-links img {
            width: 20px;
            height: 20px;
        }
        
        main.page-detail .page-detail-container .flex-mid .infos a {
            color: rgb(83, 71, 69);
            text-decoration: none;
        }
        
        main.page-detail .page-detail-container .section-title {
            font-size: 18px;
            font-family: 'Kiona', serif;
            color: rgb(204, 174, 147);
            margin-bottom: 1rem;
        }
        
        main.page-detail .page-detail-container .section-title svg {
            width: 47px;
            height: 47px;
            vertical-align: middle;
        }
        
        main.page-detail .techniques {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 900px;
            margin: auto;
        }
        
        main.page-detail .techniques .technique {
            width: 45%;
            margin-bottom: 4rem;
        }
        
        main.page-detail .techniques .technique img {
            width: 100%;
            max-width: 338px;
            border: 3px solid white;
            box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px 0px;
            transition: transform 0.3s ease;
        }
        
        main.page-detail .techniques .technique img:hover {
            transform: scale(1.1);
        }
        
        main.page-detail .techniques .technique a.label {
            display: block;
            margin-top: 2rem;
            font-family: raleway, sans-serif;
            font-size: 18px;
            color: rgb(235, 208, 183);
        }
        
        main.page-detail .flex-mid.photo {}
        
        main.page-detail .flex-mid.photo p {
            width: 40%;
        }
        
        main.page-detail .flex-mid.photo .image-container {
            width: 40%;
        }
        
        main.page-detail .flex-mid.photo .image-container img {
            object-fit: contain;
            width: 70%;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px 0px;
            border: solid 5px white;
        }
        
        main.page-detail .perks, main.page-detail .perks-double {
            display: flex;
            margin-top: 2rem;
        }
        
        main.page-detail .perks>div {
            margin: 1rem 1.5rem;
            width: 33%;
        }

        main.page-detail .perks-double>div {
            margin: 1rem 1.5rem;
            width: 50%;
        }
        
        @media (max-width: 986px) {
            main.page-detail .flex-mid.photo {
                align-items: center;
            }
            main.page-detail .flex-mid.photo p {
                width: 100%;
            }
            main.page-detail .flex-mid.photo .image-container {
                width: 100%;
                margin-bottom: 1rem;
            }
            main.page-detail .flex-mid.photo .image-container img {
                width: 100%;
                box-sizing: border-box;
            }
            main.page-detail .techniques {
                flex-flow: column;
                justify-content: center;
                align-items: center;
            }
            main.page-detail .techniques .technique {
                margin-bottom: 3rem;
                width: 100%;
            }
            main.page-detail .perks {
                flex-flow: column;
                margin-top: 0rem;
            }
            main.page-detail .perks>div {
                width: 100%;
                margin: 1rem 0;
            }
        }
        
        main.page-detail .perks>div ul {}
        
        main.page-detail .perks>div ul li {}
        
        .big-notice {
            font-size: 20px;
            font-style: italic;
            text-align: center;
            font-family: "times new roman", times, serif;
            max-width: 860px;
            color: rgb(83, 71, 69);
            margin: 2rem auto;
        }
        
        .important-text {
            font-size: 20px;
            color: rgb(83, 71, 69);
            font-family: "times new roman", times, serif;
            line-height: 1.5rem;
        }
        
        .brand-text {
            font-family: 'Kiona', serif;
        }
        
        .bottom-icon {
            width: 50px;
            height: 40px;
            border-bottom: 1px dashed rgb(83, 71, 69);
        }
        
        .subtitle {
            font-size: 18px;
            font-family: 'Kiona', serif;
            color: rgb(204, 174, 147);
            margin-bottom: 1rem;
        }
        
        .notice-text {
            font-size: 15px;
            color: rgb(83, 71, 69);
            font-style: italic;
            margin-top: 2rem;
        }
        
        .notice-text.narrow {
            text-align: justify;
            max-width: 714px;
            margin: 2rem auto;
        }
        
        .important {
            font-size: 20px;
            text-decoration: underline;
            font-weight: 700;
            color: rgb(83, 71, 69);
            font-family: 'raleway', sans-serif;
            margin-top: 2rem;
        }
        
        .italic {
            font-style: italic;
        }
        /* FOOTER */
        
        footer {
            background-color: rgba(122, 100, 78, 1);
            background-image: url('assets/bg-footer.png');
            padding-top: 0.3rem;
            padding-bottom: 2rem;
        }
        
        footer hr {
            border-bottom: dotted 2px white;
            border-top: none;
        }
        
        footer h3 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 1.5rem;
            font-family: 'Kiona', serif;
        }
        
        footer li,
        footer p {
            margin-bottom: 0.2rem;
            font-size: 14px;
        }
        
        footer .footer-container {
            padding: 3rem 1rem;
            display: flex;
            flex-flow: row;
            color: white;
            justify-content: space-evenly;
            max-width: 1000px;
            margin: auto;
        }
        
        footer .footer-container .brand {}
        
        footer .footer-container .brand img {
            width: 100vw;
            max-width: 180px;
        }
        
        footer .footer-container .brand p {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 20px;
            font-family: 'Kiona', serif;
        }
        
        footer .footer-container .social-links {
            margin-top: 2rem;
        }
        
        footer .footer-container .social-links img {
            width: 20px;
            height: 20px;
        }
        
        footer a {
            color: inherit;
            text-decoration: inherit;
        }
        
        @media (max-width: 986px) {
            footer .footer-container {
                flex-flow: column;
                align-items: center;
            }
            footer nav {
                text-align: center;
                margin: 2rem 0;
            }
            footer div.contact {
                text-align: center;
            }
        }

        .no-dot-list {
            list-style-type: none !important;
        }

        .formations {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .formation {
            width: 40%;
        }

        .formation img {
            object-fit: contain;
            width: 100%;
            box-shadow: rgb(0 0 0 / 40%) 0px 1px 4px 0px;
            border: solid 5px white;
            margin-bottom: 1rem;
        }

        .formation li {
            margin-bottom: 1rem !important;
            margin: 1rem !important;
            text-indent: 0rem !important;
            list-style-position: inside !important;
            padding-left: 2rem;
        }

        .sublist-formation {
            list-style: none !important;
            list-style-position: outside !important;
        }

        .sublist-formation li {
            text-indent: 0rem !important;
            list-style-position: inside !important;
            padding-left: 1rem;
            margin: 0.5rem !important;
        }

        .small-text {
            font-size: 0.9rem !important;
            text-indent: 0 !important;
        }

        .small-title {
            color: rgb(204, 174, 147);
            font-size: 18px;
            font-family: "Kiona", serif;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .page-detail-list a {
            color: rgb(83, 71, 69);
            font-weight: 400;
            font-size: 1rem;
        }

        .table-tarifs {
            text-align: left;
        }

        .table-tarifs a {
            font-size: 1.1rem;
            color: white;
            
        }


        .list-info {
            text-align: left;
            margin-left: 4rem;
            text-indent: 0rem;
            color: gray;
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .special-link {
            color: #5c5c5c;
            font-size: 17px;
            text-align: left;
            display: block;
            margin: 0 0 2rem 4rem;
        }


        .no-margin {
            margin-right: 0 !important;
            margin-left: 0 !important;
        }

        .list-padding-left {
            padding-left: 2.5rem;
        }

        .bold {
            font-weight: 600;
        }