*,::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}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 : #e9e9e9;
  --color-green-light : #c0e8c0; 
  --color-green : #00d87c; 
  --color-green-dark : #004e35; 
  --color-text : #333; 
  --success : green;
  --error : red;  

  --font-primary: system-ui, sans-serif;
  --font-secondary: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
  --font-google-primary: 'Poppins', system-ui, sans-serif;
  --font-google-secondary: 'Noto Serif', serif;
  --text-base-size: 1.125rem;
  --body-line-height: 0;
  
  --ratio: 1.4;
  --line-height-large: 1.7;
  --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:58px;
  --header-height-scroll:58px;
  --border-radius-xsmall:4px;
  --border-radius-small:10px;
  --border-radius:15px;
  --border-radius-medium:25px;
  --border-radius-large:40px;
  --border-radius-big:70px;
  --min-column-size:10px;
  --count-column:1}

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

.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}
.overflow-hidden {overflow: hidden}

.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}
.grid-column--full {grid-column: full}
.grid-column--content {grid-column: content}

.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-google-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}

/* MENU
/* -------------------------- */
.topnav {
    display: flex;
    justify-content: center;
    /*overflow: hidden*/}
.btnNav { 
    position: absolute;
    color: white;
    right: 6px;
    padding: 14px}
.dropdown {overflow: hidden}
.dropbtn {
    font-size: .9375rem;
    font-weight: 600;
    line-height: 4rem;   
    color: white;
    margin-right: var(--space-3xs)}
.dropbtn:has(+ .stickyNav) {margin-right: 0}    
.dropbtn span {
    position: relative;
    padding: .375rem .625rem}     
.dropdown-content {
    display: none;
    overflow: hidden;
    position: absolute;
    background-color: var(--color-grey);
    min-width: 160px;
    box-shadow: 2px 4px 10px 0px rgb(0,26,115,0.15);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1}
.dropdown-content a {
    display: block;
    font-family: var(--font-google-secondary);
    font-size: .9375rem;
    text-align: left;
    color: var(--color-green-dark);
    padding: .325rem .5rem} 
.dropbtn.on {color: white}
.dropbtn.on span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: .625rem;
    height: 3px;
    width: calc(100% - 1.250rem);
    background-color:var(--color-green-light)}
.dropdown-content a.on {color:white; background-color:var(--color-green-dark)}     
.btn--contact.mobile {
    display: none;
    padding: 0 var(--space-s) 0 var(--space-xs);
    margin-left: auto;
    margin-right: 70px} 
.topnav + .btn--contact {margin-left: auto}

@media screen and (max-width: 63.9375rem) {
    .topnav a, .dropbtn, .langue {display: none}
    .topnav.responsive {
        transition: all .15s ease-in-out;
        position: absolute;
        overflow: hidden;
        top: var(--header-height);
        width: 100%;
        display: block;
        padding-top: var(--space-s);
        border-top: 1px solid rgb(255 255 255 / .2);
        border-radius: var(--border-radius);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        box-shadow: 2px 2px 10px rgb(0 0 0 / .2);
        background-color: var(--main-color)}
    .topnav.responsive a, .dropbtn, .topnav.responsive .langue {display: block}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropbtn {
        width: 100%;
        margin: 0;
        font-size: var(--size-step-1);
        text-align: center;
        line-height: 2.75rem}
    .topnav.responsive .dropbtn.on {color:var(--main-color)}  
    .topnav.responsive .dropbtn.on span {     
        background-color: hsl(from var(--main-color) h s 75%);
        color: var(--color-green-dark);
        border-radius:6px}
    .topnav.responsive .dropbtn.on span::before {content:inherit}
    .topnav.responsive .subNav .btn--contact {display: none}
    .btn--contact.mobile,
    .topnav.responsive .stickyNav {display: block}      
    }


/* HEADER
/* -------------------------- */
.mainHeader {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--main-color)}
.contentHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: var(--header-height)}    
.contentHeader .logo-main {margin-left: var(--space-xs)}
header.scroll {box-shadow: 0 2px 15px rgb(0 0 0 / 0.15)}
header.scroll .contentHeader {height: var(--header-height-scroll)}
.contentHeader .chatbot {display: none}     

/* LANGUES
/* -------------------------- */
.langue--btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    border:none;
    font-size: .875rem;
    color: var(--main-color);
    line-height: var(--line-height);
    background: none;
    padding: .250rem .5rem}
.langue--btn svg {margin-right: .250rem; margin-left: 0}          
.langue--content {display: none}
.langue--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--content a {
    font-size:.975rem;
    color: black;
    padding: .375rem .5rem;
    display: block}   
.langue--content a:hover {background-color: #ddd}
.langue--content.show {display: block}      

/* ACCUEIL
/* ---------------------------------------------------- */
.header--sommaire {grid-column: full}
.background-video, .container-video {min-height: 40svh}
.container-video, .background-video, .image-single {position: relative}
.carousel-cell picture,
.image-single picture,
.background-video {
    overflow: hidden;
    background-color: black}

.slogan {
    padding: var(--space-s) 5.35715%;
    background-color: var(--color-green-dark);
    border-bottom: 1px solid rgb(255 255 255 / .15);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--line-height-medium);
    color: hsl(from var(--main-color) h s 55%)}
.catchPhrase  {
    padding:var(--space-m) 5.35715%;
    background-color: var(--color-green-dark)}
.catchPhrase p {
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-3);
    line-height: var(--line-height-medium);
    color: white}
.catchPhrase p strong {
    display: block;
    font-family: var(--font-google-primary);
    font-size: .9375rem;
    font-weight: 600;
    text-transform: uppercase}   
.catchPhrase .buttons {margin-top: var(--space-xs)}
.header--sommaire .flickity-page-dots {bottom:-30px}
.header--sommaire .flickity-page-dots .dot {background:hsl(from var(--color-grey) h s 85%); opacity:1}
.header--sommaire .flickity-page-dots .dot.is-selected {background: var(--main-color)}

