:root {
    --small-margin: 40px;
    --medium-margin: 70px;
    --ltspace: 70px;
    --mdspace: 120px;
    --bigspace: 180px;
    --light-side: 4vw;
    --medium-side: 8.5vw;
    /*--big-side: 7vw;*/
    --noir: #17143F;
    --bleu: #139EDA;
    --bleu-clair: #D0ECF8;
    --rouge: #E73157;
}


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

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

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

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

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--noir);
    width: 2px;
}
body{
    background: white;
}
#container{
    background: white;
}
* {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
}
body.no-scroll{
    overflow: hidden;
}

/**********
BASE
 */
.pd-base{
    padding-left: var(--medium-side);
    padding-right: var(--medium-side);
}

h1, .h1{
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%; /* 65.72px */
    letter-spacing: -0.31px;
    color: var(--noir);
    margin: 0 0 30px 0;

}
h1 span, .h1 span{
    font-weight: 600;

}
h2, .h2{
    color: var(--noir);
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%; /* 50.88px */
    letter-spacing: -0.24px;
    margin: 0 0 30px 0;
}
.bigh2{
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%; /* 65.72px */
    letter-spacing: -0.31px;
}
h3, .h3{
    color: var(--noir);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%; /* 36.96px */
    letter-spacing: -0.14px;
    text-align: left;
    margin: 0 0 20px 0;

}
#container{
    padding-top: 190px;
}
.grid-align{
    display: grid;
    /*grid-template-columns: 490px 1fr;*/
    grid-template-columns: 490px 1fr;
}
.grid-align>div:first-of-type{
    /*padding-right: 150px;*/
    padding-right: 110px;
    position: relative;
}
.intro, .intro p{
    font-size: 26px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.14px;
}
p, ul{
    margin: 0 0 20px 0;
}
p, li, a{
    font-size: 21px;
    font-weight: 400;
    line-height: 132%;
    letter-spacing: -0.11px;
    color: var(--noir);
}
.txt li{
    position: relative;
    padding-left: 40px;
}
.txt li::before{
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    background: var(--rouge);
    width: 30px;
    height: 1px;
}
p:last-of-type{
    margin-bottom: 0;
}
strong{
    font-weight: 600;
}
.white,
.white p,
.white li,
.white h2,
.white h3,
.white h1{
    color: white;
}
.btn_base{
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    padding: 15px 70px 14px 20px;
    color: var(--noir);
    border: 1px solid var(--noir);
    display: inline-block;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.btn_base.white{
    color: white;
    border: 1px solid white;
}
.btn_base.icon-base::after{
    content: "";
    position: absolute;
    right: 20px;
    top: 12px;
    background-image: url('../icons/icon-btn.svg');
    height: 30px;
    width: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.btn_base.white.icon-base::after{
    /*background: url("../icons/icon-btn.svg");*/
    filter: brightness(0) invert(1);
}
.btn_base.fbshare{
    padding-right: 65px;
}
.btn_base.fbshare::after{
    background-image: url('../icons/fbshare.svg');
    background-size: contain;
    height: 24px;
    width: 12px;
    top: 19px;
}
.su_button_circle{
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left:0;
    top:0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    z-index: -1;
    /*animation-timing-function: ease-in-out; */
}

.explode-circle {
    animation: explode 0.5s forwards;

}

.desplode-circle{
    animation: desplode 0.5s forwards;
}

@keyframes explode {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgb(23, 20, 63);
    }
    100% {
        width: 550px;
        height: 550px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: var(--bleu);
    }
}

@keyframes desplode {
    0% {
        width: 550px;
        height: 550px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: var(--bleu);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgb(23, 20, 63);
    }
}
/**********
HEADER
 */
#header{
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    padding: 50px var(--light-side);
    z-index: 10000;
    transition: 0.4s ease-in-out all;
    grid-template-columns: calc(340px + 150px + 4.5vw) 1fr;
}
.header-scroll{
    transform: translateY(-100%);
}
.up-scroll{
    background: white;
    box-shadow: 2px 2px 44px -9px rgba(0,0,0,0.05);
    -webkit-box-shadow: 2px 2px 44px -9px rgba(0,0,0,0.05);
    -moz-box-shadow: 2px 2px 44px -9px rgba(0,0,0,0.05);
}
#menu{
    width: 100%;
}
.menu{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.menu a{
    font-size: 22px;
    font-weight: 600;
    line-height: 26px; /* 118.182% */
    letter-spacing: -0.11px;
    color: var(--noir);
    transition: 0.5s ease-in-out all;
}
.menu a:hover{
    opacity: 0.6;
}
#menu .menu>.current_page_item>a{
    color: var(--bleu);
}
.single-actualite #menu-item-50 a{
    color: var(--bleu);
}
.home .menu a{
    color: white;
}
#logo{
    transition: 0.5s ease-in-out all;
    position: relative;
    z-index: 10000;
    display: block;
    line-height: 0;
}
#logo:hover{
    opacity: 0.6;
}
.home #logo path{
    fill: white;
}
.home #logo path:nth-of-type(16),
.home #logo path:nth-of-type(15){
    fill: var(--rouge);
}

