* {-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: "Lato", sans-serif;
    font-size: 18px;
    color: #000;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    background-color: #fff;
    line-height: 1.4;
}


:root {
    --padding-header: 30px;
}


html {height: 100%;}

.wrapper-header{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-bottom-right-radius: 2.5em;
}

/* HEADER LOGO */
.wrapper-header div.logo {
    position: relative;
    font-size: 1em;
    flex-shrink: 0;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 1.1em 1em;
    display: flex;
    align-items: center;
}

.wrapper-header div.logo img {
    vertical-align: top;
}

.header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5em;
}
.header-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;

    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}



/* HEADER TOP */
.header-top h3 {
    font-size: 1em;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.header-top a.bouton-tel {
    position: absolute;
    top: 0;right:2em;
    color:#fff;
    background: #d73a73;
    padding:0.4em 0.8em 0.2em 0.8em;
    transform: translateY(-0.2em);
    border-radius: 0em 0em 1em 1em;
    font-size:1.1em;
    font-weight: 700;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.header-top a.bouton-tel:hover {
    transform: translateY(0);
}

.header-top a.bouton-tel img {
    vertical-align: -2px;
}


/* MENU */
.wrapper-menu{
    text-align: center;
    position: relative;
    z-index: 2;

    width: 100%;

    max-width: 1300px;
    margin-right: 20px;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    height: 100%;
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Fira Sans Condensed", serif;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.2;
    color: #888888;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.6em 1.2em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;

    border-radius: 0 1em 0 0;

    transition: color 0.2s ease, background 0.2s ease;
}


/* ON HOVER */
.wrapper-menu .menu .menu-item:hover > a,
.wrapper-menu .menu .menu-item:hover > span {

    color: #484882;
}

/* ON SELECTED */
.wrapper-menu .menu .menu-item.selected > a,
.wrapper-menu .menu .menu-item.selected > span {
    color: #484882;
}

.wrapper-menu .menu .menu-item::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 55%) scale(0.8);
    background: url('i/menus.svg') no-repeat center center / 100% auto;
    width: 26px;
    height: 28px;
    display: block;
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
}

.wrapper-menu .menu .menu-item:hover::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 45%) scale(0.8);
    display: block;
    opacity: 1;
}
.wrapper-menu .menu .menu-item.selected::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 45%);
    display: block;
    opacity: 1;
}








.wrapper-menu .menu .menu-item.selected .menu-arrow-inner {
    background:#484882;
}

.wrapper-menu .menu .menu-item:hover .menu-arrow-inner {
    background:#484882;
}


.wrapper-menu .menu span div.menu-arrow-inner {
    background-color: #888888;
}


.wrapper-menu .menu span div.menu-arrow {
    width: 13px;
    height: 7px;
    transition: all 0.2s ease;
    margin-left:4px;
}

.wrapper-menu .menu span div.menu-arrow-inner {
    background-color: #888888;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 100%;
    width: 100%;
}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);

}


ul.menu li.page-a-propos ul.sousmenu {
    min-width: 200px;
}


.wrapper-menu .sousmenu a{
    color: #888888;
    text-decoration: none;
    padding: 1em 0.7em;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 0;
}

.wrapper-menu .sousmenu a:hover{
    color:#484882;
}

.wrapper-menu .sousmenu .selected a {
    background:#484882;
    color: #fff;
}

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


.wrapper-menu .sousmenu a em {
    font-size: 0.8em;
    font-weight: 300;
    font-style: normal;
}


/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1em;
    width: 40px;
    height: 40px;
    padding: 15px;
    background: linear-gradient(to top, #363565, #484882);
    border-radius: 0 0 0 8px;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: center;
    transition: background 0.2s ease;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #fff;

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -8px); /* 8px + 2px de la hauteur*/
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 6px);
}
.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: 1450px) {
    .wrapper-header {
        font-size: 18px;
    }
    .wrapper-header div.logo {
        font-size: 0.6em;
    }
    .header-top .bouton-tel img {width:18px;}
    .wrapper-header {
        border-bottom-right-radius: 2em;
    }
    .pix-bandeau-swiper {
        margin-top: -35px !important;
    }

}
@media (max-width: 1300px) {
    .wrapper-header {
        font-size: 17px;
    }
    .wrapper-header .logo-totem img {width:calc(140px * 0.85);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.85);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.85);}
}
@media (max-width: 1200px) {
    .wrapper-header {
        font-size: 16px;
    }
    .wrapper-header .logo-totem img {width:calc(140px * 0.8);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.8);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.8);}
}
@media (max-width: 1100px) {
    .wrapper-header {
        font-size: 15px;
    }
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 1.2em 1em;
    }

    .wrapper-menu .sousmenu a {
        padding: 0.8em 0.7em;
    }

    .wrapper-header a.logo {
        padding: 1.1em 1.2em;
    }
        .wrapper-header .logo-totem img {width:calc(140px * 0.75);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.75);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.75);}
}
@media (max-width: 1024px) {

    .wrapper-menu .menu .menu-item::before {
        left:0;
        top:0;bottom:auto;
        width: 18px;
        height: 20px;
    }

    .wrapper-menu .menu .menu-item.selected::before {
        left:0;
        top:0;bottom:auto;
    }

    .wrapper-menu .menu .menu-item:hover::before {
        left:0;
        top:0;bottom:auto;
    }

    .wrapper-header {
        border-bottom-right-radius: 1.5em;
    }
    .pix-bandeau-swiper {
        margin-top: -22px !important;
    }
 
    .wrapper-menu {
        padding-right: 10px;
    }
    
    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

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

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

    .wrapper-header .wrapper-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 100000;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none; 
        height: 100vh;      
        height: 100dvh;  
        margin-top: 0;    
    } 

    .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 60px 10px 10px;
        height: 100%;
        background: rgb(255, 255, 255);
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 350px;
        margin-left: auto; 
        overflow: auto;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0);
        counter-reset: menu-item;
    }


    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        width: 100%;
        text-align: left;
        height: auto;
        counter-increment: menu-item;
        
    }

    .wrapper-header .menu > li {
        width: 100%;
    }
    .wrapper-header .wrapper-menu a{
        position: relative;
    }
    .wrapper-header .menu-item:hover {
        background: inherit;
    }

    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        padding-left: 15px;
        transform: none;
    }
    .wrapper-header .sousmenu::before {
        content: none;
    }

    .wrapper-menu .menu li:hover:not(.open) > ul {
        display: none;
    }

    .wrapper-header .menu-item:hover.open .sousmenu,
    .wrapper-header .menu-item.open .sousmenu {
        display: block;
    }
    .wrapper-header .menu-item.open div.menu-arrow {
        transform: none;
    }

    .wrapper-header .wrapper-menu .sousmenu a{
        font-weight: 400;
        padding: 10px 10px;
        text-align: left;
        font-size: 16px;
    }

    .wrapper-menu .menu span div.menu-arrow {
        position: static;
        transform: none;
        margin-left: 5px;
        transform: rotate(-90deg);
    }


    .wrapper-header .header-top {
        font-size: 14px;
    }


    .wrapper-menu .menu-item > a::before,
    .wrapper-menu .menu-item > span::before {
        bottom: 0;
        top: 50%;
        left: -10px;
        transform: translateY(-50%) scaleX(0);
        transform-origin: left center;
    }

    /* HOVER */
    .wrapper-menu .menu-item:hover > a::before,
    .wrapper-menu .menu-item:hover > span::before {
        transform: translateY(-50%) scaleX(1);
    }
    
    /* SELECTED */
    .wrapper-menu .menu-item.selected > a::before, 
    .wrapper-menu .menu-item.selected > span::before {
        transform: translateY(-50%) scaleX(1);
    }