.callToAction {
    background-color: white;
    padding-top: var(--space-l);
    padding-bottom: var(--space-l)}
:is(.page_presta, .page_real) .callToAction {padding-top: var(--space-2xl)}
.page_sommaire .callToAction,
.page_real .callToAction {grid-column: full}
.page_sommaire .callToAction {
    padding-top: 0;
    border-top: 50px solid white;
    background-color: var(--color-grey)}
.callToAction .dessin {display: none}
.callToAction a {
    grid-column: content;
    border-radius: var(--border-radius-large);
    padding: var(--space-m);
    padding-bottom: 250px;
    background-repeat: no-repeat;
    background-position:right bottom;
    background-color: var(--color-green-light);
    text-align: center}
.page_sommaire .callToAction a {
    z-index: 5;
    grid-column: content;
    border-radius: 0;
    padding: 0;
    background: none}
.circle {
    display: grid;
    place-content: center;
    border-radius: 50%;
    background-color: white}
.callToAction .circle {
    margin-inline: auto;
    width: 100px;
    height: 100px;
    margin-top: calc(-50px - var(--space-m))}
.callToAction .circle img {width: 50px}
.page_sommaire .callToAction .circle {margin-top: -50px}          
.callToAction .title {
    display: block;
    margin-top: var(--space-s);
    margin-bottom: var(--space-xs);
    font-size:var(--size-step-3);
    font-weight: 600;
    line-height: var(--line-height-small);
    color: var(--color-green-dark)}    
.callToAction p {
    max-width: 50rem;
    margin-inline:auto;
    margin-bottom: var(--space-s);
    font-size:calc(.9 * var(--size-step-1));
    font-family: var(--font-google-secondary);
    line-height: var(--line-height-medium);
    text-shadow:1px 1px var(--color-green-light)}
.page_sommaire .callToAction p {
    margin-bottom: 0;
    color: black;
    text-shadow: none}     

.intro--sommaire {
    grid-column: full;
    padding:var(--space-xl) 0 var(--space-m);
    background-position: left bottom;
    background-repeat: no-repeat}
.intro--sommaire > * {grid-column: content}
.intro--sommaire h1 {
    margin-bottom: var(--space-xs);
    font-family: var(--font-google-primary);
    font-size: var(--size-step-2);
    font-weight: 600}
.intro--sommaire p {
    font-family: var(--font-google-secondary);
    color:var(--color-text)}
.intro--sommaire p + p {margin-top: var(--space-3xs)}
.intro--sommaire a {margin-top: var(--space-xs); background-color: white}

.expertises {
    grid-column: full;
    padding-top: var(--space-m);
    background-color: var(--color-grey);
    background-position: left top;
    background-repeat: no-repeat}
@media only screen and (max-width: 63.9375rem) {
    .intro--sommaire, .expertises {background-size:400px auto}
    .intro--sommaire {padding-bottom:215px}
    }
.expertises .header {
    grid-column: content;
    text-align: center}    
.expertises h2 {
    text-transform: uppercase;
    line-height: var(--line-height-small);
    color: var(--color-green-dark)}
.expertises h2 strong {color: var(--main-color)}       
.expertises .header a {margin-top: var(--space-2xs)}
.expertises .carousel {
    grid-column: full;
    padding-top: var(--space-m);
    padding-bottom: var(--space-m)}
.expertises .carousel-cell {
    width: 75%;
    margin-right: var(--space-s)}
.expertises .carousel-cell img {
    border-radius: var(--border-radius-medium);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%}
.expertises a h3 {
    margin-top: var(--space-xs);
    font-size: 1.125rem;
    text-align: center}  

.zoom {
    grid-column: content;
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
    background: white}
.zoom.suite {padding-top: 0}
.zoom a > * {grid-row: 1; grid-column: 1}
.zoom-header {
    z-index: 1;
    align-self: end;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: var(--space-s) 0;
    border-top: 1px solid rgb(255 255 255 / .5)}
.zoom-header > * {flex: 0 1 0}       
.zoom-header .title {
    flex-basis: calc(100% - (110px + var(--space-xs)));
    margin-left:4.33333%;
    padding-right: var(--space-xs);
    color: white}
.zoom h2 {
    font-size: 1rem;
    text-transform: uppercase}
.zoom h3 {
    font-family: var(--font-google-secondary);
    font-weight: 400}   
.zoom picture {
    overflow: hidden;
    border-radius: var(--border-radius);
    background: black}    
.zoom img {opacity: .8}  
.zoom-header .button {
    flex-basis: 110px;
    margin-bottom: var(--space-3xs);
    margin-right: 4.33333%}

.page_sommaire .real-media {
    padding-top: 0;
    background-color: var(--color-green-dark)}
.page_sommaire .real-media .header {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-l);
    padding-bottom: var(--space-m)}
.page_sommaire .real-media .header h2 {
    width: 100%;
    margin-bottom: var(--space-2xs);
    text-transform: uppercase;
    text-align: center;
    line-height: var(--line-height-small);
    color: white}
.page_sommaire .real-media .button {margin-inline: auto}
.page_sommaire .real-media .mozaic > a {position: relative}
.page_sommaire .real-media .mozaic > a div {
    position: absolute;
    z-index: 5;
    left: var(--space-xs);bottom: var(--space-xs);
    color: white}  
.page_sommaire .real-media .mozaic > a div > * { text-decoration: underline}
.page_sommaire .real-media .mozaic > a h3 {
    margin-bottom: var(--space-3xs);
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-1);
    font-weight: 400;
    text-decoration: none}
.page_sommaire .real-media span {font-size: .875rem}
.page_sommaire .real-media picture {background-color: black}
.page_sommaire .real-media picture img {opacity: .8}
.page_sommaire .real-items {
    --count-column:2;
    grid-column: content;
    gap:var(--space-s)}