.home .up-scroll{
    background: var(--noir);
}










/***************
HOME
 */
body.home #container{
    padding-top: 0;
}
.first-section-home{
    height: 100vh;
    background: var(--bleu);
    display: flex;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    z-index: 1000;
    position: relative;
}
.first-section-home h1{
    font-size: 85px;
    font-weight: 600;
    line-height: 94.211px;
    letter-spacing: -0.425px;
    color: white;
    margin-top: 40px;
}
.first-section-home h1 svg{
    transform: translateY(28px);
}
.first-section-home .list-plus{
    position: absolute;
    right: 0;
    bottom: -250px;
    z-index: -1;
}
.actu-front{
    border: 1px solid white;
    padding: 30px 140px 30px 30px;
    width: 700px;
    position: relative;
    min-height: 95px;
    margin-top: 60px;
    transition: 0.5s ease-in-out all;
}
.actu-front p{
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-align: left;
}
.actu-front>svg{
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    height: calc(100% - 60px);
}
.actu-front > svg path {
    transition: 0.5s ease-in-out all;

}
.actu-front:hover > svg path {
stroke: var(--rouge);
}
.actu-front .date{
    margin-bottom: 10px;
}
.actu-front:hover{
    background: rgba(255, 255, 255, 0.21);
 }
.second-section-home{
    background: var(--noir);

}
.img-illu-home{
    width: 100%;
    margin-bottom: -5px;
}
.en-bref{
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
}
.second-section-home .bt-page{
    padding-top: 0;

}

.third-section-home{
    background: rgba(23, 20, 63, 0.1);
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
}

.btn-list{
    margin-top: 40px;
}
.btn-list>a{
    margin-right: 15px;
}
.flip-card {
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    /*text-align: center;*/
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front{
    background: white;
}
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 50px;
    border: 1px solid var(--bleu);
    transition: 0.5s ease-in-out all;

}
.bloc-oeil:hover .flip-card-front,
.bloc-oeil:hover .flip-card-back{
    box-shadow: -2px -1px 33px 0px rgba(19,158,218,0.22);
    -webkit-box-shadow: -2px -1px 33px 0px rgba(19,158,218,0.22);
    -moz-box-shadow: -2px -1px 33px 0px rgba(19,158,218,0.22);
}
.bloc-oeil:hover .flip-card-front{
    background-color: #f5f5f5;
}
.flip-card-back {
    transform: rotateY(180deg);
    background: var(--bleu);
}

.flip-card-back p {
    margin-top: 0;
    /*font-size: 16px;*/
    /*font-weight: 400;*/
    /*line-height: 23px;*/
}

