*,::before,::after{box-sizing:border-box}*{margin:0;font:inherit;}html,body{height:100%}html{color-scheme: dark light;
    hanging-punctuation: first last;scroll-behavior:smooth}img,picture,svg,video{display:block;max-width:100%}img{vertical-align:middle;height:auto;object-fit:cover;line-height:0;font-style:italic;shape-margin:0.75rem;}input,button,textarea,select{font:inherit}button:focus,input:focus,select:focus{outline:none}p,h1,.h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}h1,.h1{hyphens:auto}ul{margin:0;padding:0}a{display:inline-block;text-decoration:none;color:black;line-height:var(--line-height)}#root,#__next{isolation:isolate}

:root {
  --color-grey-dark : #384444;
  --color-grey : #aaa;
  --color-grey-light : #eee;
  --color-green : #84d3aa; 
  --success : green;
  --error : red;  

  --font-primary: system-ui, sans-serif;
  --font-secondary: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
  --font-google: 'Rubik', system-ui, sans-serif;
  --text-base-size: 1.125rem;
  --body-line-height: 0;
  
  --ratio: 1.4;
  --line-height-large: 1.75;
  --line-height: 1.5;
  --line-height-medium: 1.3;
  --line-height-small: 1.15;

  /* Fluid type scale */
  --size-step--2: clamp(0.6944rem, 0.6376rem + 0.284vi, 0.84rem);
  --size-step--1: clamp(0.8333rem, 0.7488rem + 0.4228vi, 1.05rem);
  --size-step-0: clamp(1rem, 0.878rem + 0.6098vi, 1.3125rem);
  --size-step-1: clamp(1.2rem, 1.028rem + 0.8598vi, 1.6406rem);
  --size-step-2: clamp(1.44rem, 1.2016rem + 1.1918vi, 2.0508rem);
  --size-step-3: clamp(1.728rem, 1.402rem + 1.6302vi, 2.5635rem);
  --size-step-4: clamp(2.0736rem, 1.6323rem + 2.2063vi, 3.2043rem);
  --size-step-5: clamp(2.4883rem, 1.8963rem + 2.9602vi, 4.0054rem);
  --size-step-6: clamp(2.986rem, 2.1974rem + 3.943vi, 5.0068rem);
  --size-step-7: clamp(3.5832rem, 2.5392rem + 5.2201vi, 6.2585rem);

  /* Fluid space scale */
  --space-3xs: clamp(0.25rem, 0.2256rem + 0.122vi, 0.3125rem);
  --space-2xs: clamp(0.5rem, 0.4268rem + 0.3659vi, 0.6875rem);
  --space-xs: clamp(0.75rem, 0.6524rem + 0.4878vi, 1rem);
  --space-s: clamp(1rem, 0.878rem + 0.6098vi, 1.3125rem);
  --space-m: clamp(1.5rem, 1.3049rem + 0.9756vi, 2rem);
  --space-l: clamp(2rem, 1.7561rem + 1.2195vi, 2.625rem);
  --space-xl: clamp(3rem, 2.6341rem + 1.8293vi, 3.9375rem);
  --space-2xl: clamp(4rem, 3.5122rem + 2.439vi, 5.25rem);
  --space-3xl: clamp(6rem, 5.2683rem + 3.6585vi, 7.875rem);

  --header-height:60px;
  --border-radius:25px;
  --border-radius-min:10px;
  --min-column-size:10px;
  --count-column:1}

body {
    min-height: 100svh;	
    background: #ddd;
    font:normal 400 var(--text-base-size) var(--font-primary);
    line-height: var(--body-line-height);
    color:black;
    text-rendering: optimizeSpeed;
    font-smooth: always;
    -webkit-font-smoothing: antialiased}

.full-width { width: 100%}
.full-height { height: 100%}
.full-height-viewport { min-height: 100vh; min-height: 100dvh}
.no-line-height {line-height: 0}
.no-list-style {list-style: none}

.fadein, .fadeinmoveup {
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    backface-visibility: hidden}

.animation {transition: all .15s ease-in-out}
.animation--slow {transition: all .55s ease-in-out}

