:root {
    --small-margin: 40px;
    --medium-margin: 70px;
    --ltspace: 70px;
    --mdspace: 130px;
    --bigspace: 180px;
    --side-base: 7vw;
    --big-left: calc(7vw + 17vw);
    --vert-flora: #134B37;
    --sable: #DCD4C8;
    --sablelight: #ECE5DA;
    --noir: #1E1E1F;
}

::selection {
    background-color: var(--vert-flora);
    color: white;
}

/* Firefox */
::-moz-selection {
    background-color: var(--vert-flora);
    color: white;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--vert-flora);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--vert-flora);
    width: 2px;
}
html{
    overflow-x: hidden;
}
/******
GENERAL
 ****/
@font-face {
    font-family: 'diagramdisplay';
    src: url('../fonts/DiagramDisplay-Thin.eot');
    src: url('../fonts/DiagramDisplay-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DiagramDisplay-Thin.woff2') format('woff2'),
    url('../fonts/DiagramDisplay-Thin.woff') format('woff'),
    url('../fonts/DiagramDisplay-Thin.ttf') format('truetype'),
    url('../fonts/DiagramDisplay-Thin.svg#DiagramDisplay-Thin') format('svg');
    font-weight: 100;
    font-display: swap;
}

body {
    background-color: var(--sablelight);
}

* {
    font-family: "mundial", sans-serif;
    font-weight: 100;
}

h1, .h1 {
    /*font-family: 'diagramdisplay';*/
    font-size: 55px;
    font-weight: 100;
    line-height: 61px;
    color: var(--vert-flora);
    margin-bottom: 50px;
}
h1 span{
    /*font-family: 'diagramdisplay';*/

}
h2, .h2 {
    /*font-family: "mundial", sans-serif;*/
    font-family: 'diagramdisplay';
    font-size: 36px;
    font-weight: 100;
    line-height: 44px;
    color: var(--vert-flora);
    margin: 0 0 20px 0;

}
h3{
    font-size: 20px;
    font-weight: 100;
    line-height: 27px;
    opacity: 0.7;
    color: var(--vert-flora);
    margin: 0 0 10px 0;
}
.pom-s-title{
    margin-top: 0!important;
    font-size: 20px!important;
    margin-bottom: 10px!important;
    font-weight: 300;
}
p,.p{
    font-size: 19px;
    line-height: 28px;
    margin: 0 0 20px 0;
    color: var(--vert-flora);
    opacity: 0.7;
    font-weight: 100;
}
p:last-of-type{
    margin-bottom: 0;
}
.txt li{
    font-size: 20px;
    font-weight: 100;
    line-height: 27px;
    opacity: 0.7;
    padding-left: 15px;
    position: relative;
}
.txt li::after{
    content: "";
    height: 4px;
    width: 4px;
    background: white;
    position: absolute;
    left: 0;
    top: 14px;
    border-radius: 50%;
}
.txt ul{
    columns: 2;
    max-width: 560px;
}
.btn_base{
    height: 160px;
    width: 160px;
    color: var(--vert-flora);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.8px;
    opacity: 0.7;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 3;
    margin-left: -10px;
    margin-top: -10px;
}
.btn_base.white{
    /*border: 1px solid white;*/
    color: white;
}
.btn_base span{
    transition:
            0.1s linear transform,
            0.3s ease-in-out width,
            0.3s ease-in-out height,
            0.3s ease-in-out top,
            0.3s ease-in-out left,
            0.3s ease-in-out margin,
            0.3s ease-in-out opacity;
    font-weight: 300;
    position: relative;

}
.btn_base>span.border{
    position: absolute;
    top: 10px;
    left: 10px;
    /*transform: translate(-50%, -50%);*/
    width: 140px;
    height: 140px;
    border-radius: 50%;

    border: 1px solid var(--vert-flora);
}
.btn_base.white>span.border{
    border: 1px solid white;
}
.btn_base:not(.pro-link):hover>span.border{
    top: 0px;
    left: 0px;
    width: 160px;
    height: 160px;
}
.btn_base.pro-link{
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.btn_base.pro-link:hover{
    opacity: 0.6;
    transform: scale(0.95);
}
.btn_base[target="_blank"]::after{
    display: none;
}
.btn_base[target="_blank"]::after,
.btn_base[target="_blank"] .blank-link{
    content: "";
    /*background-image: url("../icons/blank_link.svg");*/
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 19px;
    width: 21px;
    position: absolute;
    /*top: 22px;*/
    top: 62px;

    left: 62px;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    opacity: 0;
}
.btn_base[target="_blank"].white::after,
.btn_base[target="_blank"].white .blank-link{
    filter: brightness(0) invert(1);
}
.btn_base[target="_blank"]:hover::after,
.btn_base[target="_blank"]:hover .blank-link{
    opacity: 1;
}
.btn_base[target="_blank"]:hover span:nth-of-type(2){
    margin-bottom: -25px;
    opacity: 0;
}
.blank-link svg{
    width: 28px;
    height: 31px
}
.btn_base .btn-tel{
    position: absolute;
    top: 66px;
    left: 23px;
    opacity: 0;
    margin-top: -20px;
    transition: all 0.2s cubic-bezier(.25, .46, .45, .94);
}
.tel-bt:hover::after,
.tel-bt .blank-link{
    display: none;
}
.tel-bt:hover .btn-tel{
    opacity: 1;
    margin-top: 0;
    transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
}

html.lenis, html.lenis body {
    height: auto;
}

html {
    overflow-x: hidden !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}
body .surtitre{
    /*font-size: 23px;*/
    /*line-height: 34px;*/
    margin-bottom: 20px;
}

.white{
    color: white;
}
.white p,
.white a,
.white h1,
.white h2,
.white h3,
.white li{
    color: white;
}



/***********
MENU
 */
#header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 50px 5vw 0 5vw;
}
#branding{
    display: flex;
    width: fit-content;
}
.home #logo-container img{
    filter: brightness(0) invert(1);

}
#logo-container img{
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    width: 150px;
    height: 59px;
    object-fit: contain;
}
#logo-container:hover img{
    opacity: 0.4;
}
body.home .grid-menu-bg {
    display: block;
}

