:root {
    --color-blanc: #E9E9E9;
    --color-noir: #151515;
    --color-summer-green-50: #f2f7f4;
    --color-summer-green-100: #e0ebe3;
    --color-summer-green-200: #c2d8cb;
    --color-summer-green-300: #a4c3b2;
    --color-summer-green-400: #6d9a83;
    --color-summer-green-500: #4c7d66;
    --color-summer-green-600: #39624f;
    --color-summer-green-700: #2d4f40;
    --color-summer-green-800: #263f34;
    --color-summer-green-900: #20342c;
    --color-azure-radiance-50: #eff6ff;
    --color-azure-radiance-100: #dbeafe;
    --color-azure-radiance-200: #c0dcfd;
    --color-azure-radiance-300: #94c6fc;
    --color-azure-radiance-400: #62a7f8;
    --color-azure-radiance-500: #3f86f4;
    --color-azure-radiance-600: #2766e9;
    --color-azure-radiance-700: #1f51d6;
    --color-azure-radiance-800: #2043ad;
    --color-azure-radiance-900: #1f3c89;
    --color-boulder-50: #f6f6f6;
    --color-boulder-100: #e7e7e7;
    --color-boulder-200: #d1d1d1;
    --color-boulder-300: #b0b0b0;
    --color-boulder-400: #888888;
    --color-boulder-500: #757575;
    --color-boulder-600: #5d5d5d;
    --color-boulder-700: #4f4f4f;
    --color-boulder-800: #454545;
    --color-boulder-900: #3d3d3d;
    --color-cosmos-50: #fcf4f5;
    --color-cosmos-100: #fae6e8;
    --color-cosmos-200: #f8d7da;
    --color-cosmos-300: #f0b1b7;
    --color-cosmos-400: #e6838c;
    --color-cosmos-500: #d85b66;
    --color-cosmos-600: #c33f4b;
    --color-cosmos-700: #a4313b;
    --color-cosmos-800: #882c34;
    --color-cosmos-900: #722a31;
    --color-cosmos-950: #3d1216;
    --font1: "Climate Crisis", serif;
    --font2: "Martian Mono", ser if;
    --font3: "Open Sans", serif;
    --cercles-size: clamp(38.75rem, 123.043vw - 60.151rem, 87.5rem);
}
body {
    font-family: var(--font3);
    background-color: var(--color-noir);
    color: var(--color-blanc);
    font-size: clamp(0.8em, 0.9em + 0.1vw, 1em);
    font-weight: 200;
    margin: 0;
    width: 100%;
}
a {
    text-decoration: none;
    color: var(--color-summer-green-300);
}
strong { font-weight: 700 }
img{ 
    width: 100%;
    height: 100%;
}
.texte_center { text-align: center }
.texte_uppercase { text-transform: uppercase; }
button.bouton_action { 
    background-color: transparent;
    margin-top: 25px;
}
.bouton_action {
    display: inline-block;
    overflow: hidden;
    position: relative;
    font-family: var(--font3);
    font-weight: 700;
    color: var(--color-noir);
    padding: 12px;
    align-content: center;
    border: none;
    border-radius: 10px;
    font-size: 0.9em;
    cursor: pointer;
}
.bouton_action::before,
.bouton_action::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s;
}
.bouton_action::before {
    background-color: var(--color-blanc);
    transform: translateY(-100%);
}
.bouton_action::after {
    background-color: var(--color-summer-green-300);
    transform: translateY(0);
}
.bouton_action:hover::after { transform: translateY(100%) }
.bouton_action:hover::before { transform: translateY(0) }
.bouton_action:hover { color: var(--color-noir) }
.bouton_action a, a.bouton_action { 
    font-weight: 500;
    text-decoration: none
}
.bouton_form button {
    background-color: var(--color-summer-green-300);
    color: var(--color-blanc);
    padding: 15px 25px;
    align-content: center;
    border-radius: 8px;
    border: none;
    font-size: clamp(1em, 1.2em, 1.4em);
    cursor: pointer;
}

/* From Uiverse.io by alexmaracinaru */ 
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}
.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: var(--color-summer-green-300);
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.cta span {
    position: relative;
    font-family: var(--font3);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-blanc);
    mix-blend-mode: difference;
}
.cta svg {
    position: relative;
    top: 0;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--color-blanc);
    mix-blend-mode: difference;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}
.cta:hover:before {
    width: 100%;
    background: var(--color-summer-green-300);
}
.cta:hover svg {
    transform: translateX(0);
}
.cta:active {
    transform: scale(0.95);
}