.header-top a.bouton-tel {
    top:auto;bottom:1em;transform: none !important;
    border-radius:1em;    right: 1em;
    padding:0.2em 0.8em 0.2em 0.8em;
 
}
   .header-top .bouton-tel img {
        width: 16px;
    }

}

@media (max-width: 760px) {
    .wrapper-header .header-top {
        gap: 1em;
    }
}
@media (max-width: 720px) {
    .wrapper-header .header-top {
        gap: 0.5em;
    }
}


@media (max-width: 640px) {
    .header-top .bouton-tel span {display: none;}
}
@media (max-width: 520px) {
        .header-top a.bouton-tel {bottom:0.5em;right:0.5em;}
        .wrapper-header .logo-totem img {width:calc(140px * 0.7);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.7);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.7);}
}


@media (max-width: 480px) {
        .wrapper-header a.logo {
        padding: 1.1em 1em;
    }
        .header-top a.bouton-tel {bottom:0.5em;right:0.5em;}
        .wrapper-header .logo-totem img {width:calc(140px * 0.64);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.64);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.64);}
}

@media (max-width: 440px) {
        .wrapper-header a.logo {
        padding: 0.8em 0.6em;
    }
        .header-top a.bouton-tel {bottom:0.5em;right:0.5em;}
        .wrapper-header .logo-totem img {width:calc(140px * 0.5);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.6);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.5);}
}

@media (max-width: 400px) {
        .wrapper-header a.logo {
        padding: 0.4em 0.4em;
    }
    
        .header-top a.bouton-tel {padding: 0.2em 0.5em 0.2em 0.5em;bottom:0.5em;right:0.5em;}
        .wrapper-header .logo-totem img {width:calc(140px * 0.5);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.6);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.5);}
    .wrapper-header .logo-notaires {margin-left: -8px;}
}

@media (max-width: 370px) {
        .wrapper-header a.logo {
        padding: 0.4em 0.4em;
    }
    
        .header-top a.bouton-tel {padding: 0.2em 0.5em 0.2em 0.5em;bottom:0.5em;right:0.5em;}
        .wrapper-header .logo-totem img {width:calc(140px * 0.4);}
    .wrapper-header .logo-txt img {width:calc(310px * 0.55);}
    .wrapper-header .logo-notaires img {width:calc(116px * 0.4);}
    .wrapper-header .logo-notaires {margin-left: -8px;}
}


@media (max-width: 360px) {
    .wrapper-header div.logo {
        font-size: 0.65em;
    }
}



.wrapper-mc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:20px;
}
.mc-photo {width:50%;text-align: center;position:relative;}
.mc-contenu {width:50%;text-align: center;}
.mc-photo img {width: 100%;max-width: 477px;border-radius:1000px 1000px 0px 0px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);}
.mc-photo2 {border-radius:1000px 1000px 0px 0px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);}

.mc-photo::before {
    content:" ";
    position: absolute;
    width:100%;
    height: 130%;
        background: url(i/fleur-footer.svg) no-repeat center bottom, linear-gradient(180deg, #3f3f76 0%, #363665 100%);
        z-index: -1;
        top:50%;left:50%;
        transform: translate(-100%,-50%);
}

@media (max-width:720px) {
    .mc-photo {width:40%;}
    .mc-contenu {width:60%;}
    .mc-photo::before {height: 500px;}
}

@media (max-width:620px) {
    .wrapper-mc {
        flex-direction: column;
        align-items: center;
    }
    .mc-photo {width:100%;}
    .mc-photo img {max-width:350px;}
    .mc-contenu {width:100%;}
    .mc-photo::before {height: 350px;}
}








.slogan {background-color: #ffffff;border-radius: 10px;padding:20px;box-shadow: 6px 6px 12px rgba(0,0,0,0.15)}


.wrapper-contenu {
    z-index: 2;
    position: relative;
    background:#fff url(i/arabesque-right.svg) no-repeat right top -20px;
    background-size: clamp(300px, 40vw, 450px) auto;
    overflow: hidden;
}

@media (max-width: 450px) {
    .wrapper-contenu {
        background-size: 300px auto;
        background-position: right -110px top -20px;
    }
}


.wrapper-contenu-inner {}

.wrapper-boxed-contenu {max-width:1380px;margin:auto;}

.wrapper-boxed {}

.boxed {max-width:1380px;margin:auto;}


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

}

h1, h2.h1, h3.h1 {
    
	font-size: clamp(28px,3.33vw,40px);
	font-weight: 900;
	font-style:normal;
	color:#3f3f76;
	margin:0px;
	padding:0px 0px 0px 0px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: -4px;
    line-height: 1.1;
}

h2 {
    text-align:left;
    font-size:calc(clamp(28px,3.33vw,40px) * 36 / 40);
    font-weight: 400;
    font-style:italic;
    color:#3f3f76;
    margin:0px;
    padding:0px 0px 0px 0px;
    position: relative;margin-bottom: -10px;
}


h2.xl {
    font-size: clamp(32px,5vw,48px);
    line-height: 1;
}


h3.h1 {text-align:center;font-weight: bold;}

h3 {
    font-size:calc(clamp(28px,3.33vw,40px) * 30 / 40);
    font-weight: 400;
    color:#3f3f76;
    margin:0px;
    padding:0px 0px 0px 0px;
    position: relative;margin-bottom: -10px;
}


span.dl {
    font-family: "Bodoni Moda", serif;
    font-style:italic;color:#3f3f76;font-weight: 600;font-size:calc(clamp(28px,3.33vw,40px) * 36 / 40);display: block;
    text-transform: none;
    font-optical-sizing: none;
}







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


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



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

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

a.lien:link,a.lien:visited {color:#d73a73; font-weight:bold; font-style:normal; text-decoration:none; }
a.lien:hover,a.lien:active {text-decoration:underline;color:#d73a73;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px; color:#d73a73; font-weight:bold; font-style:italic; text-decoration:none; }
a.lienpetit:hover,a.lienpetit:active {text-decoration:none;}

span.rouge {color:#d73a73;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 {
	list-style-type:none;
	background-image: url(i/puce.svg);
	background-repeat: no-repeat;
	padding-left:20px;
    padding-right:2px;
	background-position:0px 9px;
    background-size: 10px 10px;
	margin:0px 0px 7px 0px;
    overflow: hidden;
}



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: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%;}


@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:bold; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#d73a73; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {   color:#ffffff; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#d73a73;}
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:#f5f5f599;border:1px solid #dddddd;padding:6px;overflow:hidden;}



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



div.map {
    /* Permet à la map de ne pas être collé au top */
    padding-top: 40px;
    margin-top: -40px;
}

.form_header {
    
    background: #203b68;
    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);
}

#form sup{color:#d73a73;}
.error{color:#d73a73; margin-bottom: 4px;}
.form_label {background-color:#fff;font-weight:normal;}
.form_input {background-color:#fff;}
div.form_note {font-style:italic;font-size:10px;}

label[for="element10i0"] {font-size: 13px;}


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;}
}


.slicknav_menu {
  display:none;
}

#menu {
    display:none;
  }




.bandeau-boxed-padding-top {padding-top: 26px;}

#bandeau_boxed {max-width:1140px;margin:auto;box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);    outline: 1px solid #c5c5c5;
    outline-offset: 0px;margin-bottom: 20px;}
#bandeau_photos_boxed {width:100%;max-width: 1140px;height: 500px;}
#bandeau_boxed img {margin-left: 0px !important;margin-top: 0px !important;}


#bandeau_fullwidth {
    max-width:1920px;margin:auto;position:relative;
    z-index: 3;
}

#bandeau_photos_fullwidth {width:100%;max-width: 1920px;height: 965px;}