.p-fixed-menu {
    display: none;
}

#main-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: white;
    height: 100vh;
    overflow: hidden;
    transition: all .7s cubic-bezier(.25, .46, .45, .94);
    /*clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);*/
    /* padding: 150px 7.5% 100px 7.5%; */
    z-index: 10000;
    align-items: unset;
    justify-content: flex-start;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: circle(0% at 100% 0%);
    opacity: 0;
}
#main-menu-container::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
}
.toggled #main-menu-container {
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
    /*clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);*/
}

#menu > .menu-toggle {
    display: block;
    position: fixed;
    right: 5vw;
    top: 60px;
    z-index: 10001;
    transition: 0.4s ease-in-out all;
}

#menu .menu-text{
    position: relative;
    z-index: 2;
}
.header-scroll #menu > .menu-toggle .menu-text.open{
    transform: translate(0,-100px);
}
.up-scroll #menu > .menu-toggle .menu-text.open{
    color: var(--vert-flora);
}
.up-scroll #menu > .menu-toggle .menu-text.open .round-menu{
    background: var(--vert-flora);
}

body.home .menu-scroll,
.menu-scroll {
    display: block;
    padding: 100px 7.5% 0 7.5%;
    border: 0;
    height: auto;
}

body.home .menu-bio {
    display: block;
}

.menu-toggled .menu-scroll {
    height: auto;
}
body.home .grid-menu-bg > div:first-of-type {
    display: block;
    border: 0;
}

.grid-menu-bg {
    grid-template-columns: 1fr;
}

.menu-toggled .grid-menu-bg {
    height: 100vh;
    overflow-y: scroll;
}

.menu-render-bg {
    display: none;
}

#menu.toggled #close-bar1, #menu.toggled #close-bar2, #menu.toggled #close-bar3 {
    background-color: var(--noir) !important;
}
.menu-text{
    font-size: 19px;
    font-weight: 200;
    line-height: 19px;
    position: relative;
    z-index: 10;
    padding-right: 20px;
    display: block;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.menu-text .round-menu{
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 9px;
    height: 9px;
    background-color: white;
    border-radius: 50%;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.menu-text.close svg{
    position: absolute;
    right: 0;
    top: 6px;
    width: 11px;
    height: 11px;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);

}
.menu-text.close:hover svg{
    transform: scale(1.4);

}
.menu-text:hover .round-menu{
    transform: scale(1.8);
}
#menu.toggled .close{
    margin-right: 0;
}
.menu-menu-1-container{
    /*height: 70%;*/
    /*width: 70vh;*/
    height: 550px;
    width: 550px;

    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -50%)rotate(180deg);*/
    transform: translate(-50%, -50%)  ;
