/**************************/
/**************************/
/******    Global    ******/
/**************************/
/**************************/

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    font-size: 20px;
}

body {
    margin: 0 !important;
    cursor: none;
}

.wrap {
    background-color: #fff;
}

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::marker {
    display: none !important;
    color: transparent;
}

ul {
    list-style-type: none;
}

.droite {
    text-align: right;
    float: right;
}

.blanc {
    color: #fff;
}

.noir {
    color: #000;
}

.vert {
    color: #A0F80D;
}

::selection {
    color: #000;
    background: #A0F80D;
    mix-blend-mode: difference;
}

.top, .top-real {
    min-height: 70vh;
    display: flex;
    padding: 8em 5em;
}

.top {
    flex-direction: column;
}

.top-real {
    align-items: center;
    justify-content: flex-end;
}

.centre {
    display: block;
    margin: auto;
    text-align: center;
}


/**** Curseur ****/

.cursor {
    box-sizing: content-box;
    z-index: 1000;
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border-radius: 15% 85% 15% 85% / 85% 15% 85% 15%;
    border: 0.1em solid #fff;
    pointer-events: none;
    transition: transform 0.4s ease-in-out;
    mix-blend-mode: difference;
    background: transparent;
}

.hovered {
    background-size: cover;
    border: 0.05em solid #fff;
    border-radius: 15% 85% 15% 85% / 85% 15% 85% 15%;
    transform: scale(8);
    animation: borderAnim 2s ease-in-out infinite alternate;
}

@keyframes borderAnim {
    0% {
        border-radius: 15% 85% 15% 85% / 85% 15% 85% 15%;
    }

    100% {
        border-radius: 85% 15% 85% 15% / 15% 85% 15% 85%;
    }
}















/************************/
/************************/
/******   Header   ******/
/************************/
/************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em;
    padding-top: 1em;
    z-index: 1000;
    mix-blend-mode: difference;
}

header.active {
    mix-blend-mode: normal;
}

header img {
    height: 1.5em;
    width: auto;
}

.logo-header {
    mix-blend-mode: difference;
}

header a {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle.active {
    mix-blend-mode: difference;
}

.bar {
    width: 1.75em;
    height: 0.15em;
    background-color: #fff;
    margin: 0.2em 0;
}

.menu-toggle:hover .bar {
    background-color: #A0F80D;
}

.menu-toggle:hover {
    mix-blend-mode: normal;
}

.bar.active {
    background: #000;
}

.menu-list {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 1em;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 5s;
}

.menu-list.active {
    display: flex;
    height: 100vh;
    z-index: -1;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: 5s;
}

.menu-list li a {
    text-decoration: none;
    color: #000;
    font-size: 2em;
    transition: .3s;
}

.menu-list li a:hover {
    color: #A0F80D;
    transition: .3s;
}

.menu-toggle {
    display: flex;
}

.menu-list li {
    margin: 0.5em 1em 0.5em 0em;
}















/************************/
/************************/
/******   Textes   ******/
/************************/
/************************/



/**** Accueil H1 ****/

h1 {
    position: relative;
    display: block;
    font-family: 'Thunder-ExtraBoldLC';
    font-size: 8em;
    text-transform: uppercase;
    color: #000;
    z-index: 1;
    margin: 0;
    padding: 0;
}