.page_sommaire .real-items h2 {
    grid-column: span 2;
    margin-top: var(--space-m);
    font-size: var(--size-step-1);
    color: var(--color-green-light);
    text-align: center}
.page_sommaire .real-items h3 {
    margin-top: var(--space-2xs);
    font-size: 1.125rem;
    line-height: var(--line-height-small);
    text-align: center;
    color: white}
.page_sommaire .real-items img {
    border-radius: var(--border-radius-medium);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%}

.page_sommaire .real-plus {padding-bottom: var(--space-l)}
.page_sommaire .real-plus h2 {
    padding: var(--space-m) 8.33333%;
    line-height: var(--line-height-small)}
.page_sommaire .real-plus h2 strong {
    display: block;
    font-family: var(--font-google-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase}
.page_sommaire .real-plus ul {
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
    border-bottom-left-radius: var(--border-radius-large);
    border-bottom-right-radius: var(--border-radius-large);}
.page_sommaire .real-plus li {justify-content: left}
.page_sommaire .real-plus li:not(:last-child) {text-align: left}
.page_sommaire .real-plus li:has(a) {padding: 0}
.real-plus--picto {
    display: grid;
    place-items: center;
    height:48px; width: 48px}
.real-plus--picto img {width:24px;height:24px}

.customers {
    grid-column: full;
    padding-bottom: var(--space-2xl)}
.customers .carousel-cell {
    width: 75%;
    padding: var(--space-xs);
    background-color: var(--main-color);
    border-radius: var(--border-radius-small);
    margin-bottom: var(--space-2xs);
    margin-right: var(--space-s)}
.customers article a {
    display: flex;
    align-items: center}    
.customers h2 {
    margin: var(--space-m) auto var(--space-s);
    font-family: var(--font-google-secondary);
    font-weight: 400;
    font-size: var(--size-step-2);
    text-align: center;
    text-transform: none;
    color:var(--color-green-dark)}
.customers a {color: white}
.customers article img {
    max-width: 90px;
    background-color: var(--color-green-dark);
    border-radius: var(--border-radius-small)}    
.customers p {
    margin-left: var(--space-xs);
    font-family: var(--font-google-primary);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--line-height-medium);
    color: white}         
.btn--arrow {
    display: grid;
    place-items: center;
    margin-left: auto;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: var(--color-green-dark)}
.btn--arrow svg {transform: rotate(-45deg)}        

.footer_actus {border-top: 4px solid white}
.page_real .footer_actus {border-top: 0}
.footer_actus, .footer_actus article {background-color: var(--color-grey)}
.footer_actus .content {
    --count-column:2;
    grid-column: content;
    grid-gap: var(--space-s);
    padding-bottom: var(--space-m)}  
.footer_actus header {
    grid-column: span 2;
    display: flex;
    align-items: center;
    padding-top: var(--space-m)}  
.footer_actus .btn--primary {margin-left: auto}                                      
.footer_actus :is(h2, .h2) {
    font-size: var(--size-step-1);
    font-weight: 600;
    text-transform: uppercase;
    line-height: var(--line-height-small)}
.footer_actus :is(h2, .h2) a {color: var(--color-green-dark);}
.block--content .logo,
.rub--list-entries .logo {
    position: relative;
    overflow: hidden;
    background-color: black;
    border-radius: var(--border-radius-medium);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%}
.block--content img,
.rub--list-entries .logo img {opacity: .7}
.block--content .logo .date,
.rub--list-entries .date {
    z-index:5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;right: 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    color: white;}
.block--content :is(h3, .h3),
.rub--list-entries h2  {
    display: block;
    margin-top: var(--space-xs);
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-0);
    font-weight: 400;
    line-height: inherit}
.block--content :is(h3, .h3) a,
.rub--list-entries h2 a {line-height:var(--line-height-medium)}
.block--content p {
    margin-top: var(--space-xs);
    font-size: .875rem;
    line-height: var(--line-height-medium)}    
.block--content .btn--underline {margin-top: var(--space-2xs)}            

footer {
    color: white;
    background: var(--color-grey)}
footer .content, footer hr, .subFooter {grid-column: content}
footer .content {
    --count-column:1;
    background-color: var(--main-color);
    border-top-left-radius: var(--border-radius-large);  
    border-top-right-radius: var(--border-radius-large)}  
footer a {color:white}
footer :is(.logo-main, .social) {margin-bottom: var(--space-m)}   
footer ul {margin-bottom: var(--space-xs)}   
footer li {margin-bottom: var(--space-3xs)}  
footer li a {font-size: 1.125rem}  
footer .mainNavFooter li a {font-weight:600}    
footer .map {
    position: relative;
    margin-top: -15px;
    margin-bottom: var(--space-m);
    margin-left: -15px;
    padding-right: var(--space-2xs)}
footer .map p {
    position: absolute;
    z-index:1;
    bottom: 10%; left: var(--space-m);
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-2);
    line-height: var(--line-height-medium);
    color: white}    
footer ul, footer .infos {margin-left: var(--space-l)}
footer .infos {margin-bottom: var(--space-l)}
footer .phone a {
    margin-bottom: var(--space-2xs);
    font-size: 2rem;
    line-height: 58px}  
footer .smartphone a {
    font-size: 1.250rem;
    color: white}      
footer .social a {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.875em}
footer .social svg {margin-right: var(--space-2xs)}
footer hr {
    margin: 0;
    border-color: hsl(from var(--main-color) h s 45%)}    
.subFooter {
    padding: var(--space-s) var(--space-m);
    background-color: var(--main-color);
    font-size: .750rem;
    line-height: var(--line-height-medium)}
 @media only screen and (max-width: 39.9375rem) {
    footer .mapsite {display: flex; flex-wrap: wrap}
    footer .infos {width:100%; margin-top: var(--space-s)}  
    }     