/*scale(0.6)*/
    border-radius: 50%;
    /*border: 1px solid white;*/
    z-index: 4;
    transition: 0.6s cubic-bezier(.25, .46, .45, .94) all;
}
.contourdessin{
    /*height: 78%;*/
    /*width: 78vh;*/

    height: 600px;
    width: 600px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform:  translate(-50%, -50%)  rotate(-90deg);
    z-index: 2;
}
.contourdessin circle {
    fill: none;
    stroke: white;

    stroke-width: 0.2;
    stroke-dasharray: 622.035; /* La longueur totale du cercle */
    stroke-dashoffset: 622.035; /* On cache le cercle initialement */
    transition: stroke-dashoffset 1.7s 0.2s ease;
}
.toggled circle {
    stroke-dashoffset: 0; /* L'offset passe à 0, dévoilant progressivement le contour du cercle */
}
.toggled .menu-menu-1-container{
    transform: translate(-50%, -50%)  scale(1);
/*rotate(0deg)*/
}
.menu li{
    position: absolute;
    opacity: 0;
}
.menu li::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /*transform: translate(-50%, -50%);*/
    position: absolute;
    background: white;
    transition: 0.4s ease-in-out all;
    transform-origin: center center;
}
.menu li:first-of-type{
    top: -45px;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu li:first-of-type::before{
    top: 46px;
    left: 50%;
}
.menu li:nth-of-type(6), .menu li:nth-of-type(2){
    top: 25%;
    /*right: calc(100% - 1.5vh);*/
    right: calc(100% - 16px);
}
.menu li:nth-of-type(2)::before, .menu li:nth-of-type(4)::before{
    top: 40%;
    left: -26px;
}

.menu li:nth-of-type(4){
    /*left: calc(100% - 15px);*/
    left: calc(100% - 1.5vh);
    right: unset;
}
.menu li:nth-of-type(5), .menu li:nth-of-type(4){
    bottom: 25%;
    right: calc(100% - 16px);
    /*right: calc(100% - 1.5vh);*/
}
.menu li:nth-of-type(5)::before, .menu li:nth-of-type(6)::before{
    top: 40%;
    right: -24px;
}
.menu li:nth-of-type(4), .menu li:nth-of-type(2){
    left: calc(100% - 14px);
    /*left: calc(100% - 1.4vh);*/
    right: unset;
}
.menu li:nth-of-type(3){
    bottom: -42px;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu li:nth-of-type(3)::before{
    bottom: 42px;
    left: 50%;
}


.toggled .menu li {
    animation: fadeInUp 0.3s ease forwards;

}
.toggled .menu li:nth-of-type(1) {
    animation-delay: 0.4s;
}

.toggled .menu li:nth-of-type(2) {
    animation-delay: 0.5s;
}

.toggled .menu li:nth-of-type(3) {
    animation-delay: 0.6s;

}
.toggled .menu li:nth-of-type(4) {
    animation-delay: 0.7s;
}

.toggled .menu li:nth-of-type(5) {
    animation-delay: 0.8s;
}

.toggled .menu li:nth-of-type(6) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.menu a{
    font-size: 20px;
    font-weight: 100;
    line-height: 21px;
    letter-spacing: 0.2px;
    color: white;
    transition: 0.4s ease-in-out all;
}
#menu .menu>.current_page_item>a{
    color: white;
    font-weight: 400;
}
.single #menu #menu-item-81 a{
    font-weight: 400;
}
.menu li:hover::before{
    transform: scale(1.8);
}
.menu li:hover a{
    opacity: 0.6;
}
.logo-menu{
    position: absolute;
    left: 50%;
    top: calc(50% - 20px);
    transform: translate(-50%,-50%) scale(0.6);
    z-index: 3;
    opacity: 0;
    transition: 0.6s cubic-bezier(.25, .46, .45, .94) all;

}
.custom-lang-switcher{
    position: absolute;
    left: 50%;
    top: calc(50% + 55px);
    transform: translate(-50%,-50%);
    z-index: 4;
}
.lang-switch-ft{
    transform: unset;
    position: static;
}
.selector-lang{
    display: flex;
    align-items: center;
}
.custom-lang-switcher a{
    color: white;
    position: relative;
    padding-right: 0px;
    margin-right: 0px;
    line-height: 15px!important;
    font-size: 15px!important;
    display: inline-block;
}
.selector-lang>span{
    /*content: "";*/
    /*position: absolute;*/
    /*top: 2px;*/
    /*right: 0;*/
    height: 4px;
    width: 4px;
    display: inline-block;
    background-color: white;
    opacity: 0.4;
    margin: 6px 8px 0 8px;
    border-radius: 50%;
}
.custom-lang-switcher a:last-of-type{
    padding-right: 0;
    margin-right: 0;
}
.custom-lang-switcher a:last-of-type::after{
    display: none;
}
.toggled .logo-menu{
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.selector-lang a.current-lang{
    opacity: 0.4;
}
.lang-switch-ft{
    margin-top: 40px;
}
.lang-switch-ft a{
    color: var(--vert-flora);
    opacity: 0.7;
}
.lang-switch-ft .selector-lang>span{
    margin: 2px 8px 0 8px;
}
.lang-switch-ft .selector-lang>span{
    background-color: var(--vert-flora);
}

.custom-lang-switcher .langfrench{
    margin-bottom: -1px;
}
/***********
ACCUEIL
 */
.head-first-page{
    height: 300vh;
    position: relative;
    /*overflow: hidden;*/
}
.image-principal{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 103vh;
    object-fit: cover;
    margin-top: -1vh;
}

.logo-principal{
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translate(-60%,-50%);
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.logo-principal.hide-logo{
    opacity: 0;
}
.logo-principal {
    width: auto;
    height: 500px;
    display: block;
    margin: auto;
    /*position: sticky;*/
    /*left: 0;*/
    /*top: 0;*/
    /*margin-top: 80vh;*/
    /*padding-top: 20vh;*/
}

.p-sticky-logo{
    margin-top: -102vh;
    top: 0;
    left: 0;
    position: sticky;
    height: 100vh;
    width: 100%;
}
.logo-principal path,
.logo-principal polygon,
.logo-principal ellipse{
    fill: white;
    /*clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);*/
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);

    animation: reveallog 0.4s forwards ease;
}
.logo-principal path:nth-child(3){
    transform: translate(0px, -0.2px);

}
.logo-principal path:nth-child(5) {
    transform: translate(0px, -0.4px);
}
.logo-principal path:nth-child(1),
.logo-principal path:nth-child(3),
.logo-principal path:nth-child(5),
.logo-principal polygon:nth-of-type(3),
.logo-principal ellipse{
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

}


@keyframes reveallog {
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.logo-principal path:nth-child(1) { animation-delay: 1s; }
.logo-principal path:nth-child(2) { animation-delay: 1.3s; }
.logo-principal path:nth-child(3) { animation-delay: 1.6s; }
.logo-principal polygon:nth-of-type(1) { animation-delay: 1.9s; }
.logo-principal path:nth-child(5) { animation-delay: 2.2s; }
.logo-principal polygon:nth-of-type(2) { animation-delay: 2.5s; }
.logo-principal polygon:nth-of-type(3) { animation-delay: 2.8s; }
.logo-principal ellipse { animation-delay: 3.1s; }


.content-first{
    /*position: absolute;*/
    /*bottom: var(--mdspace);*/
    /*left: var(--big-left);*/
    margin-bottom: var(--mdspace);
    margin-left: var(--big-left);
    margin-top: -100vh;
    position: sticky;
    top: 51vh;
    left: 0;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    width: 800px;
}
.content-first>svg{
    margin-left: 3px;
}
.content-first.hide-anim{
    opacity: 0;
}
.resabtn{
    position: sticky;
    right: var(--side-base);
    bottom: 40px;
    top: calc(100% - 200px);
    margin-right: var(--side-base);
    margin-left: auto;
    margin-bottom: 50px;
    opacity: 0;
    animation: appearresa 0.8s 0.8s ease-in-out forwards;
}
@keyframes appearresa {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 0.7;
    }
}


.section-about{
    padding-top: var(--mdspace);
    background: var(--sablelight);
    position: relative;
    z-index: 3;
    overflow-x: hidden;
}
.section-about .head-section{
    padding-left: var(--side-base);
    padding-right: var(--side-base);

}
.head-section{
    display: grid;
    /*grid-template-columns: 230px 1fr;*/
    grid-template-columns: 17vw 1fr;
}
.head-section>div:last-of-type{
    max-width: 450px;
}
.home-anim{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 40px;
    width: 110%;
    margin-left: -5%;
    padding-top: var(--ltspace);
    padding-bottom: var(--ltspace);
}
.home-anim-mobile{
    display: none;
}
.round-img{
    height: 26vw;
    width: 26vw;
    /*border: 1px solid var(--sable);*/
    border: 1px solid rgba(19, 75, 55, 0.4);
    border-radius: 50%;
    padding: 10px;
    display: block;
    /*opacity: 0;*/
}
.no-anim .round-img{
    opacity: 1;
}
.round-img.hide{
    opacity: 0!important;
}
.round-img img{
    height: calc(26vw - 20px);
    width: calc(26vw - 20px);
    border-radius: 50%;
    /*opacity: 0;*/
}
.nos-plats{
    height: 100vh;
    padding-left: var(--side-base);
    padding-right: var(--side-base);
    background-color: var(--noir);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flex-plats{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.flex-plats>div:first-of-type{
    width: 600px;
}
.flex-plats>div:nth-of-type(2){
    width: calc(100% - 600px);
}
.bloc-plat{
    text-align: center;
}
.swiper-plats{
    margin-top: 60px;
}
.bloc-plat img{
    width: 21vw;
    height: 21vw;
    object-fit: contain;
    filter: drop-shadow(4px 4px 10px #121212);
}
.swiper-plats{
    overflow: hidden;
}
.swiper-plats .swiper-button-prev{
    left: calc(var(--side-base) + 600px);
}
.swiper-plats .swiper-button-next{
    right: var(--side-base);
}
.swiper-plats .swiper-button-prev, .swiper-plats .swiper-button-next{
    /*top: 12vw;*/
    top: 43%;
    opacity: 0.5;
}
body .swiper-plats .swiper-pagination {
    margin-bottom: 0;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}
body .swiper-plats .swiper-pagination-bullet{
    height: 6px!important;
    width: 6px!important;
    border: 0;
    background: rgba(255, 255, 255, 0.10);
}
body .swiper-plats .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: white;
}
.txt-plats{
    /*position: relative;*/
    /*top: -50px;*/
    max-width: 450px;
    margin-bottom: 100px;
}
.slider-plats{
    width: 60%;
}
.horaires{
    padding-left: var(--side-base);
    padding-right: var(--side-base);
    padding-top: var(--bigspace);
    padding-bottom: var(--ltspace);
}
.grid-horaires{
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-gap: 60px;
}
.grid-contact .horaires-txt{
    margin-top: 20px;
}
.horaires-txt p{
    margin: 0;
}
.horaires-txt p span:first-of-type{
    width: 100px;
}
.horaires-txt p span{
    margin-right: 20px;
    display: inline-block;
}
.txt-horaires{
    margin-bottom: 100px;
}
.txt-horaires h3{
    font-weight: 300;
}
.txt-horaires p:nth-of-type(2){
    margin-bottom: 10px;
}
.img-horaires{
    margin-top: -400px;
}
.img-horaires .round-img{
    margin-bottom: 40px;
}
.conditions-horaires, .conditions-horaires p{
    font-size: 18px;
    /*line-height: 22px;*/
}
.conditions-horaires p:first-of-type{
    margin-top: 10px;
    margin-bottom: 10px;
}

/*******
FOOTER
 */
#footer{
    padding-left: var(--side-base);
    padding-right: var(--side-base);
    background-color: var(--sable);
    padding-top: var(--mdspace);
    padding-bottom: var(--ltspace);
    position: relative;
    z-index: 3;
}
#footer .custom-logo-link{
    margin-bottom: var(--ltspace);
}
.grid-ft{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 0.8fr;
}
#footer a:not(.btn_base),
#footer p{
    color: var(--vert-flora);
    display: block;
    font-size: 18px;
    line-height: 24px;
}