h1.blanc {
    position: relative;
    display: block;
    font-family: 'Thunder-ExtraBoldLC';
    font-size: 8em;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.un, .deux {
    position: relative;
    display: block;
    width: fit-content;
}

.un::before, .deux::before {
    content: " ";
    position: absolute;
    display: block;
    bottom: 20px;
    left: -10px;
    height: 40px;
    width: calc(100% + 20px);
    z-index: -1;
    background: #A0F80D;
}


@media screen and (min-width: 900px) and (max-width: 1300px) {
 h1 {
        font-size: 6.6em;
    }

    h1 .un::before, h1 .deux::before {
        bottom: 10px;
        left: -10px;
        height: 40px;
    }
}

@media screen and (min-width: 716px) and (max-width: 900px) {
    h1 {
        font-size: 5.3em;
    }

    h1 .un::before, h1 .deux::before {
        bottom: 10px;
        left: -10px;
        height: 30px;
    }
}

@media screen and (min-width: 610px) and (max-width: 716px) {
    h1.blanc {
        font-size: 5em;
    }

    h1 .un::before, h1 .deux::before {
        bottom: 10px;
        left: -10px;
        height: 30px;
    }
}

@media screen and (min-width: 464px) and (max-width: 610px) {
    h1 {
        font-size: 5em;
    }

    h1.blanc {
        font-size: 3.5em;
    }

    h1.blanc span.un::before {
        bottom: 10px;
        left: -10px;
        height: 20px;
    }
}

@media screen and (min-width: 1px) and (max-width: 464px) {
    h1 {
        font-size: 4em;
    }

    h1.blanc {
        font-size: 3em;
    }

    h1.blanc span.un::before {
        bottom: 10px;
        left: -10px;
        height: 20px;
    }
}



/**** H2 ****/

.titre-petit h2 {
    text-transform: uppercase;
    font-size: 1.5em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
}

.titre-grand h2 {
    font-family: 'Thunder-ExtraBoldLC';
    font-size: 7.5em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    display: block;
    width: fit-content;
}

.titre-grand h2::before {
    content: " ";
    position: absolute;
    display: block;
    bottom: 20px;
    left: -10px;
    height: 40px;
    width: calc(100% + 20px);
    z-index: -1;
    background: #A0F80D;
}

@media screen and (min-width: 1100px) and (max-width: 1300px) {
    .titre-grand h2 {
        font-size: 7em;
    }
}

@media screen and (min-width: 716px) and (max-width: 1100px) {
    .titre-grand h2 {
        font-size: 5.7em;
    }
}

@media screen and (min-width: 610px) and (max-width: 716px) {
    .titre-grand h2 {
        font-size: 5em;
    }
}

@media screen and (min-width: 557px) and (max-width: 610px) {
    .titre-grand h2 {
        font-size: 4.5em;
    }
}

@media screen and (min-width: 504px) and (max-width: 557px) {
    .titre-grand h2 {
        font-size: 4em;
    }
}

@media screen and (min-width: 464px) and (max-width: 504px) {
    .titre-grand h2 {
        font-size: 3.5em;
    }
}

@media screen and (min-width: 1px) and (max-width: 464px) {
    .titre-grand h2 {
        font-size: 3em;
    }
}



/**** P ****/

.texte-blanc p {
    color: #fff;
    font-size: 1.3em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
}

.texte-noir p {
    color: #000;
    font-size: 1.3em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
}

form.wpcf7-form.init p,
form.wpcf7-form.sent p,
form.wpcf7-form.invalid p {
    font-size: 1.3em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    font-size: 0.75em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    color: #000;
}

.wpcf7-not-valid-tip {
    font-size: 0.75em;
    position: relative;
    top: -0.8em;
    left: 0;
    width: fit-content;
}

span.wpcf7-list-item-label {
    font-size: 0.8em;
}

.wpcf7-list-item {
    margin: 0;
}

.acceptance {
    margin-bottom: 2em;
}

/**** Boutons ****/

.bouton-vert {
    min-width: 15em;
    width: fit-content;
    padding: 1em;
    border: #A0F80D 0.2em solid;
    border-radius: 2.5em;
    transition: .5s;
}

.bouton-vert p, input.wpcf7-form-control.wpcf7-submit.has-spinner p {
    text-align: center;
    margin: 0;
}

.bouton-vert:hover, input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: #A0F80D;
    transition: .5s;

}

.bouton-vert a, input.wpcf7-form-control.wpcf7-submit.has-spinner a {
    color: #A0F80D!important;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    padding: 1.25em 3em;
    transition: .5s;
}

.bouton-vert:hover a, input.wpcf7-form-control.wpcf7-submit.has-spinner:hover a {
    color: #000!important;
    transition: .5s;
}