/* TITRE */
h1, .h1, h2, .h2 {
    font-family: var(--font1);
    padding: 0 15px;
    letter-spacing: 5px;
}
h1, .h1 {
    font-size: clamp(2.2rem, 0.0526rem + 5.0526vw, 7.2rem);
    line-height: 1.25em;
    font-weight: 800;
}
h2,.h2 { font-size: clamp(2rem, 0.0526rem + 5.0526vw, 4.6rem); }
h3, .h3 { font-size: clamp(1.8em, 1.25em, 1.4em); }
.titre_police { 
    font-family: var(--font1);
    letter-spacing: 5px;
}
.title-effect { visibility: hidden }

/* COLOR */
.fond_noir {
    background-color: var(--color-noir);
    color: var(--color-blanc);
}
.fond_blanc {
    background-color: var(--color-blanc);
    color: var(--color-noir);
}
.couleur_blanc { color: var(--color-blanc) }
.couleur_noir { color: var(--color-noir) }
.couleur1 { color: var(--color-summer-green-300) }

/* ANNIMATION CLASS */
.reveal_line {
    position: relative;
    height: var(--lineHeight);
    overflow: hidden;
}
.reveal_line .line { 
    position: absolute;
    left: 50%;
    width: 100%;
}


/* ESPACEMENT */
.height_5,.height_10,.height_20,.height_30,.height_40,.height_50,.height_60,.height_80,.height_100 {
    width: 100%
}
.height_5 {
    height: 5px
}
.height_10 {
    height: 10px
}
.height_20 {
    height: 20px
}
.height_30 {
    height: 30px
}
.height_40 {
    height: 40px
}
.height_50 {
    height: 50px
}
.height_60 {
    height: 60px
}
.height_80 {
    height: 80px
}
.height_100 {
    height: 100px
}
.content_center {
    margin: auto;
}
.block {
    width: 90%;
    margin: auto;
    line-height: 1.7em;
}
* {
    box-sizing: border-box;
}
.flash-notice {
    animation: fadeInOut 3s ease-in-out;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    color: var(--color-noir);
    border-radius: 5px;
    z-index: 1000;
    opacity: 0;
}
.flash-success {
    background-color: var(--color-summer-green-300);
    border: 1px solid var(--color-summer-green-500);
}
.flash-danger {
    background-color: var(--color-cosmos-200);
    border: 1px solid var(--color-cosmos-400);
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        transform: translateX(-50%);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
        transform: translateX(-50%);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
        transform: translateX(-50%);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
        transform: translateX(-50%);
    }
}

/* HEADER */
header {
    position: relative;
    top: 0;
    width: 100%;
    max-height: 75px;
    height: 15dvh;
    z-index: 999;
}
header.scrolled {
    background-color: transparent;
    box-shadow: var(--shadow);
    -webkit-box-shadow: var(--shadow);
    -moz-box-shadow: var(--shadow);
}
header .menu_nav .logo span {
    color: var(--color-blanc);
    font-family: var(--font1);
    letter-spacing: 2px;
}
header img { max-width: 120px }
header .menu_nav {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    width: 90%;
    left: 50%;
    transform: translate(-50%);
    padding: 0 2em;
    mix-blend-mode: difference;
}
header svg { 
    stroke: var(--color-blanc);
    width: 40px;
    height: 40px;
    cursor: pointer;
}
#menu_nav { 
    display: flex;
    flex-direction: row;
    align-items: center;
}
#menu_nav ul { display: none }
.language-switcher { 
    font-weight: 700;
    margin-right: 15px;
}
.language-switcher a { color: var(--color-summer-green-300) }
.language-switcher span { color: var(--color-noir) }
.menu_btn { 
    cursor: pointer;
    background-color: var(--color-summer-green-300);
    font-size: clamp(0.9em, 1em, 1.1em);
    border: 1px solid var(--color-summer-green-300);
    padding: 8px 15px;
    border-radius: 25px;
    color: var(--color-blanc);
}
.menu_overlay {
    position: fixed;
    width: 100%;
    background-color: var(--color-blanc);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
#menu_overlay_gauche { display: none }
#menu_overlay_droite {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
#menu_overlay_droite li { 
    position: relative;
    list-style: none;
    padding: 5vh 0;
    border-bottom: 5px solid var(--color-noir);
    overflow: hidden;
} 
#menu_overlay_droite li a {
    position: relative;
    display: inline-block;
    width: 100%;
}
#menu_overlay_droite li a {
    font-family: var(--font1);
    font-size: clamp(3rem, -0.1513rem + 6.1404vw, 5.375rem);
    color: var(--color-noir);
    transition: color .3s  ease-in-out;
}

