@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Merienda:wght@300..900&display=swap');

:root {
    --blanc: #fff;
    --noire: #000;
    --vert-clair: #f7faf7;
    --vert: #a7cda6;
    --vert-sombre: #384d28;
    --vert-chlorophylle: #409261;
    --vert-1: #29510b;
    --vert-2: #28553a;
    --header: #eff5f0;

    /* --4px: .25rem --8px: .5rem --12px .75rem --16px: 1rem;
    --20px: 1.25rem --24px: 1.5rem;
    --28px: 1.75rem --32px: 2rem;
    --40px: 2.5rem --60px: 3.75rem --100px: 6.25rem --160px: 10rem --240px: 15rem */
}

* {
    margin: 0;
    padding: 0;
}

html {
    background-color: #eff5f0;
}

h1 {
    font-family: "Merienda", cursive;
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-family: "Merienda", cursive;
    line-height: 1.2rem;
}

h4 {
    font-size: 1.1rem;
    font-family: "Merienda", cursive;
    line-height: 1.2rem;
}

p {
    font-size: 1.2rem;
    font-family: "Merienda", cursive;
    font-weight: 100;
    line-height: 1.6rem;
}

a {
    font-family: "Merienda", cursive;
    color: var(--vert-2);
}

#toggle-menu {
    display: none;
}

.slideshow {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    gap: 1.25rem;
    height: 80vh;
    width: 100vw;
}

.slideshow .slideimg {
    display: flex;
    gap: 1.25rem;
}

.slideshow .row1 {
    height: 26%;
    justify-content: center;
    flex-wrap: nowrap;
    animation: slide-left 15s ease infinite;
}

.slideshow .row2 {
    height: 26%;
    justify-content: center;
    animation: slide-right 15s ease infinite;
}

.slideshow .row3 {
    height: 26%;
    justify-content: center;
    animation: slide-left 15s ease infinite;
}

.slideshow .slideimg img {
    border-radius: 0px 20px 0px 20px;
}

.slideshow .slideimg .slide-elt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    padding: 20px;
    width: 200px;
    flex-shrink: 0;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--vert-2);
    color: var(--vert-clair);
}

.slideshow .slideimg .slide-elt p,
.slideshow .slideimg .slide-elt h2 {
    text-align: center;
}

@keyframes slide-left {
    0% {
        transform: translateX(0px)
    }

    25% {
        transform: translateX(150px)
    }

    75% {
        transform: translateX(-150px)
    }

    100% {
        transform: translateX(0px)
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(0px)
    }

    25% {
        transform: translateX(-300px)
    }

    75% {
        transform: translateX(300px)
    }

    100% {
        transform: translateX(0px)
    }
}

.fixed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 14vh;
    position: fixed;
    width: 100%;
    background-color: var(--header);
    z-index: 1;
}

.fixed-header div,
.fixed-header div.third {
    flex-basis: 15%;
}

.fixed-header div.second {
    flex-basis: 60%;
    text-align: center;
}

.fixed-header div.second-contact {
    flex-basis: 42%;
}

.fixed-header h1 {
    text-align: center;
    height: fit-content;
    font-weight: bolder;
    color: var(--vert-2);
    transition: all .1s ease;
}


.fixed-header div img {
    border-radius: 50%;
    height: 80px;
    display: block;
    margin-right: 2vw;
    margin-left: auto;
}

@media(max-width: 1134px) {
    .fixed-header div img {
        float: right;
    }
}

#mag1 {
    top: 66px;
    left: -14px;
    transform: rotate(99deg);
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .7) 0%,
            rgba(0, 0, 0, 0.1));
    display: block;
    z-index: 1;
}

.overlay.disactive {
    animation: slide-overlay-reverse 1s forwards ease;
}

.overlay.active {
    animation: slide-overlay 1s forwards ease;
}

@keyframes slide-overlay-reverse {
    0% {
        opacity: 1;
        width: 100%;
    }

    100% {
        opacity: 0;
        width: 0%;
    }
}