/* 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: 0 calc(1.375 * var(--space-xs)) 0 var(--space-xs);
    font-size: .875rem;
    font-weight: 600;
    text-align: center;
    color: white;	
    line-height: 38px;
    background-color: var(--color-green-dark);	
    border: 1px solid var(--color-green-dark);
    border-radius: var(--border-radius-large);
    border-top-left-radius:var(--border-radius);
    border-bottom-left-radius:var(--border-radius)}
.btn--secondary {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: black}
.btn--outline {
    background: none;
    border-color: hsl(from var(--color-grey) h s 85%);
    color:var(--main-color)} 
.btn--outline.full--grey {background-color: var(--color-grey);border-color:var(--color-grey);color:var(--main-color)}          
.btn--underline {
    font-size: .9375rem;
    text-decoration: underline;
    font-weight: 600;
    color:var(--color-green-dark)}

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

/* RUBRIQUE ARTICLE
/* -------------------------- */
::selection {
  background: var(--color-green-light);	
  color:black}

@supports (animation-timeline: scroll(root)) {
    .progress {height: 2px;background: var(--color-green-dark);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 hsl(from var(--color-grey) h s 85%);margin: var(--space-m) 0}

.error_404 .article {
    text-align: center;
    padding-bottom: 0}
.error_404 .return {
    grid-column: content;
    padding-bottom: var(--space-xl)}   

.rubrique, .article, .realisation, .prestation, .header--sommaire {padding-top:var(--header-height)}
.rubrique, .rubrique:is(.simple,.categorie) {background-color:var(--color-grey)}
.rubrique:has(nav) {padding-bottom: 0}       
.rub-logo {grid-column: 1 / span 10}
.rub-logo_suite {
    grid-column: 11 / span 4;
    display: flex;
    background: var(--color-orange)}
.rub-logo_suite img {mix-blend-mode: multiply}  

.rub-header h1 {
    max-width: 72rem;
    margin-inline:auto;
    margin-bottom: var(--space-2xs);
    font-family: var(--font-google-primary);
    font-weight: 600;
    text-align: center;
    color: var(--color-green-dark)}
.rub-header {
    margin-top: var(--space-m);
    margin-bottom: var(--space-m)}    
.rub-chapo {
    max-width: 50rem;
    margin-inline:auto}    
.rub-chapo p {font-family: var(--font-google-secondary)}
.rub-chapo p strong {color:var(--main-color)}   
.rub-chapo p + p {margin-top:var(--space-2xs)}   

.rub-header, .section--rub {grid-column: content}
.section--rub {
    padding: var(--space-m);
    margin-bottom: var(--space-2xl);
    border-radius: var(--border-radius-large);
    background-color:white}
.section--rub > * {
    max-width: 50rem;
    margin-inline:auto}
.section--rub .intro {
    margin-bottom: var(--space-m);
    text-transform: uppercase;
    font-size: calc(.9 * var(--size-step-1));
    font-weight: 600;
    line-height: var(--line-height-small);}    
.section--rub article {
    padding: var(--space-xs) 0;
    border-top: 1px solid hsl(from var(--color-grey) h s 85%)}
.section--rub article:first-of-type {border-top: 3px solid hsl(from var(--color-grey) h s 85%)}
.section--rub :is(h2, h3) {
    padding-right: var(--space-s);
    font-size: var(--size-step-0);
    font-weight: 400}
.section--rub .btn--next,
.prestation .btn--next {
    display: inline-block;
    margin-left: auto;
    padding: var(--space-3xs) 13px var(--space-3xs) 8px;
    border-radius: var(--border-radius-xsmall);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--color-grey);
    color: black}

.rubrique .content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--line-height-medium)}          
.section--rub article a {
    display: flex;
    align-items: center}
.rub--list-entries {
    --count-column: 2;
    grid-column: content;
    grid-gap: var(--space-s)}
.rub--list-entries,
.rub--list-entries article {background-color: transparent}
.rub--list-entries:not(:has(+ .next-prev)) {padding-bottom: var(--space-xl)}  
.rub--list-entries + .next-prev {margin-top: 0}  

.article {padding-bottom: var(--space-l)}
h1 {
    font-family: var(--font-google-secondary);
    font-weight: 400;
    font-size: calc(1.15 * var(--size-step-3));
    line-height: var(--line-height-medium)}
/* h1,.h1{hyphens:auto} */
h2, h3, h4, h5 {
    font-weight: 600;
    line-height: var(--line-height-medium)}
h2 {font-size: var(--size-step-3)}
h3 {font-size: var(--size-step-1)} 
h4 {font-size: var(--text-base-size)} 
h5 {font-size: 1.375rem}
p,li,blockquote,pre {
    font-size: var(--text-base-size);
    color: var(--color-text);
    text-wrap: pretty;
    line-height: var(--line-height)}
:is(.art-content,.art-items) :is(p,li) {font-family: var(--font-google-secondary)}
.art-items strong {
    background-color: hsl(from var(--color-green-light) h s 92.5%);
    color: black;
    font-weight:400}
.article blockquote :is(p, ul) strong {color: var(--main-color)}
i {font-style:normal}
.article i {
    color: var(--main-color);
    font-style:italic}

.article :is(p, ul, blockquote) a {
    text-decoration-line: underline;
    text-decoration-color: var(--main-color)}
a { 
    text-underline-offset: 0.1em;
    text-decoration-thickness: 2px}
.article a strong {font-weight: 600}          
a:is(:hover, :focus) {outline: none}
.art-items span[style="color:#000000;"] {color: var(--main-color) !important}

.art-header, .art-content {grid-column: content}    
.art-header .date {margin-top: var(--space-xs)}    
.art-logo {
    overflow: hidden;
    margin-top: var(--space-m);
    margin-bottom: var(--space-s);
    background-color: black;
    border-radius: var(--border-radius)}
.art-img {overflow: hidden; border-radius: var(--border-radius)}   

.art-chapo {
    grid-column: content;
    z-index: 1;
    line-height: var(--line-height)}
.article .art-chapo p {
    margin-top: var(--space-xs);
    margin-bottom: var(--space-m)}
