/*
Theme Name: BST 
Author: Catalyst Webdesign
Description: Thème pour Mickaël Tanguy
Version: 1.0

*/

/*GENERAL*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    GENERAL                                          */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

:root {
    --noir: #1b1b1b;
    --rouge: #c01f2e;
    --gris: #58585a;
    --acumin: "acumin-pro", sans-serif;
}


html {
    margin-top: 0 !important;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--noir);
    font-family: var(--acumin);
    font-weight: 500;
    overflow-x: hidden;
}

.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 99999999;
    top: 0;
    left: 0;
}

main {
    overflow: hidden;
    position: relative;
}


img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

/* * * Listes et titres region*/
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main ul {
    list-style: disc;
    padding-left: 10px;
    margin-left: 10px;
}

h2 {
    position: relative;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 100;
    display: block;
    width: fit-content;
    margin: 40px auto;
}

.mobile h2 {
    font-size: 25px;
}

h3 {
    position: relative;
    display: block;
    width: fit-content;
    margin: 20px 0 40px 22px;
    font-size: 26px;
}

h2::before,
h3::before {
    content: "";
    height: 150%;
    width: 1px;
    background: var(--rouge);
    position: absolute;
    bottom: -35px;
}

h2::before {
    right: -25px;
}

h3::before {
    left: -15px;
}

h2::after,
h3::after {
    content: "";
    width: 90%;
    height: 1px;
    background: var(--rouge);
    position: absolute;
    bottom: -15px;
}

h2::after {
    right: -50px;
}

h3::after {
    left: -20px;
}

/*endregion*/

/* * * Boutons et liens region*/

a {
    text-decoration: none;
    transition: .5s;
    color: var(--rouge);
}

a:hover {
    text-decoration: underline;
}

a.bouton {
    background-color: var(--rouge);
    padding: 10px 15px;
    color: white;
    position: relative;
    display: block;
    width: fit-content;
    font-weight: 600;
}

a.bouton:hover {
    text-decoration: none;
}

a.bouton::after {
    content: "";
    height: 90%;
    width: 2px;
    background: var(--rouge);
    position: absolute;
    right: -5px;
    bottom: -10px;
    transition: .5s;
}

a.bouton::before {
    content: "";
    width: 80%;
    height: 2px;
    background: var(--rouge);
    position: absolute;
    right: -15px;
    bottom: -5px;
    transition: .5s;
}

a.bouton:hover::after {
    transform: translateY(10px);
}

a.bouton:hover::before {
    transform: translateX(20px);
}



/*endregion*/

/* * * Wrapper et fonds region*/
.wrapper {
    width: 1100px !important;
    max-width: calc(100% - 70px) !important;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
}

.fondclair {
    background-image: url(images/fondclair.jpg);
    background-size: cover;
    background-position: center;
}

.fondfonce {
    background-image: url(images/fondfonce.jpg);
    background-size: cover;
    background-position: center;
}

/*endregion*/

/*endregion*/

/* HEADER*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    HEADER                                           */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

header {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}

header .custom-logo {
    max-width: 100%;
    width: 100px;
    height: auto;
}

.mobile header .custom-logo {
    width: 60px;
}


/*endregion*/

/* NAV*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    NAV                                              */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* * * CONTENT region*/

header nav {
    text-align: center;
    display: flex;
}

.desktop header nav {
    padding: 0 0 30px 0;
    align-items: flex-end;
}

.mobile header nav {
    padding: 15px 0 10px 0;
    flex-direction: column;
    align-items: center;
}

.desktop header nav .content-menu {
    display: block !important;
}



/*endregion*/

/* * * UL region*/
header nav #menu-principal {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
    position: relative;
    flex-wrap: wrap;
}

header nav #menu-principal::after {
    content: "";
    background-color: var(--gris);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 40px;
    opacity: 0.3;
}


/*endregion*/

/* * * LI region*/
header nav #menu-principal > li {
    padding: 10px 20px;
    text-transform: uppercase;
    position: relative;
}

.mobile header nav #menu-principal > li {
    padding: 10px;
}

header nav #menu-principal > li::after {
    content: "";
    background-color: var(--rouge);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s;
}

header nav #menu-principal > li:hover::after {
    transform: translateY(-5px);
}

