* {-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

img {-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
image-orientation: none;
}


html {
 overflow-y: scroll !important;
}

body {
    font-family: 'Fira Sans', sans-serif;
    font-size:20px; 
    color:#000000;
    margin: 0;
    background-color:#FFFFFF;
    line-height: 1.4;
}
 


html {height:100%;}


:root {
    --header-height: 200px;
}

body.page-bienvenue .wrapper-header {
    background-color: rgba(19, 51, 97, 0.8);
}

.wrapper-header{
    display: flex;
    flex-direction: row;
    background-color: rgba(19, 51, 97, 1);
    position: relative;
    height: var(--header-height);
    position: relative;
    z-index: 100;
}

.wrapper-header div.logo {
    flex-shrink: 0;
    --scale: 1;
}
.wrapper-header .logo {
    text-decoration: none;
    display: inline-block;
}
.wrapper-header .logo img {
    background: #fff;
    padding: calc(26px * var(--scale)) calc(20px * var(--scale));
    width: calc(387px * var(--scale));
}
.wrapper-header .logo h3 {
    color: #fff;
    font-size: calc(20px * var(--scale));
    text-align: center;
    line-height: 1;
    font-weight: 400;
    margin: calc(8px * var(--scale)) 0 calc(10px * var(--scale));
}


.wrapper-header .wrapper-menu{
    text-align: center;
    display: flex;
    align-self: flex-end;
    width: 100%;
    justify-content: flex-end;
    max-width: 1380px;
    padding-right: 30px;
}
.wrapper-header .menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}
.wrapper-header .menu > li{
    position: relative;
    z-index: 10;
}
.wrapper-header .menu > li:last-child{
    margin-right: 0;
}
.wrapper-header .menu a,
.wrapper-header .menu span{
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 25px 25px;
    text-align: center;
    cursor: pointer;
    line-height: 0.9;
}

.wrapper-header .menu-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.wrapper-header .menu-item.selected {
    background: #fff;
}
.wrapper-header .menu-item.selected > a,
.wrapper-header .menu-item.selected > span {
    color: #133361;
}

.wrapper-header .menu-item.selected::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: #fff;
    z-index: -1;
    transform: translateY(100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.wrapper-header .menu span .menu-arrow {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    filter: brightness(0) invert(1);
}

.wrapper-header .menu-item.selected .menu-arrow {
    filter: none;
} 

.wrapper-header .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(19, 51, 97, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    clip-path: polygon(-20% 0, 120% 0, 120% 120%, -20% 120%);
}
.wrapper-header .sousmenu a{
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    text-align: center;
    text-transform: uppercase;
    text-align: right;
    display: block;
}

.wrapper-header .sousmenu a:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.wrapper-header .sousmenu .selected a {
    background: #fff;
    color: #133361;
}

.wrapper-header .menu li:hover > ul{
    display: block;
}


.wrapper-header .header-top {
    position: absolute;
    top: 24px;
    right: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.wrapper-header .header-tel {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}
.wrapper-header .header-tel img{
    vertical-align: -4px;
}

.wrapper-header ul.socials {
    margin:0;
    padding:0;
    display: flex;
    flex-direction: row;
    align-self: center;
    list-style: none;
    height: max-content;
    margin-left: auto;
    gap: 10px;
}
.wrapper-header ul.socials a {
    display: inline-block;
    vertical-align: top;
}
.wrapper-header ul.socials a img {
    height: 26px;
    vertical-align: top;
}

.wrapper-header ul.socials svg{
    width: 100%;
    height: 100%;
    fill: #FFFFFF;
}
.wrapper-header .header-langue a {
    display: inline-block;
    vertical-align: top;
}
.wrapper-header .header-langue img {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.35);
    vertical-align: top;
}


.wrapper-header .burger-btn{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    padding: 15px;
    background-color: transparent;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.2s ease;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;

    transition: transform 0.3s ease;
}

.wrapper-header.open .burger-btn {
    background: #fff;
}
.wrapper-header.open  .burger-btn .line {
    background: #000;
}

.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -10px); /* 8px + 2px de la hauteur*/
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 8px);
}
.wrapper-header.open .burger-btn .line:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}
.wrapper-header.open .burger-btn .line:nth-child(2){
    transform: translate(-50%, -50%) scaleX(0);
}
.wrapper-header.open .burger-btn .line:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}


@media (max-width: 1600px) {
    .wrapper-header .menu a, 
    .wrapper-header .menu span {
        font-size: 22px;
    }
    .wrapper-header .menu-item.selected::before {
        height: 22px;
    }

    .wrapper-header .header-top {
        gap: 35px;
    }
    .wrapper-header .header-tel {
        font-size: 24px;
    }
    .wrapper-header .header-tel img {
        height: 22px;
    }
    .wrapper-header ul.socials a img {
        height: 24px;
    }
}
@media (max-width: 1450px) {
    .wrapper-header .menu a, 
    .wrapper-header .menu span {
        font-size: 20px;
    }
    .wrapper-header .menu-item.selected::before {
        height: 20px;
    }
    .wrapper-header .header-top {
        gap: 30px;
    }
}

@media (max-width: 1380px) {
    :root {
        --header-height: 185px;
    }
    .wrapper-header div.logo {
        --scale: 0.9;
    }
    .wrapper-header .header-top {
        gap: 25px;
    }
}
@media (max-width: 1330px) {
    .wrapper-header .menu a, 
    .wrapper-header .menu span {
        padding: 25px 20px;
    }
    .wrapper-header .menu-item.selected::before {
        height: 18px;
    }
}
@media (max-width: 1270px) {
    .wrapper-header .menu a, 
    .wrapper-header .menu span {
        font-size: 18px;
        padding: 25px 18px;
    }
    .wrapper-header .menu-item.selected::before {
        height: 16px;
    }
}
@media (max-width: 1200px) {
    :root {
        --header-height: 165px;
    }
    .wrapper-header div.logo {
        --scale: 0.8
    }
    .wrapper-header .header-tel {
        font-size: 22px;
    }
    .wrapper-header .header-tel img {
        height: 20px;
    }
    .wrapper-header ul.socials a img {
        height: 22px;
    }
}
@media (max-width: 1140px) {
    .wrapper-header .header-top {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .wrapper-header .wrapper-menu {
        padding-right: 15px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 20px 15px;
        font-size: 17px;
    }
    .wrapper-header .menu-item.selected::before {
        height: 14px;
    }
}
@media (max-width: 1040px) {
    .wrapper-header .menu a, .wrapper-header .menu span {
        font-family: 'Fira Sans Extra Condensed', sans-serif;
    }
}
@media (max-width: 1000px) {
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 20px 10px;
    }
    .wrapper-header div.logo {
        --scale: 0.75;
    }
    :root{
        --header-height: 155px;
    }
}