#bandeau-overlay {background:none;width:100%;height: 100%;position: absolute;z-index: 100;
pointer-events: none;
}


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


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


#menu-desktop-replacement {height:0px;background-color:#fff;display: none;}
body.scrolled #menu-desktop-replacement {height:66px;display: block;}

body.scrolled #menu-desktop {
    z-index: 100000;
    position:fixed;top:0px;left:0px;right:0px;
    background-color:#fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

body.scrolled #menu-desktop .wrapper-menu-desktop-boxed > ul > li > span, body.scrolled #menu-desktop .wrapper-menu-desktop-boxed > ul > li > a {
    padding-top:15px;
    padding-bottom:15px;
}


.wrapper-menu-desktop-boxed {max-width: 1380px;margin:auto;position: relative;}

img.menu-arrow {
    margin-left: 4px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -2px);
}



li.selected span img.menu-arrow {filter: brightness(100);}

/*http://codepen.io/andornagy/full/xhiJH/*/
.menu-desktop {
    margin: auto;
    z-index: 10000;
    padding: 0px 0px 0px 0px;
    background-color: transparent;
    position: relative;
    transition: background 0.5s ease;
}

.menu-desktop.menu-left {
    position: absolute;
    bottom:0px;
    z-index: 100;
    right:calc(50% + 200px);
}

.menu-desktop.menu-right {
    position: absolute;
    bottom:0px;
    z-index: 100;
    left:calc(50% + 200px);
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
.menu-desktop ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    text-align: center;


    }
/* Positioning the #menu-desktopigation items inline */
.menu-desktop ul li {
    margin: 0px;
    display:inline-block;
    vertical-align: top;
    background-color: transparent;
    position:relative;

    }





.menu-desktop ul li ul {text-align: left;
    background-color: #fff;
    -moz-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.7);
    -o-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.7);
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.7);
    filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000, Direction=135, Strength=10);
}


.menu-desktop ul li.selected ul {
    background-color: #d73a73;
}

.menu-desktop ul li.selected ul a {color:#fff;}

/* Styling the links */
.menu-desktop span {
    
    font-size:20px;
    font-weight: 700;
    cursor: pointer;
    display:block;
    color:#203b68;
    line-height: 20px;
    text-decoration:none;
    text-align: center;
    padding:23px 30px 23px 30px;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border-radius: 20px 20px 0px 0px;
}

.menu-desktop span.double {padding:13px 30px 13px 30px;}


.menu-desktop ul li:hover > span.selected {
    
}


.menu-desktop ul li:hover > span {
    background: #d73a7322;
}

/* Styling the links */
.menu-desktop a {
    
    font-size:20px;
    font-weight: 700;
    display:block;
    color:#203b68;
    line-height: 20px;
    text-decoration:none;
        text-align: left;
    padding:23px 30px 23px 30px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border-radius: 20px 20px 0px 0px;
}

.menu-desktop ul.sousmenu a {border-radius:0px;}


.menu-desktop a.double {padding:13px 30px 13px 30px;}


/* Background color change on Hover */
.menu-desktop a:hover, .menu-desktop span:hover {
background: #d73a7322;

}


.wrapper-menu-desktop-boxed > ul > li:hover > span {
background: #d73a7322;

}



.menu-desktop .menu-item.selected > a,
.menu-desktop .menu-item.selected > span {
    color:#fff;
background: #d73a73;

}



.menu-desktop span.selected, .menu-desktop .menu-item.selected:hover > a,
.menu-desktop span.selected, .menu-desktop .menu-item.selected:hover > span {
    color:#fff;
    background: #d73a73;
}


/*.menu-desktop span:hover {

    background: url('i/menuh.png') repeat center center, url('i/arrow.png') no-repeat bottom center;
}
*/

.menu-desktop ul ul a:hover {
    background: #d73a7322;
    padding:14px 10px 14px 10px;
}

.menu-desktop ul ul .selected a {
    color:#fff;
    background: #00000033;
    padding:14px 10px 14px 10px;
}


.menu-desktop ul ul a { 
    transition: padding 0.2s ease-in-out 0s;
text-align:center;padding:14px 10px 14px 10px;line-height: 1.2;
        font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}


.menu-desktop ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    width: 100%;
}

.menu-desktop ul ul.page-infos-pratiques {
    right:0px !important;
    left:auto;
    min-width: 220px;
}


/* Display Dropdowns on Hover */
.menu-desktop ul li:hover > ul {
    display:inherit;
}


.menu-desktop ul li:hover > ul li:hover span{
    background-color: #373737;
}
.menu-desktop ul li.selected > ul li.selected span{
    background-color: #373737;
}

/* Fisrt Tier Dropdown */
.menu-desktop ul ul li {
/*    min-width:170px;*/
    display:list-item;
    position: relative;
}

.menu-desktop ul ul ul {
    position: absolute;
    top:0;
    left:100%;
    z-index:10000;
}




@media (max-width:1560px) {
    .menu-desktop span, .menu-desktop a {font-size:20px;padding:20px 25px 20px 25px;}
    .menu-desktop span.double, .menu-desktop a.double {font-size:20px;padding:10px 25px 10px 25px;}
    .menu-desktop ul ul a {font-size:20px;}
    
    :root{--padding-header: 25px;}
    /* .wrapper-header {padding: 25px 25px 0px 25px;} */
    .header-notaires {top: 15px;left: 15px;}
    a.header-tel {top:21px;}
    .wrapper-header-inner {height: 188px;}
}

@media (max-width:1460px) {
    .menu-desktop.menu-left {right:calc(50% + 180px);}
    .menu-desktop.menu-right {left: calc(50% + 180px);}
}


@media (max-width:1380px) {
    .menu-desktop span, .menu-desktop a {font-size:20px;padding:20px 20px 20px 20px;}
    .menu-desktop span.double, .menu-desktop a.double {font-size:20px;padding:10px 20px 10px 20px;}
    .menu-desktop ul ul a {font-size:20px;}
    .header-notaires {top: 10px;left: 10px;}
    a.header-tel {top:16px;right: 90px;}
    .wrapper-header-inner {height: 176px;}
}

@media (max-width:1280px) {
    :root {--padding-header: 20px;}
    /* .wrapper-header {padding: 20px 20px 0px 20px;} */
    div.logo img {width: 240px;}
    .menu-desktop span, .menu-desktop a {font-size:19px;padding:20px 18px 20px 18px;}
    .menu-desktop span.double, .menu-desktop a.double {font-size:19px;padding:10px 18px 10px 18px;}
    .menu-desktop ul ul a {font-size:19px;}
    .menu-desktop.menu-left {right:calc(50% + 160px);}
    .menu-desktop.menu-right {left: calc(50% + 160px);}
    h4.header-notaires-associes, h4.header-notaire {font-size:16px;}
    .wrapper-header-inner {height: 163px;}
}

@media (max-width:1180px) {
    div.logo img {width: 220px;}

    :root {--padding-header: 16px;}
    /* .wrapper-header {padding: 16px 16px 0px 16px;} */
    .menu-desktop span, .menu-desktop a {font-size:18px;letter-spacing:-0.3px;padding:18px 18px 18px 18px;}
    .menu-desktop span.double, .menu-desktop a.double {font-size:18px;letter-spacing:-0.3px;padding:8px 18px 8px 18px;}
    .menu-desktop ul ul a {font-size:18px;letter-spacing:-0.3px;}
    .menu-desktop.menu-left {right:calc(50% + 135px);}
    .menu-desktop.menu-right {left: calc(50% + 135px);}
    .wrapper-header-inner {height: 150px;}
    h4.header-notaires-associes, h4.header-notaire {font-size:15.5px;}
    h4.header-notaires-associes, h4.header-notaire {line-height: 1.2;}
}