#footer p{
    margin-bottom: 10px;
}
#footer .horaires-txt p{
    margin-bottom: 0;
}
.horaires-ft br{
    /*display: none;*/
}
#footer .horaires-ft p:nth-of-type(2){
    /*margin-bottom: 0;*/
}
.svg-ft{
    margin-top: -100px;
}
#copyright{
    display: flex;
    color: var(--vert-flora);
    align-items: center;
    font-size: 11px;
    font-weight: 100;
    line-height: 11px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    opacity: 0.7;
}
#copyright svg{
    margin-bottom: -7px;
    margin-left: 3px;
    opacity: 0.7;
}
#copyright>span:nth-of-type(2){
    margin: 0 2px;
}
.prelative-ft{
    position: relative;
}
.grid-ft-copy{
    display: grid;
    grid-template-columns: 3fr 1fr 0.8fr;
}
.photo-credit{
    margin-left: -14px;
    margin-top: -15px;
    /*position: absolute;*/
    /*right: 25%;*/
    /*top: -47px;*/
}
.photo-credit img{
    width: 180px;
    height: auto;
}
.text-reveal {
    padding-bottom: 5px;
    overflow: hidden;
}
.animatedtext{
    opacity: 0;
    animation: reveal 0.2s 0.2s forwards;
}
.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: reveal 0.5s forwards;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#footer #copyright span a{
    font-size: 11px;
    font-weight: 100;
    line-height: 11px;
}
/*******
Page
 */