.button {touch-action: manipulation; inline-size: fit-content; user-select: none;cursor: pointer;border: none}
.button:focus {outline: none} 
.button:focus-visible {outline: 2px solid magenta; outline-offset: 2px} 
sup {font-size: .65em}


/* GRID
/* -------------------------- */
.mainGrid, .autoGrid, .countGrid, .grid {display: grid}
.mainGrid {grid-template-columns: [full-start] minmax(var(--min-column-size), .75fr) [content-start] repeat(12, minmax(var(--min-column-size), 1fr)) [content-end] minmax(var(--min-column-size), .75fr) [full-end]}
.autoGrid {grid-template-columns: repeat(auto-fit, minmax(min(var(--min-column-size), 100%), 1fr))}
.countGrid {grid-template-columns: repeat(var(--count-column), 1fr)}
.max-width-1920 {max-width:120rem; margin-inline:auto}

.banner--rgpd {
    position: fixed;
    display: none;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: var(--space-m);
    background-color: black}
.banner--rgpd > * {
    max-width: 40em;
    margin:0 auto;
    text-align: center}
.banner--rgpd p {
    font-family: var(--font-primary);
    color: white;
    line-height: var(--line-height-medium)}
.banner--rgpd a {color: white; text-decoration: underline}   
.banner--rgpd .btn-group {
    justify-content: center;
    margin: var(--space-xs) auto 0}
.banner--rgpd .btn--accept {
    color: white;
    border-color: var(--success);
    background-color: var(--success)}
.banner--rgpd .btn--decline {
    border-color:#333;
    background: none;
    color: grey}

.mainHeader {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    background-color: white}
.header--content {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgb(0,0,0,.25);
    height:var(--header-height)}
header .logo-main {margin-left: .9375rem} 
.langue {display: none}

.topnav {
    display: flex;
    justify-content: center;
    overflow: hidden}
.btnNav { 
    position: fixed;
    right: 0;
    top: 0;
    padding: 14px}
.dropdown {overflow: hidden}
.dropbtn {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 4rem;
    text-transform: uppercase;    
    color: black;
    margin: 0}
.dropbtn span {
    border-radius: 3px;
    padding: .375rem .625rem}     
.dropdown-content {
    display: none;
    overflow: hidden;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 2px 4px 10px 0px rgb(0,0,0,0.1);
    border-top: 1px solid rgb(0,0,0,0.3);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1}
.dropdown-content a {
    display: block;
    font-size: .875rem;
    text-align: left;
    color: var(--beige-text);
    padding: .5rem 1rem} 
.dropbtn.on span {background-color: var(--main-color)}
.dropdown-content a.on {color:black;background-color: rgb(0,0,0,.05)}     
.topnav :is(.btn-group,.footer ) {display: none}
.topnav .footer > * {margin-bottom: var(--space-m); text-align: center}
.topnav .footer .title {margin-bottom: var(--space-3xs)}
.topnav .footer p {font-size: var(--size-step-0)}
.topnav .footer p a {font-weight: 500}
.topnav .footer :is(p,li) {text-align: center}

@media screen and (max-width: 63.9375rem) {
    .topnav a, .dropbtn {display: none}
    .topnav.responsive {
        transition: all .15s ease-in-out;
        position: relative;
        display:block;
        padding-top: var(--space-s);
        padding-bottom: var(--space-s);
        box-shadow: 0 10px 10px rgb(0, 0, 0, 0.25)}
    .topnav.responsive a, .dropbtn {display: inline-block}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropbtn {
        width: 100%;
        font-size: var(--size-step-1);
        text-align: center;
        line-height: 3rem}
    .topnav.responsive .dropbtn.on span {border-radius:6px}
    .topnav.responsive .btn-group {
        display: flex;
        margin: var(--space-s) var(--space-l);
        justify-content: center}
    .topnav.responsive .footer {display: block}      
    }

.langue {display: none}
.dropDown--btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    border:none}        
.languebtn {
    font-size: .75rem;
    color: black;
    line-height: var(--line-height);
    text-transform: uppercase;
    background: none;
    padding: .250rem .5rem}
.dropDown--btn.languebtn svg {margin-right: .5rem; margin-left: 0}          
.dropDown--content {display: none}
.langue .dropDown--content {
    position: absolute;
    min-width: 118px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1}   