.bouton-full {
    min-width: 15em;
    width: fit-content;
    padding: 1em;
    border: #A0F80D 0.2em solid;
    border-radius: 50px;
    transition: .5s;
    background-color: #A0F80D;
}

.bouton-full:hover {
    background-color: #fff;
    transition: .5s;
}

.bouton-full a {
    color: #000;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    padding: 1.25em 3em;
    transition: .5s;
}

.bouton-full:hover a {
    color: #000;
    transition: .5s;
}

















/*********************/
/*********************/
/******   404   ******/
/*********************/
/*********************/

.quatre-cent-quatre {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.quatre-cent-quatre p {
    margin-bottom: 5vh;
}


















/*************************/
/*************************/
/******   Accueil   ******/
/*************************/
/*************************/



/******   Top   ******/

.accueil-top {
    display: flex;
    padding: 8em 5em;
    align-items: flex-end;
    background-color: #fff;
}

.accueil-top img {
    height: auto;
    width: 35vw;
    position: relative;
    left: -7vw;
    z-index: 0;
}



/******   Nous / Réalisations   ******/

.nous-realisations, .coulisses {
    background: #000;
    padding: 8em 5em;
    border-radius: 100px 100px 0 0;
}





/**** Nous ****/

.nous {
    margin-bottom: 8em;
}

.nous .texte-blanc p {
    margin: 1.5em 0 2em 0;
}



/**** Réalisations ****/

.realisations {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 8em 0;
}

.separateur {
    display: block;
    position: relative;
    height: 0.1em;
    width: 70vw;
    background-color: #A0F80D;
}

.projet-seul {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1em;
    align-self: flex-start;
}

.projet-seul a.nom-projet, .post-seul a.nom-post {
    color: #fff;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    font-size: 1.25em;
    text-decoration: none;
    text-transform: uppercase;
}

.projet-seul a.photo-projet, .post-seul a.photo-post {
    position: relative;
    top: -80vh;
    left: 0;
    height: 80vh;
    margin-bottom: -80vh;
}

.background-projet {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 80vh;
}



/******   Nos spécialités   ******/

.nos-domaines {
    background: #fff;
    padding: 8em 5em;
    border-radius: 5em 5em 0 0;
    margin-top: -8em;
}

.differents-domaines {
    padding: 3em 0 5em;
}

.differents-domaines ul {
    list-style-type: none;
}

.differents-domaines ul li {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 2.5em;
    text-transform: uppercase;
    color: #000;
    padding: 0.6em 0;
    display: block;
    position: relative;
}

.differents-domaines ul li::before {
    content: " ";
    position: relative;
    display: block;
    width: calc(100vw - 100px);
    height: 2px;
    float: left;
    right: 0;
    bottom: -80px;
    background: #000;
}

.differents-domaines ul li:last-of-type {
    padding: 0.6em 0 0 0;
}




/* Texte défilant */

.messagedefilant {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    width: 100%;
    height: 7em;
    background: #A0F80D;
    z-index: 99;
    overflow-x: hidden;
}

.messagedefilant div {
    position: absolute;
    min-width: 100%;
}

.messagedefilant div span,
.messagedefilant div:after {
    position: relative;
    display: inline-block;
    font-size: 3em;
    white-space: nowrap;
    top: 0;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.messagedefilant div span {
    animation: defilement 10s infinite linear;
}

.messagedefilant div:after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    animation: defilement2 10s infinite linear;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
    .messagedefilant {
        height: 6em;
    }

    .messagedefilant div span,
    .messagedefilant div:after {
        font-size: 2.5em;
    }
}

@media screen and (min-width: 550px) and (max-width: 769px) {
    .messagedefilant {
        height: 4.5em;
    }

    .messagedefilant div span,
    .messagedefilant div:after {
        font-size: 2em;
    }
}

@media screen and (min-width: 1px) and (max-width: 550px) {
    .messagedefilant {
        height: 3em;
    }

    .messagedefilant div span,
    .messagedefilant div:after {
        font-size: 1.1em;
    }
}

@keyframes defilement {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -100%;
    }
}

@keyframes defilement2 {
    0% {
        margin-left: 100%;
    }

    100% {
        margin-left: 0%;
    }
}