@media (max-width: 920px) {
    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

    body.nav-open{
        height: 100vh;
        overflow-y: hidden;
    }

    .wrapper-header .burger-btn{
        display: block;
    }

    .wrapper-header .header-top {
        /* display: inline-flex;
        align-items: flex-end; */

        top: auto;
        bottom: 15px;
    }

    .wrapper-header ul.socials {
        height:auto;
        align-items: flex-end;
    }

    .wrapper-header .wrapper-menu {

        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 10000;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none;        
    }

    .wrapper-header.open .wrapper-menu{
        opacity: 1;
        pointer-events: all;
    }

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 50px 10px 10px;   
        height: 100%;
        background: #133361;
        transform: translateX(100%) scale(0.9);
        min-width: 240px;
        transition: transform 0.3s ease-out;
        transform-origin: top right;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0) scale(1);
    }

    .wrapper-header .menu-item.selected::before {
        content: none;
    }

    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        width: 100%;
        text-align: left;
    }
    .wrapper-header .wrapper-menu .menu img{
        display: none;
    }

    .wrapper-header .wrapper-menu a{
        position: relative;
    }
    .wrapper-header .wrapper-menu .sousmenu a:hover{
        background: rgba(0, 0, 0, 0.1);
    }
    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: block;
        background: #133361;
        padding-left: 15px;
    }
    .wrapper-header .wrapper-menu .sousmenu a{
        font-weight: 500;
        padding: 5px 10px;
        text-align: left;
        color: #c7c7c7;
        font-size: 0.9em;
        text-transform: none;
    }
    .wrapper-header .wrapper-menu .sousmenu .selected a{color: #fff; background: none;}
}
@media (max-width: 760px) {
    .wrapper-header .header-tel span {
        display: none;
    }
    .header-langue img {
        width: 35px;
        height: auto;
        vertical-align: -3px;
    }
    .wrapper-header .header-tel img {
        vertical-align: 0px;
    }
    .wrapper-header .header-top {
        gap: 15px;
    }
}
@media (max-width: 600px) {
    .wrapper-header div.logo {
        --scale: 0.65;
    }
    :root {
        --header-height: 135px;
    }
}
@media (max-width: 550px) {
    .wrapper-header div.logo {
        --scale: 0.55;
    }
    :root {
        --header-height: 110px;
    }
    .wrapper-header .logo h3 {
        margin: 0;
    }
    .wrapper-header .header-top {
        bottom: 5px;
        right: 5px;
    }
    .wrapper-header .header-top {
        gap: 7px    ;
    }
}
@media (max-width: 500px) {
    .wrapper-header ul.socials {display: none;}
}

@media (max-width: 420px) {
    .wrapper-header .wrapper-menu .menu {
        min-width: 100%;
    }
}
@media (max-width: 360px) {
    .wrapper-header div.logo {
        --scale: 0.48;
    }
    :root {
        --header-height: 98px;
    }
}



/* FOOTER */
.wrapper-footer-inner {
    background: rgba(19, 51, 97, 0.8) url('i/bg-footer-new.jpg') no-repeat top center;
    background-size: cover;
    color: #FFFFFF;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;

    padding: clamp(50px, 10vw, 100px) 0 clamp(50px, 15vw, 300px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 10vw));
}
.wrapper-footer-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 66.66%;
    height: 100%;
    background: rgba(19, 51, 97, 0.8);
    clip-path: polygon(50px 0%, 100% 0, 100% 100%, 0 100%);
}

.wrapper-footer-inner > div {
    width: 33.33%;
    z-index: 1;
}

.wrapper-footer-inner .footer-inner {
    width: max-content;
    max-width: 370px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 25px;
}
.wrapper-footer-inner .footer-inner h3 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 15px;
}

.wrapper-footer-inner .footer-inner a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-reseaux .footer-inner {
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.8);
}
.footer-reseaux .footer-inner h3 {
    color: #133361;
}

.wrapper-footer-inner ul.socials {
    margin:0;
    padding:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-left: auto;
    gap: 10px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(68%) saturate(1419%) hue-rotate(190deg) brightness(92%) contrast(90%);
}
.wrapper-footer-inner ul.socials a {
    display: inline-block;
    vertical-align: top;
}
.wrapper-footer-inner ul.socials a img {
    height: 26px;
}

.wrapper-footer-inner ul.socials svg{
    width: 100%;
    height: 100%;
    fill: #FFFFFF;
}

.footer-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-2 ul a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 3px 0;
}

.footer-3 address {
    font-style: normal;
}
.footer-3 .footer-tel {
    margin: 25px 0;
}
.footer-3 a {
    color: currentColor;
    font-weight: 600;
    text-decoration: none;
}

.wrapper-footer .certifications {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: -30px;
    padding: 0 20px;
    flex-wrap: wrap;
}
@media (max-width: 1480px) {
    .wrapper-footer .certifications {
        margin-top: -10px;
    }
}
@media (max-width: 1100px) {
    .wrapper-footer .certifications {
        margin-top: 10px
    }
}
@media (max-width: 650px) {
    .wrapper-footer .certifications {
        gap: 25px;
    }
    .wrapper-footer .certifications > img {
        width: 40%;
    }
}
@media (max-width: 460px) {
    .wrapper-footer .certifications {
        margin-top: 25px;
        gap: 10px;
    }
}

.wrapper-footer .mentions{
    color: #133361;
}

@media (max-width: 1100px) {
    .wrapper-footer-inner {
        row-gap: 30px;
    }
    .wrapper-footer .footer-1 {
        width: 100%;
    }
    .wrapper-footer .footer-2,
    .wrapper-footer .footer-3 {
        width: 50%;
    }
    .wrapper-footer .footer-2 .footer-inner,
    .wrapper-footer .footer-3 .footer-inner {
        padding-top: 0;
        padding-bottom: 0;
    }
    .wrapper-footer-inner::before {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
        width: 100%;
        height: 80%;
        bottom: 0;
        top: auto;
    }
}
@media (max-width: 780px) {
    .wrapper-footer .footer-2,
    .wrapper-footer .footer-3 {
        width: 100%;
    }
    .wrapper-footer-inner {
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .footer-email a {
        font-family: 'Fira Sans Extra Condensed', sans-serif;
    }
    .footer-reseaux .footer-inner {
        max-width: 280px;
    }
}


.formulaire-envoyer input.form_submit,
a.bouton {
    display: inline-block;
    font-family: 'Fira Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #cc1f1f;
    padding: 12px 25px;
    border: none;
    outline: 2px solid #cc1f1f;
    outline-offset: -2px;
    transition: outline-offset 0.2s ease;
}

.formulaire-envoyer input.form_submit {
    padding: 8px 18px;
    font-size: 18px;
    cursor: pointer;
}

.formulaire-envoyer input.form_submit:hover,
a.bouton:hover {
    outline-offset: 2px;    
}
@media (max-width: 720px) {
    a.bouton {
        font-size: 20px;
        padding: 9px 20px;
    }
}


.wrapper-carousel-realisations {
    max-width: 1920px;
    padding-top: clamp(50px, 10vw, 120px);
    margin: 0 auto;
    position: relative;
    background: url('i/deco-references-top.svg') center top -1px no-repeat;
    background-size: 101% auto;
}
.wrapper-carousel-realisations::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('i/bg-references.jpg') center top no-repeat;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 300px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 300px);
    z-index: -1;
}