.langue .dropDown--content a {
    font-size:.975rem;
    color: black;
    padding: .375rem .5rem;
    display: block}   
.langue .dropDown--content a:hover {background-color: #ddd}
.dropDown--content.show {display: block}      


/* BOUTONS
/* ---------------------------------------------------- */
:is(.btn--primary, .btn--secondary, .btn--outline):focus {outline: none}
:is(.btn--primary, .btn--secondary, .btn--outline):active {transform: scale(.95)}

.btn--primary,
.btn--secondary,
.btn--outline {
    display: inline-block;   
    vertical-align: middle;
    padding: .625rem 1.875rem;
    font-size: .875rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: white;	
    line-height: var(--line-height-small);
    background-color: var(--main-color);	
    border: 1px solid var(--main-color);
    border-radius: 30px}
.btn--secondary {
    background-color: var(--second-color);
    border-color:  var(--second-color)}
.btn--outline {
    background: none;
    border-color: var(--color-grey);
    color: black}    
.btn--underline {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    text-decoration: underline}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    margin: var(--space-m) 0}
.btn-group > * {
    flex:1;
    min-width: fit-content}         
.btn--contact {
    margin-left: .750rem;
    display: none}


/* ACCUEIL
/* ---------------------------------------------------- */
.page_sommaire main {
    padding-top: var(--header-height);
    background-color: white}

.page_sommaire main section {
    margin-bottom: var(--space-m);
    padding: var(--space-m);
    grid-column: content;
    background-color: var(--color-grey-light);
    border-radius: var(--border-radius)}
.page_sommaire main section.color-scheme--dark {background-color: var(--second-color)} 

.page_sommaire main section.sticky {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom-left-radius: var(--border-radius-min);  
    border-bottom-right-radius:var(--border-radius-min)}    
.page_sommaire main section.sticky + section {
        border-top-left-radius: var(--border-radius-min);  
        border-top-right-radius:var(--border-radius-min)}    

.image-single {position: relative}
.background-video {
    background-color: black;
    min-height: 50svh;
    position: relative}
.youtube-background {opacity: .8}    
.accroche {
    z-index:5;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    max-width:960px;
    margin-inline:auto;
    padding: 0 var(--space-s) var(--space-s);
    text-align: center}
.accroche p {
    font-family: var(--font-google);
    font-size:var(--size-step-1);
    font-weight: 500;
    line-height:var(--line-height-small);
    color:white}

.carousel,.background-video,.image-single {grid-column: full}
.intro,.diptyque,.triptyque,.quadriptyque,.blockquote,.highlight,.video {grid-column: content}    
.background-video,.image-single,.intro,.diptyque,.triptyque,.quadriptyque,.blockquote,.highlight,.video {margin-bottom: var(--space-m)}  
.carousel {margin-bottom: var(--space-xl)}  
.intro {margin-bottom: var(--space-m)} 
.intro h1,
.page_art .article h1 {
    margin-bottom: var(--space-xs);
    font-family: var(--font-google);
    font-size: var(--size-step-3);
    font-weight: 500;
    line-height: var(--line-height-medium)} 
.intro h1 {color:var(--main-color)}         
.intro p {color:var(--color-grey-dark)}

.text--3Col .article:not(:last-child) {margin-bottom: var(--space-xl)}
.text--next2img .article {grid-column: content}
:is(.text--next2img,.text--3Col) picture {margin-bottom: var(--space-m)}

.blockquote p {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-l);
    border-left:6px solid var(--main-color);
    font-family: var(--font-google);
    font-size: var(--size-step-1);
    color: black}
.blockquote p strong {font-weight: 500; color:var(--main-color)}    
.highlight {
    grid-column: full;
    background-color: var(--main-color)}
.highlight p {
    grid-column: content;
    margin-bottom: var(--space-s);
    padding: var(--space-m) var(--space-m) calc(var(--space-m) - var(--space-xs));
    color: white}

.diptyque {
    display: flex;
    flex-direction: column;
    row-gap: var(--space-m)}
.triptyque,
.quadriptyque {
    --count-column:2;
    grid-gap: var(--space-m)} 
.triptyque picture:last-child {grid-column: span 2} 
.quadriptyque {--count-column:1}