.head-page{
    padding: var(--bigspace) var(--big-left) 0 var(--big-left);
    position: relative;
}
.carte-page{
    position: relative;
    min-height: 230px;
    padding: var(--mdspace) 0;
    margin-top: var(--mdspace);
    overflow: hidden;
}
.carte-page::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
}
.carte-page .swiper-slide{
    /*transform: scale(0) !important;*/
    opacity: 0;
    transition: 0.5s ease-in-out all;
}
.carte-page .swiper-slide.swiper-slide-active{
    /*transform: scale(1) !important;*/
    opacity: 1;
}
.carte-page .swiper-button-prev, .carte-page .swiper-button-next{
    top: 600px;
}
.swiper-autoheight, .swiper-autoheight .swiper-slide{
    overflow: hidden;
}
.img-carte{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.carte-page .img-carte{
    min-height: 200vh;

}
.swiper-container{
    position: relative;
    z-index: 3;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    position: static;
    display: flex;
    margin: 0;
    width: fit-content!important;
    margin-bottom: var(--ltspace);
}
body .swiper-pagination-bullet {
    height: 140px!important;
    width: 140px!important;
    border: 1px solid white;
    color: white;
    display: flex!important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.64px;
    opacity: 0.7!important;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
body .swiper-pagination-bullet:hover{
    opacity: 0.6;
    transform: scale(0.9);
}
body .swiper-pagination-bullet:only-child{
    display: flex!important;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 10px!important;
}
body .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
}

.swiper-pagination-bullet::before {
    content: attr(data-menu);
}
.swiper-container{
    width: 45%;
    margin: auto;
    overflow-x: hidden;
}
.bloc-menus{
}
.container-menu{
    background-color: white;
    padding: var(--ltspace);
    min-height: 700px;
    position: relative;
}
.container-menu .menu>p{
    font-size: 16px;
    font-weight: 100;
    line-height: 20px;
}
.container-menu h2{
    margin-bottom: 5px;
}
.plats{
    margin-top: 30px;
}
.plats svg:last-of-type{
    display: none;
}
.plats svg{
    margin-left: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.conditions{
    font-size: 16px;
    font-weight: 100;
    line-height: 20px;
    margin-top: 25px;
}
.menu:not(:first-of-type){
    margin-top: 60px;
}
.sapin-menu{
    position: absolute;
    right: 50px;
    bottom: 50px;
}
body .swiper-arrow{
    position: absolute;
    z-index: 10;
    height: 120px;
    width: 120px;
    padding: 10px;
    overflow: visible;
    transition: 0.3s ease-in-out all;
    opacity: 0.7;
}
body .swiper-arrow:hover{
    transform: scale(1.1);
}
body .swiper-arrow path,
body .swiper-arrow line{
    transition: 0.1s linear all;
}
body .swiper-button-next{
    right: 10vw;
}
body .swiper-button-prev{
    left: 10vw;
}
.resa{
    background: var(--noir);
    padding: var(--mdspace) 0;
}
.resa .round-img{
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.grid-resa{
    display: grid;
    grid-template-columns: 17vw 2.3fr 2fr;
    grid-gap: 0px;
    padding-left: var(--side-base);
    padding-right: var(--side-base);
}
.grid-resa h2{
    padding-right: 20px;
}
.max-width{
    max-width: 450px;
}
.img-carte-fond{
    display: none;
}
/****
PAGE RESA
 */
.resa-page{
    position: relative;
    min-height: 100vh;
}
.resa-page .head-page{
    position: relative;
    z-index: 2;
}
.resa-page::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);*/
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: 1;
}
.list-btn{
    padding: 0 var(--big-left) 0 var(--big-left);
    display: flex;
}
.list-btn .btn_base:not(:last-of-type){
    margin-right: 20px;
}
.list-btn .btn_base{
    opacity: 0.9;
}
.page-template-template-resa #footer,
.page-template-template-contact #footer,
.page-template-template-restaurant #footer{
    background: var(--vert-flora);
}
.page-template-template-resa #footer a:not(.btn_base),
.page-template-template-resa #footer p,
.page-template-template-contact #footer a:not(.btn_base),
.page-template-template-contact #footer p,
.page-template-template-restaurant #footer a:not(.btn_base),
.page-template-template-restaurant #footer p{
    color: white;
}
.page-template-template-resa #footer .btn_base,
.page-template-template-contact #footer .btn_base,
.page-template-template-restaurant #footer .btn_base{
    /*border: 1px solid white;*/
    color: white;
}
.page-template-template-resa #footer .btn_base .border,
.page-template-template-contact #footer .btn_base .border,
.page-template-template-restaurant #footer .btn_base .border{
    border: 1px solid white;
}
.page-template-template-resa #footer .custom-logo-link img,
.page-template-template-resa #copyright svg,
.page-template-template-resa .photo-credit img,
.page-template-template-resa .svg-ft,
.page-template-template-contact #footer .custom-logo-link img,
.page-template-template-contact #copyright svg,
.page-template-template-contact .photo-credit img,
.page-template-template-contact .svg-ft,
.page-template-template-restaurant #footer .custom-logo-link img,
.page-template-template-restaurant #copyright svg,
.page-template-template-restaurant .photo-credit img,
.page-template-template-restaurant .svg-ft
{
    filter: brightness(0) invert(1);
}
.page-template-template-resa #copyright,
.page-template-template-contact #copyright,
.page-template-template-restaurant #copyright{
    color: white;
}
.page-template-template-resa #footer .lang-switch-ft .selector-lang>span,
.page-template-template-contact #footer .lang-switch-ft .selector-lang>span,
.page-template-template-restaurant #footer .lang-switch-ft .selector-lang>span{
    background-color: white;
}

    /*****
    PAGE ABOUT
     */