@media (max-width:1080px) {

    .slicknav_menu {
      display:block;
    }

    .menu-desktop, #sousmenu-desktop {display:none;}

    div.notaires-de-france {
        bottom: 10px;
        top: auto;
    }
    a.header-tel {
        top: auto;
        bottom:22px;
    }
    .wrapper-header-inner {
        border-radius: 0px 20px 0px 20px;
    }
}





@media (max-width:820px) {
    h4.header-notaires-associes, h4.header-notaire {letter-spacing: -0.3px;font-size: 15px;}
}


@media (max-width:730px) {
    h4.header-notaires-associes, h4.header-notaire {display: none;}
    div.notaires-de-france {
        bottom: auto;
        top:10px;
        right:auto;left:10px;
    }
    a.header-tel {
        width: 32px;
        height: 32px;
        bottom:40px;
        left: 25px;
    }
    a.header-tel img {
        width: 15px;
    }
}


@media (max-width:530px) {
    div.notaires-de-france {display: none;}
    a.header-tel {top:10px;bottom:auto;left: 10px;}
}



@media (max-width:360px) {
    div.logo img {width: 200px;}
    .wrapper-header-inner {height: 138px;}
}

a.back-to-top {
    display: none;
    width: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #d73a73 url("i/arrow-up.svg") no-repeat center center;
    background-size: 20px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
    transition: all 0.2s ease-in-out 0s;
}

a.back-to-top:hover {
    background-size: 24px 24px;
    background-color: #d73a73;
}


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


div.wrapper-footer-padding {
    padding:80px 20px 140px 20px;
}

/* body:not(.page-accueil) div.wrapper-footer {
    margin-top: 50px;
} */
div.wrapper-footer {
    margin-top: 40px;
}



body.page-infos-pratiques div.wrapper-footer {
    margin-top: 0px;
}