.article .art-header:has(.date) + .art-chapo p {margin-top: var(--space-m)}
.art-chapo p {
    font-weight: 600;
    color: black}  
.art-chapo p strong {color: var(--color-green-dark)}  
.article hr {
    grid-column: content;
    margin-inline:auto;
    max-width: 70px;
    height: 2px;
    border-bottom:1px solid var(--main-color);
    border-color:var(--main-color)}

.article :is(p, ul, blockquote, .download, .table, .block, .art-img, .art-youtube, .art-sticky, .art-frame, .table) + :is(h2, h3, h4, h5) {margin-top: var(--space-l)}
.article :is(p, ul, ol, h2, h3, h4, h5, .table) {margin-bottom:var(--space-xs)}
.article p:has(+ :is(ul, ol)) {margin-bottom:var(--space-3xs) !important}
.article :is(h2, h3, h4, h5) strong {font-weight:600}

.art-img picture + picture  {margin-top:var(--space-m)}
.art-img, .art-youtube, .art-sticky, .art-frame {grid-column: content; margin:var(--space-s) 0}
.art-youtube + .art-youtube {padding-top: 0}
.art-sticky {position: sticky;top:70px;z-index: 10}

.article ol {padding-left: 1.065em}
.article ul > li {
    position: relative;
    list-style: none;
    padding-left:1.125rem}
.article ul > li:not(:last-child) {margin-bottom: .250em}
.article ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: .8250rem;
    color: hsl(from var(--color-green) h s 40%);
    font-size: 1.250rem;
    line-height: 0}
.article ol li::marker {color: var(--main-color)}

.article .stickyNav {display: block}
.article .stickyNav nav {overflow: hidden}    
.article .stickyNav nav {
    padding: var(--space-2xs);
    padding-top: var(--space-xs);
    border-radius: var(--border-radius);
    background-color: var(--color-green-dark)} 
.article .stickyNav nav li::before {display: none}         
.article .stickyNav nav ul {margin: 0;padding: 0}        
.article .stickyNav nav li {
    padding: .175rem var(--space-2xs);
    margin-bottom: 3px;
    border-radius: var(--border-radius-xsmall);
    line-height: var(--line-height-small)}        
.article .stickyNav nav li a {
    display: block;
    font-size:1rem;
    font-family: var(--font-google-secondary);
    line-height: var(--line-height);
    color:white;
    text-decoration: none}   
.stickyNav nav li.current a {color: white}  
.stickyNav nav li.current {background-color:hsl(from var(--color-green-dark) h s 22.5%)}
.stickyNav nav span {
    display: block;
    padding: var(--space-3xs) var(--space-2xs) var(--space-2xs);
    font-size: .875rem;
    font-weight: 600;
    line-height: var(--line-height-small);
    color: var(--color-green);
    text-transform: uppercase}    
.stickyNav .chatbot {
    position: relative;
    display: block;
    background-color: var(--main-color);
    padding: var(--space-xs) 0 var(--space-xs) calc(2 * var(--space-2xs));
    margin: calc(-1 * var(--space-2xs));
    margin-top: var(--space-xs)}
.stickyNav .chatbot {
    font-weight: 600;
    line-height: var(--line-height-small);
    text-transform: uppercase;
    color:white}
.stickyNav .chatbot .circle {
    position: absolute;
    right: 10px;
    bottom:10px;
    width: 45px;
    height: 45px;
    color: white;
    background-color: var(--color-green-dark)}
.stickyNav .chatbot .circle svg {transform: rotate(45deg)}
.stickyNav .chatbot p {
    max-width: calc(100% - 60px);
    margin-top: var(--space-3xs);
    margin-bottom: 0;
    font-family: var(--font-google-secondary);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    line-height: var(--line-height-medium);
    color:white}
.stickyNav .chatbot img {margin-top: var(--space-3xs)}
.topnav .stickyNav {
    display: none;
    margin-top: var(--space-s)}
.topnav .stickyNav .chatbot {
    padding-top: var(--space-s) ;
    padding-bottom: var(--space-s) ;
    padding-left: var(--space-l);
    background-color: var(--color-green-dark);
    margin: 0}  
.topnav .stickyNav .chatbot .circle {background-color: var(--main-color);}   

.block > .content {grid-column: span 12; padding-left: var(--space-3xs)}
.block :is(p,figure) {margin-bottom: var(--space-m)}
.block :is(p,figure):last-child {margin-bottom:0}
.article .block + :is(p, ul) {margin-top:var(--space-l)}
.toggleBtn {
    position: relative;
    display: flex;
    align-items:center;
    padding: var(--space-s) 2.5rem;
    padding-left: 0}
.article .toggleBtn :is(h2,h3,h4) {
    font-family: var(--font-google-primary);
    font-size: var(--size-step-1);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 0;
    line-height: var(--line-height-medium)}
.article .block :is(h2,h3,h4) {font-size: var(--size-step-0)}          
.article :is(h2,h3,h4):has(+ .toggleBtn) {margin-bottom: 0}          
.toggleBtn button {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    border:none;
    background: none;
    cursor: pointer}
.toggleBtn button svg {
    margin-left: auto;
    margin-right: 5px;
    transition: all .275s linear}
.page_art .toggleBtn button svg {color: var(--main-color)}
.toggleBtn button.down .btn--next {background-color: var(--color-green-light)}    
.toggleBtn button.down svg {transform:rotate(45deg)}                 
.block {
    --count-column:12;
    grid-template-rows: 0fr;
    transition: grid-template-rows 275ms;
    border-bottom: 1px solid hsl(from var(--color-grey) h s 85%)}
.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)}

.prestation :is(.toggleBtn, .block) {grid-column: content}
.prestation .toggleBtn {padding-right: 3.5rem}
.prestation .toggleBtn :is(h2,h3,h4) {font-size: var(--size-step-1); font-weight: 400}
.prestation .toggleBtn button {text-align: right}  
.prestation .toggleBtn .btn--next svg {margin: 0}
.prestation .number {
    margin-right: var(--space-2xs);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--main-color) }