.anim-about{
    height: 400vh;
    background: var(--noir);
    position: relative;
}
.ele-anim-about{
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-anim{
    position: relative;
    margin: auto;
    width: 100%;
    height: 100vh;
    /*width: 700px;*/
    /*height: 700px;*/

    /*border-radius: 100%;*/
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /*border: 1px solid var(--sable);*/
    overflow: hidden;
    clip-path: circle(35vh at 50% 50%);

}
.head-resto{
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
    text-align: center;
    /*height: 700px;*/
    border-radius: 50%;
    /*width: 700px;*/
    border: 1px solid var(--sable);
    width: 70vh;
    height: 70vh;
}
.head-resto .surtitre{
    margin-top: -15px;
}
.head-resto h1, .head-resto h1 span{
    font-family: 'diagramdisplay';
}
.head-resto h1, .head-resto .h1{
    margin-bottom: 0;
    font-size: 48px;
    line-height: 52px;
}
.round-anim img{
    position: absolute;
    /*left: 10px;*/
    /*top: 10px;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*border-radius: 100%;*/
    /*width: calc(100% - 20px);*/
    /*height: calc(100% - 20px);*/
    width: 100vw;
    height: 100vh;
    opacity: 0;
}
.concept{
    position: sticky;
    top: calc(100% - 600px);
    left: var(--side-base);
    max-width: 450px;
    margin-bottom: 150px;
    opacity: 0;
}
.missions{
    background: var(--sablelight);
    position: relative;
    z-index: 3;
    overflow-x: hidden;
}
.missions .head-missions{
    padding-right: var(--big-left);
    padding-top: var(--mdspace);
    padding-bottom: var(--ltspace);
    display: grid;
    grid-template-columns: 200px 1fr;
    max-width: calc(700px + var(--big-left));
    margin-left: auto;
}
.missions .home-anim{
    padding-top: 0;
    padding-bottom: var(--mdspace);
}
.round-img-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.round-img-flex div{
    max-width: 80%;
    margin-top: -3px;
}
.round-img-flex h3{
    font-weight: 300;
}
.equipes{
    position: relative;
}
.equipes::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), linear-gradient(305deg, rgba(0, 0, 0, 0.00) 51.08%, rgba(0, 0, 0, 0.40) 82.33%);
    height: 0%;
    width: 100%;
    transition: 0.4s ease-in-out opacity;
    opacity: 0;

}
.equipes.active::after{
    height: 100%;
    opacity: 1;
}
.equipes h2{
    position: absolute;
    top: var(--ltspace);
    left: var(--side-base);
    z-index: 3;
}
.img-equipes{
    width: 100%;
    height: auto;
    filter: brightness(0.8) grayscale(1);
}