.video {
    grid-column: full;
    background-color: hsl(from var(--main-color) h s 85%);
    padding: var(--space-m) 0}
.video .youtube {grid-column: content}

.footer {background: white}
.footer .content {grid-column: content}
.footer .content > * {margin-bottom: var(--space-m)}
.footer ul {list-style: none}
.footer li:not(:last-child) {margin-bottom: .375rem}
.footer :is(.title,.social) {font-family: var(--font-google)}        
.footer .title {
    display:inline-block;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    line-height: var(--line-height)}
.footer p {
    font-size: .875rem;
    line-height: var(--line-height)}            
.subFooter {
    margin-top: var(--space-l);
    padding: var(--space-2xs) 0;
    border-top: 1px solid rgb(0,0,0,.15);
    font-family: var(--font-secondary);
    font-size: .750rem}
.subFooter a + a {font-style: italic}

/* RUBRIQUE ARTICLE
/* -------------------------- */
::selection {
  background: hsl(from var(--main-color) h s 85%);	
  color:var(--color-grey-dark)}

.page_art .article {
    padding:var(--space-m);
    padding-top: calc(var(--space-xl) + var(--header-height));
    background-color: white}
.page_art .article h1 {font-size: var(--size-step-4)}

h2 {font-size: var(--size-step-3)}
h3 {font-size: var(--size-step-2)} 
h4 {font-size: var(--size-step-1)} 
h5 {font-size: var(--size-step-0)}
h2,h3,h4,h5 {
    font-family: var(--font-google);
    font-weight: 500;
    line-height: var(--line-height-medium)}
:is(h2,h3,h4) i {font-style: normal}

p,li,blockquote,pre {
    font-size: var(--text-base-size);
    text-align: justify;
    color:#494949;
    text-wrap: pretty;
    line-height: var(--line-height)}

.color-scheme--dark :is(h2,h3,h4,h5) {color: white}
.color-scheme--dark :is(p,li,blockquote,pre) {color: var(--color-grey-light)}

strong {font-weight:700}
.article p i {
    font-family: var(--font-secondary);
    font-style:italic;
    color: var(--main-color)}
.color-scheme--dark .article p i,
.color-scheme--dark p i {color: hsl(from var(--main-color) h s 75%)}

.progress {height: 1px;background: var(--main-color);position: fixed;top: 0;left: 0;width: 100%;z-index: 30;transform-origin: 0 50%;animation: scaleProgress auto linear;animation-timeline: scroll(root)}
@keyframes scaleProgress {
    0% {transform: scaleX(0)}
    100% {transform: scaleX(1)}}  

hr {width: 100%;border:none;border-top:1px solid rgb(0,0,0,.25);margin: var(--space-m) 0}
               
.article :is(p, ul, blockquote, .download, .table) + :is(h2, h3, h4, h5) {margin-top: var(--space-m)}
.article :is(p, ul, h2, h3, h4, h5, .table) {margin-bottom:var(--space-s)}
.article :is(h2, h3, h4, h5) strong {font-weight:500}

.art-img picture + picture  {margin-top:var(--space-m)}
.art-img, .art-youtube, .art-sticky  {margin:var(--space-s) 0}
.art-youtube + .art-youtube {padding-top: 0}
.article :is(.art-img, .art-youtube, .art-sticky, .block, .table) + :is(h2, h3, h4, h5) {margin-top:var(--space-l)}
.art-sticky {position: sticky;top:70px;z-index: 10}

.article ul {padding-left: .375em}
.article ul > li {padding-left:.375em; margin-bottom: .250em}
.article ul > ::marker {font-size:var(--text-base-size);color:var(--main-color);content: "\2022"}
.color-scheme--dark .article ul > ::marker,
.color-scheme--dark ul > ::marker{color:hsl(from var(--main-color) h s 75%)}

.article p strong {color: black}
.color-scheme--dark .article p strong,
.color-scheme--dark p strong {color: white}

.toggleBtn, .block,.block > .content {grid-column: span 12}
.block :is(p,figure) {margin-bottom: var(--space-m)}
.block .content > :is(p,figure):last-child {margin-bottom:0}
.toggleBtn {
    position: relative;
    display: flex;
    align-items:center;
    padding: var(--space-s) 2.5rem;
    padding-left: 0}