.prestation .supTitle {
    grid-column: content;
    margin: var(--space-m) 0 var(--space-xs);
    font-size: var(--size-step-2);
    font-weight: 600;
    text-transform: uppercase;
    line-height: var(--line-height-small)}
.prestation .block {--count-column:1}        
.prestation .subBlock {
    overflow: hidden;
    grid-column: 1}
.prestation .subBlock .content {grid-column: full}
.prestation p:has(+ .example) { margin-bottom: 0}   
.prestation .example {
    margin-top: var(--space-s);
    padding-top: var(--space-s);
    border-top: 1px dashed rgb(0 0 0 / .3)}
.prestation .example span {
    display: block;
    margin-bottom: var(--space-3xs);
    line-height: var(--line-height-small);
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 600;
    color:var(--main-color)}
.prestation .example p {margin-bottom: 0}
.prestation .example li {
    font-family: var(--font-google-primary);
    font-size: 1.125rem}
.prestation .example svg {display: inline-block}
.contactToggle {
    display: block;
    margin-top: var(--space-m);
    margin-bottom: var(--space-3xs);
    padding: var(--space-s);
    background-color: var(--color-green-light);
    border-radius: var(--border-radius-small);
    text-align: center}
.contactToggle :is(.title,p) { 
    font-size: calc(.75 * var(--size-step-1));
    line-height: var(--line-height-medium)}
.contactToggle .title { 
    font-size: var(--size-step-2);
    font-weight: 600;
    color: var(--color-green-dark);}
.contactToggle p {margin-bottom: var(--space-xs)}

.banner-testimony {
    grid-column: content;
    grid-gap: var(--space-m);
    margin: var(--space-xs) 0}
.page_real .banner-testimony {margin-bottom: 0}
.banner-testimony h2 {
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-2);
    font-weight: 400;
    text-align: center;
    line-height: var(--line-height-medium)}
.card-testimony .container {padding: var(--space-s)}
.card-testimony {
    container: card / inline-size;
    background-color: var(--main-color);
    border-radius: var(--border-radius);
    color: white}
.prestation .card-testimony {
    grid-column: full;
    grid-row: 2;
    margin-top: var(--space-m)}
:is(.prestation, .realisation) .card-testimony {background-color: var(--color-grey)}
.temoignages .card-testimony {background-color: white}
.card-testimony img {
    max-width:90px;
    overflow: hidden;
    margin-bottom: var(--space-s);
    border-radius: var(--border-radius-small);
    background-color: var(--color-green-dark)}
:is(.prestation, .realisation, .temoignages) .card-testimony img {background-color: var(--color-green)}
.card-testimony span {
    display: block;
    line-height: var(--line-height-medium)}
.card-testimony .title {
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-1);
    line-height: var(--line-height);
    color: var(--color-green-dark)}
.card-testimony .name {
    margin-top: var(--space-2xs);
    margin-bottom: var(--space-3xs);
    line-height: var(--line-height-small);
    text-transform: uppercase;
    font-weight: 600;
    color: white}
:is(.prestation, .realisation, .temoignages) .card-testimony .name {color:var(--color-green-dark)}
.card-testimony p {
    margin-bottom: 0;
    font-family: var(--font-google-secondary);
    font-size: 1rem;
    line-height: var(--line-height-medium)}
.card-testimony p + p {margin-top: var(--space-2xs)}
.card-testimony p:has(+ p) {font-family: var(--font-google-primary)}       
.card-testimony p strong {color:var(--color-green-dark)}    
.card-testimony a {
    margin-top: var(--space-2xs);
    font-size: .875rem;
    text-decoration: underline}    

@container card (width > 330px) {
    .card-testimony .container {
        display: flex;
        align-items: start;
        padding: var(--space-xs)}
    .card-testimony img {
        max-width: inherit;
        flex:1 0 90px;
        margin-right: var(--space-xs)}
    }

blockquote {
    padding: var(--space-s) var(--space-s) calc(var(--space-s) - var(--space-xs));
    margin: var(--space-s) 0;
    background-color:var(--color-green-light);
    border-radius: var(--border-radius-small)}
.article blockquote :is(h2,h3,h4,h5) {
    font-size: var(--size-step-0);
    font-weight: 600;
    text-transform: uppercase;
    line-height: var(--line-height-small)}
.article blockquote :is(h2,h3,h4,h5,p,ul,li),
.article blockquote ul li::before {color: var(--color-green-dark)}
.article blockquote:has(h2, h3, h4, h5) {margin-top: var(--space-l)}

.article .carousel {grid-column: content; margin:var(--space-m) 0}
.article .carousel-cell {overflow: hidden;border-radius: var(--border-radius-small)}
.article .carousel-cell {margin-bottom: 0}

.art-frame {
    padding: var(--space-s);
    margin: var(--space-s) 0;
    border-radius: var(--border-radius);
    background-color: hsl(from var(--main-color) h s 85%)}
.art-frame span {
    display: block;
    padding: var(--space-s) var(--space-s) calc(var(--space-s) - var(--space-xs));
    border-radius: var(--border-radius);
    border:4px solid hsl(from var(--main-color) h s 70%)}    
.art-frame :is(h2,h3,h4,h5,p,ul,li),
.article .art-frame ul li::before {color: black}
.art-frame :is(h2,h3,h4,h5) {font-weight: 600}
.art-frame :is(p,ul,li) {font-family: var(--font-google-primary)}
.art-frame a { text-decoration-color: var(--color-grey-blue)} 

.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-primary);
    font-weight: 400;
    font-size: var(--size-step-0);
    text-transform: uppercase}   
.download svg {margin-right:var(--space-2xs)}   
.article .download + :is(h2, h3, h4, h5, figure) {margin-top: var(--space-xl)}
.article .download + .download a {margin-top: 0}

table {
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
    border: none;
    width: 100%;
    font-size: .9375rem;
    font-weight: 400;    
    line-height: 1.35em}