.container-point-legend {
    position: absolute;
    cursor: pointer;
}
.container-point-legend>svg{
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.container-point-legend:hover>svg{
    transform: rotate(180deg);
}
.container-point-legend h3{
    margin: 10px 0 0 0;
    text-transform: uppercase;
    opacity: 1;
    font-weight: 300;
    letter-spacing: 0.88px;
}
.swiper-equipe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 750px;
    overflow: hidden;
    z-index: 3;
    transition: 0.4s 0.2s ease-in-out opacity;
    opacity: 0;
}
.swiper-equipe .swiper-slide{
    opacity: 0;
    transition: 0.3s ease-in-out all;
}
.swiper-equipe .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.equipes .swiper-arrow{
    transition: 0.4s 0.2s ease-in-out opacity;
    opacity: 0;
    transform: scale(0);
}
.swiper-equipe .swiper-wrapper{
    align-items: center;
}
.equipe-more{
    /*display: grid;*/
    /*grid-template-columns: 150px 1fr;*/
    /*grid-gap: 40px;*/
    background: white;
    padding: 75px;
    position: relative;
}
.equipe-more>svg{
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.7;
    cursor: pointer;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    z-index: 3;
}
.equipe-more>svg:hover{
    transform: scale(0.8);
}
.equipe-more img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.equipe-more h3{
    text-transform: uppercase;
    margin-bottom: 0;
}
.equipe-more .desc{
    margin-top: 20px;
}
.desc strong{
    margin-bottom: -20px;
    display: block;
    font-weight: 300;
}
.equipes.active .swiper-equipe{
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;

}
.equipes.active .swiper-arrow{
    transform: scale(1);
    opacity: 1;
    transition: 0.4s ease-in-out all;
}
.equipes.active .swiper-arrow:hover{
    transform: scale(1.2);

}
.sapins{
    padding-top: var(--mdspace);
    /*overflow: hidden;*/
    /*padding-bottom: var(--mdspace);*/
}
.sapins .home-anim:not(.home-anim-2){
    /*margin-top: -400px;*/
}
.sticky-sapins{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--sablelight);
}
.head-sapin{
    margin-top: -100vh;
    position: relative;
    z-index: 1;
}
.sapins .home-anim{
    position: relative;
    z-index: 1;
}
.overflow-gal{
    overflow: hidden;
    margin-top: -400px;
}
.head-sapin, .head-prod {
    padding-left: var(--side-base);
    padding-right: var(--side-base);
}
.producteurs{
    margin-top: -76vw;
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    /*background: var(--noir);*/
    position: relative;
    z-index: 2;
}
.head-prod{
    max-width: calc(450px + var(--side-base) * 2);
}
.producteurs .head-prod>div:first-of-type{
    margin-bottom: 40px;
}
.head-sapin>div:last-of-type{
    /*max-width: 380px;*/
    max-width: 25vw;
}
.provenance{
    padding-right: var(--big-left);
    padding-top: var(--bigspace);
    /*padding-bottom: var(--ltspace);*/
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 80px;
    max-width: calc(750px + var(--big-left));
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.provenance>.round-img{
    position: absolute;
    right: -9.3%;
    top: 0;
}
.link-prevenance{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.more-desc{
    position: relative;
}
.desc-prov{
    transform: translate(0%,-50%);
    opacity: 0;
    transition: 0.4s ease-in-out all;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
}
.pro-link::after{
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    opacity: 0;
}
.pro-link.active::after{
    opacity: 1;
}
.desc-prov.active{
    transform: translate(0%,-50%);
    opacity: 1;
    z-index: 2;
}
.home-anim-2{
    margin-top: -20vw;
}
.desc-prov a{
    text-decoration: underline;
}
.sapins.active .round-img{
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/*.sapins.active .producteurs h2,*/
/*.sapins.active .producteurs p{*/
/*    color: white;*/
/*}*/

    /**********
    NEWS
     */
.news-page{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 120px;
}
.intro-news{
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-align: left;
    max-height: 140px;
}
.container-actu{
    padding-right: var(--big-left);
    position: relative;
}
.mini-galerie{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 80px;
    margin-left: -40px;
    align-items: start;
    grid-auto-rows: min-content;
}
.mini-gal{
    height: 7.5vw;
    width: 7.5vw;
    border: 1px solid rgba(19, 75, 55, 0.4);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
}

.mini-gal img{
    height: calc(7.5vw - 10px);
    width: calc(7.5vw - 10px);
    border-radius: 50%;
}
.mini-gal.hide{
    opacity: 0!important;
}
.absol-date, .single-date{
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    background: white;
    border: 0;
    position: absolute;
    top: 0;
    right: calc(100% + 64px);
    transform: translate(-50%, 0);
    opacity: 1;
}
.single-date{
    position: static;
    transform: unset;
}
.rela-active{
    position: relative;
    height: calc(15vw + 160px);
}
.bloc-actu{
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.bloc-actu svg{
    margin-top: 20px;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
}
.bloc-actu:hover svg{
    transform: translate(10px,0);
    width: 70px;
    height: 16px;
}
.news-page{
    margin-top: var(--mdspace);
}
/**********
SINGLE
 */

.single-flora{
    padding-left: var(--side-base);
    padding-right: var(--side-base);
    padding-top: calc(var(--bigspace) * 1.2);
    display: grid;
    /*grid-template-columns: 8vw 1fr 26vw;*/
    grid-template-columns: 8vw 1fr 26vw;
    grid-gap: 80px;
    margin-bottom: -10vw;
    padding-bottom: calc(10vw + var(--side-base));
    overflow: hidden;
}
.btn-news{
    margin-top: var(--ltspace);
}

.single-flora .round-img{
    margin-bottom: 15px;
}
.round-mob{
    display: none;
}
.p-rela-round{
    position: relative;
}
.p-absol-round{
    position: absolute;
    top: 0;
    left: 0;
}
.single-flora h1, .single-flora .h1{
    font-family: "DiagramDisplay";
    font-size: 36px;
    line-height: 44px;
}
.txt-news p{
    max-width: 700px;
}
/*********
CONTACT
 */
.contact-page{
    background: var(--noir);
}
.grid-contact{
    padding-left: var(--big-left);
    padding-right: var(--side-base);
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    grid-gap: 120px;
    padding-bottom: var(--mdspace);
}
.wpcf7-form input{
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    font-family: "mundial", sans-serif;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    border-radius: 0!important;
}
.wpcf7-form textarea{
    height: 100px;
    width: 100%;
    resize: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    line-height: 30px;
}

.wpcf7-form .wpcf7-submit{
    height: 140px;
    width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%!important;

    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.64px;
    opacity: 0.7;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);

}
.wpcf7-form .wpcf7-submit:hover{
    height: 160px;
    width: 160px;
}
.wpcf7-form p{
    opacity: 1;
}
.wpcf7-form p:nth-of-type(4){
    position: relative;
}
.wpcf7-form p:nth-of-type(4)::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 67px;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
}
.wpcf7-form p:nth-of-type(4)::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 38px;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
}
.wpcf7-not-valid-tip{
    font-size: 16px;
    font-weight: 100;
}
.wpcf7-spinner{
    display: none;
}
.map_container{
    position: relative;
    margin-bottom: -2px;
}
.img-map{
    width: 100%;
    height: auto;
}
.point-map-city{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s ease-in-out all;
}
.map_container.ishover .point-map-city{
    opacity: 0.2;
}
.point-map{
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid white;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s ease-in-out all;
    text-transform: uppercase;

    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    z-index: 10;
}
.point-map::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 16px;
    width: 16px;
    background: white;
    border-radius: 50%;
    transition: 0.4s ease-in-out all;
}
.point-map .hover-ele{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    opacity: 0;
    transition: 0.2s ease-in-out all;
}
.point-map .hover-ele span{
    max-width: 110px;
    text-align: center;
    margin: 20px auto 0 auto;
}
.point-map:hover::after{
    opacity: 0;
}
.point-map:hover{
    width: 250px;
    height: 250px;
    transition: 0.4s ease-in-out all;

}
.point-map:hover .hover-ele{
    opacity: 1;
    transition: 0.4s 0.2s ease-in-out all;
}
.page-template-template-restaurant #header #logo,
.page-template-template-resa #header #logo,
.page-template-template-contact #header #logo{
    filter: brightness(0) invert(1);
}
.page-template-template-carte .menu-text.open,
.single .menu-text.open,
.page-template-template-news .menu-text.open{
    color: var(--vert-flora);
}
.page-template-template-carte .menu-text.open .round-menu,
.single .menu-text.open .round-menu,
.page-template-template-news .menu-text.open .round-menu{
    background: var(--vert-flora);
}