#menu_overlay_droite li a span { margin: 0 5px; }
#menu_overlay_droite li:nth-child(odd) a { text-align: right }
#menu_overlay_droite li:nth-child(odd) .menu_bg { left: 100% }
#menu_overlay_droite li:nth-child(even) .menu_bg { right: 100% }


#menu_overlay_droite .menu_bg { 
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 5px);
    background-color: var(--color-noir);
    transition: all .3s ease-in;
}

.sous_menu_overlay {
    width: 90%;
    margin: auto;
    position: relative;
    font-size: clamp(0.9em, 1em, 1.1em);
    color: var(--color-summer-green-300);
}
.sous_menu_overlay::after {
    content: '';
    position: absolute;
    left: 6%;
    bottom: 0;
    display: block;
    width: 100%;
    max-width: 73px;
    height: 1%;
    background-color: var(--color-summer-green-300);
}
.menu_lien ul {
    margin-top: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 350px;
    font-size: clamp(1em, 1.3em, 1.5em);
}
.menu_lien li {
    min-width: 125px;
    margin: 10px 0;
}
.lien_simple {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    overflow: hidden;
}
.lien_simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-summer-green-300);
    transition: width 0.3s ease;
}
.lien_simple:hover::after, .clicked::after  {
    width: 100%;
}
.lien_simple2 {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    overflow: hidden;
}
.lien_simple2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: 5px;
    background-color: var(--color-summer-green-300);
    transition: left 0.3s ease;
}
.lien_simple2:hover::after, .clicked::after  {
    left: 100%;
}
.menu_lien li a {
    font-size: 1.25em;
    color: var(--color-noir);
    text-decoration: none;
    text-transform: capitalize;
}

#diapo_project_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#diapo_project_wrapper .cercles_wrapper {
    position: absolute;
    top: calc(50svh - 75px);
    left: 50%;
    transform: translate(-50%, -50%);
}

/* INTRO */
#intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin-top: -50px;
    background-color: var(--color-summer-green-300);
    z-index: 99999;
}
#intro span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font1);
    font-size: clamp(2em, 5em, 6em);
    letter-spacing: 7px;
    color: var(--color-noir);
    text-transform: uppercase;
}
#intro .cercles_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#intro .cercles_wrapper .cercle {border: 2px solid var(--color-noir) }

/* DIAPO */
#diapo_wrapper {
    position: relative;
    width: 100%;
    height: calc(75vh - 51px);
}
.diapo_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1600px;
}
.diapo_item h1  {
    padding: 0;
    margin: 0;
}
.diapo_item p {
    font-family: var(--font3);
    font-size: 1.25em;
}
#diapo .compagny {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    font-family: var(--font2);
    font-size: .9em;
}

#project_wrapper {
    padding-top: 50px;
    h2 {
        text-align: center;
    }
    .projects {
        width: 90%;
        margin: auto;
    }
    .projects ul {
        list-style: none;
        padding: 0;
    }
    .projects ul li {
        position: relative;
        clip-path: inset(-100px 0 0 0);
        border-bottom: 1px solid var(--color-blanc);
    }
    .projects ul li a {
        display: inline-block;
        width: 100%;
        padding: 15px 0;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--color-blanc);
        mix-blend-mode: difference;
    }
    .projects ul li .name { 
        float: left;
        font-size: clamp(1.5em, 3vw, 4.5em);
    }
    .projects ul li .years { 
        float: right;
        font-size: clamp(1.25em, 2vw, 4em);
    }
    .projects ul li .background {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 100%;
        background-color: var(--color-blanc);
        z-index: -1;
    }
    .projects .picture { display: none }
    .projects ul li a span { padding: 0 10px; }
}


/* CERCLES */
.cercle {
    position: absolute;
    width: var(--cercles-size);
    height: calc(var(--cercles-size) * .5);
    border: 2px solid var(--color-summer-green-300);
    border-radius: 50%;
}
.cercle:nth-child(1) { rotate: -11deg }
.cercle:nth-child(2) { rotate: -144deg }
.cercle:nth-child(3) { rotate: 15deg }

#services_timeline_wrapper {
    position: relative;
    z-index: 10;
    width: 0;
    border-radius: 25px;
    margin: auto;
}