/*endregion*/

/* * * A region*/
header nav #menu-principal a {
    transition: .5s;
    color: var(--gris);
    font-weight: 600;
}

header nav #menu-principal a:hover {
    color: var(--rouge);
    text-decoration: none;
}

.mobile header nav #menu-principal a {
    font-size: 12px;
}

/*endregion*/


/* * * Infos Fixed region*/

.infofixed {
    position: fixed;
    left: 0;
    top: 20%;
    transform: translateY(-50%);
    z-index: 999999;
}

.infofixed > div {
    background: var(--rouge);
    margin: 4px 0;
    padding: 8px 5px;
    color: white;
    font-size: 12px;
    font-weight: 400;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    max-height: 32px;
    box-sizing: border-box;
}

.infofixed div .content {
    max-width: 0;
    transition: .5s;
    overflow: hidden;
    white-space: nowrap;
}

.infofixed.show div .content {
    max-width: 300px;
}

.infofixed div svg {
    cursor: pointer;
}

.infofixed div a {
    color: white;

}


/*endregion*/

/*endregion*/

/* MAIN*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    MAIN                                             */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

main {
    min-height: 50vh;
    overflow: hidden;
}

/*endregion*/

/* FOOTER*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    FOOTER                                           */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#contact {
    padding: 150px 0;
    text-align: center;
    clip-path: polygon(0 2%, 65% 0, 100% 3%, 100% 100%, 25% 100%, 0 100%);
    transform: translateY(40px);
}


#contact .texte span {
    display: block;
    font-size: 35px;
}

.mobile #contact .texte span {
    display: block;
    font-size: 25px;
}

.desktop #contact .texte span:first-of-type {
    transform: translateX(-100px);
}

.desktop #contact .texte span:last-of-type {
    transform: translateX(100px);
}

@media screen and (min-width: 460px) {
    .mobile #contact .texte span:first-of-type {
        transform: translateX(-30px);
    }

    .mobile #contact .texte span:last-of-type {
        transform: translateX(30px);
    }
}

@media screen and (max-width: 460px) {
    .mobile #contact .texte span {
        display: inline;
        font-size: 20px;
    }

    .mobile #sectionA .zonetexte {
        padding-top: 300px;
    }

    .mobile .grille {
        margin-right: unset !important;
    }
}

#contact a.bouton {
    margin: 30px 60px 30px auto;
    font-size: 20px;
}

footer {
    clip-path: polygon(0 0, 74% 5%, 100% 0, 100% 100%, 25% 100%, 0 100%);
    padding: 50px 0;
    color: white;
    font-size: 14px;
    transform: translateY(1px);
}

footer .flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile footer .flex {
    flex-direction: column;
    text-align: center;
}

footer img {
    width: 100px;
}

footer span {
    display: block;
}

footer .adresse {
    margin-bottom: 10px;
}

footer a {
    color: white;
}

#mentionslegales {
    background-color: var(--noir);
    padding: 5px 0;
}

#mentionslegales .flex {
    font-size: 12px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.mobile #mentionslegales .flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

#mentionslegales a {
    color: var(--gris);
}

#mentionslegales a:hover {
    color: var(--rouge);
}

/*endregion*/

/* PAGES*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                    PAGES                                            */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* * Front page region*/

.home #sectionA {

    position: relative;
}

body:not(.home) #sectionA {
    clip-path: polygon(0 0, 74% 0, 100% 0, 100% 98%, 31% 100%, 0 98%);
    position: relative;
}

#sectionA .fondaccueil {
    background-image: url(images/fondaccueil.png);
    background-position: center right;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home #sectionA .fondaccueil {
    background-size: auto 100%;
}

.desktop:not(.home) #sectionA .fondaccueil {
    background-size: 70% auto;
}

.mobile #sectionA .fondaccueil {
    opacity: 0.4;
}

#sectionA .flex {
    gap: 20px;
    position: relative;
    z-index: 2;
}

#sectionA .zonetexte {
    width: 50%;
    padding: 200px 0 100px 0;
    flex-shrink: 0;
}

.mobile #sectionA .zonetexte {
    width: 100%;
}

#sectionA .zonephoto {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
}

.home #sectionA .zonephoto {
    height: 100vh;
}