.iv-fullscreen{
    z-index: 100000;
}

.latablee{
    margin-top: 40px;
    margin-bottom: 40px;
}



.transition {
    opacity: 0;
}

.cover {
    position: fixed;
    height: 100vh;
    width: 130vw;
    bottom: 0;
    left: -15vw;
    z-index: 10001;
    border-radius: 50% 50% 0 0;
}

.transition .cover1 {
    bottom: -100vw;
    transition: 0.8s ease-in-out bottom, 0.3s 0.2s ease-in-out border-radius;
    background-color: var(--vert-flora);
}

.transition.slide,
.transition.slide-up {
    opacity: 1;
}

.transition.slide-up .cover1 {
    bottom: 100vw;
    border-radius: 0 0 50% 50%;
}

.transition.slide .cover1 {
    bottom: 0;
    border-radius: 0;
    transition:   0.8s ease-in-out bottom, 0.3s 0.6s ease-in-out border-radius;

    /*animation: slide 0.3s ease-in-out forwards;*/
}

@keyframes slide {
    from {
        left: -100vw;
    }
    to {
        left: 0;
    }
}

.base{
    width: calc(100% - var(--big-left) * 2);
    margin: auto;
    /*max-width: 900px;*/
    padding-bottom: var(--ltspace);
}
.base h3{
    font-weight: 300;
}
.base a{
    text-decoration: underline;
    color: var(--vert-flora);
}
strong{
    font-weight: 300;
}
.mob-accordeon{
    display: none;
}


.otgs-development-site-front-end{
    display: none!important;
}
.page-template-sitemap-template #content{
    padding-top: 75px;
}
.page-template-sitemap-template .txt ul{
    columns: unset;
}
.page-template-sitemap-template .pd-align{
    padding-left: var(--side-base);
    padding-right: var(--side-base);
}
.page-template-sitemap-template .txt li{
    color: var(--vert-flora);
}
.page-template-sitemap-template .txt li::after{
    background: var(--vert-flora);
}
.page-template-sitemap-template h1{
    padding-left: var(--side-base);
    padding-right: var(--side-base);
    font-family: 'diagramdisplay';
    font-size: 55px;
    font-weight: 100;
    line-height: 61px;
    color: var(--vert-flora);
    margin-bottom: 50px;
    text-align: left;
}
.page-template-sitemap-template footer{
    display: none;
}
body .is-mob,
body #footer .is-mob{
    display: none;
}




.equipes h2{
    position: static;
}
.section-team-complet{
    padding-left: var(--side-base);
    padding-right: calc(var(--side-base) * 2);
    padding-top: var(--ltspace);
}
.grid-new-equipe{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
}
.section-team-complet>div:nth-of-type(2){
    max-width: 100%;
}
.new-equipe{
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
}
.new-equipe>img{
    width: 170px;
    height: 170px;
    margin-right: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.new-equipe>svg{
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translate(0px, -50%);
}
.new-equipe h3{
    font-weight: 300;
    margin-bottom: 0;
}
.swiper-equipe{
    position: fixed;
}
.equipes::after{
    position: fixed;
}
.equipe-more h3{
    font-weight: 300;
}
.equipes.active .swiper-arrow{
    position: fixed;
}