th,td {
    padding:.575rem;
    text-align: left;
    line-height: 1.3em}
th {
    vertical-align: top;
    background-color: var(--color-green-dark);
    border: 1px solid  hsl(from var(--color-green-dark)h s 25%);
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-green-light)}
tr {background-color: white}
tr:nth-child(even) {background-color: var(--color-grey)}
td {border: 1px solid  hsl(from var(--color-grey) h s 85%)}
.art-items td strong {
    background: none;
    font-weight: 600}
@media only screen and (max-width: 39.9375rem) {
    .table {
        max-width: 88dvw;
        width: 100%;
        margin-inline: auto;
        overflow-x: scroll;
        scrollbar-color: var(--color-green-dark) var(--color-green-light)}
    th,td {padding:.375rem}}

.next-prev {
    grid-gap: var(--space-xs);
    grid-column: content;
    margin-top:var(--space-l);
    font-family: var(--font-google-secondary)}
.next-prev:not(:has(a)) {margin:0}    
@media only screen and (max-width: 63.9375rem) {
    article .next-prev:not(:has(.next a)),
    article .next-prev:not(:has(.prev a)) {grid-gap:0}
    }     
.prev,.next {background-color:var(--color-grey)}
.next-prev .back  {
    margin-top:var(--space-s);
    margin-bottom:var(--space-s)}
.next-prev .back a > * {vertical-align: middle}
.next-prev .back svg {
    display: inline-block;
    margin-right: .250rem}
.next-prev div a {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--color-grey);
    font-weight: 400;
    line-height: var(--line-height-medium);
    color: black}
.next-prev span {
    display: block;
    font-family: var(--font-google-primary);
    font-weight: 600;
    font-size: .750rem;
    text-transform: uppercase;
    color:var(--color-green-dark)}
:is(.prev,.next) img {width:140px}       
:is(.prev,.next) div {
    width:calc(100% - 140px);
    align-self: flex-end;
    padding: var(--space-xs)}

.rubrique .next-prev {
    --count-column:2;
    grid-gap: var(--space-s);
    grid-column: content}
.rubrique .next-prev:has(div) {margin:var(--space-xl) 0}   
.rubrique :is(.prev,.next) {background: none}       
.rubrique .prev {justify-self: self-end}       
.rubrique .next {justify-self: self-start}       
.rubrique .next-prev div a,
.rubrique .next-prev span {
    display: grid;
    place-items: center;
    background-color: var(--main-color);
    padding: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white}
.rubrique .next-prev span {background: hsl(from var(--color-grey) h s 65%)}


/* REALISATION
/* -------------------------- */
.realisation .article {padding: 0}
.real-logo {grid-column: full}
.real-header,
.real-plus {
    grid-column:full;
    padding: var(--space-l) 5.55555%;
    background-color: var(--color-grey)}
.real-header * {
    margin-inline:auto;
    color: black}
.real-header .category {
    font-size: calc(.9 * var(--size-step-1));
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    line-height: var(--line-height-small)}
.real-header h1 {
    max-width: 72rem;
    margin-bottom: var(--space-m);
    font-family: var(--font-google-primary);
    font-weight: 600;
    text-align: center;
    color: var(--color-green-dark)}
.real-header .second {
    margin-top: var(--space-m);
    padding: var(--space-m);
    border-radius: var(--border-radius-medium);
    background-color: white}
.real-header .second:has(> .real-logo-chapo) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-m)}
.real-header .second:has(> .real-logo-chapo) > * {flex: 0 1 100%}
.real-header .second:has(> .real-logo-chapo) .rub-chapo {max-width: inherit; margin: 0} 
.real-header .second p {color:var(--color-text)}   
.real-header .second:has(> .real-logo-chapo) .rub-chapo p {
    text-align: left;
    text-wrap: balance}
.real-header .second h2 {
    margin-bottom: var(--space-xs);
    font-size: var(--size-step-1)}
.real-header .category {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--main-color)}
.real-infos {
    max-width: 50rem;
    margin-inline: auto;
    margin-top: var(--space-m);
    display: flex;
    border-left: 1px solid hsl(from var(--color-grey) h s 75%)}
.real-infos > * {
    flex: 0 1 33.3333%;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    border-right: 1px solid hsl(from var(--color-grey) h s 75%);
    font-size: var(--size-step-0);
    text-align: center;
    line-height: var(--line-height-small)}
.real-infos strong {
    display: block;
    margin-bottom: var(--space-3xs);
    font-weight: 600;
    font-size: .875rem;
    text-transform: uppercase;
    color: var(--color-green-dark)} 
.real-infos svg {margin-bottom: var(--space-3xs)} 
.real-plus {padding-top: 0;padding-bottom: 0}
.real-plus h2 {
    padding: var(--space-xs);
    background-color: white;
    border-bottom: 1px solid hsl(from var(--color-grey) h s 85%);
    border-top-left-radius: var(--border-radius-medium);
    border-top-right-radius: var(--border-radius-medium);
    font-family: var(--font-google-secondary);
    font-size: var(--size-step-3);
    font-weight: 400;
    text-align: center;
    color: var(--color-green-dark)}            
.real-plus p, .real-plus h2 span {margin: 0}            
.real-plus ul {
    --count-column:2;
    gap: var(--space-2xs);
    padding: var(--space-xs) var(--space-xs) 0;
    background-color: white;
    list-style: none;}
.real-plus li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-2xs);
    border-radius: var(--border-radius-medium);
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: var(--color-green-light);
    font-size: .9375rem;
    font-weight:600;
    line-height: var(--line-height-small);
    text-align: center;
    color: var(--color-green-dark)}   
.real-plus li:has(a) {
    padding: 0;
    background-color: var(--color-green-dark)}
.real-plus li a {
    flex: 0 1 100%;
    padding: var(--space-2xs);
    text-transform: uppercase;
    line-height: var(--line-height-small);
    color: white}              