body:not(.home) #sectionA .zonephoto {
    height: 70vh;
}

.mobile #sectionA .zonephoto {
    display: none;
}

#sectionA h1 {
    margin-left: 70px;
    margin-bottom: 30px;
}

.mobile #sectionA h1 {
    margin-left: 100px;
    font-size: 5px;
}

#sectionA h1 span.noir {
    font-weight: 400;
    font-size: 40px;
    white-space: nowrap;
    display: block;
    width: fit-content;
}

.mobile #sectionA h1 span.noir {
    font-size: 20px;
}

#sectionA h1 span.rouge {
    color: var(--rouge);
    font-weight: 700;
    font-size: 80px;
    position: relative;
    white-space: nowrap;
    display: block;
    width: fit-content;
}

.home #sectionA h1 span.rouge {
    font-size: 80px;
}

bodu:not('.home')#sectionA h1 span.rouge {
    font-size: 60px;
}

.mobile.home #sectionA h1 span.rouge {
    font-size: 40px;
    white-space: normal;
}

.mobile:not(.home) #sectionA h1 span.rouge {
    font-size: 30px;
    white-space: normal;
}


#sectionA h1 span.rouge::before {
    content: "";
    height: 150%;
    width: 2px;
    background: var(--rouge);
    position: absolute;
    left: -15px;
    bottom: -50%;
    transform: scaleY(0);
    transform-origin: top;
    animation: lineVertical 0.8s ease 1.5s forwards;
}

.mobile #sectionA h1 span.rouge::before {
    left: -7px;
}

#sectionA h1 span.rouge::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--rouge);
    position: absolute;
    left: -70px;
    bottom: -10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineHorizontal 0.8s ease 1.6s forwards;
}

@keyframes lineVertical {
    to {
        transform: scaleY(1);
    }
}

@keyframes lineHorizontal {
    to {
        transform: scaleX(1);
    }
}

#sectionA .texte {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 50px;
}

.desktop #sectionA .texte {
    margin-left: 80px;
}

.mobile #sectionA .texte {
    margin-top: 25px;
    font-size: 16px;
    margin-left: 110px;
}

.desktop #sectionA .zonetexte a.bouton {
    font-size: 18px;
}

.mobile #sectionA .zonetexte a.bouton {
    margin-left: 110px;
}

.home #sectionA .zonetexte .grille {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    text-align: right;
    color: var(--gris);
    opacity: 0.8;
    position: relative;
    margin-bottom: 50px;
}

.mobile.home #sectionA .zonetexte .grille {
    margin-top: 50px;
    font-size: 14px;
}

.home #sectionA .zonetexte .grille::before {
    content: "";
    height: 130%;
    width: 1px;
    background-color: var(--gris);
    opacity: 0.3;
    position: absolute;
    right: -10px;
    top: -20%;
}

.home #sectionA .zonetexte .grille::after {
    content: "";
    height: 130%;
    width: 1px;
    background-color: var(--gris);
    opacity: 0.3;
    position: absolute;
    right: -15px;
    top: -5%;
}

.home #sectionA .zonetexte .grille span {
    position: relative;
    width: fit-content;
}

.home #sectionA .zonetexte .grille span::before {
    content: "";
    width: 150%;
    min-width: 100px;
    max-width: 350px;
    height: 1px;
    background-color: var(--gris);
    opacity: 0.2;
    position: absolute;
    left: -20px;
    bottom: -7px;
}

#sectionA .zonephoto .photo {
    background-size: cover;
    background-position: center;
    width: 82%;
}





@media screen and (max-width: 1100px) and (min-width: 600px) {

    #sectionA h1 span.noir {
        font-size: 30px !important;
    }

    #sectionA h1 span.rouge {
        font-size: 60px !important;
    }

    #sectionA h1 span.rouge::before {
        left: -7px;
    }
}

@media screen and (max-width: 460px) {

    .mobile #sectionA h1,
    .mobile #sectionA .texte,
    .mobile #sectionA a.bouton {
        margin-left: 0 !important;
    }


}

.home #sectionB {
    background-color: var(--rouge);
    min-height: 20vh;
    transform: translateY(-40px);
    clip-path: polygon(0 0, 75% 10%, 100% 0, 100% 96%, 62% 100%, 0 94%);
    color: white;
    text-align: center;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    z-index: 9;
}