/* ----------------------------------------- */
/* Pour avoir les cards de la même hauteur partout */
.wrapper-carousel-realisations .owl-stage {display: flex;}
.wrapper-carousel-realisations .owl-item {flex-shrink: 0;}
.wrapper-carousel-realisations .wrapper-realisation,
.wrapper-carousel-realisations .wrapper-realisation .realisation,
.wrapper-carousel-realisations .wrapper-realisation .realisation-inner {
    height: 100%;
}
/* ----------------------------------------- */


.wrapper-carousel-realisations h2 {
    text-align: center;
    font-size: clamp(30px, 6vw, 45px);
    font-weight: 800;
    line-height: 1;
    color: #133361;
    text-transform: uppercase;
    padding: 0 15px;
}
.wrapper-carousel-realisations h2 span.dl {
    text-transform: uppercase;
    color: #133361;
    font-size: clamp(18px, 5vw, 35px);
    line-height: 1;
    font-weight: 400;
    margin-top: 10px;
}

.wrapper-carousel-realisations .realisation {
    display: block;
    color: #000;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 100%;
    padding: 25px 20px;
    transition: transform 0.2s ease;
    transform-origin: bottom center;
}
.wrapper-carousel-realisations .realisation:hover{
    transform: scale(1.01);
}
.wrapper-carousel-realisations .realisation-inner {
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding-bottom: 70px;
}
.wrapper-carousel-realisations .realisation-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.wrapper-carousel-realisations .realisation-content {
    padding: 20px;
}
.wrapper-carousel-realisations .realisation-content h3{
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    color: #4b4b4b;
    margin-bottom: 10px;
    line-height: 1.1;
}
.wrapper-carousel-realisations .realisation-content p{
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: #4b4b4b;
}
.wrapper-carousel-realisations .realisation-voirplus {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #cc1f1f;
    width: 60px;
    height: 60px;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}
.wrapper-carousel-realisations .realisation:hover .realisation-voirplus {
    transform: translateY(-5px);    
}

@media (max-width: 450px) {
    .wrapper-carousel-realisations .realisation-content {
        padding: 15px;
    }
    .wrapper-carousel-realisations .realisation-content h3{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .wrapper-carousel-realisations .realisation-content p{
        font-size: 18px;
    }
    .wrapper-carousel-realisations .realisation-voirplus {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 36px;
    }
    .wrapper-carousel-realisations .realisation-inner {
        padding-bottom: 55px;
    }
}



.wrapper-contenu {
    background:#fff;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.wrapper-boxed-contenu {
    max-width:1180px;
    margin:auto;}
.wrapper-boxed {}
.boxed {
    max-width:1380px;
    margin:auto;
    background-color: #fff;
}

@media (max-width:800px) {
    .wrapper-boxed {
        background-size:1000px auto;
    }
}



h1,h2.h1 {
    font-size: clamp(30px, 6vw, 45px);
    font-weight: 800;
    line-height: 1;
    color: #133361;
    text-transform: uppercase;
    margin: 0;
}


h1.annonces {margin-bottom: 10px;}


span.dl {
    display: block;
    text-transform: uppercase;
    color: #133361;
    font-size: clamp(18px, 5vw, 35px);
    line-height: 1;
    font-weight: 400;
    margin-top: 0.1em;
}



h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #133361;
    position: relative;
    line-height: 1.1;
}




div.padding { padding:40px 20px 50px 20px;}



@media (max-width:900px) {
    div.padding { padding-top:30px;}
}
@media (max-width:660px) {
    div.padding { padding-top:20px;}
}



.justify  { text-align:justify;}
div.center  { text-align:center;}

/*.cadrephoto {border:1px solid #929292;}*/