.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.return-flip{
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.5s ease-in-out all;
}
.bloc-oeil:hover .return-flip{
    transform: rotate(180deg);
}
.grid-oeil{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*grid-gap: 30px;*/
    margin-top: -80px;
}
.bloc-oeil{
    width: 400px;
    height: 500px;
    /*background: white;*/
}
.icon-oeil{
    position: absolute;
    right: -20px;
    bottom: 20px;
}
.bloc-oeil h3{
    color: var(--bleu);
}
plus{
    font-weight: 800;
    font-style: italic;
    color: var(--rouge);
    font-size: 62px;
    line-height: 0;
    /* margin-bottom: -5px; */
    position: relative;
    top: 4px;

    background: url('../icons/plus.svg');
    height: 37px;
    width: 42px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
}
.grid-oeil .bloc-oeil:nth-of-type(4n - 3){
    margin-top: 120px;
}
.grid-oeil .bloc-oeil:nth-of-type(4n - 1){
    margin-top: 120px;
    margin-left: auto;
}
.grid-oeil .bloc-oeil:nth-of-type(4n - 0){
    margin-left: auto;
}
.four-section-home{
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    background: var(--bleu);
}
.temoignagne-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: var(--ltspace);
}
.flex-testi{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.flex-testi svg{
    margin-right: 20px;
}
.flex-testi p{
    margin-bottom: 0;
}
.bloc-temoignage{
    position: relative;
    cursor: pointer;
}
.containvdo{
    position: relative;
    cursor: pointer;
}
.bloc-temoignage video{
    height: 27.5vw;
    width: 100%;
    object-fit: cover;
}

.containvdo::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(23, 20, 63, 0.50) 0%, rgba(23, 20, 63, 0.50) 100%);
    z-index: 1;
    pointer-events: none;

}
.containvdo::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background-image: url("../icons/play.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
    pointer-events: none;
}
#video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.close-lightbox {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.five-section-home{
    padding-top: var(--mdspace);
    margin-bottom: var(--mdspace);
    overflow: hidden;
}
.faq-item{
    position: relative;
    cursor: pointer;
    padding: 40px 60px 40px 0;
    border-bottom: 1px solid var(--noir);
}
.faq-item:first-of-type{
    border-top: 1px solid var(--noir);
}
.faq-question{
    margin-bottom: 0;
    transition: 0.5s ease-in-out all;
}
.faq-question:hover{
    opacity: 0.6;
}
.faq-item svg{
    position: absolute;
    top: 34px;
    right: 0;
}
.faq-item svg path{
    transition: 0.5s ease-in-out all;
    transform-origin: center;
}
.faq-item.open svg path:first-of-type{
    opacity: 0;
    transform: scale(0);
}
.faq-answer{
    padding-top: 20px;
}
.faq-answer img{
    width: 100%;
    margin-top: 20px;
}
.svg-ask{
    width: calc(100% + var(--medium-side) - 110px);
    /*margin-left: calc(var(--medium-side) * -1);*/
    position: absolute;
    top: 165px;
    left: calc(var(--medium-side) * -1);
    height: 41.9vw;
}

/*******
FOOTER
 */
#footer{
    background: var(--noir);
    overflow: hidden;
}
.grid-ft{
    display: grid;
    grid-template-columns: 1.5fr 1fr 100px;
    grid-gap: 30px;
    align-items: flex-end;
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    max-width: calc(1000px + var(--medium-side) * 2);
}
.hp-patern{
    /*background-image: url("../images/patern-hp.svg");*/
    background-image: url("../images/new-pattern.svg");
    background-repeat: repeat;
    background-size: contain;
    height: 75px;
    width: 105%;
    margin-left: -2.5%;
}
.flex-ft{
    display: flex;
    align-items: flex-end;
}
.flex-ft a{
    margin-right: 10px;
    transition: 0.5s ease-in-out all;
}
.flex-ft a:hover{
    opacity: 0.6;
}
.ft-adresse{
    position: relative;
    display: flex;
    width: fit-content;
}
.ft-adresse::before{
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    height: 100%;
    width: 1px;
    background: white;
    opacity: 0.6;
    transform: rotate(15deg);
}
.ft-adresse::after{
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    height: 100%;
    width: 1px;
    background: white;
    opacity: 0.6;
    transform: rotate(15deg);
}