.mobile.home #sectionB {
    clip-path: polygon(0 0, 75% 2%, 100% 0, 100% 98%, 68% 100%, 0 97%);
}

.home #sectionC .ligne1 {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.mobile.home #sectionC .ligne1 {
    flex-direction: column;
}

.desktop.home #sectionC .ligne1 .texte {
    width: calc(100% - 350px);
}

.home #sectionC .actus {
    width: 300px;
    max-width: 100%;
    padding: 20px;
    box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.3);
}

.home #sectionC .ligne2 {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin: 100px 0;
}

.mobile.home #sectionC .ligne2 {
    flex-direction: column;
    align-items: last baseline;
}

.home #sectionC .ligne2 .photo1,
.home #sectionC .ligne2 .photo2 {
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    max-width: 100%;
}

.home #sectionC .ligne2 .photo1::before {
    content: "";
    height: 50%;
    width: 1px;
    background: var(--rouge);
    position: absolute;
    left: -10px;
    bottom: -25px;
}

.home #sectionC .ligne2 .photo1::after {
    content: "";
    width: 60%;
    height: 1px;
    background: var(--rouge);
    position: absolute;
    left: -25px;
    bottom: -10px;
}

.home #sectionC .ligne2 .photo2::before {
    content: "";
    height: 50%;
    width: 1px;
    background: var(--rouge);
    position: absolute;
    right: -10px;
    top: -25px;
}

.home #sectionC .ligne2 .photo2::after {
    content: "";
    width: 60%;
    height: 1px;
    background: var(--rouge);
    position: absolute;
    right: -25px;
    top: -10px;
}

.mobile.home #sectionC .ligne2 .photo1::before {
    top: -25px;
    bottom: unset;
}

.mobile.home #sectionC .ligne2 .photo1::after {
    top: -10px;
    bottom: unset;
}

.mobile.home #sectionC .ligne2 .photo2::before {
    bottom: -25px;
    top: unset;
}

.mobile.home #sectionC .ligne2 .photo2::after {
    bottom: -10px;
    top: unset;
}

.home #sectionC .ligne2 .texte p {
    margin-bottom: 0;
}

.home #sectionD {
    position: relative;
    padding: 50px 0;
    clip-path: polygon(0 3%, 75% 0%, 100% 2%, 100% 97%, 68% 100%, 0 98%);
}

.mobile.home #sectionD {
    clip-path: polygon(0 2%, 75% 0%, 100% 1%, 100% 98%, 68% 100%, 0 99%);
}

.home #sectionD .wrapper {
    z-index: 5;
}

.mobile.home #sectionD h2 {
    text-align: right;
}

.home #sectionD .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 100px 0;
}

.home #sectionD .flex > div {
    width: 20%;
    min-width: 200px;
}

.home #sectionD .flex > div:nth-of-type(1) svg,
.home #sectionD .flex > div:nth-of-type(2) svg {
    padding-left: 15px;
}

.home #sectionD .flex a {
    color: var(--noir);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.home #sectionD .flex a:hover {
    color: var(--rouge);
    text-decoration: none;
}



.home #sectionD .flex svg {
    display: block;
    margin: 30px auto;
}


.home #sectionD .flex svg * {
    vector-effect: non-scaling-stroke;
    transition: .5s;
}

.home #sectionD .flex svg .b,
.home #sectionD .flex svg .c,
.home #sectionD .flex svg .d,
.home #sectionD .flex svg .e {
    fill: none;
    stroke: #1b1b1b;
    stroke-miterlimit: 10;
    stroke-width: 3px;
}

.home #sectionD .flex svg .c {
    stroke-dasharray: 4;
}

.home #sectionD .flex svg .f {
    fill: #1b1b1b;
}

.home #sectionD .flex a:hover svg .red {
    stroke: var(--rouge);
}

.home #sectionD .flex a:hover svg .f.red {
    stroke: none;
    fill: var(--rouge);
}

.home #sectionD .fond {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: luminosity;
    opacity: 0.1;
}

.home #sectionE {
    padding: 50px 0;
}

.home #sectionE h2 {
    margin-bottom: 100px;
}

.home #sectionE h2::before {
    right: unset;
    left: -25px;
}