@keyframes slide-overlay {
    0% {
        opacity: 0;
        width: 0%;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}



.menu .stem p.disactive {
    display: none;
}

.menu .stem p.active {
    display: block;
}

.bambou-img {
    padding-top: 5vh;
    width: 80vw;
    margin: auto;
}


.bambou-img h2 {
    color: var(--vert-2);
    font-weight: 600;
    text-align: center;
}

.bambou-img p {
    padding: 10px;
    text-align: center;
}

.bambou-img .column.left {
    display: inline-block;
    margin-bottom: 5%;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--vert);
    width: 45vw;
    vertical-align: top;
}
.bambou-img .column {
    display: inline-block;
    width: 25vw;
    vertical-align: top;
}

.commitment-img {
    padding-top: 5vh;
    width: 53%;
    margin: auto;
}

.commitment-img h2 {
    color: var(--vert-2);
    font-weight: 600;
    text-align: center;
}

.commitment-img p {
    padding: 10px;
    text-align: center;
}

.commitment-img .row {
    margin-top: 20px;
    margin-bottom: 5%;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--vert);
    display: flex;
    justify-content: space-between;
}

.bambou-img .column p {
    text-align: justify;
}


.bambou-img .column h3 {
    color: var(--vert-2);
    padding: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5em;
}

.bambou-img .column a {
    width: 100%;
}


.bambou-img .column p {
    padding: 20px;
}

.bambou-img .column img {
    width: 25vw;
}

.commitment-img .row .column {
    flex-basis: 44%;
}

.commitment-img .row .left {
    flex-basis: 41%;
    height: fit-content;
    margin: auto;
}

.commitment-img .row .right {
    flex-basis: 41%;
    height: fit-content;
    margin: auto;
}

.commitment-img .row .column h3 {
    color: var(--vert-2);
    padding: 30px;
    font-weight: 600;
    text-align: center;
}

.commitment-img .row .column a {
    width: 100%;
}

.commitment-img .row .column a::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: black;
    transition: 300ms;
}

.commitment-img .row .column a:hover::after {
    width: 100%;
}

.commitment-img .row .column p {
    padding: 20px;
}

.commitment-img .row .column img {
    width: 100%;
    border-radius: 0 20px 0 20px;
    height: 100%;
}

.commitment-img .row .column.right ul {
    margin: auto;
    padding: 20px;
}

.commitment-img .row .column.right ul li {
    list-style: none;
    padding: 5px;
    text-align: justify;
}



.component-slideshow {
    display: flex;
    overflow: hidden;
    height: 480px;
}

.component-slideshow img {
    flex-shrink: 0;
    border-radius: 0px 20px 0px 20px;
    animation: slide-component 20s infinite ease;
}

@keyframes slide-component {
    0% {
        transform: translateX(0%);
    }

    33% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-300%);
    }
}

.accordion .header {
    display: flex;
    justify-content: space-between;
    border-bottom: none;
    height: auto;
    padding: 10px 0;
}

.accordion .header button {
    margin: auto;
}

.accordion .content {
    transition: all 0.5s;
    transform-origin: top center;
    max-height: 0;
    transform: scaleY(0);
}

.accordion .content.active {
    padding: 10px 0;
    margin-bottom: 20px;
    max-height: max-content;
    transform: scaleY(1);
}