.copyright,
.copyright *{
    color: white;
    font-size: 15px;
    font-weight: 100;
    line-height: 27px;
    letter-spacing: 0.08px;

}
.copyright{
    margin-top: 50px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px var(--medium-side);
    opacity: 0.6;

}
.logo-pix{
    transform: translateY(10px);
    width: 55px;
}
.logo-pom{
    transform: translateY(9px);
    width: 67px;
}
/**********
PAGE
 */
.sticky-right{
    position: sticky;
    top: 180px;
    left: 0;
}
.sticky-right>p{
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--noir);
}
.sticky-right .contenu-flex-sommaire a{
    padding: 10px 0;
    border-bottom: 1px solid var(--noir);
    display: block;
    transition: 0.5s ease-in-out all;
}
.sticky-right .contenu-flex-sommaire a span{
    transition: 0.5s ease-in-out all;
    display: block;
}
.sticky-right .contenu-flex-sommaire a:hover span{
    transform: translateX(8px);
}
.sticky-right .contenu-flex-sommaire a.active{
    color: var(--bleu);
}
.sticky-right>svg{
    position: relative;
    left: calc(-30% - var(--medium-side));
    margin-top: 80px;
}
.page-template-template-projet .sticky-right>svg{
    left: calc(-50% - var(--medium-side));
}
.page-template-template-contact .sticky-right>svg,
.page-template-template-faq .sticky-right>svg,
.page-template-template-documents .sticky-right>svg{
    left: calc(-10% - var(--medium-side));
    margin-top: 0;
}
.contenus-flexibles img{
    width: 100%;
}
.contenu-flex h2{
    margin-top: 80px;
}
.contenu-flex .bloc{
    margin-bottom: 40px;
}
.contenu-flex .bloc:last-of-type{
    margin-bottom: 0;
}
.anchor{
    position: relative;
    top: -170px;
}
.resum-page{
    background: var(--bleu-clair);
    padding: 25px 60px;
    position: relative;
    transition: 0.5s ease-in-out all;
}
.resum-page>svg{
    position: absolute;
    /*top: 50px;*/
    top: 26px;
    right: 50px;
    cursor: pointer;
    transition: 0.2s ease-in-out transform, 0.5s ease-in-out top;
}
.resum-page .txt-resume{
    transition: 0.5s ease-in-out all;
    overflow: hidden;
}
.resum-page.active .txt-resume{
    max-height: 1000px;
    padding-top: 20px;
}
.resum-page .close-resum{
    transform: scale(0);
}
.resum-page.active .close-resum{
    transform: scale(1);
}
.resum-page.active .open-resum{
    transform: scale(0);
}
.resum-page.active{
    padding: 60px;
}
.resum-page.active>svg{
    top: 50px;
}
.resum-page .txt-resume{
    max-height: 0px;
    padding-top: 0;
}
.resum-title{
    margin-bottom: 0;
    cursor: pointer;
}
.bloc-galerie{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.bloc-galerie img{
    width: 100%;
    height: 20vw;
    object-fit: cover;
}
.bloc-fond-rouge{
    background: var(--rouge);
    padding: 50px 60px;
}
.bloc-fond-rouge h3, .resum-title{
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 700;
    font-size: 22px;

}
.bloc-statistiques{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.bloc-detail{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.bloc-detail .color{
    height: 22px;
    width: 22px;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
    margin-top: 4px;
}
.bloc-detail p{
    width: calc(100% - 37px);
}
.bloc-detail p span{
    display: block;
    font-weight: 700;
}
.contenu-flex .bloc-texte-deroulant{
    margin-bottom: 20px;
}
.menu-deroul{
    padding-left: 40px;
    position: relative;
    cursor: pointer;
}
.menu-deroul>svg{
    position: absolute;
    left: 0;
    top: 8px;
    transition: 0.5s ease-in-out all;
}
.menu-deroul.open svg{
    transform: rotate(90deg);
}
.bloc-actualite{
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 40px;
    padding: 40px 0 80px 0;
    border-bottom: 1px solid var(--noir);
    position: relative;
}
.date{
    font-weight: 700;
    color: var(--rouge);
}
.type-actualite{
    font-size: 18px;
    font-weight: 400;
    line-height: 132%; /* 23.76px */
    letter-spacing: 0.63px;
    text-transform: uppercase;
}
.bloc-actualite svg{
    position: absolute;
    right: 0;
    bottom: 40px;
    transition: 0.5s ease-in-out all;
}
.bloc-actualite:hover svg{
    transform: rotate(180deg);
}
.bloc-actualite.jalon{
    background: var(--bleu-clair);
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
    grid-gap: 0;
    border: 0;
    margin-bottom: 35px;
    margin-top: 35px;
}
.bloc-actualite.jalon svg{
    right: 40px;
}
.bloc-actualite.jalon .type-actualite{
    display: none;
}
.bloc-actualite video{
    margin-top: 20px;
}
.bloc-image{
    position: relative;
}
.bloc-image .absol-img-home{
    background-color: white;
    color: var(--noir);
    padding: 5px;
    right: 20px;
}
#filtre-type li{
    font-size: 18px;
    font-weight: 400;
    line-height: 106%;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    opacity: 0.6;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.5s ease-in-out all;
}
#filtre-type li.actif{
    opacity: 1;
    font-weight: 600;
}
#filtre-type li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--noir);
    opacity: 0.2;
}
#filtre-type li span{
    display: inline-block;
    transition: 0.5s ease-in-out all;
}
#filtre-type li:hover span{
    transform: translateX(7px);
}
#filtre-type li.actif::before{
    background: var(--rouge);
    opacity: 1;
}
#filtre-annee{
    padding: 0;
    border: 0;
    margin-bottom: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%; /* 23.4px */
    letter-spacing: 0.54px;
    text-transform: uppercase;
    outline: 0;
    cursor: pointer;
    padding-right: 40px;
    position: relative;

}
.select-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
}