.article .toggleBtn :is(h2,h3,h4) {
    font-size: var(--size-step-0);
    margin-bottom: 0;
    line-height: var(--line-height-small)}
.article .block :is(h2,h3,h4) {font-size: var(--size-step-1)}          
.toggleBtn button {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    border:none;
    background: none;
    color:var(--color-grey-dark);
    cursor: pointer}
.toggleBtn button svg {
    margin-left: auto;
    margin-right: 5px;
    transition: all .275s linear}
.toggleBtn button.down svg {transform:rotate(45deg)}
.color-scheme--dark .toggleBtn button {color: white}                 
.block {
    --count-column:12;
    grid-template-rows: 0fr;
    transition: grid-template-rows 275ms;
    border-bottom: 1px solid rgb(0 0 0 / .3)}
.color-scheme--dark .block {border-color:rgb(255 255 255 / .15)}    
.block > .content {overflow: hidden}    
.toggle {
    grid-template-rows: 1fr;
    padding-bottom:var(--space-m)}
.block + :is(.art-img, .art-youtube) {margin-top:var(--space-xl)}

blockquote {
    padding: var(--space-s) var(--space-s) 1px;
    margin: var(--space-s) 0;
    margin-left: 0;	
    background-color: var(--main-color);
    font-weight: 500}
blockquote :is(p,li) {color: white}
.article blockquote :is(h2,h3,h4,h5) {
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: var(--size-step-1);
    font-weight: 600;
    line-height: var(--line-height-medium)}   
.article blockquote :is(h2,h3,h4,h5) strong {font-weight: 600}  
.article blockquote ul > ::marker {color:white} 

.article :is(p, ul, blockquote) a {text-decoration-line: underline}
a { text-underline-offset: 0.1em;
    text-decoration-thickness: 2px}      
a:is(:hover, :focus) {outline: none}

.article .carousel {
    grid-column: content;
    margin: var(--space-xl) 0}

.download a {
    grid-column: content;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    margin: var(--space-2xs) 0;
    padding: var(--space-2xs);
    background-color: hsl(from var(--main-color) h s 75%);
    font-family: var(--font-google);
    font-weight: 500;
    font-size: .875rem;
    text-transform: uppercase}   
.download svg {margin-right:var(--space-2xs)}   
.article .download + :is(h2, h3, h4, h5, figure) {margin-top: var(--space-xl)}

table {
    overflow-x: auto;
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
    border-spacing: 0;
     width: 100%;
    font-size: .875rem;    
    line-height: 1.35em}
th {
    vertical-align: top;
    background-color: hsl(from var(--main-color) h s 85%);
    font-size: 1rem;
    font-weight: 700}
th,td {
    padding:.575rem;
    text-align: center;
    line-height: 1.3em}
tr:nth-child(even) {background-color: #eee}

.page_form_success {padding-bottom: 0}
.page_form_success .art-chapo.success {margin-bottom: 0}          
.article.page_form .art-chapo {
    grid-column: content;
    margin-bottom: var(--space-xl);
    font-family: var(--font-primary);
    line-height: var(--line-height)}   
.page_form form {
    grid-column: content;
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--space-m);
    margin-bottom: var(--space-l)} 
.page_form form > * {
    width: 100%;
    line-height: 0}
.page_form h1, .page_form_success h1 {text-align: center}
.article form h2 {
    margin-bottom: .5rem;
    font-size: var(--size-step-1);
    font-weight: 400}
.page_form :is(input[type=email],
input[type=text],
select,textarea) {
    width: 100%;
    padding: .5rem;
    background-color: #eee;
    height: 60px;
    border: none;
    border-radius: 5px;
    font-size: 1.250rem;
    line-height: var(--line-height);
    color:black}
input {outline: 2px solid rgb(0,0,0,0)}
input:user-valid {outline-color: var(--success)}
input:user-invalid {outline-color: var(--error)}
.page_form textarea {min-height: 300px}
.page_form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border: none;
    border-radius: 5px;
    background: var(--main-color);
    font-size: var(--size-step-1);
    font-weight: 700;
    color: black;
    text-transform: uppercase}