div.wrapper-footer  {
    color:#fff;
   position: relative;
   z-index:10;
   box-shadow: 0px 2px 4px rgb(0 0 0 / 28%);
   background:url('i/fleur-footer.svg') no-repeat center bottom, linear-gradient(180deg, #3f3f76 0%, #363665 100%);
   background-repeat:no-repeat; 
   background-size: auto 80%, auto auto;
}


div.wrapper-footer-inner  {
    display: flex;
}


.footer-logo {
    transform: translateY(-80px);
}


.footer-logo .logo-txt {margin-top: -10px;}
.footer-logo .logo-notaires {margin-top: -10px;}



.footer-titre h3 {
    font-weight: 400;
    margin: 0;padding: 0px;
    
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-transform: none;
    margin-top: 10px;
    line-height: 1.1;
}




div.footer-1, div.footer-2, div.footer-3 {
    vertical-align: middle;display:inline-block;width:25%;text-align:left;padding:20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
    padding-top:40px;

}


div.footer-1 {width:33.33%;text-align: center;padding-top:100px;}
div.footer-2 {width:33.33%;text-align: center;padding-top:0px;}
div.footer-3 {width:33.33%;text-align: center;padding-top:100px;}





a.footer-plan {color:#fff;font-weight: 700;text-decoration: none;}
a.footer-plan:hover {color:#d73a73;}

div.footer-tel {margin-top:12px;}
a.footer-tel {color:#fff;font-weight: 700;text-decoration: none;}
a.footer-tel:hover {color:#d73a73;}

div.footer-email {margin-top:12px;}
a.footer-email {color:#fff;font-weight: 700;text-decoration: none;}
a.footer-email:hover {color:#d73a73;}


.footer-1 a {
    position: relative;
}


ul.plan-site {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.plan-site a {
    color:#fff;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding:4px 10px;
    position: relative;
}

ul.plan-site a:hover {
    color: #d73a73;
}

.wrapper-footer h3 {
    font-size: 24px;
    margin:0;padding:0;
    margin-bottom: 20px;
    color:#fff;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}


.footer-1 strong {font-weight:normal;display:block;text-transform: uppercase;font-size: 24px;}
.footer-1 em {color:#93b6d6;font-size: 18px;}

.footer-inner {display: inline-block;}


.footer-reseaux {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-reseaux img {
    filter: brightness(100);
    height: 40px;
    width: auto;
    vertical-align: top;
}
.footer-reseaux img:hover {filter: none;}


.wrapper-mentions {

}

div.mentions {
    position: relative;
    max-width: 1380px;
    margin: auto;
    text-align: center;
    padding: clamp(50px, 10vw, 100px) 20px 60px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}


div.mentions a {color:#fff !important;font-weight: bold;text-decoration: none;}
div.mentions a:hover {color:#d73a73 !important;}



@media (max-width: 1024px) {
   .footer-logo .logo-totem img {width: 100px;}
   .footer-logo .logo-notaires img {width: 100px;}
   .footer-logo { transform: translateY(-50px);}
}


@media (max-width: 820px) {
   div.footer-1, div.footer-3 {
        padding-top: 140px;
   }
}


@media (max-width: 720px) {
    div.wrapper-footer-inner {
        flex-direction: column;
        align-items: center;
    }
   div.footer-2 {
    order:1;
    width:100%;
    margin-bottom: -60px;
}
div.footer-1,div.footer-3 {
    padding-top:20px;
        order:2;
        width: 100%;
    }

    .wrapper-footer h3 {
        margin-bottom: 12px;
    }
    div.wrapper-footer {
        background-size: 100% auto, auto auto;
    }
}








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, img.equipe  {
  -moz-box-shadow: 6px 6px 12px 0px rgba(0,0,0,0.35);
  -webkit-box-shadow: 6px 6px 12px 0px rgba(0,0,0,0.35);
  -o-box-shadow: 6px 6px 12px 0px rgba(0,0,0,0.35);
  box-shadow: 6px 6px 12px 0px rgba(0,0,0,0.35);
  filter:progid:DXImageTransform.Microsoft.Shadow(color=#000, Direction=134, Strength=5);
}

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




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 {
    
    line-height: 1.2;
    font-weight: normal;
    font-size:26px;
    color:#eee;
    position: absolute;
    z-index: 1000;
    top: initial !important;
    bottom: 0px;
    left:0px !important;
    padding: 0px 10px 20px 10px;
    text-transform: uppercase;
    text-align:center;
    margin:0;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
    line-height: 1.05;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.6+100 */
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 ); /* IE6-9 */

}

.encart-activites h3 {
    
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
    text-align:center;font-weight:normal;font-size:40px;margin: 0;padding:0;color:#fff;
    text-transform: uppercase;margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.1;
}

.rsDefault .rsGCaption {
    top: 0px !important;
    left: 0px !important;
    right: initial !important;
    height: 100% !important;
    padding:0 !important;
    z-index: 1000;
    margin:auto !important;
    pointer-events: none;
    border-radius:0px !important;
    overflow: hidden;
}

.rsDefault .rsArrowIcn {    background-color: #d73a73aa !important;}

.rsDefault .rsArrowIcn:hover {
    background-color: #d73a73ff !important;
}

.rsDefault .rsArrow {z-index: 200001 !important;}

.rsGCaption {

}


@media (max-width:1200px) {
    .encart-activites h3 {font-size:40px;}
    .encart-activites {font-size:25px;}
}

@media (max-width:900px) {
    .encart-activites h3 {font-size:30px;}
    .encart-activites {font-size:20px;}
}


@media (max-width:700px) {
    .encart-activites h3 {font-size:25px;}
    .encart-activites {font-size:18px;}
}

@media (max-width:550px) {
    .encart-activites h3 {font-size:22px;}
    .encart-activites {font-size:16px;}
}

/*.rsArrow.rsHidden {
    opacity: 1 !important;
    visibility: visible !important;
}*/




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


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


a.bouton-footer {
    text-shadow: none;display:inline-block;padding:6px 10px;background-color:#d73a73;text-align: center;
    color:#fff;font-size: 16px;font-weight:600;text-decoration: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    margin-top:10px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: all 0.3s ease 0s;
}

a.bouton-footer:hover {text-shadow: 1px 1px 2px rgba(0,0,0,0.9);}


input.form_submit,
a.annonce-detail-bouton,
a.bouton {
    position: relative;
    text-shadow:none;
    display: inline-block;
    padding: 10px 25px;
    background-color: #d73a73;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    z-index: 1;
}

a.annonce-detail-bouton span,
a.bouton span {
    position: relative;
    z-index: 2;
}

a.annonce-detail-bouton::before,
a.annonce-detail-bouton::after,
a.bouton::before,
a.bouton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #3f3f76;
    border-radius: 100px;
    opacity: 0;
    
    transition: all 0.2s ease;
}

a.annonce-detail-bouton::before,
a.bouton::before {
    clip-path: polygon(100% 0, 100% 0, 100% 0%);
}
a.annonce-detail-bouton:hover::before,
a.bouton:hover::before {
    clip-path: polygon(0 -5%, 100% 0, 100% 105%);
    opacity: 1;
}

a.annonce-detail-bouton::after,
a.bouton::after {
    clip-path: polygon(0 100%, 0 100%, 0% 100%);
}
a.annonce-detail-bouton:hover::after,
a.bouton:hover::after {
    clip-path: polygon(0 -5%, 0 100%, 105% 100%);
    opacity: 1;
}

input.form_submit:hover {
    background: #203b68;
}




.owl-carousel .owl-item img {margin:auto;}
.owl-dots {display: none !important;}



table.tableau {border-collapse: collapse;}
table.tableau tr:first-of-type td {background: #d73a73;color:#fff;font-weight: bold;}
table.tableau td {padding:4px;border:1px solid #ccc;background: #efefef;}



.slick-dots li button {color:#fff !important;}


.owl-carousel .owl-item img {margin:auto;}
.owl-carousel .owl-item {text-align:center;}

.carousel-ticker .owl-item {
    padding: 0px 20px;}

.owl-dots {display: none;}




/* isotope */

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


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

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

@media (max-width:420px) {
    .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:#d73a73;}

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

.pix-masonry-photo {
    padding: 10px;
    text-align: center;
        color: #979797;
    font-size: 13px;
}


.pswp {z-index: 150000 !important;}




/* BANDEAU SWIPER */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 870;
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    user-select: none;
    z-index:1;
}
.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 870;
    background-position: center center;
    background-size: cover;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 7%;
    left: auto;
    right: 0;
    text-align: left;
    pointer-events: none;
    font-size: 30px;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
    opacity: 1;
    transform: translateY(0px);
}
.pix-bandeau-swiper .swiper-slogan h3.bandeau-swiper-titre {
    width: fit-content;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 4vw, 40px);
    padding:0.35em 0.8em 0.35em 1em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.1;
    margin: 0;
    background: rgba(54, 53, 101, 0.7);
    border-radius: 100px 0px 0px 100px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}

.pix-bandeau-swiper .swiper-slogan h3.bandeau-swiper-commentaire {
    width: fit-content;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-align: right;
    padding:0.25em 0.8em 0.25em 1em;
    border-radius: 100px 0px 0px 100px;
    font-size: clamp(18px, 4vw, 40px);
    text-transform: none;
    line-height: 1.1;
    margin: 0;
    color: #363665;
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width:500px) {

    .pix-bandeau-swiper .swiper-slogan h3.bandeau-swiper-titre, 
    .pix-bandeau-swiper .swiper-slogan h3.bandeau-swiper-commentaire {
        font-family: "Fira Sans Condensed", sans-serif;
        font-weight: 500;
    }
}




.pix-bandeau-swiper video {
    pointer-events: none;
}
.pix-bandeau-swiper video[poster]{
    height:100%;
    width:100%;
    object-fit: cover;
}


.pix-bandeau-swiper .swiper-button-prev::after,
.pix-bandeau-swiper .swiper-button-next::after {
    content: none;
}
.pix-bandeau-swiper .swiper-button-prev,
.pix-bandeau-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #d73a73 url('i/arrow-right.svg') no-repeat center center / 25px 25px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.2s ease;
    transform: translateY(calc(var(--header-height) / 2));
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: translateY(calc(var(--header-height) / 2)) rotate(180deg);
}
.pix-bandeau-swiper:hover .swiper-button-prev,
.pix-bandeau-swiper:hover .swiper-button-next {
    opacity: 0.7;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}

@media (max-width: 700px) {
    .pix-bandeau-swiper {
        height: 267px;
        aspect-ratio: initial;
    }
}

@media (max-width: 395px) {
    .pix-bandeau-swiper {
        height: 250px;
        aspect-ratio: initial;
    }
}

















/* Bande activites */
.wrapper-bande-activites {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    background: #ffffff url(i/missions-bg-2x.png) repeat center top;
    background-size: 254px 254px;
}

.wrapper-bande-activites a.bouton {
    margin-top:calc(clamp(20px, 6vw, 40px) / 40 * 60);
}
.swiper-activites {
    position: relative;
    cursor: grab;
}
.swiper-activites:active {
    cursor: grabbing;
}
.swiper-activites .swiper-slide {
    height: auto;
    padding: calc(clamp(20px, 6vw, 40px) / 2) 0px clamp(20px, 6vw, 40px) 0px;
}
.swiper-activites .wrapper-activite {
    padding: 0 20px;
    height: 100%;
}
.swipper-icone {
    position: relative;
    text-decoration: none;
    color: currentColor;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;

    padding: 20px;

    aspect-ratio: 1 / 1;
    height: 100%;
    border-radius: 0px 30px 0px 30px;

}

.swipper-icone .icone {
    position: relative;
}

.swipper-icone img {
    display: inline-block;
    margin: auto;
    width: 140px;
    height: 100px;
    object-fit: contain;
    vertical-align: top;
}
.swipper-icone h3 {
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #d73a73;
    text-align: center;
    margin-top: 20px;
}

.swipper-icone:hover {
    background: #d73a73;
}
.swipper-icone:hover h3 {
    color: #fff;
}
.swipper-icone:hover img {
    filter: brightness(100);
}


@media (max-width: 580px) {
    .swipper-icone h3 {
        font-size: 20px;
    }
    .swipper-icone {
        aspect-ratio: auto;
    }
}





.wrapper-qui {
    color:#fff;
    background-color: #203b68;
    background: url('i/qui-forme.svg') no-repeat right bottom / 300px auto, url('i/qui-marianne.svg') no-repeat left bottom / auto 95%, #203b68;
    padding:70px 20px;
}

.boxed-qui {
    max-width: 1480px;
    margin:auto;
    display: flex;
    align-items: center;
}


.qui-col1 {width:50%;padding-right: 20px;}
.qui-col2 {
    width: max(50%, 550px);
    text-align: center;
    flex-shrink: 0;
}

.wrapper-qui h2 {
    color:#fff;
}

.wrapper-qui a.bouton {
    background-color: transparent;
    border:1px solid #fff;
}
.wrapper-qui a.bouton::before,
.wrapper-qui a.bouton::after {
    background-color: #fff;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
}
.wrapper-qui a.bouton:hover {
    color: #203b68;
}

.qui-col2 a:nth-child(2) {
    transform: translateY(30px);
    margin-left: -50px;
    display: inline-block;
}

@media (max-width: 860px) {
    .boxed-qui {
        flex-direction: column;
    }
    .qui-col1 {
        padding-right: 0;
        width: 100%;
    }
    .qui-col2 {
        margin-top: 50px;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .wrapper-qui {
        background: url('i/qui-marianne.svg') no-repeat left bottom / 95% 95%, #203b68;
    }

}
@media (max-width: 610px) {
    .qui-col2 a {
        display: inline-block;
        width: calc(50% + 25px);
    }
}
@media (max-width: 500px) {
    .qui-col2 a:nth-child(2) {
        margin-left: -20px;
    }
    .qui-col2 a {
        width: calc(50% + 10px);
    }
}


















/* ANNONCES */
.wrapper-filtrage {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 15px;
}
.wrapper-filtrage .filtrage-recherche {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.wrapper-filtrage .filtrage-recherche input[type="text"] {
    width: 100%;
    max-width: 300px;
}

.wrapper-filtrage input,
.wrapper-filtrage select {
    padding: 5px;
    font-size: 16px;
    border: 2px solid #d73a73;
    background: #fff;
    color: #000;
    border-radius: 0;
}

.wrapper-filtrage input[type="submit"] {
    background-color: #d73a73;
    border-radius: 0;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
}


.wrapper-filtrage .filtrage-tri {
    cursor: pointer;
    border: 2px solid #d73a73;
}

@media (max-width: 550px) {
    .wrapper-filtrage {
        flex-direction: column;
        gap: 10px;
    }
    .wrapper-filtrage .filtrage-recherche input[type="text"] {
        max-width: none;
    }
    .wrapper-filtrage .filtrage-tri {
        align-self: flex-end;
    }

}


.annonces-message-recherche {
    margin-top: 15px;
}
.annonces-message-recherche span {
    font-weight: 700;
}


/* Liste des annonces */
.annonces-liste-fiche {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.annonce-liste {
    width: 100%;
    height: 100%;
}

.annonce-liste a {
    display: block;
    width: 100%;
    color: currentColor;
    text-decoration: none;
    padding: 30px;
    gap: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 100%;
}

/* NOTE : pour mettre l'image en dessous en responsive mettre un flex column reverse */

.annonce-liste-content {
    width: 100%;
}

.annonce-liste-image {
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
}
.annonce-liste-image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}


.annonce-liste-titre {
    font-size: 26px;
    line-height: 1.1;
    font-family: "Lato", sans-serif;
    font-style: normal;
    color: #203b68;
    font-weight: 700;
}
.annonce-liste-prix-ref {
    margin-top: 15px;
    font-size: 20px;
}
.annonce-liste-prix {
    font-weight: 700;
    color:#203b68;
}
.annonce-liste-ticker {
    margin: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.annonce-liste .plus {
    color: #d73a73;
    display: inline-block;
    position: relative;
    line-height: 0;
    padding: 8px;
    outline: 2px solid #d73a73;
    outline-offset: -1px;
    border-radius: 50%;
    overflow: hidden;
}

.annonce-liste .plus::after {
    content:" ";
    position: absolute;
    display: block;
    width: 0%;
    height: 0%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: #d73a73;
    opacity: 0;
    transition: all 0.2s ease 0s;
    border-radius:50%;
    z-index: 1;
}

.annonce-liste a:hover .plus::after {
    width: 100%;
    height: 100%;
    opacity: 1;
} 

.annonce-liste a:hover span.plus img {
    filter:brightness(100);
    position: relative;
    z-index: 2;
}


.annonce-liste .plus img {vertical-align: top;}



@media (max-width: 1200px) {
    .annonce-liste-image {
        float: none;
        padding: 0;
        margin-bottom: 20px;
    }
    .annonce-liste-image img {
        width: 100%;
    }
}
@media (max-width: 650px) {
    .annonces-liste-fiche {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 450px) {
    .annonce-liste a {
        padding: 15px;
    }
}



/* Détail des annonces */
.annonce-header {
    margin-top: 20px;
}

.annonce-header .annonce-titre, 
.annonce-header .annonce-prix  {
    font-size: 32px;
}


.annonce-header .annonce-titre {
    overflow: hidden;
    text-transform: none;
    margin-bottom: 10px;
}

.annonce-header .annonce-prix {
    float: right;
    padding-left: 20px;
    padding-bottom: 10px;
    font-weight: 700;
    color: #203b68;
    line-height: 1;
}
.annonce-lieu {
    padding: 5px 10px;
    color: #fff;
    background-color: #203b68;
    display: inline-block;
    margin-bottom: 20px;
}

.wrapper-contactannonce {
    margin-top: 15px;
}

.annonce-detail-premiere-image {
    float: right;
    text-align: center;
    padding: 0 0 20px 20px;
}

.annonce_photos {
    margin-top: 40px;
    margin-bottom: 40px;
}
.annonce_photos .isotope-grid-item {
    padding: 10px;
}

@media (max-width: 790px) {
    .annonce-detail-premiere-image {
        float: none;
        padding: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .annonce-header .annonce-prix {
        float: none;
        padding: 0;
    }
    .annonce-header {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 10px;
    }
    .annonce-header .annonce-titre, .annonce-header .annonce-prix {
        font-size: 25px;
    }
}

/* DPE */
div.dpe_wrapper {padding:8px;overflow:hidden;}

div.dpe-consommation {float:left;width:50%;}
div.dpe-emissions {float:right;width:50%;}


@media (max-width:630px) {

div.dpe-consommation {float:none;width:100%;}
div.dpe-emissions {float:none;width:100%;margin-top:20px;}

}



table.dpe {border:1px solid #ccc;background-color:#ffffff;border:1px solid #999999;padding:4px;}
table.dpe td {color:#000;}
td.dpe_a {background-image:url(i/dpe/a.gif);background-repeat:no-repeat;background-position:-150px 2px;height:30px;}
td.dpe_b {background-image:url(i/dpe/b.gif);background-repeat:no-repeat;background-position:-140px 2px;height:30px;}
td.dpe_c {background-image:url(i/dpe/c.gif);background-repeat:no-repeat;background-position:-130px 2px;height:30px;}
td.dpe_d {background-image:url(i/dpe/d.gif);background-repeat:no-repeat;background-position:-120px 2px;height:30px;}
td.dpe_e {background-image:url(i/dpe/e.gif);background-repeat:no-repeat;background-position:-110px 2px;height:30px;}
td.dpe_f {background-image:url(i/dpe/f.gif);background-repeat:no-repeat;background-position:-100px 2px;height:30px;}
td.dpe_g {background-image:url(i/dpe/g.gif);background-repeat:no-repeat;background-position:-90px 2px;height:30px;}
div.dpe {color:#000;font-size:13px;padding-left:5px;}
div.dpe_valeur {color:#fff;font-size:13px;padding-left:20px;background-image:url(i/dpe/valeur.gif);background-repeat:no-repeat;background-position:left center;height:24px;padding-top:6px;font-weight:bold;}


td.dpe_e_a {background-image:url(i/dpe/e_a.gif);background-repeat:no-repeat;background-position:-150px 2px;height:30px;}
td.dpe_e_b {background-image:url(i/dpe/e_b.gif);background-repeat:no-repeat;background-position:-140px 2px;height:30px;}
td.dpe_e_c {background-image:url(i/dpe/e_c.gif);background-repeat:no-repeat;background-position:-130px 2px;height:30px;}
td.dpe_e_d {background-image:url(i/dpe/e_d.gif);background-repeat:no-repeat;background-position:-120px 2px;height:30px;}
td.dpe_e_e {background-image:url(i/dpe/e_e.gif);background-repeat:no-repeat;background-position:-110px 2px;height:30px;}
td.dpe_e_f {background-image:url(i/dpe/e_f.gif);background-repeat:no-repeat;background-position:-100px 2px;height:30px;}
td.dpe_e_g {background-image:url(i/dpe/e_g.gif);background-repeat:no-repeat;background-position:-90px 2px;height:30px;}

div.dpe_header {text-align:center;width:252px;background-color:#fff;margin:auto;margin-bottom:6px;color:#000;padding:4px;border:1px solid #999;}

div.dpe_fraisannuel {font-size:14px;color:#000;text-align:center;background-color:#D9D9D9;border:1px solid #fff;margin:auto;padding:4px;margin-bottom:10px;}




.npe-conso-etiquettes {position: relative;}

.ndpe-lettre {
    height: 26px;position: relative;color: #fff;font-weight: bold;
    padding-left: 4px;text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.ndpe-lettre:after {
    content: " ";
    position: absolute;
    right: -10px;
    display : inline-block;
    height : 0;
    width : 0;
    border-top : 13px solid transparent;
    border-bottom : 13px solid transparent;
}

.npe-emissions-etiquettes .ndpe-lettre:after {
    content: none;
}

.npe-emissions-etiquettes .ndpe-lettre {border-radius: 0px 13px 13px 0px;}


.ndpe-wrapper-consommation .ndpe-a {width: 50px;background-color: #328952;}
.ndpe-wrapper-consommation .ndpe-a:after {border-left : 10px solid #328952;}

.ndpe-wrapper-consommation .ndpe-b {width: 70px;background-color: #6AA64E;}
.ndpe-wrapper-consommation .ndpe-b:after {border-left : 10px solid #6AA64E;}

.ndpe-wrapper-consommation .ndpe-c {width: 90px;background-color: #97C11F;}
.ndpe-wrapper-consommation .ndpe-c:after {border-left : 10px solid #97C11F;}

.ndpe-wrapper-consommation .ndpe-d {width: 110px;background-color: #F5C32C;}
.ndpe-wrapper-consommation .ndpe-d:after {border-left : 10px solid #F5C32C;}

.ndpe-wrapper-consommation .ndpe-e {width: 130px;background-color: #EA8A36;}
.ndpe-wrapper-consommation .ndpe-e:after {border-left : 10px solid #EA8A36;}

.ndpe-wrapper-consommation .ndpe-f {width: 150px;background-color: #E5423B;}
.ndpe-wrapper-consommation .ndpe-f:after {border-left : 10px solid #E5423B;}

.ndpe-wrapper-consommation .ndpe-g {width: 170px;background-color: #D8103E;}
.ndpe-wrapper-consommation .ndpe-g:after {border-left : 10px solid #D8103E;}


.ndpe-wrapper-consommation .ndpe-a-selected .ndpe-a,
.ndpe-wrapper-consommation .ndpe-b-selected .ndpe-b,
.ndpe-wrapper-consommation .ndpe-c-selected .ndpe-c,
.ndpe-wrapper-consommation .ndpe-d-selected .ndpe-d,
.ndpe-wrapper-consommation .ndpe-e-selected .ndpe-e,
.ndpe-wrapper-consommation .ndpe-f-selected .ndpe-f,
.ndpe-wrapper-consommation .ndpe-g-selected .ndpe-g
 {height: 52px;text-shadow: 1px 1px 3px rgba(0, 0, 0,1);font-size: 36px;}

.ndpe-wrapper-consommation .ndpe-a-selected div.ndpe-a:after,
.ndpe-wrapper-consommation .ndpe-b-selected div.ndpe-b:after,
.ndpe-wrapper-consommation .ndpe-c-selected div.ndpe-c:after,
.ndpe-wrapper-consommation .ndpe-d-selected div.ndpe-d:after,
.ndpe-wrapper-consommation .ndpe-e-selected div.ndpe-e:after,
.ndpe-wrapper-consommation .ndpe-f-selected div.ndpe-f:after,
.ndpe-wrapper-consommation .ndpe-g-selected div.ndpe-g:after {
    right: -20px;
    border-top : 26px solid transparent;
    border-bottom : 26px solid transparent;
    border-left-width: 20px; 
}

.ndpe-conso-message-top {color:#328952;font-size: 12px;line-height: 1.1;padding-bottom: 6px;}
.ndpe-conso-message-bottom {color: #D8103E;font-size: 12px;line-height: 1.1;padding-top: 6px;}

.ndpe-intitule {display: block;font-size: 14px;letter-spacing: -1px;line-height: 1.1;}
.ndpe-valeur {display: block;font-size: 20px;font-weight: bold;line-height: 1.1;}
.ndpe-unite {display: block;font-size: 11px;line-height: 1.1;}

.ndpe-conso-message-conso {display: inline-block;text-align: center;}
.ndpe-conso-message-emissions {display: inline-block;text-align: center;}

.ndpe-conso-message {
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 195px;
    border: 2px solid gray;
    border-radius: 6px;
    padding: 2px;
}

.ndpe-a-selected .ndpe-conso-message {top: 25px;left: 75px;}
.ndpe-b-selected .ndpe-conso-message {top: 52px;left: 95px;}
.ndpe-c-selected .ndpe-conso-message {top: 79px;left: 115px;}
.ndpe-d-selected .ndpe-conso-message {top: 105px;left: 135px;}
.ndpe-e-selected .ndpe-conso-message {top: 131px;left: 155px;}
.ndpe-f-selected .ndpe-conso-message {top: 158px;left: 175px;}
.ndpe-g-selected .ndpe-conso-message {top: 185px;left: 195px;}



.npe-emissions-etiquettes {position: relative;}


.ndpe-wrapper-emissions .ndpe-a {width: 50px;background-color: #A6D2F5;}
.ndpe-wrapper-emissions .ndpe-a:after {border-left : 10px solid #A6D2F5;}

.ndpe-wrapper-emissions .ndpe-b {width: 70px;background-color: #85A2C5;}
.ndpe-wrapper-emissions .ndpe-b:after {border-left : 10px solid #85A2C5;}

.ndpe-wrapper-emissions .ndpe-c {width: 90px;background-color: #6B7E9F;}
.ndpe-wrapper-emissions .ndpe-c:after {border-left : 10px solid #6B7E9F;}

.ndpe-wrapper-emissions .ndpe-d {width: 110px;background-color: #525C7C;}
.ndpe-wrapper-emissions .ndpe-d:after {border-left : 10px solid #525C7C;}

.ndpe-wrapper-emissions .ndpe-e {width: 130px;background-color: #3F4262;}
.ndpe-wrapper-emissions .ndpe-e:after {border-left : 10px solid #3F4262;}

.ndpe-wrapper-emissions .ndpe-f {width: 150px;background-color: #2D2B48;}
.ndpe-wrapper-emissions .ndpe-f:after {border-left : 10px solid #2D2B48;}

.ndpe-wrapper-emissions .ndpe-g {width: 170px;background-color: #1B1431;}
.ndpe-wrapper-emissions .ndpe-g:after {border-left : 10px solid #1B1431;}


.ndpe-wrapper-emissions .ndpe-a-selected .ndpe-a,
.ndpe-wrapper-emissions .ndpe-b-selected .ndpe-b,
.ndpe-wrapper-emissions .ndpe-c-selected .ndpe-c,
.ndpe-wrapper-emissions .ndpe-d-selected .ndpe-d,
.ndpe-wrapper-emissions .ndpe-e-selected .ndpe-e,
.ndpe-wrapper-emissions .ndpe-f-selected .ndpe-f,
.ndpe-wrapper-emissions .ndpe-g-selected .ndpe-g
 {
    height: 52px;text-shadow: 1px 1px 3px rgba(0, 0, 0,1);font-size: 36px;
     border-radius: 0px 26px 26px 0px;
 }

.ndpe-wrapper-emissions .ndpe-a-selected div.ndpe-a:after,
.ndpe-wrapper-emissions .ndpe-b-selected div.ndpe-b:after,
.ndpe-wrapper-emissions .ndpe-c-selected div.ndpe-c:after,
.ndpe-wrapper-emissions .ndpe-d-selected div.ndpe-d:after,
.ndpe-wrapper-emissions .ndpe-e-selected div.ndpe-e:after,
.ndpe-wrapper-emissions .ndpe-f-selected div.ndpe-f:after,
.ndpe-wrapper-emissions .ndpe-g-selected div.ndpe-g:after {
    right: -20px;
    border-top : 26px solid transparent;
    border-bottom : 26px solid transparent;
    border-left-width: 20px; 
}


.ndpe-emissions-message-top {color:#6b7e9f;font-size: 12px;line-height: 1.1;padding-bottom: 3px;}
.ndpe-emissions-message-bottom {color: #1B1431;font-size: 12px;line-height: 1.1;padding-top: 6px;}

.ndpe-emissions-message-emissions {text-align: center;}

.ndpe-emissions-message {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 195px;
    border: 2px solid gray;
    border-radius: 6px;
    padding: 2px;
}

.ndpe-a-selected .ndpe-emissions-message {top: 35px;left: 55px;}
.ndpe-b-selected .ndpe-emissions-message {top: 62px;left: 75px;}
.ndpe-c-selected .ndpe-emissions-message {top: 87px;left: 95px;}
.ndpe-d-selected .ndpe-emissions-message {top: 113px;left: 115px;}
.ndpe-e-selected .ndpe-emissions-message {top: 139px;left: 135px;}
.ndpe-f-selected .ndpe-emissions-message {top: 166px;left: 155px;}
.ndpe-g-selected .ndpe-emissions-message {top: 193px;left: 175px;}


.ndpe-wrapper-consommation {text-align: center;vertical-align: middle;display: inline-block;width: 50%;}
.ndpe-wrapper-emissions {text-align: center;vertical-align: middle;display: inline-block;width: 50%;}


.ndpe-boxed-consommation {text-align: left;width: 340px;display: inline-block;}
.ndpe-boxed-emissions {
    text-align: left;width: 340px;display: inline-block;
    border: 2px solid #6b7e9f;
    padding: 10px;
    border-radius: 10px;
}


.detail-ndpe, .detail-dpe {margin-top: 20px;margin-bottom: 20px;padding: 0px 10px;}

@media (max-width:760px) {
    .ndpe-wrapper-consommation {width: 100%;}
    .ndpe-wrapper-emissions {margin-top: 20px;width: 100%;}
    .ndpe-boxed-consommation {width: 100%;}
    .ndpe-boxed-emissions {width: 100%;}
    .ndpe-intitule {font-size: 12px;}
    .ndpe-unite {font-size: 10px;letter-spacing: -1px;}
}


@media (max-width:400px) {

    .ndpe-wrapper-consommation .ndpe-a, .ndpe-wrapper-emissions .ndpe-a {width: 30px;}
    .ndpe-wrapper-consommation .ndpe-b, .ndpe-wrapper-emissions .ndpe-b {width: 50px;}
    .ndpe-wrapper-consommation .ndpe-c, .ndpe-wrapper-emissions .ndpe-c {width: 70px;}
    .ndpe-wrapper-consommation .ndpe-d, .ndpe-wrapper-emissions .ndpe-d {width: 90px;}
    .ndpe-wrapper-consommation .ndpe-e, .ndpe-wrapper-emissions .ndpe-e {width: 110px;}
    .ndpe-wrapper-consommation .ndpe-f, .ndpe-wrapper-emissions .ndpe-f {width: 130px;}
    .ndpe-wrapper-consommation .ndpe-g, .ndpe-wrapper-emissions .ndpe-g {width: 150px;}

    .ndpe-a-selected .ndpe-emissions-message {left: 35px;}
    .ndpe-b-selected .ndpe-emissions-message {left: 55px;}
    .ndpe-c-selected .ndpe-emissions-message {left: 75px;}
    .ndpe-d-selected .ndpe-emissions-message {left: 95px;}
    .ndpe-e-selected .ndpe-emissions-message {left: 115px;}
    .ndpe-f-selected .ndpe-emissions-message {left: 135px;}
    .ndpe-g-selected .ndpe-emissions-message {left: 155px;}

    .ndpe-a-selected .ndpe-conso-message {left: 55px;}
    .ndpe-b-selected .ndpe-conso-message {left: 75px;}
    .ndpe-c-selected .ndpe-conso-message {left: 95px;}
    .ndpe-d-selected .ndpe-conso-message {left: 115px;}
    .ndpe-e-selected .ndpe-conso-message {left: 135px;}
    .ndpe-f-selected .ndpe-conso-message {left: 155px;}
    .ndpe-g-selected .ndpe-conso-message {left: 175px;}
}


/* RESPONSIVE FORMULAIRE */
.formulaire {
    display: block;
}

.formulaire tbody {
    display: block;
}

.formulaire tr {
    display: flex;
    flex-direction: column;
}
.formulaire tr:not(:first-child) .form_header {
    margin-top: 10px;
}

.formulaire th {
    text-align: left;
    padding: 5px 15px 5px;
    font-weight: 700;
}

.formulaire td {
    padding: 0px 15px 5px;
    line-height: 1;
}
.formulaire td input, 
.formulaire td textarea {
    padding: 5px;
    resize: vertical;
    font-size: 16px;
    font-family: "Lato", sans-serif;;
}
.formulaire td input:not([type="checkbox"]),
.formulaire td textarea {
    width: 100%;
}

.formulaire-envoyer {
    text-align: left;
}





/* TEMOIGNAGES */
.wrapper-bande-temoignages {
    background: url('i/quote.svg') no-repeat left 20% top 20px, linear-gradient(to bottom, #d1d1e3 0%, #d1d1e300 100%);
    background-size: 220px auto, auto auto;
    position: relative;
    text-align: center;
    padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 40px);
    border-radius: 50px 50px 0px 0px;
    color:#3f3f76;
}

.boxed-bande-temoignages {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.wrapper-bande-temoignages h2 {
    margin: 0;
    text-transform: uppercase;
    color: #3f3f76;
    font-weight: 800;
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 0.3em;
    padding: 0;
    border: none;
}

.wrapper-bande-temoignages .swiper-pagination {
    position: static;
    margin: 0 auto;
    transform: none!important;
    margin-top: 0;
    --swiper-theme-color: #3f3f76;
    --swiper-pagination-bullet-size: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #d73a73 !important;
}

.wrapper-bande-temoignages a {
    color: currentColor;
    text-decoration: none;
}
.wrapper-bande-temoignages q {
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: none;
    font-weight:600;
    font-style: italic;
}
.wrapper-bande-temoignages q::before {
    margin-right: 5px;
}
.wrapper-bande-temoignages q::after {
    margin-left: 5px;
}
.wrapper-bande-temoignages .temoignage-auteur {
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}



/* TEMOIGNAGES */
.temoignagefull-content {
    margin-bottom: 30px;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    text-align: center;
}
.temoignagefull-auteur {
    font-weight: 700;
    margin-top: 10px;
    font-style: normal;
    text-align: right;
}




body.page-accueil ul.puce.list-2-columns li {
        background-image: none;
}

ul.puce span.puce {
    margin-right: 10px;
}



.badge-detail {
    padding: 5px 10px;
    color: #fff;
    background-color: gray;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-detail-vendu {
    background-color: #d73a73;
}


.badge-liste {
    padding: 5px 10px;
    color: #fff;
    background-color: gray;
    display: inline-block;
}

.badge-liste-vendu {
    background-color: #d73a73;
}




div.formulaire {
    background-color: #d73a73;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
}


span.detail-hni {
    font-size: 13px;
    line-height: 1;
    display: block;
}