a.lien:link,a.lien:visited {color:#1f5eaa; font-weight:800; text-decoration:none; }
a.lien:hover{text-decoration:underline;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px; color:#1f5eaa; font-weight:800; text-decoration:none }
a.lienpetit:hover{text-decoration:underline;}

span.rouge {color:#E20026;font-weight: normal;font-size:16px;}






.list-3-columns {-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;}

.list-2-columns {-webkit-column-count: 2; 
-moz-column-count: 2;
column-count: 2;}



@media (max-width:800px) {
    .list-3-columns {-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;}
}
@media (max-width:490px) {
    .list-3-columns, .list-2-columns {-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;}
}



ul.list-3-columns li, ul.list-2-columns li {-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;}





ul.puce {
    margin: 0;
    padding: 0;
	margin-top:5px;
	margin-bottom:5px;
    padding-left:10px;
}
ul.puce > li {
    position: relative;
    list-style-type:none;
    overflow: auto;
    padding-left: 20px;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 12px;
    height: 12px;
    background: url('i/puce.svg') center center no-repeat;
    vertical-align: middle;
}



ul.images {
    padding:0px;
    margin:0;
    list-style-type:none;
}

ul.images li {
    float:left;
}

ul.images div.i {
    display:block;
    margin:auto;
    text-align:center;
}

ul.n2 li {width:50%;}
ul.n3 li {width:33.33%;}
ul.n4 li {width:25%;}
ul.n5 li {width:20%;}

ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {padding-left:10px;padding-right:10px;}


@media (max-width:880px) {
    ul.n4 li {width:50%;margin-bottom:20px;}
}




@media (max-width:560px) {
	ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {width:100%;margin-bottom:20px;}
	ul.images li {float:none;}
}



input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 90%;
}




div.right { float:right; padding-left:16px; max-width: 100%;}
div.left { float:left; padding-right:16px;max-width: 100%;}

div.right-responsive {float:right; padding-left:16px;max-width:100%;}
div.left-responsive {float:left; padding-right:16px;max-width:100%;}

div.right-responsive-xl {float:right; padding-left:16px;max-width:100%;}
div.left-responsive-xl {float:left; padding-right:16px;max-width:100%;}

@media (max-width: 860px) {
    div.right-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}

@media (max-width:560px) {
    div.right-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}


div.dessous {clear:both;height: 0px;}


.obligatoire {font-size:15px; color:#d5a356; font-weight:bold; }

input.contact,textarea.contact {color:#111111; background-color:#f4f7f8; border:solid #333 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#111111; background-color:#f4f7f8; border:solid #ff0000 1px; font-size:15px;}
input.frmsubmit {  background-color:#D4A356; border:#D4A356 1px solid; height:22px; width:90px; cursor:hand;  font-size:15px; color:#000; font-weight:bold;  text-decoration:none;}

.cadresubmit { border:1px #111111 solid; }

.sousmenu_bg {background-image:url(i/sousmenu_bg.gif);background-repeat:repeat-y;background-position:right;background-color:#D1D5D6;border-top:1px solid #fff;border-bottom:1px solid #fff;}

a.liennewsticker:link,a.liennewsticker:visited,a.liennewsticker:hover,a.liennewsticker:active {font-size:15px; color:#000; font-weight:normal; font-style:normal; text-decoration:none; }
a.liennewsticker:focus {outline:none;}


.pagination_inactif { color:#e7e7e7; font-weight:normal; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#1f5eaa; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  { pointer-events: none;  color:#ffffff; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#1f5eaa;}
table.pagination {background-color:#CCC;border:1px solid #ccc;background-image:url(i/pagination.gif);background-repeat:repeat-x;background-position:top;}

div.pagination {background-color:transparent;padding:6px;overflow:hidden;}
div.detail-pagination {background-color:transparent;padding:6px 10px;overflow:hidden;}

.arrow-next {
    padding-left:6px;
    display: inline-block;
    vertical-align: middle;
}

.arrow-previous {
    padding-right:6px;
    display: inline-block;
    vertical-align: middle;
}



@media (max-width:580px) {
    td.cadrepaginations, td.cadrepagination {display: none;}
}



div.map {}

.form_header {
    background: #28292a;
    color:#ffffff;text-align:left;padding:4px;
    text-transform: uppercase;text-align: center;font-weight: normal;
}
form table:nth-of-type(1) {    
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;*/
}

sup{
    color: #000;
    font-weight: bold;
    font-size: 16px;
    vertical-align: top;
}
.error{color:#be0000;font-size: 16px;}
.form_label {font-weight:normal;}
.form_input {}
div.form_note {font-style:italic;font-size:10px;}

#form {
    border: 2px solid #133361;
    padding: 20px;
}

.formulaire-envoyer {margin-top:25px;text-align: center;}

.formulaire-champs-requis {
    display: inline-block;
    margin-left: 20px;
    font-size: 12px;
}

img.flag {border:1px solid #C9C9C9;vertical-align:-4px;margin:0px 0px 0px 4px;}
div.flag {position:absolute;top:8px;right:10px;z-index: 9000;}
a.flag:link,a.flag:visited, a.flag:hover,a.flag:active {font-size:14px; color:#fff; font-weight:normal; font-style:normal; text-decoration:none; padding-left:10px;}

@media (max-width:720px) {
	div.flag span {display:none;}
	a.flag:link,a.flag:visited, a.flag:hover,a.flag:active {padding-left:0px;}
}








div.dl {background-color:#E1E1E1;border:1px solid #ccc;background-image:url(i/pagination.gif);background-repeat:repeat-x;background-position:top;padding:8px;float:right;margin-left:8px;}
div.geolocalisation {border:1px solid #999;}


div.ticker {float:right;padding-left:20px;width: 450px;}

@media (max-width:960px) {
	div.ticker {width: 350px;}
}

@media (max-width:690px) {
	div.ticker {float:none;padding-left:0px;margin-bottom:20px;width:100%;}
}



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

div.wrapper-padding {padding-left:20px;padding-right:20px;}

@media (max-width:400px) {
	div.wrapper-padding {padding-left:14px;padding-right:14px;}
}



#menu {
    display:none;
}





@media (max-width:500px) {
	div.justify {text-align: left;}
}



#bandeau_fullwidth {
    max-width: 1920px;
    margin: auto;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    z-index: 0;
}
#bandeau_photos_fullwidth {width:100%;max-width: 1920px;height: 980px;}

#bandeau_photos_fullwidth img {margin-left: 0px !important;margin-top: 0px !important;}


.made-in-france {
    position: absolute;
    bottom: -1px;
    right: 0;
    background: #fff;
    display: inline-block;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    transform: translateX(100%) rotate(-90deg);
    transform-origin: bottom left;
    padding: 10px 15px;
    z-index: 100;
    pointer-events: none;
}
.made-in-france em {
    color: #133361;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
}
.made-in-france img {
    display: block;
    height: 5px;
    margin: 2px auto 0;
}

@media (max-width: 900px) {
    .made-in-france {
        font-size: 18px;
        padding: 8px 12px;
    }
    .made-in-france em {
        font-size: 18px;
    }
    .made-in-france img {
        height: 4px;
    }
}
@media (max-width: 800px) {
    .made-in-france {
        font-size: 17px;
        padding: 7px 10px;
    }
    .made-in-france em {
        font-size: 17px;
    }
    .made-in-france img {
        height: 3px;
    }
}

@media (max-width:760px) {
    #bandeau_photos_fullwidth img {
        margin-left: 0px !important;
        margin-left: -webkit-calc(50% - 380px * (1920 / 980 / 2)) !important;
        margin-left: calc(50% - 380px * (1920 / 980 / 2)) !important;
        margin-top: 0px !important;
        height:380px;
        max-width: initial;
    }
    #bandeau_photos_fullwidth {
        height:380px !important;        
    }

}
@media (max-width:600px) {
    #bandeau_photos_fullwidth img {
        margin-left: 0px !important;
        margin-left: -webkit-calc(50% - 320px * (1920 / 980 / 2)) !important;
        margin-left: calc(50% - 320px * (1920 / 980 / 2)) !important;
        margin-top: 0px !important;
        height:320px;
        max-width: initial;
    }
    #bandeau_photos_fullwidth {
        height:320px !important;        
    }

}


a.back-to-top {
    display: none;
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.8) url("i/arrow-up.svg") no-repeat center center;
    background-size: 24px 24px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
}



iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}


.header-top a:hover {
    filter:brightness(0) saturate(100%) invert(14%) sepia(74%) saturate(5835%) hue-rotate(356deg) brightness(87%) contrast(86%);
}

a.lien-facebook {text-decoration: none !important;}


a.facebook {display: inline-block;width:36px;height:36px;padding:6px;}


a.instagram {display: inline-block;width:36px;height:36px;padding:6px;margin-left:5px;}


a.linkedin {display: inline-block;width:36px;height:36px;padding:6px;margin-left:5px;}

a.facebook:hover, a.instagram:hover, a.linkedin:hover {background: rgba(147, 147, 147, 0.10);}



.header-reseaux a.facebook, .header-reseaux a.instagram, .header-reseaux a.linkedin {display: inline-block;width:32px;height:32px;padding:4px;background-color: #242424;border-radius:0px 0px 6px 6px;}
.header-reseaux a.facebook:hover img, .header-reseaux a.instagram:hover img, .header-reseaux a.linkedin:hover img {animation: none;}

.header-reseaux a.facebook:hover, .header-reseaux a.instagram:hover, .header-reseaux a.linkedin:hover {    background: rgba(147, 147, 147, 0.10);}


div.galerie-photo {width:33.33%;display:inline-block;vertical-align: top;padding:18px;text-align: center;}

div.galerie-photo img, ul.images img {margin-bottom: 7px;}

@media (max-width:800px) {
    div.galerie-photo {width:50%;}
}


@media (max-width:500px) {
    div.galerie-photo {width:100%;}
}




img.cadrephoto, img.ombre, ul.images img {
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
}


a.lien-actu {color:inherit;text-decoration: none;}





.header-content { background-color: #28292a;text-align: center;    
     padding: 60px 10px 0px 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.75);    font-weight: 400;
    color: #fff;
    font-size: 17px;
}

.header-content h2 {
    font-weight: 400;
    color: #fff;
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
}

body.page-realisations-detail .header-content {display: none;}

.header-content.header-content-light {color:#000;background-color: transparent;text-shadow: none;}
.header-content.header-content-light h2 {color:#000;text-shadow: none;}


.header-content h2:after {content:none;}







.bande-encarts-bg {background: url('i/encart-bg.jpg') no-repeat left top;text-align: center;padding:40px 10px 60px 10px;}

div.wrapper-bande-encarts {position: relative;max-width: 1380px;margin:auto;}


div.bande-encarts {}

div.wrapper-bande-encarts-padding {padding:0px 20px;}
div.bande-encart {height: 100%;padding-top:0px;padding-bottom:0px;position: relative;}


div.wrapper-bande-encart {
    display: inline-block;width:33.33333%;padding:20px 20px;vertical-align: top;
    position: relative;text-align: center;
}


div.wrapper-bande-encart a {color:initial;text-decoration: none;}
.wrapper-bande-encart h3 {
    text-decoration: none;
    text-transform: initial;
    font-size: 20px;
    color: #fff;
    text-shadow: none;
    text-transform: uppercase;
    position: absolute;
    top: -15px;
    left: 50%;
    transform:translateX(-50%) skew(3deg, -4deg) rotate(3deg);
    background-color: #3665af;
    font-weight: normal;
    margin:0;
    padding:12px 14px;
    letter-spacing: -0.5px;
}


.bande-encart-1  h3 {transform:translateX(-50%) skew(-4deg, 5deg) rotate(1deg);}
.bande-encart-2  h3 {transform:translateX(-50%) skew(3deg, 2deg) rotate(-3deg);}
.bande-encart-3  h3 {transform:translateX(-50%) skew(3deg, -4deg) rotate(7deg);}
.bande-encart-4  h3 {transform:translateX(-50%) skew(-2deg, 3deg) rotate(-5deg);}
.bande-encart-5  h3 {transform:translateX(-50%) skew(-4deg, 5deg) rotate(-2deg);}
.bande-encart-6  h3 {transform:translateX(-50%) skew(-4deg, 5deg) rotate(-6deg);}




.wrapper-bande-encart:hover h3 {background-color: #e51f29;}

.bande-encart-savoirplus {color: #fff;text-transform: uppercase;padding:18px 10px;}
.bande-encart-savoirplus img {vertical-align:-6px;margin-right: 5px;}


.bande-encart-image img {vertical-align: top;}

.bande-encart-texte {padding:20px 10px 20px 10px;color:#e0d6c6;transition: all 0.3s ease-in-out 0s;}

div.bande-encart {background-color:#3665af;max-width: 330px;margin: auto;box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.32);}

div.bande-encart:hover .bande-encart-texte {
    color:#fff;
}

.wrapper-bande-encart div.bande-encart:hover h3:after {}

div.bande-encart:hover h3 {color:#fff;}


.wrapper-bande-encart:nth-of-type(2) h3 {width:120px;}
.wrapper-bande-encart:nth-of-type(3) h3 {width:160px;}
.wrapper-bande-encart:nth-of-type(4) h3 {width:116px;}
.wrapper-bande-encart:nth-of-type(5) h3 {width:116px;}

@media (max-width:1600px) { 
    .header-content {padding: 50px 10px 0px 10px;}
}



@media (max-width:1100px) { 
    .bande-encarts-bg {padding:23px 10px 30px 10px;}
    .header-content h2 {font-size: 24px;}
}

@media (max-width:850px) { 
    .wrapper-bande-encart h3 {font-size: 17px;    padding: 10px 10px;}
    .wrapper-bande-encart:nth-of-type(2) h3 {width:100px;}
    .wrapper-bande-encart:nth-of-type(3) h3 {width:130px;}
    .wrapper-bande-encart:nth-of-type(4) h3 {width:100px;}
    .wrapper-bande-encart:nth-of-type(5) h3 {width:100px;}
    .bande-encart-savoirplus {padding: 9px 10px;font-size: 15px;}
    div.wrapper-bande-encart {padding: 20px 12px;}
}


@media (max-width:700px) { 
    .wrapper-bande-encart h3 {font-size: 16px;    padding: 8px 8px;}
    .wrapper-bande-encart:nth-of-type(2) h3 {width:90px;}
    .wrapper-bande-encart:nth-of-type(3) h3 {width:120px;}
    .wrapper-bande-encart:nth-of-type(4) h3 {width:90px;}
    .wrapper-bande-encart:nth-of-type(5) h3 {width:90px;}
    .bande-encart-savoirplus {padding: 8px 10px;font-size: 15px;}
    div.wrapper-bande-encart {padding: 20px 10px;}
    div.wrapper-bande-encarts-padding {padding: 0px 12px;}
    .bande-encarts-bg {padding: 23px 10px 20px 10px;}
    .header-content {font-size: 16px;padding: 30px 10px;}
    .header-content h2 {font-size: 22px;padding: 20px 10px;}
}

@media (max-width:600px) { 
    .header-content h2 {font-size: 24px;padding: 24px 10px;}
}

@media (max-width:560px) {
div.wrapper-bande-encart {width: 50%;}
} 

@media (max-width:420px) { 
    .header-content h2 {font-size: 20px;padding: 20px 10px;}
}

@media (max-width:380px) {
    .wrapper-bande-encart:nth-of-type(3) h3 {width:110px;}
    .wrapper-bande-encart h3 {font-size: 15px;    padding: 8px 8px;}
    .bande-encart-savoirplus {padding: 8px 3px;font-size: 14px;}
    div.wrapper-bande-encarts-padding {padding: 0px 8px;}
    .bande-encarts-bg {padding: 23px 0px 20px 0px;}
} 

@media (max-width:360px) { 
    .header-content h2 {font-size: 18px;padding: 15px 10px;}
}



div.col1-2 {display:inline-block;vertical-align:top;width:48%;}
div.col2-2 {display:inline-block;vertical-align:top;margin-left:4%;width:48%;}


@media (max-width:700px) { 
    div.col1-2 {display:inline-block;vertical-align:top;width:100%;}
    div.col2-2 {display:inline-block;vertical-align:top;margin-left:0%;width:100%;margin-top:15px;}
}


div.col1-3, div.col2-3, div.col3-3 {display:inline-block;width:30%;vertical-align: top;}
div.col2-3, div.col3-3 {margin-left:5%;}


@media (max-width:880px) {
    div.col1-3, div.col2-3, div.col3-3 {width:50%;margin-bottom: 10px;margin-left:0%;padding-left:2%;padding-right: 2%;}

}

@media (max-width:480px) {
    div.col1-3, div.col2-3, div.col3-3 {width:100%;margin-bottom: 10px;margin-left:0%;}

}


.style-galerie {
    border:1px solid #d8d8d8;background:rgba(0,0,0,0.05);position:relative;max-width: 760px;
    margin: auto;
}

.wrapper-galerie {
        float: none;
        width:100%;
        max-width:720px;
        margin:auto;margin-bottom: 20px;
    }

.photo_commentaire {display: block;text-align: center;text-decoration: none !important;color:#000;padding-top:5px;}


.ilightbox {text-decoration: none;}

.h2-puce {
    vertical-align: -1px;
    padding-right: 3px;
}




.wrapper-bande {}
.wrapper-boxed-bande {max-width: 1180px;margin:auto;}




.encart-activites {
    display: block;
    position: absolute;
    top:initial;
    bottom:8%;
    left:0%;
}


.encart-activites h3 {
    display: block;
    font-size: clamp(25px, 6vw, 60px);
    line-height: 1;
    font-weight: 900;
    color: #fff;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    max-width: min(600px, 70vw);
    padding-left: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.encart-activites p {
    display: block;
    font-size: calc(clamp(25px, 6vw, 60px) * 0.4);
    line-height: 1;
    font-weight: 500;
    color: #fff;
    padding: 0;
    margin: 0;
    text-transform: none;
    max-width: min(600px, 70vw);
    padding-left: 100px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.encart-activites::before {
    content: " ";
    display: block;
    width: 70px;
    height: 30px;
    background-color: #a41a1a;
    box-shadow: 5px 5px 0 #7a7876;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width:450px) {
    .encart-activites {display: none !important;}
}




.rsDefault .rsArrow {
    z-index: 100000;
}
.rsDefault .rsGCaption {
        top: 0px !important;
    left: 0px !important;
    height: 100% !important;
    padding:0 !important;
    z-index: 1000;
    pointer-events: none;
}

.rsDefault .rsArrowIcn {
    background-color: rgba(19, 51, 97, 0.5);
    transform: translateY(calc(var(--header-height) / 2));
}
.rsDefault .rsArrowIcn:hover {
    background-color: rgba(19, 51, 97, 0.8);
}

.rsGCaption {

}





a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}



.encarts-bg {background:#383838;padding-top:20px;text-align: center;padding:60px 10px;}

div.wrapper-encarts {position: relative;max-width: 1920px;margin:auto;}

div.encarts {}

div.wrapper-encarts-padding {padding:0px 20px;}


div.wrapper-encart {
    display: inline-block;width:16.66%;padding:20px 20px;vertical-align: top;
    position: relative;text-align: center;
}


div.wrapper-encart a {color:initial;text-decoration: none;}
.wrapper-encart h3 {
    text-decoration: none;
    font-size:26px;    line-height: 1;
    margin-top: 0px;
    margin-bottom: 20px;color:#383838;text-shadow: none;
    text-transform: uppercase;
}


.encarts-intro {color:#fff;margin-bottom: 20px;}
.encarts-intro h3 {text-transform: uppercase;color:#fff;font-weight: normal;margin: 0;padding: 0;font-size: 35px;}


div.encart {
    margin: auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.52);
    max-width:230px;
    padding-top: 100%;
    position: relative;
}
div.encart div.encart-content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

div.encart:hover h3 {color:#fff;}
div.encart:hover {background: #1f5eaa;}
div.encart:hover img {
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(173deg) brightness(104%) contrast(101%);
}

@media (max-width:1700px) {
    .wrapper-encart h3 {font-size: 24px;margin-bottom: 16px;}
}

@media (max-width:1500px) {
    .wrapper-encart h3 {font-size: 22px;margin-bottom: 14px;}
    div.wrapper-encart {padding: 15px 15px;}
    .encarts-bg {padding: 50px 10px;}
}

@media (max-width:1300px) {
    .wrapper-encart h3 {font-size: 20px;margin-bottom: 12px;}
    div.wrapper-encart {padding: 12px 12px;}
    .encarts-bg {padding: 40px 10px;}
    div.wrapper-encarts-padding {padding: 0px 10px;}
    .encart-content img {width:72px;}
}

@media (max-width:1150px) {
    .wrapper-encart h3 {font-size: 18px;margin-bottom: 10px;}
    div.wrapper-encart {padding: 10px 10px;}
    .encarts-bg {padding: 35px 10px;}
    div.wrapper-encarts-padding {padding: 0px 5px;}
}

@media (max-width:1000px) {.wrapper-encart h3 {font-size: 16px;margin-bottom: 8px;}}


@media (max-width:890px) {
    div.wrapper-encart {width: 33.33%;}
     .encart-content img {width:96px;}
     .wrapper-encart h3 {font-size: 26px;margin-bottom: 20px;}
}
@media (max-width:740px) {
     .wrapper-encart h3 {font-size: 22px;margin-bottom: 14px;}
}
@media (max-width:650px) {
      .wrapper-encart h3 {font-size: 20px;margin-bottom: 12px;}
}
@media (max-width:590px) {
      .wrapper-encart h3 {font-size: 18px;margin-bottom: 10px;}
}
@media (max-width:540px) {
    div.wrapper-encart {width: 50%;}
     .encart-content img {width:96px;}
     .wrapper-encart h3 {font-size: 22px;margin-bottom: 14px;}
}
@media (max-width:420px) {
     .encart-content img {width:72px;}
    .wrapper-encart h3 {font-size: 18px;margin-bottom: 10px;}
}
@media (max-width:380px) {
    .wrapper-encart h3 {font-size: 16px;margin-bottom: 8px;}
}


label[for="element6i0"] {font-size: 12px;}





div.map iframe {vertical-align: top;}



div.mentions {position:relative;max-width:1180px;margin:auto;text-align:center;padding:50px 20px 80px 20px;-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;color: #133361;
}

div.mentions a {color:#133361 !important;font-weight: bold;text-decoration: none;}
div.mentions a:hover {text-decoration: underline; text-underline-offset: 4px;}


.wrapper-listes-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.articles-liste-item .inner-articles-liste-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    padding-bottom: 70px;
    height: 100%;
}
.articles-liste-item a {
    text-decoration: none;
    color: currentColor;
}
.articles-liste-item .wrapper-liste-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.articles-liste-item .content {
    padding: 20px;
}
.articles-liste-item .content h3{
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    color: #4b4b4b;
    margin-bottom: 10px;
    line-height: 1.1;
}
.articles-liste-item .content p{
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: #4b4b4b;
}
.articles-liste-item .realisation-voirplus {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #cc1f1f;
    width: 60px;
    height: 60px;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}
.articles-liste-item:hover .realisation-voirplus {
    transform: translateY(-5px);    
}

@media (max-width: 1130px ) {
    .wrapper-listes-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 750px ) {
    .articles-liste-item .content {
        padding: 15px;
    }
    .articles-liste-item .content h3{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .articles-liste-item .content p{
        font-size: 18px;
    }
    .articles-liste-item .realisation-voirplus {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 36px;
    }
    .articles-liste-item .inner-articles-liste-item  {
        padding-bottom: 55px;
    }
}
@media (max-width: 520px ) {
    .wrapper-listes-articles {
        grid-template-columns: repeat(1, 1fr);
    }
}



ul.menu-realisations {list-style-type: none;margin: 0;padding: 0;    background-color: #efefef;
    border: 1px solid #bfbfbf;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.09);margin-bottom:20px;text-align: center;}
ul.menu-realisations li {display: inline-block;}
ul.menu-realisations a {text-decoration: none;color:#000; padding: 10px 12px;display: inline-block;text-transform: uppercase;}
ul.menu-realisations li.current, ul.menu-realisations li.current:hover {    background-color: #1f5eaa;}
ul.menu-realisations li.current a, ul.menu-realisations li.current:hover a {color:#fff;}
ul.menu-realisations li:hover {background-color:#fff;}


@media (max-width:800px) {
    ul.menu-realisations a {padding: 8px 8px;}
}

@media (max-width:600px) {
    ul.menu-realisations a {font-size:15px;padding: 6px 6px;letter-spacing: -0.5px;}
}



.right-responsive.video-presentation {
    width: 500px;
    margin: auto;
}

@media (max-width:760px) {
    div.right-responsive.video-presentation {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
   }



.actualite-galerie {margin-top:20px; margin-bottom: 20px;}
/* isotope */

.isotope-grid-item { width: 33.333%; }

@media (max-width:1200px) {
    .isotope-grid-item { width: 50%; }
}

@media (max-width:520px) {
    .isotope-grid-item { width: 100%; }
}

.isotope-filter {margin-bottom: 30px;}
.isotope-filter a {position: relative;cursor: pointer;text-transform: uppercase;display: inline-block;padding:4px 20px;}

.isotope-filter a.active {color:#b87d2a;}

.isotope-filter a.active:after {    position: absolute;
    content:" ";
    display: block;
    height:3px;
    background-color: #b87d2a;
    width:100%;
    left:50%;
    transform: translateX(-50%);
    margin:auto;
    margin-top:10px;
}

.pix-masonry-photo {
    padding: 10px;
    text-align: center;
}


.pswp {z-index: 150000000;}

.wrapper-tags-realisations {margin-bottom: 15px;}

.menu-actualites ul,
.wrapper-tags-realisations ul {
    font-size: 0;
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    text-align: center;
}

.menu-actualites ul li,
.wrapper-tags-realisations ul li {
    margin: 0px;
    display:inline-block;
    vertical-align: top;
    background-color: transparent;
    position:relative;

    }

.menu-actualites a,
.wrapper-tags-realisations a {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size:16px;
    font-weight:normal;
    display:block;
    color:#000;
    line-height: 20px;
    text-decoration:none;
    text-align: center;
    padding:12px 15px 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0px;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
}

@media (max-width:800px) {
    .menu-actualites a,
    .wrapper-tags-realisations a {font-size:14px;padding:8px 10px 8px 10px}
}

@media (max-width:500px) {
    .menu-actualites a,
    .wrapper-tags-realisations a {font-size:14px;padding:6px 8px 6px 8px}
}


.menu-actualites a.selected, .menu-actualites a.selected:hover,
.wrapper-tags-realisations a.tag-selected, .wrapper-tags-realisations a.tag-selected:hover {
    background-color: #133361;
    color:#fff;
}

.menu-actualites a:hover,
.wrapper-tags-realisations a:hover {background-color: rgba(19, 51, 97, 0.2);color:#000;}


.realisation-details-tags {margin-bottom:10px;text-align: left;}

.realisation-details-tags a {
    background-color: rgba(19, 51, 97, 0.2);
    padding: 4px 10px;
    margin-right: 5px;
    font-family: 'Fira Sans', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin: 2px 2px;
}
.realisation-details-tags a:hover {
    background-color: rgba(19, 51, 97, 1);
    color: #fff;
}

.realisation-tags {margin:10px 0px;}

.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.detail-pagination a.lien {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    color: #000 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
}

.detail-pagination .show-next {
    text-align: right;
}

.liste-pagination {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 18px;
}

.liste-pagination > div {
    display: inline-block;
    width: 100%;
}

.liste-pagination > div:first-of-type{text-align: left;}
.liste-pagination > div:nth-of-type(2){text-align: center;}
.liste-pagination > div:last-of-type{text-align: right;}

.liste-pagination a.lien {
    color:#000 !important;
    font-weight: normal;
    font-style: normal;
}


@media (max-width: 700px) {
    .detail-pagination .show-previous {width: 100%;}
    .detail-pagination .show-next {width: 100%;}
}


.pixvisite {
    padding: 0px 0px;

}

.pixvisite iframe {vertical-align: top;
    -moz-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.2);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#000, Direction=134, Strength=3);

}


.temoignagefull-content {
    background-color: #ede8e3;
    padding:40px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #000;
}

.temoignagefull-auteur {
    text-align: center;
    font-style: italic;
    font-weight: bold;
}


.photo-aude {float:left;margin-right: 60px;margin-bottom: 20px;max-width: 400px;}


@media (max-width:1400px) {
    .photo-aude {max-width: 300px;float:right;margin-right: 0px;margin-left:60px;}
    .photo-aude img {box-sizing: border-box;}
}


@media (max-width:880px) {
    .photo-aude {max-width: 300px;float:none;    margin: auto;margin-bottom: 40px;}
}


.page-contact form {
    background-color: #ede8e3;
    padding:20px;
    border:2px solid black;
}

form label {
    font-family: 'Roboto Condensed', sans-serif;
}


form label[for="element7i0"] {font-size: 13px;color: #666;}


.div-centre {text-align: center;}
.div-centre h2 {display: inline-block;}






.owl-carousel-icones {
    padding: 0;
    max-width: 1920px;
    margin: 0 auto;
}
.owl-carousel-icones .owl-item {
    padding: 0 20px;
}
.wrapper-icone {
    text-decoration: none;
    color: currentColor;
    text-align: center;
    border-radius: 25px;
    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    margin: clamp(20px, 4vw, 50px) auto;
}
.wrapper-icone .icone img {
    display: inline-block;
    margin: auto;
    width: auto;
    height: 100px;
    vertical-align: top;
}
.wrapper-icone h3 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1;
    margin: 0;
    color: #133361;
    text-align: center;
    margin-top: 20px;
}
.wrapper-icone span {
    font-size: 20px;
    color: #4b4b4b;
    font-weight: 400;
    margin-top: 15px;
}
.wrapper-icone:hover {
    background: linear-gradient(to bottom right, #0f4c93, #133362);
    box-shadow: 10px 10px 16px 3px rgba(135, 135, 135, 0.35);
}
.wrapper-icone:hover > * {
    filter: brightness(0) invert(1);
}


@media (max-width:1150px) {
    .wrapper-icone {padding: 25px 15px;}
    .wrapper-icone h3 {font-size: 22px; margin-top: 15px;}
    .wrapper-icone span { font-size:20px;margin-top: 8px;}
    .wrapper-icone .icone img {height: 80px;}
    
}

@media (max-width:620px) {
    .wrapper-icone h3 {font-size: 20px; margin-top: 8px;}
    .wrapper-icone span { font-size:18px;margin-top: 5px;}
    .wrapper-icone .icone img {height: 70px;}
    
}



.wrapper-bande-recrutement {
    position: relative;
    margin-bottom: 40px;
}

.wrapper-bande-recrutement::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #133361;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.wrapper-bande-recrutement .bande-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 60px;
    gap: 40px;
}
.wrapper-bande-recrutement .bande-inner > div {
    width: 100%;
    text-align: center;
}

.wrapper-bande-recrutement .arrows {
    margin-top: -40px;
    margin-bottom: -20px;
}
.wrapper-bande-recrutement .arrows img {
    vertical-align: top;
}

.wrapper-bande-recrutement .content {
    text-align: center;
}
.wrapper-bande-recrutement .content h2 {
    font-size: 26px;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 15px;
}

@media (max-width: 760px) {
    .wrapper-bande-recrutement .bande-inner {
        padding-bottom: 20px;
        gap: 20px;
    }
    .wrapper-bande-recrutement .logo {
        display: none;
    }
    .wrapper-bande-recrutement .arrows img {
        width: 190px;
    }
    .wrapper-bande-recrutement .content h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }
}
@media (max-width: 400px) {
    .wrapper-bande-recrutement .content h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .wrapper-bande-recrutement .bande-inner {
        padding: 20px 10px 10px;
    }
    .wrapper-bande-recrutement .arrows {
        margin-top: -10px;
    }
    .wrapper-bande-recrutement a.bouton {
        font-size: 18px;
    }
}


#geo-references,
#map-localisation {
    height: 500px;
}
.gmap-tooltip {
    font-family: 'Fira Sans', sans-serif;
}
.gmap-tooltip h3,
.gmap-tooltip p {
    margin: 0;
    padding: 0;
}
.gmap-tooltip a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #133361;
}
.gmap-tooltip a:hover {
    text-decoration: underline;
}

.gmap-tooltip .itineraire button[type="button"] {
    color: #133361;
    background: transparent;
    display: inline-block;
    padding: 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.gmap-tooltip .itineraire button[type="button"]:disabled {
    color: #9e9e9e;
    cursor: default;
}
.gmap-tooltip .itineraire  form {
    width: 100%;
    display: none;
}
.gmap-tooltip .itineraire  form.show {
    display: block;
}
.gmap-tooltip .itineraire  label {
    width: 250px;
}
.gmap-tooltip .itineraire  .row {
    display: flex;
    flex-direction: row;
}



.video-responsive.centre {
    margin: 0 auto;
}




/* HISTORY */
.wrapper-history {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 5px;
    --line-width: 5px;
}

.history-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: var(--line-width);
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.history-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(var(--scrolled, 0));
    display: block;
    width: 100%;
    height: 50vh;
    background: #133361;
    z-index: 10000000;
}

.history-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
}

.history-item .history-date {
    font-size: 25px;
    font-weight: 900;
}
.history-item .history-content {
    border: 1px solid #133361;
    padding: 20px;
}

.history-item .history-icon {
    width: 40px;
    height: 40px;
    /* border: 1px solid #133361; */
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    background: #fff;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(calc(-50% - var(--line-width) / 2));
    z-index: 10;
    transition: background 0.2s ease;
}

.history-item .history-icon.animate {
    background: #133361;
}


@media (min-width: 721px) {
    .history-item:nth-child(even) .history-date {
        text-align: right;
    }
    .history-item:nth-child(odd) .history-date {
        order: 1;
    }
}

@media (max-width: 720px) {
    .history-item {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        padding-left: 50px;
    }
    .history-line {
        left: 20px;
    }
    .history-item .history-icon {
        left: 20px;
        transform: translateX(calc(-50% - var(--line-width)));
    }
}
@media (max-width: 430px) {
    .history-item {
        gap: 5px;
        padding-left: 35px    
    }
    .history-item .history-content {
        padding: 10px;
    }
    .history-item .history-icon {
        width: 30px;
        height: 30px;
        left: 15px;
    }
    .history-line {
        left: 15px;
    }
}



/* OFFRES CSE */
.wrapper-listes-offres-cse {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wrapper-offre-cse .offre-cse-inner {
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
    padding: 20px 20px 30px;
}

.offre-cse-image {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    text-align: center;
}
.offre-cse-image:empty {
    display: none;
}

.offre-cse-image a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.offre-cse-image img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    object-fit: contain;
}

.offre-cse-content {
    width: 100%;
    margin-top: 35px;
}

.offre-cse-titre {
    margin: 0;
    color: #133361;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.1;
    display: inline-block;
}
.offre-cse-categorie {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 99px;
    background: #133361;
    color: #fff;
    vertical-align: 4px;
}


.offre-cse-adresse {
    font-size: 18px;
    color: #4b4b4b;
    font-style: italic;
    line-height: 1.2;
}
.offre-cse-adresse img {
    vertical-align: -2px;
}
.offre-cse-description {
    margin: 0;
    position: relative;
    margin-top: 10px; 
}
.more-text .offre-cse-description {
    height: 150px;
    overflow: hidden;
}
.more-text .offre-cse-description.expanded {
    height: auto;
    overflow: none;
}

.offre-cse-description .voir-plus {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #fff 25px, #ffffff80);
    height: 70px;
    z-index: 2;
    color: #133361;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}
.offre-cse-description.expanded .voir-plus {
    display: none;
}

.form-recherche-offres-cse {
    margin-bottom: 20px;
}

@media (max-width: 1080px) {
    .wrapper-listes-offres-cse {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .wrapper-offre-cse .offre-cse-inner {
        flex-direction: column;
    }

    .offre-cse-image {
        width: 100%;
    }
    .offre-cse-content {
        padding: 20px 15px;
    }
    .offre-cse-description {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .wrapper-listes-offres-cse {
        grid-template-columns: 1fr;
    }
}



.pix-select {
    position: relative;
    min-width: 15ch;
    max-width: 30ch;
    border: 1px solid #133361;
    border-radius: 0.25em;
    padding: 0;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
    display: inline-block;
}
.pix-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    color: #133361;
    font-weight: 700;
    border: none;
    padding: 0.25em 2em 0.25em 0.5em;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
    width: 100%;
    font-size: 18px;
}

.pix-select select::-ms-expand {
    display: none;
}

.pix-select::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0.8em;
    height: 0.5em;
    background-color: #133361;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}