/* SERVICES */
#services_wrapper { 
    padding: 75px 0;
    overflow: hidden;
}
#services_titre { 
    width: 90%;
    text-align: center;
    margin: auto;
    opacity: 0;
}
#services_titre h2{ margin: 0 }
#services_blocks { margin-top: 50px }
#services_blocks ul { 
    width: 90%;
    margin: auto;
    padding: 0
}
.service_block {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-noir);
    color: var(--color-summer-green-300);
    border-radius: 25px;
    list-style: none;
    padding: 25px 0;
    margin: 12px auto;
    box-shadow: 5px 10px 25px 0px rgba(0, 0, 0, .45);
}
.service_icon {
    width: calc(53px + (35px/2));
    height: 53px;
    margin: auto;
}
.service_icon_cercle {
    position: relative;
    width: 53px;
    height: 53px;
    background-color: var(--color-summer-green-300);
    border: none;
    border-radius: 50%;
}
.service_icon svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    fill: var(--color-summer-green-300);
    mix-blend-mode: difference;
}
.service_block h3, .service_block p {
    max-width: calc(100% - 50px);
    margin: auto;
}
.service_block h3 {
    font-size: 1.3rem;
    padding: 0 15px 0 0 ;
}
.service_block p{
    font-family: var(--font3);
    color: var(--color-blanc);
    font-size: .94rem;
    margin-top: 8px;
    letter-spacing: 1px;
}

#faq_contact_wrapper  { 
    position: relative;
    width: 100%;
    overflow: hidden;
}
#faq_contact_wrapper .cercles_wrapper {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translate(-50%, 0%);
}

/* FAQ */
#faq {
    width: 90%;
    margin: auto;
}
.faq_titre { 
    width: 90%;
    margin: 50px auto; 
}
.faq_titre h2 { 
    margin: 0;
    padding: 0;
}
.faq-item {
    position: relative;
    overflow: hidden;
}
.faq-item:hover .faq-bg, .faq-item .faq-question.open .faq-bg { transform: translateY(0) }
.faq-item:not(:hover) .faq-bg { transform: translateY(100%) }
.faq-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blanc);
    transition: all .3s ease;
}
.faq-item::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    opacity: .5;
    background-color: var(--color-blanc);
}
.faq-question {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-blanc);
    transition: padding 0.2s ease;
    mix-blend-mode: difference;
}
.faq-question.open { padding: 30px 0 }
.faq-question h3 {
    font-family: var(--font2);
    letter-spacing: 1px;
    font-size: 1.2em;
    margin: 0;
    font-weight: 300;
}
.faq-question.open { padding: 20px 0 0 }
.faq-answer {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    color: var(--color-blanc);
    font-size: 1.1em;
    line-height: 1.6;
    mix-blend-mode: difference;
}
.faq-answer p { width: 90% }
.faq-answer.open {
    max-height: max-content;
    padding: 7px 10px;
}
.arrow svg {transition: transform 0.3s ease;}
.arrow svg path{ stroke: var(--color-blanc) }

.faq-item .open .arrow svg { transform: rotate(90deg)}


/* CONTACT BANNER  */
#contact_banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 25px;
    height: 250px;
}

#contact_banner p { font-size: .8rem }
#contact_banner p {
    width: 85%;
    max-width: 800px;
    margin: auto;
}
#contact_banner #contact_bouton {
    margin: 15px auto;
    width: fit-content;
}
#contact_banner #contact_bouton a {
    text-transform: uppercase;
    font-weight: 700;
}

/* FOOTER */
footer {
    background-color: transparent;
    margin-top: 50px;
}
#footer_svg svg {
    fill: var(--color-summer-green-300);
    width: 40px;
    height: 40px;
    margin: 0 20px;
}
#footer_liens {
    margin: 25px 0;
}
footer ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    align-content: center;
}
footer .menu_toggle {
    display: block;
}
footer ul li {
    display: inline-block;
    margin: auto 25px auto 0;
}
footer li a { color: var(--color-blanc) }
#footer_text span {
    font-size: clamp(1rem, -0.6316rem + 8.7018vw, 7.2rem);
    margin-bottom: 0;
    transition: font-size .1s;
}
.cercles_wrapper {
    width: var(--cercles-size);
    height: calc(var(--cercles-size) * .5);
    z-index: -1;
    opacity: .5;
}