.home #sectionE h2::after {
    right: unset;
    left: -50px;
}

.desktop.home #sectionE h2 {
    margin-left: 0;
}

.home #sectionE .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile.home #sectionE .flex {
    flex-direction: column;
    gap: 30px;
}

.home #sectionE .flex .photo {
    background-size: cover;
    background-position: center;
    width: 30%;
    height: 300px;
}

.mobile.home #sectionE .flex .photo {
    width: 100%;
    max-width: 300px;
}

.home #sectionE .texte {
    margin: 30px auto;
    text-align: center;
    max-width: 500px;
}

.home #sectionE a.bouton {
    margin: 30px auto;
}

/*endregion*/

.page-template-services main article {
    display: flex;
    gap: 30px;
    text-align: left;
    background-color: white;
    margin-top: -40px;
}

.mobile.page-template-services main article {
    flex-direction: column-reverse;
}

.page-template-services main article.reverse {
    clip-path: polygon(0 0, 74% 2%, 100% 0, 100% 98%, 31% 100%, 0 98%);
    z-index: 9;
    position: relative;
}

.desktop.page-template-services main article.reverse {
    flex-direction: row-reverse;
}

.page-template-services main article .photo {
    background-size: cover;
    background-position: center;
}

.desktop.page-template-services main article .photo {
    width: 40%;
}

.mobile.page-template-services main article .photo {
    width: 100%;
    height: 300px;
}

.desktop.page-template-services main article .contenu {
    padding: 120px 0 80px 0;
}

.desktop.page-template-services main article.reverse .contenu {
    padding: 80px 0;
}

.mobile.page-template-services main article .contenu {
    padding-bottom: 80px;
}

.page-template-services main article h2 {
    font-weight: 700;
    color: var(--rouge);
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;

}

.page-template-services main article h2::before,
.page-template-services main article h2::after {
    display: none;
}

.page-template-services main article span {
    font-weight: 600;
}

.page-template-services main article .texte {
    font-weight: 300;
}

.desktop.page-template-services main article.reverse a.bouton {
    transform: translateX(-150px);
    margin: 30px auto 30px 0;
}

.desktop.page-template-services main article:not(.reverse) a.bouton {
    transform: translateX(150px);
    margin: 30px 0 30px auto;
}

.mobile.page-template-services main article a.bouton {
    text-align: center;
    margin: 30px 0 30px 0;
}

.page-template-services #contact {
    margin-top: -80px;
}

.page-template-real main .titrefiltre {
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin: 30px auto;
}

.page-template-real main .filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.page-template-real main .filters button {
    background: var(--rouge);
    padding: 10px;
    color: white;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    transition: .5s;
}

.page-template-real main .filters button:hover,
.page-template-real main .filters button.active {
    background: var(--gris);
}



.page-template-real main .realisations {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-template-real main .realisations article {
    width: 300px;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.page-template-real main .realisations article .bg-lazy {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-template-real main .realisations article .taxo {
    position: absolute;
    top: 0;
    left: 0;
    Background: var(--rouge);
    color: white;
    padding: 10px;
    z-index: 9;
    font-size: 12px;
    font-weight: 700;
}

.page-template-real main .realisations article .overlay {
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    font-weight: 600;
    transition: .5s;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    cursor: pointer;
}

.page-template-real main .realisations article:hover .overlay {
    opacity: 1;
}

.page-template-mentionslegales main {
    padding-top: 200px;
}

.page-template-mentionslegales main h3 {
    margin: 30px 0;
}

.page-template-mentionslegales main h3::before,
.page-template-mentionslegales main h3::after {
    display: none;
}

.error404 main {
    padding-top: 200px;
    text-align: center;
}

/*endregion*/

/* Temporaire*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * region*/
/*                                                                                     */
/*                                      temporaire                                     */
/*                                                                                     */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.message{
    position: fixed;
    top:0;
    left:0;
    z-index: 9999;
    background-color: var(--rouge);
     text-align: center;
    width: 100%;
    color:white;
    padding:10px;
    font-weight: 800;
    box-sizing: border-box;
}
.message span.close{
   position: absolute;
    right:10px;
    cursor:pointer;
    font-weight: 400;
    font-size: 14px;
}

/*endregion*/