.real-plus li svg {
    display: inline-block;
    transform: translateY(-3px);
    margin-left: var(--space-2xs)}
.real-plus li span > * {vertical-align: middle}
.real-plus--img {display: none}
.real-plus--img img {mix-blend-mode: overlay}
.sup--art-content {
    grid-column: content;
    margin-top: var(--space-xl);
    font-size: var(--size-step-1);
    font-weight: 600;
    text-transform: uppercase;
    line-height: var(--line-height-small);
    color:var(--color-green-dark)}        
.sup--art-content span {
    display: block;
    margin-bottom: var(--space-3xs);
    font-family: var(--font-google-secondary);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    color: hsl(from var(--color-grey) h s 55%)}
.sup--art-content + hr {grid-column: content}
.page_simple.realisation .art-content .carousel {max-width: inherit}       
.real-media {
    grid-column: full;
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
    background: var(--color-green-dark)}
.real-media + .video > * {margin-top: 0}  
.real-media .mozaic {
    --count-column:2;
    grid-column: content}
.real-media .link {
    grid-column: content;
    margin-top: var(--space-l);
    text-align: center}
.block-real-1,.block-real-2,.block-real-3,.block-real-4 {overflow: hidden} 
.block-real-1 {border-top-left-radius: var(--border-radius-large)}
.block-real-2 {border-top-right-radius: var(--border-radius-large)}
.block-real-3 {border-bottom-left-radius: var(--border-radius-large)}
.block-real-4 {border-bottom-right-radius: var(--border-radius-large)} 

.video {
    grid-column: full;
    background: var(--color-green-dark)}
.video > * {
    grid-column: content;
    margin-top: var(--space-l);
    margin-bottom: var(--space-l)}
.video picture {background-color: black}
.video img {opacity: .75}
.video .content {margin-left:5%;margin-right:5%;margin-bottom:5%}
.video svg {margin-bottom: -14px}
.video :is(h2,h3) {
    line-height: var(--line-height-medium);
    color:white}
.video h2  {
    font-size: 1.125rem;
    text-transform: uppercase}
.video h3  {
    margin: var(--space-2xs) 0;
    font-family: var(--font-google-primary);
    font-size: var(--size-step-3);
    line-height: var(--line-height-medium);
    text-transform: none;
    font-weight: 300}
.poster {
    display: grid;
    justify-content: left;
    align-items: end}
.poster :is(picture, svg, .content) {grid-row: 1; grid-column: 1} 
.video .poster picture {border-radius: var(--border-radius-small)} 
.poster :is(svg, .content) {z-index: 5} 
.poster svg {display: inline-block}

.categorie nav.btn--group {
    grid-column: content;
    padding: var(--space-2xs) 0;
    border-top: 3px solid hsl(from var(--color-grey) h s 78%);
    border-bottom: 1px solid hsl(from var(--color-grey) h s 78%);
    margin-top: 0;
    margin-bottom: var(--space-l)}
.categorie nav :is(.btn--primary, .btn--secondary, .btn--outline) {
    padding: 0 var(--space-xs);
    font-size: .750rem;
    line-height: 33px}
.categorie nav .btn--outline {
    flex: 0;
    text-transform: uppercase;
    border-color: hsl(from var(--color-grey) h s 78%)}
.categorie nav .btn--primary.active {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: black}
.categorie .rub--list-entries {
    --count-column: 2;
    grid-gap: 0} 
.categorie .rub--list-entries .logo {
    position: relative;
    background-color: black;
    border-radius: 0}
.categorie .rub--list-entries span {
    z-index: 1;
    position: absolute;
    left: var(--space-xs);right: var(--space-xs);bottom: var(--space-xs);
    font-size:1rem}
.categorie .rub--list-entries img {opacity: .7}    
.categorie .rub--list-entries a {color: white}
.categorie .rub--list-entries span strong {margin-top: var(--space-xs);color: white}

/* FORMULAIRE
/* -------------------------- */
.page_form .rub-header {margin-bottom: var(--space-s)}        
.article.page_form .rub-chapo p {margin-bottom: 0}
.article.page_form .rub-chapo.success {margin-bottom:var(--space-xl)}     
.page_form form {
    grid-column: content;
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--space-m);
    max-width: 50rem;
    margin-inline: auto;
    margin-bottom: var(--space-l)} 
.page_form form > * {
    width: 100%;
    line-height: 0}
.page_form h1, .page_form :is(.phone,.smartphone) {grid-column: content}
.page_form :is(.phone,.smartphone) {
    width: 100%;
    max-width: 50rem;
    margin-inline: auto;
    margin-bottom: var(--space-2xs);
    padding: var(--space-2xs);
    background-color: var(--color-green-dark);
    border-radius: 5px;
    font-size: var(--size-step-2);
    font-weight: 600;
    text-align: center;
    line-height: var(--line-height-medium);
    color:white}
.page_form .phone span {
    display: block;
    font-size: 1.125rem}
.page_form .agences {
    grid-column: content;
    gap: var(--space-xs);
    width: 100%;
    max-width: 50rem;
    margin: 0 auto}
.page_form .agences a {
    flex:1;
    padding: var(--space-2xs);
    border-radius: 5px;    
    background-color: var(--color-green-light);
    line-height: var(--line-height-medium)}
.page_form .agences h2 {
    margin-bottom: var(--space-3xs);
    font-size: .9375rem;
    text-transform: uppercase}
.page_form .agences p {
    margin-bottom: var(--space-3xs);
    font-family: var(--font-google-secondary);
    font-size: .9375rem;
    line-height: var(--line-height-medium)} 
.page_form :is(.phone,.smartphone) svg {margin-right: var(--space-xs)}
.page_form :is(.phone,.smartphone,.agences):has(+ form) {margin-bottom: var(--space-l)}         
.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:var(--color-grey);
    height: 60px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-google-secondary);
    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: 600;
    color: white;
    text-transform: uppercase}
.hide--mobile {display: none}