/**************************/
/**************************/
/******   Articles   ******/
/**************************/
/**************************/

.page-article {
    padding-bottom: 16em;
}

.articles {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-around;

}

.article-seul {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1em;
    align-self: flex-start;
}

.article-seul a.nom-article {
    color: #000000;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    font-size: 1.25em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-seul a.photo-article {
    position: relative;
    top: -60vh;
    left: 0;
    height: 60vh;
    margin-bottom: -60vh;
}

.background-articles {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 60vh;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
    .articles {
        margin-bottom: 2em;
    }
    .nous-realisations, .articles {
        padding: 8em 4em;
    }
}


@media screen and (min-width: 1px) and (max-width: 500px) {
    .article-seul a.nom-article {
        font-size: 0.8em;
    }
    .projets {
        margin: 1.5em 0;
    }
}

/**********************************/
/**********************************/
/******   Nos réalisations   ******/
/**********************************/
/**********************************/



.projets-pour-sticky, .posts-pour-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 7em;
    width: 25vw;
    align-self: flex-start;
}

.liste-projets, .liste-posts {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 5em 13em 5em;
    overflow: visible;
    height: auto;
    min-height: 100vh;
}

.projets-liste {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 75vw;
}

.projets {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 4em 0;
}

.liste-projets .projets-liste, .liste-posts .posts-liste {
    justify-content: space-between;
}

.liste-projets .projet-seul, .liste-posts .post-seul {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1em;
    align-self: flex-start;
}

.liste-projets .projet-seul a.photo-projet, .liste-posts .post-seul a.photo-post {
    position: relative;
    top: -60vh;
    left: 0;
    height: 60vh;
    margin-bottom: -60vh;
}

.liste-projets .background-projet, .liste-posts .background-projet {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 60vh;
}



/* Responsive */

@media screen and (min-width: 1px) and (max-width: 1250px) {
    .liste-projets, .liste-posts {
        display: block;
        width: 100vw;
    }

    .projets-pour-sticky, .posts-pour-sticky {
        display: block;
        width: calc(100% + 2px);
        position: sticky !important;
        top: 0;
        padding: 5em 0 1em 0;
        z-index: 3;
        background-color: #000;
    }

    .type-projet, .type-posts {
        width: 100%;
        position: sticky;
        top: 5em;
        padding: 0;
    }

    .projets-liste, .posts-liste {
        width: 100%;
    }
}

.type-projet li a, .type-posts li a {
    color: #fff;
    text-decoration: none;
    font-family: 'acumin-pro', sans-serif;
    text-transform: uppercase;
    font-size: 1em;
}

.type-projet li a:hover,
.type-projet li a:active, 
.type-posts li a:hover, 
.type-posts li a:active {
    color: #A0F80D;
}

.fond-noir {
    display: block;
    background-color: #000;
}

.fond-blanc {
    display: block;
    background-color: #fff;
}

























/******************************************/
/******************************************/
/******   Page projets individuels   ******/
/******************************************/
/******************************************/



.titre-grand.centrer {
    display: flex;
    position: relative;
    justify-content: center;
}

.resume-projet {
    margin: 4em 0;
}

.projet-simple img {
    width: 100%;
    aspect-ratio: 16/9;
}


.coulisses p {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 1.25em;
}

.galerie {
    position: relative;
    box-shadow:
        0 0 10px #0002,
        0 20px 40px -20px #0004;
    width: 100%;
    height: 140vh;
    background: #000;
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    gap: 20px;
    margin: 30px 0;
}

.galerie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes moveHorizontal {
    to {
        object-position: 100% 0;
    }
}

@keyframes moveVertical {
    to {
        object-position: 0 100%;
    }
}

@keyframes shrinkVertical {
    to {
        height: 0;
    }
}

@keyframes shrinkHorizontal {
    to {
        width: 0;
    }
}

@keyframes growHorizontal {
    to {
        width: 100%;
    }
}

@keyframes growHorizontal2 {
    to {
        width: 70%;
    }
}