.testimonial {
    padding: 20px;
    height: 200px;
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.testimonial .column {
    margin-bottom: 5%;
    background-color: var(--vert);
    border-radius: 10px;
    margin-left: 20px;
    border: 1px solid var(--vert-2);
    padding: 10px;
}

.bambou-img .testimonial .column p {
    padding: 0;
}

.testimonial .column .person img {
    display: inline-block;
    height: 40px;
    width: 40px;
    border: 1px solid black;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 30px;
}

.testimonial .column .person>div {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    padding-top: 10px;
}


.testimonial .column .person h3 {
    color: var(--vert-2);
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin-right: 10px;
}


.bambou-img .column button {
    display: block;
    font-weight: bold;
    width: fit-content;
    text-decoration: none;
    border: 1px solid var(--vert-2);
    padding: 10px;
    color: var(--vert);
    background-color: var(--vert-2);
    border-radius: 0px 20px 0px 20px;
    cursor: pointer;
    transition: all .5s;
    font-size: 1.1rem;
}

.bambou-img .row .column button:hover {
    border-radius: 20px 0px 20px 0px;
}

@media(max-width: 720px) {
    .bambou-img .row {
        flex-direction: column;
    }

    .bambou-img .row .column p {
        padding: 10px;
    }

    .testimonial .column {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.details {
    margin: auto;
    margin-bottom: 5vh;
    width: 50%;
    padding: 30px;
    background-color: var(--vert);
    border-radius: 0 20px 0 20px;
}

.details p {
    text-align: justify;
}

.peps-section-slideshow {
    height: 500px;
    width: 50%;
    margin: auto;
    margin-top: 2vh;
}

.peps-component-slideshow {
    display: flex;
    height: 100%;
    overflow: hidden;
    justify-content: center;
}

.peps-component-slideshow img {
    flex-shrink: 0;
    border-radius: 0px 20px 0px 20px;
}

@keyframes slide-component5 {
    0% {
        transform: translateX(0%);
    }

    20% {
        transform: translateX(-375px);
    }

    40% {
        transform: translateX(calc(-375px - 666px));
    }

    60% {
        transform: translateX(calc(-375px - 666px - 666px));
    }

    80% {
        transform: translateX(calc(-375px - 666px - 666px - 375px));
    }

    100% {
        transform: translateX(calc(-375px - 666px - 666px - 375px - 948px));
    }
}

.details .networks {
    padding: 20px;
}

.details .networks ul {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    margin: auto;
    padding: 0;
}

.details .networks ul li {
    list-style: none;

}

.details .networks a {
    font-weight: 400;
    font-size: 2em;
    text-decoration: none;
    border: 1px solid var(--vert-2);
    padding: 10px 25px;
    color: var(--vert);
    background-color: var(--vert-2);
    border-radius: 0px 20px 0px 20px;
    cursor: pointer;
    transition: all .5s;
}

.details .networks a:hover {
    border-radius: 20px 0px 20px 0px;
}

.bullets {
    position: relative;
    width: 50%;
    padding: 30px;
    margin: auto;
    margin-top: 2vh;
    background-color: var(--vert);
    border-radius: 0 20px 0 20px;
}

.bullets h2 {
    text-align: center;
}

.bullets .bullet {
    border: 1px solid var(--vert-2);
    border-radius: 0px 20px;
    padding: 10px;
    margin: 20px;
}

.bullets .bullet h3 {
    text-align: center;
}

.bullets .bullet ul {
    width: fit-content;
    margin: auto;
}

.persons {
    position: relative;
    padding-top: 5vh;
    width: 80%;
    margin: auto;
}

.persons h2 {
    color: var(--vert-2);
    text-align: center;
    font-weight: 600;
}

.persons>p {
    text-align: center;
    font-weight: 300;
    padding: 10px;
}

.persons .row {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.persons .row .column {
    background-color: var(--vert);
    padding: 10px;
    border-radius: 0 20px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 10%;
    transition: transform .5s;
    width: 30%;
}

.persons .row .column:hover {
    transform: translateY(-10px);
}

.persons .row .column img {
    margin: auto auto 10px auto;
    display: block;
    width: 150px;
    height: 200px;
    border-radius: 0 20px;
    padding-top: 20px;
}

.persons .row .column h3 {
    color: var(--noire);
    text-align: center;
    font-weight: 700;
}

.persons .row .column h4 {
    text-align: center;
    padding: 10px;
}

.persons .row .column p {
    text-align: justify;
    font-weight: 300;
    padding: 20px;
}

.persons .row .column ul {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 20px;
}

.persons .row .column ul li {
    font-weight: 400;
    font-size: 2em;
    text-decoration: none;
    border: 1px solid var(--vert-2);
    padding: 10px 25px;
    color: var(--vert);
    background-color: var(--vert-2);
    border-radius: 0px 20px 0px 20px;
    cursor: pointer;
    transition: all .5s;
    margin: 0;
    list-style: none;
}

.persons .row .column ul li a {
    color: inherit;
}

.persons .row .column ul li:hover {
    border-radius: 20px 0px 20px 0px;
}

@media(max-width: 720px) {
    .persons .row {
        flex-direction: column;
        align-content: center;
    }
}

.contact {
    width: 40%;
    padding: 10px;
    margin: auto;
    background-color: var(--vert);
    border-radius: 0 20px 0 20px;
    margin-bottom: 5vh;
}

.contact h2 {
    padding: 10px;
    text-align: center;
    color: var(--vert-2);
}

.contact .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.contact .content a {
    font-weight: 500;
    text-decoration: none;
    color: var(--noire);
    border-bottom: none;
    transition: border-bottom 300ms ease;
    display: inline-block;
}

.contact .content a::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: black;
    transition: 300ms;
}

.contact .content a:hover::after {
    width: 100%;
}

.contact .content p {
    padding: 5px;
}

.followus {
    top: 5vh;
    width: 40%;
    margin: auto;
    background-color: var(--vert);
    padding: 10px;
    padding-bottom: 20px;
    border-radius: 0 20px 0 20px;
}

.followus h2 {
    padding: 10px;
    text-align: center;
    color: var(--vert-2);
}

.followus .networks {
    padding: 20px;
}

.followus .networks ul {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    margin: auto;
    padding: 0;
}

.followus .networks ul li {
    list-style: none;
}

.followus .networks a {
    font-weight: 400;
    font-size: 2em;
    text-decoration: none;
    border: 1px solid var(--vert-2);
    padding: 10px 25px;
    color: var(--vert);
    background-color: var(--vert-2);
    border-radius: 0px 20px 0px 20px;
    cursor: pointer;
    transition: all .5s;
}

.followus .networks a:hover {
    border-radius: 20px 0px 20px 0px;
}

.bambou-img .row .column button.tab.active {
    background-color: #333;
    border-radius: 20px 0px 20px 0px;
}

.bambou-img .row .column a:hover {
    color: var(--noire);
    font-weight: bold;
}



nav.mobile-menu {
    display: none;
}

nav.menu {
    display: block;
    position: absolute;
    border-radius: 50%;
    height: 80px;
    flex-basis: 15%;
}

.followus .mobile-network {
    display: none;
}

.followus .pc-network {
    display: block;
}

.bambou-img .row .column.right {
    flex-basis: 50%;
    margin-right: 7%;
}

.bambou-img .row .column.left {
    flex-basis: 50%;
    margin-left: 7%;
}

.menu .pot {
    position: absolute;
    top: 0;
    height: 80px;
    width: 80px;
    margin-left: 2vw;
    background-color: var(--vert);
    border: 1px solid var(--vert-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: all 500ms ease;
}

.menu .pot.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 3px solid var(--vert-2);
}

.menu .pot.disactive {
    border-radius: 50%;
    border: 1px solid var(--vert-2);
}

.menu .pot p {
    position: relative;
    bottom: 0;
    color: var(--vert-2);
    transition: 300ms all ease;
    font-size: 1.2em;
    font-weight: 600;
}

.menu .pot p:hover {
    cursor: pointer;
    font-size: 1.3em;
    font-weight: 800;
}

.menu .stem {
    position: absolute;
    top: 80px;
    left: 1px;
    margin-left: 2vw;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

@keyframes slide-stem-reverse {
    0% {
        height: calc(100vh - 80px - 1vh);
        width: 70px;
    }

    100% {
        height: 0;
        width: 0;
    }
}

@keyframes slide-stem {
    0% {
        height: 0;
        width: 0;
    }

    100% {
        height: calc(100vh - 80px - 1vh);
        width: 70px;
    }
}

.menu .stem .level1 {
    display: flex;
    height: 18%;
    width: 80px;
    background-color: var(--vert);
}

@keyframes no-border {
    0% {
        border-bottom: 2px solid var(--vert-2);
        border-top: 2px solid var(--vert-2);
    }

    100% {
        border: none
    }
}

@keyframes with-border {
    0% {
        border: none
    }

    100% {
        border-bottom: 2px solid var(--vert-2);
        border-top: 2px solid var(--vert-2);
    }
}

.menu .stem .level1 p {
    display: none;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--vert-2);
    margin: auto;
    width: fit-content;
    height: fit-content;
    transform: rotate(-70deg) translateX(10%);
    transform-origin: bottom;
}

.menu .stem .level1 p.home {
    transform: rotate(-70deg) translateX(20%) translateY(20%)
}

.menu .stem .level1 a {
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--vert-2);
    transition: all 200ms ease;
}

.menu .stem .level1 a:hover {
    transform: rotate(-20deg) translateX(10%);
    transform-origin: bottom;
}

.menu .stem .branch {
    position: absolute;
    left: 70px;
    top: 72%;
}

.menu .stem .branch .part1 {
    position: relative;
    background-color: var(--vert);
    left: 10px;
    width: 10px;
    transform-origin: left;
    transform: rotate(120deg);
    z-index: -1;
}


@keyframes slide-part1 {
    0% {
        border: none;
        height: 0;
    }

    100% {
        border: 1px solid #8f96a3;
        height: 35px;
    }
}


@keyframes slide-part1-reverse {
    0% {
        border: 1px solid #8f96a3;
        height: 35px;
    }

    100% {
        border: none;
        height: 0;
    }
}

.menu .stem .branch .part2 {
    position: relative;
    background-color: var(--vert);
    width: 10px;
    left: 54px;
    bottom: 33px;
    transform-origin: left;
    transform: rotate(105deg);
}


@keyframes slide-part2-reverse {
    0% {
        border: 1px solid #8f96a3;
        height: 60px;
    }

    100% {
        border: none;
        height: 0;
    }
}

@keyframes slide-part2 {
    0% {
        border: none;
        height: 0;
    }

    100% {
        border: 1px solid #8f96a3;
        height: 60px;
    }
}

.menu .stem .branch .part3 {
    position: relative;
    background-color: var(--vert);
    width: 10px;
    left: 113px;
    bottom: 86px;
    transform: rotate(94deg);
    transform-origin: left;
}


@keyframes slide-part3-reverse {
    0% {
        border: 1px solid #8f96a3;
        height: 60px;
    }

    100% {
        border: none;
        height: 0;
    }
}

@keyframes slide-part3 {
    0% {
        border: none;
        height: 0;
    }

    100% {
        border: 1px solid #8f96a3;
        height: 60px;
    }
}


.menu .stem .leaf-entreprise {
    position: absolute;
    left: 130px;
    top: 73%;
}

.menu .stem .leaf-entreprise .leaf1 {
    position: absolute;
    width: 100%;
    max-width: 100%;
    transform-origin: center center;
    transform: scale(0.8) rotate(30deg);
    z-index: 6;
    top: 5px;
    left: -40px;
}

.menu .stem .leaf-entreprise .leaf2 {
    position: absolute;
    width: 100%;
    max-width: 100%;
    top: 10px;
    left: 74px;
    transform-origin: center center;
    transform: scale(0.8) rotate(20deg);
    z-index: 5;
}

.menu .stem .leaf-entreprise .leaf3 {
    position: absolute;
    width: 100%;
    max-width: 100%;
    top: -26px;
    left: 108px;
    transform-origin: center center;
    transform: scale(0.8) rotate(-10deg);
    z-index: 4;
}

.menu .stem .leaf-entreprise .leaf4 {
    position: absolute;
    width: 100%;
    max-width: 100%;
    top: -30px;
    left: 25px;
    transform-origin: center center;
    transform: scale(0.8) rotate(-30deg);
    z-index: 3;
}


.leaf1 a svg path,
.leaf2 a svg path,
.leaf3 a svg path,
.leaf4 a svg path,
.leaf5 a svg path {
    fill: var(--vert-2);
    transition: all .5s ease;
}

.leaf1 a:hover svg path,
.leaf2 a:hover svg path,
.leaf3 a:hover svg path,
.leaf4 a:hover svg path,
.leaf5 a:hover svg path {
    fill: var(--vert-chlorophylle);
}

text.mobile-text {
    font-family: 'Merienda';
    font-size: 2em;
    text-align: start;
    writing-mode: lr-tb;
    direction: ltr;
    text-anchor: start;
    fill: var(--vert-clair);
    stroke-width: 1;
}

.menu .stem.disactive {
    animation: slide-stem-reverse 500ms forwards ease;
}

.menu .stem.active {
    animation: slide-stem 500ms forwards ease;
}

.menu .stem .level1.disactive {
    animation: no-border 1s ease forwards;
}

.menu .stem .level1.active {
    animation: with-border 1s ease forwards;
}

.menu .level1 p.disactive {
    display: none;
}

.menu .level1 p.active {
    display: block;
}

.leaf1 svg,
.leaf2 svg,
.leaf3 svg,
.leaf4 svg {
    clip-path: inset(0 100% 0 0);
}

.leaf1 svg.disactive,
.leaf2 svg.disactive,
.leaf3 svg.disactive,
.leaf4 svg.disactive,
.leaf5 svg.disactive {
    animation: slide-leaf-reverse 1s ease forwards;
}

.leaf1 svg.active,
.leaf2 svg.active,
.leaf3 svg.active,
.leaf4 svg.active,
.leaf5 svg.active {
    animation: slide-leaf 1s ease 1s forwards;
}

@keyframes slide-leaf-reverse {
    from {
        clip-path: inset(0 0% 0 0);
    }

    to {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes slide-leaf {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}


.part1.disactive {
    animation: slide-part1-reverse 100ms forwards ease;
}

.part1.active {
    animation: slide-part1 200ms forwards 500ms ease;
}

.part2.disactive {
    animation: slide-part2-reverse 100ms forwards ease;
}

.part2.active {
    animation: slide-part2 200ms forwards 700ms ease;
}


.part3.disactive {
    animation: slide-part3-reverse 100ms forwards ease;
}

.part3.active {
    animation: slide-part3 200ms forwards 900ms ease;
}

.slideshow-home .arrows {
    position: absolute;
    top: 50vh;
    color: white;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media(max-width: 720px) {
    nav.mobile-menu {
        display: block;
    }

    nav.menu {
        display: none;
    }

    .bullets {
        width: 80%;
    }

    .details {
        margin-bottom: 5vh;
        width: 80%;
        padding: 20px;
    }

    .followus {
        width: 80%;
    }

    .followus .networks {
        padding: 20px;
        margin-right: 20px;
    }

    .contact {
        margin-bottom: 5vh;
        width: 80%;
        padding: 20px;
    }

    .followus .mobile-network {
        display: block;
    }

    .followus .pc-network {
        display: none;
    }

    .peps-section-slideshow {
        width: 80%;
    }

    .commitment-img .row .column ul li {
        padding: 5px;
    }


    @keyframes slide-left {
        0% {
            transform: translateX(0px)
        }

        25% {
            transform: translateX(1200px)
        }

        75% {
            transform: translateX(-1200px)
        }

        100% {
            transform: translateX(0px)
        }
    }



    @keyframes slide-right {
        0% {
            transform: translateX(0px)
        }

        25% {
            transform: translateX(-1200px)
        }

        75% {
            transform: translateX(1200px)
        }

        100% {
            transform: translateX(0px)
        }
    }

    .slideshow .row1 {
        justify-content: center;
        flex-wrap: nowrap;
        animation: slide-left 60s ease infinite;
    }

    .slideshow .row2 {
        justify-content: center;
        animation: slide-right 60s ease infinite;
    }

    .slideshow .row3 {
        justify-content: center;
        animation: slide-left 60s ease infinite;
    }

    .bambou-img {
        width: 90%;
    }

    .bambou-img .row .column.right {
        margin-left: auto;
        margin-bottom: 20px;
    }

    .bambou-img .row .column.left {
        margin-left: auto;
        margin-bottom: 20px;
    }

    .commitment-img {
        width: 90%;
        padding: 20px;
    }

    .commitment-img .row {
        height: auto;
        flex-direction: column;
    }

    .commitment-img .row .column ul {
        margin-left: 40px;
    }

    h1 {
        font-size: 1.5em;
    }

    li.sub-menu {
        margin-bottom: -80px;
    }

    .fixed-header div img {
        height: auto;
    }
    .mobile-menu > ul:nth-child(3) {
        background-color: var(--vert-clair);
        position: relative;
        left: 2vw;
        top: 1vh;
        list-style-type: none;
    }
    .mobile-menu > ul:nth-child(3) > li {
        padding: 10px;
    }
    .sub-menu {
        position: relative;
        left: 2vw;
        list-style-type: none;
    }
    .sub-menu > li {
        padding: 10px;
    }
    .toggle-menu {
        font-weight: 5;
        font-size: 3em;
        color: var(--vert-sombre);
        display: block;
        position: relative;
    }
    #toggle-menu:checked + ul {
        display: block;
    }

    #toggle-menu:not(:checked) + ul {
        display: none;
    }
    .slideshow-home .arrows{ display: none;}
}

path.mobile-path {
    stroke-width: 0.264583;
    stroke: #8f96a3;
    fill: var(--vert-2);
}

text.mobile-text {
    font-family: 'Merienda';
    font-size: 2em;
    text-align: start;
    writing-mode: lr-tb;
    direction: ltr;
    text-anchor: start;
    fill: var(--vert-clair);
    stroke-width: 1;
}

a.mobile-svg-a {
    color: var(--vert-2);
    text-decoration: none;
    transform: scale(.8);
    display: block;  
}
nav.mobile-menu {
    z-index: 3;
    position: fixed;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.content ul {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.6rem;
    margin-left: 20px;
}

.content ul li {
    margin-bottom: 5px;
}


.slideshow-home {
    width: 100vw;
    height: 86vh;
    margin: auto;
}

.slideshow-home .mySlides {
    margin: auto;
    height: 70vh;
    width: auto;
}

.slideshow-home .selections {
    top: 10px;
    height: 14vh;
    margin: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all 500ms ease;
}


.slideshow-home .selections .select .thumbnail {
    max-width: 100px;
    cursor: pointer;
    border-radius: 0px 20px 0px 20px;
    border: 5px solid #ffffff55;
    opacity: .5;
}

.slideshow-home .selections .select .thumbnail:hover {
    opacity: 1;
}

.slideshow-home .selections .select.active .thumbnail {
    opacity: 1;
}


.slideshow-home .arrows .left,
.slideshow-home .arrows .right {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: #00000066;

}

.slideshow-home .arrows .left {
    left: 10px;
}

.slideshow-home .arrows .right {
    right: 10px;
}

.slideshow-home .arrows .left p,
.slideshow-home .arrows .right p {
    font-size: 5em;
}

.slideshow-home .arrows .left:hover,
.slideshow-home .arrows .right:hover {
    cursor: pointer;
}

div.placeholder {
    display: block;
    height: 14vh;
}


@media(max-width: 720px) {
    .persons .row .column {
        width: auto;
    }

    .fixed-header img {
        height: 50px;
        width: 50px;
    }
    .slideshow-home .mySlides {
        margin: auto;
        height: auto;
        width: 100vw;
    }
}

.commitment-img .row ul li,
.content ul li{
  font-family: "Merienda", cursive;
}


.slideshow-shop {
    width: 25vw;
    height: 86vh;
    margin: auto;
}


.slideshow-shop .selections {
    top: 10px;
    height: 5vh;
    margin: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all 500ms ease;
}


.slideshow-shop .selections .select .thumbnail {
    max-width: 100px;
    cursor: pointer;
    border-radius: 0px 20px 0px 20px;
    border: 5px solid #ffffff55;
    opacity: .5;
}

.slideshow-shop .selections .select .thumbnail:hover {
    opacity: 1;
}

.slideshow-shop .selections .select.active .thumbnail {
    opacity: 1;
}


.slideshow-shop .arrows .left,
.slideshow-shop .arrows .right {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: #00000066;

}

.slideshow-shop .arrows .left {
    left: 10px;
}

.slideshow-shop .arrows .right {
    right: 10px;
}

.slideshow-shop .arrows .left p,
.slideshow-shop .arrows .right p {
    font-size: 5em;
}

.slideshow-home .arrows .left:hover,
.slideshow-home .arrows .right:hover {
    cursor: pointer;
}