.select-wrapper select {
    appearance: none; /* supprime la flèche native */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
}
.select-wrapper .custom-arrow {
    position: absolute;
    right: 0px;
    top: 6px;
    pointer-events: none; /* permet de cliquer à travers */
    display: flex;
    align-items: center;
}
.thumb-img{
    width: 100%;
}
.single-actualite .date{
    padding-top: 40px;
    margin-top: 30px;
    border-top: 1px solid var(--noir);
    margin-bottom: 10px;
}
.go-back{
    border-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 106%;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    transition: 0.5s ease-in-out all;
}

.go-back svg{
    margin-right: 10px;
    margin-top: -3px;
}
.go-back:hover{
    opacity: 0.6;
}
.share{
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid var(--noir);
}
.bt-page{
    padding-top: var(--mdspace);
    padding-bottom: var(--mdspace);
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}
.bt-page p{
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 57.6px */
    letter-spacing: -0.24px;
    color: var(--rouge);
    display: flex;
    margin-right: 10px;
    align-items: center;
    margin-bottom: 0;
}
.bt-page p plus{
    margin-right: 10px;
    margin-top: -8px;
}

.liste-docs a{
    border: 1px solid var(--noir);
    padding: 16px 80px 16px 30px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    transition: 0.5s ease-in-out all;
}
.liste-docs a::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 15px;
    background-image: url('../icons/link.svg');
    height: 32px;
    width: 37px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    transition: 0.5s ease-in-out all;
}
.liste-docs a.file::after{
    background-image: url('../icons/downloa.svg');
}
.liste-docs a:hover{
    background: var(--noir);
    color: white;
}
.liste-docs a:hover::after{
    filter: brightness(0) invert(1);
}
.wpcf7-form p{
    margin: 0;
}
.wpcf7-form input,
.wpcf7-form textarea{
    background: transparent;
    outline: 0;
    border-bottom: 1px solid var(--noir);
    transition: 0.4s ease-in-out all;
    padding: 10px 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0!important;

    font-family: "Figtree", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 132%; /* 29.04px */
    letter-spacing: -0.11px;
    color: var(--noir);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder{
    font-family: "Figtree", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 132%; /* 29.04px */
    letter-spacing: -0.11px;
    color: rgba(23, 20, 63, 0.6);
}
.wpcf7-form textarea{
    padding: 10px 20px;
    border: 1px solid var(--noir);
    resize: none;
    height: 200px;
}
.grid-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0 70px 0;
}
.wpcf7-form textarea:focus{
    border: 1px solid var(--bleu);

}
.wpcf7-form input:focus{
    border-bottom: 1px solid var(--bleu);
}