@keyframes growVertical {
    to {
        height: 100%;
    }
}

@keyframes growAll {
    to {
        width: 100%;
        height: 100%;
    }
}

.galerie:hover img:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    animation:
        moveHorizontal 8.5s 0.5s 1,
        shrinkHorizontal 2s 9s ease-in 1;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    animation:
        shrinkHorizontal 2s 11s 1;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / 3;
    align-self: end;
    object-position: 0 0;
    animation:
        moveVertical 5s 1s 1,
        shrinkVertical 3s 5s 1;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 1;
    width: 0;
    justify-self: center;
    align-self: start;
    animation:
        growHorizontal 2.25s 11s 1,
        moveHorizontal 4s 14s 1,
        shrinkVertical 2s 18s 1;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
    width: 0;
    justify-self: start;
    align-self: end;
    animation:
        growHorizontal 2.5s 7.5s 1,
        moveVertical 4s 12.5s 1,
        shrinkHorizontal 2s 17s 1;
    ;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
    width: 0;
    justify-self: end;
    align-self: end;
    animation:
        growHorizontal 2s 8s 1,
        shrinkHorizontal 2s 17s 1;
    animation-fill-mode: forwards;
}

.galerie:hover img:nth-child(7) {
    grid-column: 1/3;
    grid-row: 1/3;
    width: 0;
    justify-self: end;
    align-self: end;
    object-position: 0 0;
    animation:
        growHorizontal 2s 20s 1,
        moveHorizontal 16s 21.5s 1;
    animation-fill-mode: forwards;
}

.image-texte-dessus p {
    width: 70%;
}

.image-texte-dessous {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 6.5em;
    margin-bottom: 8em;
}

.image-texte-dessous img {
    width: 45%;
    height: auto;
}

.image-texte-dessous p {
    padding: 0 0 0 5em;
}

.autres-projets {
    background: #fff;
    padding: 8em 5em;
    border-radius: 100px 100px 0 0;
    margin-top: -8em;
}

.projets-aleatoires {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.5em;
}

.projet-aleatoire {
    width: calc(33% - 10px);
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1em;
}

.projet-aleatoire a.nom-projet-aleatoire {
    color: #000;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    font-size: 1em;
    text-decoration: none;
    text-transform: uppercase;
}

.projet-aleatoire a.photo-projet {
    position: relative;
    top: -70vh;
    left: 0;
    height: 70vh;
    margin-bottom: -70vh;
}

.background-projet-aleatoire {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 70vh;
}





















/******************************/
/******************************/
/******   Page contact   ******/
/******************************/
/******************************/

.texte-sous-h1 {
    margin-top: 2em;
}

div#wpcf7-f118-o1 {
    background: #fff;
    padding: 8em 5em;
    border-radius: 100px 100px 0 0;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    height: 2em;
    margin-bottom: 1em;
    padding: 1em;
    border: none;
    border-bottom: 0.05em solid black;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 20px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 4em;
    margin-bottom: 1em;
    padding: 1em;
    border: none;
    border-bottom: 0.05em solid black;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 20px;
}


/* bouton envoyer */
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    min-width: 15em;
    width: fit-content;
    padding: 1em;
    color: #000;
    border: #A0F80D 0.2em solid;
    border-radius: 2.5em;
    transition: .5s;
    background: #fff;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    transition: .5s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner p {
    text-align: center;
    margin: 0;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: #A0F80D;
    transition: .5s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner a {
    color: #A0F80D;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    padding: 1.25em 3em;
    transition: .5s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover a {
    color: #000;
    transition: .5s;
}

.wpcf7-spinner {
    display: none;
}

/* fin bouton envoyer */














/**************************************/
/**************************************/
/******   Page Nos spécialités   ******/
/**************************************/
/**************************************/

.quatre-vingt {
    display: block;
    position: relative;
    width: 80%;
}














/************************/
/************************/
/******   Footer   ******/
/************************/
/************************/

footer {
    background: #000;
    display: flex;
    flex-direction: column;
}

.infos-footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5em 5em 8em 5em;
    border-bottom: 0.1em solid #A0F80D;
}