@media all and (min-width: 600px) {
    body { font-size: .9em }
    /*header */
    #menu_overlay_droite li a span { margin: 0 25px; }

    /* CONTACT BANNER  */
    #contact_banner {
        margin-top: 75px;
        height: 350px;
    }
    #contact_banner p { font-size: 1.1rem }
    #contact_banner a { font-size: 1.2rem }

    /* FOOTER */
    #footer_svg svg {
        --size: 40px;
        width: var(--size);
        height: var(--size);
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1em;
    }
}

@media all and (min-width: 810px) {
    body { font-size: 1em }
    .bouton_action { font-size: 1em }
    a.link_hover {
        position: relative;
        display: inline-block;
        color: var(--color-blanc);
    }
    a.link_hover:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 0%;
        margin-top: 5px;
        color: transparent;
        background: var(--color-blanc);
        height: 1px;
        transition: all .5s;
    }
    a.link_hover:hover:after { width: 100% }
    a.link_hover:not(:hover):after { 
        width: 0%;
        margin-left: auto;
    }
    

    /* SERVICES */
    #services_blocks { margin-top: 100px }
    #services_blocks ul { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        margin: 0 auto;
        max-width: 1300px;
        grid-auto-flow: column;
    }
    .service_block {
        padding: 25px 0;
        transition: all .3s ease;
    }
    #services_blocks ul li:nth-child(1) { grid-area: 1 / 3 / 2 / 4; }
    #services_blocks ul li:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
    #services_blocks ul li:nth-child(3) { grid-area: 1 / 1 / 2 / 2; }
    #services_blocks ul li:nth-child(4) { grid-area: 2 / 1 / 3 / 2; }
    #services_blocks ul li:nth-child(5) { grid-area: 2 / 2 / 3 / 3; }
    #services_blocks ul li:nth-child(6) { grid-area: 2 / 3 / 3 / 4; }
    .service_block:hover { scale: 1.05!important }
    .service_block.others-dimmed {
        opacity: 0.7!important;
        scale: 0.95!important;
    }
    .service_icon svg { transition: transform .3s }
    .service_block:hover svg {
        transform: translate(0, -50%);
    }
    .service_block:not(:hover) svg {
        transform: translate(50%, -50%);
    }
    .service_icon {
        width: calc(73px + (55px/2));
        height: 73px;
    }
    .service_icon_cercle {
        width: 73px;
        height: 73px;
    }
    .service_block h3 { font-size: 1.7em }


    /* FAQ */
    #faq {
        width: 80%;
        margin: 0 20px;
    }
    .faq_titre { margin: 50px; }
}

@media all and (min-width: 980px) {
    .block { line-height: 1.5em }
    .content_center {
        width: 980px;
        margin: auto;
        overflow: hidden;
    }
    #diapo_project_wrapper {
        position: relative;
        width: 100%;
    }
    /* HEADER */
    #menu_overlay_droite li { padding: 20px 0 } 
    #menu_overlay_droite li:nth-child(odd):hover .menu_bg {  left: 0 }
    #menu_overlay_droite li:nth-child(even):hover .menu_bg { right: 0 }
    #menu_overlay_droite li:hover a{ color: var(--color-blanc) }
    /* DIAPO */
    #diapo_wrapper {
        position: relative;
        width: 100%;
        height: calc(100vh - 51px);
    }
    .diapo_item {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .diapo_item p { font-size: 1.25em }
    #project_wrapper {
        .projects .picture {
            display: block;
            position: absolute;
            left: 50%;
            transform: translate(-50%, -50%);
            aspect-ratio: 16/9;
            rotate: -11deg;
            width: 25%;
            margin: auto;
            pointer-events: none;
        }
        .projects .picture img {
            border-radius: 20px;
        }
    }

    /* SERVICES */
    .service_block { 
        padding: 25px 0 0 0;
    }
    #faq_contact_wrapper { overflow: visible; }
    #faq_contact_wrapper .cercles_wrapper {
        position: absolute;
        top: 21%;
        left: unset;
        right: 5%;
        transform: translateY(-50%);
    }

    /* FAQ */
    .faq-item:hover .faq-question { padding: 30px 0 }
    
    /* CONTACT BANNER  */
    #contact_wrapper { overflow: visible; }

    /* FOOTER */
    footer ul { text-align: left }
}
@media all and (min-width: 1200px) {
    
    #project { width: 80% }
    #services_blocks ul { justify-content: flex-start }
}
@media all and (min-width: 1400px) {
    .content_center { width: 1300px }
}
@media all and (min-width: 1500px) {
    body { font-size: 1.2em }
    .content_center { width: 1400px }
    
    #text_diapo {
        bottom: 7%;
    }
}