.wpcf7-form br{
    display: none;
}
.sub-contact{
    display: flex;
    width: fit-content;
    margin-left: auto;
    border: 1px solid var(--noir);
    margin-top: 20px;
    transition: 0.5s ease-in-out all;
    cursor: pointer;
}
.sub-contact p{
    display: flex;
    padding: 0px 30px 0 0;
    align-items: center;
}
.sub-contact svg{
    transition: 0.5s ease-in-out all;
}
.sub-contact input{
    /*padding: 0;*/
    border-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.88px;
    margin-right: 10px;
    padding: 12px 0px 12px 30px;
    transition: 0.5s ease-in-out all;
}
.sub-contact input:focus{
    border-bottom: 0;
}
.sub-contact:hover{
    background: var(--noir);
}
.sub-contact:hover input{
    color: white;
}
.sub-contact:hover svg{
    filter: brightness(0) invert(1);
}
.wpcf7-spinner{
    display: none;
}
.wpcf7-not-valid-tip{
    font-size: 13px;
}
.new-place{
    margin-top: var(--mdspace);
    width: 100%;
    margin-bottom: -5px;
}
.mobile{
    display: none;
}
.content_result_sec{
    display: flex;
    padding: 20px var(--medium-side);
    background: var(--noir);
    color: white;
    position: relative;
}
.select_ancre{
    filter: brightness(0) invert(1);
    position: absolute;
    right: var(--medium-side);
    top: 22px;
}
.links_page{
    margin: 0;
    padding: 0px var(--medium-side);
    max-height: 0;
    transition: 0.5s ease-in-out all;
    overflow: hidden;
}
.ancre.active .links_page{
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 1000px;
    box-shadow: 2px 2px 44px -9px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 2px 2px 44px -9px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 44px -9px rgba(0,0,0,0.05);
}
.links_page li{
    margin-bottom: 10px;
}
.links_page a{
    transition: 0.5s ease-in-out all;
}
.links_page a.active{
    color: var(--bleu);
}
.mobile-h1{
    display: none;
}
.no-docs #menu-item-45{
    display: none;
}


.bt-marquee-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;

}

.bt-marquee {
    display: flex;
    width: 100%;
}

.bt-track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.bt-item {
    display: inline-block;
    margin: 0 30px;
    font-size: 16px;
    color: #d11b3e;
    font-weight: 500;
}

/* Animation continue */
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.mx-wd-impress{
    max-width: 900px;
    padding-bottom: var(--mdspace);
}
.rela-img-home{
    position: relative;
}
.absol-img-home{
    position: absolute;
    right: var(--medium-side);
    bottom: 20px;
    color: white;
    font-size: 16px;
    font-style: italic;

}
.hidedesc{
    display: none;
}
.grecaptcha-badge{
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output{
    border-color: var(--bleu);
    padding: 20px;
    color: var(--bleu);
}



#cookieNotice{
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 600px;
    z-index: 10001;
    padding: 30px 30px 30px var(--light-side);
}
#cookieNotice::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: white;
}
.accept-cookie.btn_base{
    padding: 10px 25px 9px 25px;
    font-size: 14px;
}
.accept-cookie.btn_base::after{
    display: none;
}
#cookieNotice h3{
    margin-bottom: 5px;
    font-size: 20px;

}
#cookieNotice p>a{
    text-decoration: underline;
}
#cookieNotice a,
#cookieNotice p{
    margin-bottom: 15px;
    font-size: 17px;
}