footer .infos-footer .colonne {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.menu-footer-container {
    display: flex;
    flex-direction: column;
}

footer h2 {
    text-transform: uppercase;
    font-size: 1.3em;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5em;
}

footer .menu {
    align-items: flex-start;
}

footer .colonne a {
    color: #fff;
    text-decoration: none;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 100;
    font-size: 1em;
    margin-bottom: 1em;
    transition: .3s
}

footer .colonne a:hover {
    color: #A0F80D;
    transition: .3s;
}


.nous-contacter-footer {
    display: flex;
    flex-direction: column;
    padding: 5em;
}

.gros-bouton-contact {
    font-family: 'Acumin-pro', sans-serif;
    font-size: 4em;
}

.gros-bouton-contact a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    text-align: right;
    padding-right: 1.5em;
    transition: .3s
}


.gros-bouton-contact a::before {
    content: url("data:image/svg+xml,%3Csvg width='74' height='74' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E");
    position: absolute;
    display: block;
    top: 0.1em;
    right: 0;
    height: 1.2em;
    width: 1.2em;
    transition: .3s;
}

.gros-bouton-contact a:hover {
    color: #A0F80D;
    transition: .3s;
}

.gros-bouton-contact a:hover::before {
    content: url("data:image/svg+xml,%3Csvg width='74' height='74' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
    transition: .3s;
}



















/****************************/
/****************************/
/******   Responsive   ******/
/****************************/
/****************************/




@media screen and (min-width: 1px) and (max-width: 1000px) {
    .projet-seul.realisation {
        width: 100% !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
    /*************************/
    /*************************/
    /******   Contact   ******/
    /*************************/
    /*************************/

    .gros-bouton-contact {
        font-size: 2.5em;
    }

    .gros-bouton-contact a:hover::before {
        content: url(data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E) !important;
    }

    .gros-bouton-contact a::before {
        content: url(data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E%0A) !important;
    }


    /*************************/
    /*************************/
    /******   Accueil   ******/
    /*************************/
    /*************************/

    .accueil-top {
        padding: 9em 4em 7em 4em;
    }

    .nous-realisations, .coulisses {
        padding: 8em 4em;
    }

    .nous {
        margin-bottom: 8em;
    }

    .realisations {
        margin: 8em 0 8em;
    }

    .nos-domaines {
        padding: 8em 4em;
    }

    .differents-domaines {
        padding: 5em 0;
    }

    .differents-domaines ul li:first-of-type {
        padding-top: 0;
    }

    .differents-domaines ul li::before {
        bottom: -90px;
    }

    .projets {
        margin-bottom: 2em;
    }

    h2,
    .titre-petit h2 {
        font-size: 1.25em;
    }

    .titre-grand h2::before {
        bottom: 10px;
        left: -10px;
        height: 30px;
    }

    .accueil-top h1 span.un::before,
    .accueil-top h1 span.deux::before {
        bottom: 10px;
        left: -10px;
        height: 30px;
    }

    .projet-seul {
        width: 100%;
    }

    .background-projet {
        height: 70vh;
    }

    .projet-seul a.photo-projet {
        height: 70vh;
        margin-bottom: -70vh;
        top: -70vh;
    }

    .differents-domaines ul li::before {
        width: calc(100vw - 80px);
    }

    /**********************************/
    /**********************************/
    /******   Nos réalisations   ******/
    /**********************************/
    /**********************************/

    .top, .top-real {
        min-height: 60vh;
        padding: 5em 2em;
    }

    .liste-projets {
        padding-bottom: 8em;
    }

    /************************/
    /************************/
    /******   Footer   ******/
    /************************/
    /************************/

    footer h2 {
        font-size: 1.25em;
    }

    footer .infos-footer .colonne {
        width: 33%;
        padding-right: 20px;
    }

    .infos-footer {
        padding: 100px;
    }

}

@media screen and (min-width: 1px) and (max-width: 900px) {
    .accueil-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .accueil-top img {
        height: auto;
        width: 100%;
        position: relative;
        left: 0;
        z-index: 0;
        margin-top: 60px;
    }
}

@media screen and (min-width: 1px) and (max-width: 768px) {

    .accueil-top {
        padding: 8em 2em 6em;
    }

    .nous-realisations,
    .nos-domaines,
    div#wpcf7-f118-o1,
    .coulisses,
    .autres-projets,
    .articles {
        padding: 5em 2em;
        border-radius: 50px 50px 0 0;
    }

    .nous {
        margin-bottom: 5em;
    }

    .nous .texte-blanc p {
        width: 100%;
    }

    .realisations {
        margin-top: 5em;
    }

    .galerie {
        height: 60vh;
        gap: 10px;
    }

    .titre-petit h2 {
        font-size: 1.2em;
    }

    .texte-blanc p,
    .texte-noir p {
        font-size: 1em;
    }

    .image-texte-dessous {
        margin-top: 3em;
        margin-bottom: 8em;
        flex-direction: column;
    }

    .image-texte-dessous img {
        width: 100%;
        height: auto;
        margin-bottom: 1.5em;
    }

    .image-texte-dessus p,
    .image-texte-dessous p {
        width: 100%;
        font-size: 0.9em;
        padding: 0;
    }

    .bouton-vert,
    .bouton-full {
        min-width: 0;
        width: fit-content;
        padding: 15px 10px;
    }

    input.wpcf7-form-control.wpcf7-submit.has-spinner {
        width: 100%;
        padding: 15px 10px;
        border-radius: 20px;
    }

    .bouton-vert a,
    .bouton-full a,
    input.wpcf7-form-control.wpcf7-submit.has-spinner a {
        padding: 25px 40px;
        font-size: 0.8em;
    }

    .bouton-vert p,
    .bouton-full p,
    input.wpcf7-form-control.wpcf7-submit.has-spinner p {
        width: fit-content;
    }

    .accueil-top h1 span.un::before,
    .accueil-top h1 span.deux::before,
    .titre-grand h2::before {
        bottom: 10px;
        left: -10px;
        height: 30px;
    }

    .projet-seul {
        width: 100%;
    }

    .background-projet {
        height: 60vh;
    }

    .projet-seul a.photo-projet {
        height: 60vh;
        margin-bottom: -60vh;
        top: -60vh;
    }

    .liste-projets {
        padding: 0 40px 100px 40px !important;
    }

    .top, .top-real {
        min-height: 40vh;
        padding: 5em 40px;
    }


    .menu-list li {
        margin: 10px 0;
    }

    .menu-list li a {
        font-size: 30px;
    }


    /************************/
    /************************/
    /******   Footer   ******/
    /************************/
    /************************/

    footer h2 {
        text-transform: uppercase;
        font-size: 1.1em;
        font-family: 'acumin-pro', sans-serif;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .infos-footer {
        flex-direction: row;
        padding: 60px 40px;
    }


    footer .infos-footer .colonne {
        width: 50%;
        margin-bottom: 40px;
        padding-right: 20px;
    }

    footer .infos-footer .colonne:last-of-type {
        margin-bottom: 0;
    }

    footer .colonne a {
        font-size: 0.75em;
    }

    footer .nous-contacter-footer {
        padding: 15px 20px;
    }

    .gros-bouton-contact {
        font-size: 5vw;
    }

    .gros-bouton-contact a {
        padding-right: 30px;
    }

    .gros-bouton-contact a::before {
        content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E");
        height: 20px;
        width: 20px;
    }

    .gros-bouton-contact a:hover::before {
        content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
        transition: .3s;
    }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
    .differents-domaines {
        padding: 50px 0 100px 0;
    }

    .differents-domaines ul li {
        padding: 30px 0;
        font-size: 35px;
    }

    .differents-domaines ul li:last-of-type {
        padding: 30px 0 0 0;
    }

    .differents-domaines ul li::before {
        bottom: -75px;
        width: calc(100vw - 40px) !important;
    }
}

@media screen and (min-width: 1px) and (max-width: 500px) {

    .accueil-top {
        padding: 8em 1em 6em;
    }

    .projet-seul a.nom-projet, .post-seul a.nom-post {
        font-size: 0.8em;
    }

    .titre-grand h2::before {
        bottom: 0px;
        left: -10px;
        height: 20px;
    }

    .bouton-vert a,
    .bouton-full a,
    input.wpcf7-form-control.wpcf7-submit.has-spinner a {
        padding: 25px 36px;
        font-size: 0.8em;
    }

    .background-projet {
        height: 60vh;
    }

    .projet-seul a.photo-projet {
        position: relative;
        top: -60vh;
        left: 0;
        height: 60vh;
        margin-bottom: -60vh;
    }

    .nous-realisations,
    .articles,
    .nos-domaines,
    .coulisses,
    .autres-projets,
    div#wpcf7-f118-o1 {
        padding: 3em 1em;
        border-radius: 30px 30px 0 0;
    }

    .differents-domaines {
        padding: 50px 0 100px 0;
    }

    .differents-domaines ul li:first-of-type {
        padding-top: 0;
    }

    .differents-domaines ul li {
        padding: 30px 0;
        font-size: 25px;
    }

    .differents-domaines ul li:last-of-type {
        padding: 30px 0 0 0;
    }

    .differents-domaines ul li::before {
        bottom: -50px;
        width: calc(100vw - 20px) !important;
    }

    .differents-domaines {
        padding: 2.5em 0 3.5em;
    }

    .projets {
        margin: 1.5em 0;
    }


    form.wpcf7-form.init p,
    form.wpcf7-form.sent p,
    form.wpcf7-form.invalid p {
        font-size: 0.9em;
    }

    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
    textarea.wpcf7-form-control.wpcf7-textarea {
        width: 100%;
        border-radius: 10px;
    }

    .resume-projet {
        margin: 2em 0;
    }

    .projets-aleatoires {
        flex-direction: column;
    }

    .projet-aleatoire {
        width: 100%;
    }

    .projet-aleatoire a.photo-projet {
        position: relative;
        top: -60vh;
        left: 0;
        height: 60vh;
        margin-bottom: -60vh;
    }

    .background-projet-aleatoire {
        height: 60vh;
    }

    .image-texte-dessous img {
        width: 100%;
        height: auto;
        margin-bottom: 0.5em;
    }

    .galerie {
        margin-bottom: 0.5em;
    }

    /************************/
    /************************/
    /******   Header   ******/
    /************************/
    /************************/
    header {
        padding: 1em 1em 0 1em;
    }


    header img {
        height: 1em;
    }

    .bar {
        width: 1.25em;
        height: 3px;
        background-color: #fff;
        margin: 0.1em 0;
    }



    /************************/
    /************************/
    /******   Footer   ******/
    /************************/
    /************************/

    footer h2 {
        text-transform: uppercase;
        font-size: 1.2em;
        font-family: 'acumin-pro', sans-serif;
        font-weight: 400;
        margin-bottom: 0.5em;
    }

    .infos-footer {
        flex-direction: column;
        padding: 3em 1em;
    }


    footer .infos-footer .colonne {
        width: 100%;
        margin-bottom: 2em;
    }

    footer .infos-footer .colonne:last-of-type {
        margin-bottom: 0;
    }

    footer .colonne a {
        font-size: 0.75em;
    }

    footer .nous-contacter-footer {
        padding: 15px 30px;
    }

    .gros-bouton-contact {
        font-size: 1.2;
    }

    .gros-bouton-contact a {
        padding-right: 1.5em;
    }

    .gros-bouton-contact a::before {
        content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='white' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E");
        height: 1em;
        width: 1em;
    }

    .gros-bouton-contact a:hover::before {
        content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 68L5 5' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3Cpath d='M67.5669 10.1348V67.575H10.1345H10.1266' stroke='%239EFF00' stroke-width='12' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
        transition: .3s;
    }

    .liste-projets {
        padding: 0 1em !important;
    }
}






.reset-filters-container {
    margin-top: 20px;
    text-align: center;
}

.reset-filters-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.reset-filters-button:hover {
    background-color: #0056b3;
}
