* {
    -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: "Inter", sans-serif;
    font-size:20px; 
    color: #000000;
    font-weight: 400;
    margin: 0;
    background-color:#ffffff;
    line-height: 1.4;
}

@media (max-width:600px) {
    body {font-size:18px;}
}


#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



.wrapper-header{
    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 1000000000;
    
    margin: 0 auto;

    font-size: 20px;

    background: #010101 url('i/header-top-bg.jpg') no-repeat center center;
    background-size: auto 100%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}



/* HEADER LOGO */
.wrapper-header div.logo {
    flex-shrink: 0;
    z-index: 100000;
    font-size: 20px;

    margin-bottom: -3.5em;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
    padding:0;
    margin:0;
    position: relative;
    background: #fff;
    padding: 1em 0.75em;
    border-radius: 0 0 1.5em 1.5em;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
.wrapper-header div.logo img {
   vertical-align: top;
   width: 12.75em;
}


/* HEADER BOTTOM */
.wrapper-header .header-bottom {
    display: flex;
    flex-direction: row;
    font-size: 1.2em;

    gap: 2em;
}

/* MENU */
.wrapper-menu-mobile {
    display: none;
}

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

    width: 100%;
    margin: 0 auto;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    height: 100%;
}

.wrapper-menu-left .menu {
    justify-content: flex-end;
}
.wrapper-menu-right .menu {
    justify-content: flex-start;
}


.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    --padding-inline: 1.2em;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0 var(--padding-inline);
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}





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

.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #004AADd1;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.2s ease;
    transform-origin: bottom center;
}

.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    opacity: 0.8;
    transform: scaleX(1);
}


/* ON SELECTED */
.wrapper-menu .menu-item.selected > a,
.wrapper-menu .menu-item.selected > span {
}

.wrapper-menu .menu-item.selected > a::before,
.wrapper-menu .menu-item.selected > span::before {
    opacity: 1;
    transform: scaleX(1);
}




.wrapper-menu .menu span div.menu-arrow {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);

    width: 0.6em;
    height: 0.4em;

    display: flex;
}

.wrapperm-enu .menu span div.menu-arrow img {
    width: 100%;
    height: auto;
}




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

.wrapper-menu .sousmenu a{
    color: #004AAD;
    text-decoration: none;
    padding: 20px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 0.8em;
    font-weight: 500;
    border-radius: 0;
}

.wrapper-menu .sousmenu .sousmenu-item:hover a {
    background: rgba(93, 126, 171, 0.2);
}

.wrapper-menu .sousmenu .sousmenu-item.selected a {
    background: #004AAD;
    color: #fff;
}

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



/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    margin-left: auto;
    width: 40px;
    height: 40px;
    padding: 15px;
    border: none;
    background: transparent;
    border: 2px solid #fff;
    display: none;
    cursor: pointer;
    z-index: 10000000;
    align-self: center;

    border-radius: 99px
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 20px;
    height: 2.5px;
    background: #fff;

    border-radius: 99px;

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -9px);
}
.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: 1650px) {
    .wrapper-header .header-bottom {
        font-size: 22px;
    }
    .wrapper-header div.logo {
        font-size: 18px;
    }

}
@media (max-width: 1450px) {
    .wrapper-header .header-bottom {
        font-size: 20px;
    }
    .wrapper-header div.logo {
        font-size: 17px;
    }
}
@media (max-width: 1300px) {
    .wrapper-header .header-bottom {
        font-size: 19px;
    }
    .wrapper-header div.logo {
        font-size: 15px;
    }
}
 @media (max-width: 1250px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        --padding-inline: 1em;
    }
    .wrapper-menu .sousmenu a {
        padding: 14px 10px;
    }

    .wrapper-header .header-bottom {
        font-size: 17px;
    }
    .wrapper-header div.logo {
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        --padding-inline: 0.8em;
    }
}

@media (max-width: 1015px) {

    .wrapper-header .header-bottom {
        justify-content: center;
        height: auto;
    }

    .wrapper-menu-desktop {
        display: none;
    }
    .wrapper-menu-mobile {
        display: block;
    }

    .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.7);
        width: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none; 
        height: 100vh;      
        height: 100dvh;      
    } 

    .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;
        height: auto;
    }

    .wrapper-header .wrapper-menu .wrapper-inner {
        padding: 10px 70px 10px 10px;
        height: 100%;
        background: #000001;
        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 .wrapper-inner {
        transform: translateX(0);
    }


    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        width: 100%;
        text-align: left;
        height: auto;
        color: #fff;
    }

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

    .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-menu .menu-item > a::before, 
    .wrapper-menu .menu-item > span::before {
       
    }

    .wrapper-menu .menu-item.selected > a::before, .wrapper-menu .menu-item.selected > span::before {
        transform: scaleY(1);
    }

}

@media (max-width: 540px) {  
    .wrapper-header div.logo {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .wrapper-header div.logo {
        font-size: 9px;
    }
    .wrapper-header .wrapper-menu .wrapper-inner {
        max-width: 400px;
    }
}




.wrapper-full-footer {
    position: relative;
    z-index: 1;
    background: #232323 url('i/footer-bg.jpg') no-repeat top center;
    background-size: 1920px auto;
    color: #D1D1D1;

    font-size: 20px;
}

.wrapper-full-footer::before,
.wrapper-full-footer::after {
    content: '';
    position: absolute;
    bottom: 10px;
    width: 50%;
    height: clamp(28px, 8vw, 120px);
    z-index: -1;
    pointer-events: none;
    background: url('i/footer-deco-bottom.svg') no-repeat left bottom;
    background-size: auto 100%;
}


.wrapper-full-footer::before {
    left: 0;
}

.wrapper-full-footer::after {
    right: 0;
    transform: scaleX(-1);
}


.wrapper-footer {
    position: relative;
    font-weight: 300;
}

.wrapper-footer .logo-footer {
    width: max-content;
    margin: 0 auto;
}


.wrapper-footer .logo-footer img {
    vertical-align: top;
    width: 13.5em;
}

.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
    font-weight: 300;
}
.wrapper-footer a:hover {
    color: #fff;
} 


/* FOOTER */
.wrapper-footer-inner {
    position: relative;

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

    padding: clamp(40px, 7vw, 100px) 0 clamp(80px, 14vw, 200px);

    margin: 0 auto;

    z-index: 1;

    max-width:1720px;
}


.footer-1, .footer-2, .footer-3 {
    width: 100%;
}

.footer-2, .footer-3 {
    margin-top: 100px;
}

.wrapper-footer-inner .footer-inner {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    max-width: 440px;
}

.footer-1 .logo-footer {
    margin-bottom: 1.5em;
}

.footer-inner h3 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.3em;
    margin-bottom: 1em;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.footer-inner h3::after {
    content: none;
}

.footer-inner p {
    margin: 0 auto;
    max-width: 380px;
}
.footer-inner address {
    font-style: normal;
    font-weight: 400;
}

.wrapper-footer .footer-lien-plan {
    display: inline-block;
    margin-bottom: 1em;
    font-weight: 700;
}

.footer-inner .footer-email {
    font-weight: 700;
    display: inline-block;
    margin-top: 1em;
}

.footer-inner .footer-facebook {
    margin-top: 20px;
    display: inline-block;
}

.footer-inner .footer-facebook img {
    vertical-align: top;
}

.footer-inner .footer-facebook:hover {
    filter: brightness(0) invert(1);
}

.footer-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-3 ul li a {
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 1px 0;
}


div.mentions {
    position: relative;
    margin: auto;
    text-align: center;
    padding: 35px 20px 70px 20px;

    color: #B6B6B6;
    font-size: 18px;
}


div.mentions a {
    color: #B6B6B6;
    font-weight: 400;
    text-decoration: none;
}
div.mentions a:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .wrapper-footer .logo-footer {
        font-size: 18px;
    }
}


@media (max-width: 1000px) {
    .wrapper-full-footer {
        background-size: 1200px auto;
    }
    .wrapper-footer-inner {
        flex-wrap: wrap;
    }
    .footer-1 {
        width: 100%;
    }
    .footer-2,.footer-3 {
        width: 50%;
    }

    .wrapper-footer .logo-footer {
        font-size: 16px;
    }


    .footer-2, .footer-3 {
        margin-top: 50px;
    }

}
@media (max-width: 550px) {
    .wrapper-full-footer {
        background-size: 600px auto;
    }

    .footer-1, .footer-2, .footer-3 {
        width: 100%;
    }

    .wrapper-footer-inner .footer-inner {
        padding: 20px;
        margin: 0 auto;
        text-align: center;
        font-size: 18px;
    }

    .footer-inner h3 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 0.6em;
    }

    .wrapper-footer .logo-footer {
        font-size: 14px;
    }

    .footer-2, .footer-3 {
        margin-top: 20px;
    }
}

@media (max-width: 400px) {
    .wrapper-footer .logo-footer {
        font-size: 12px;
    }
}


/* CONTENU */

input.form_submit,
a.bouton {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-family: "Inter", sans-serif;
    background-color: #004AAD;

    font-weight: 700;
    text-decoration: none;
    padding: 1em 1.2em;
    font-size: 0.9em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 10px;
    border: none;
}



.formulaire-envoyer input.form_submit {
    padding: 8px 18px;
    font-size: 18px;
    cursor: pointer;
    background: #db0000;
    color: #fff;
}

@media (max-width: 720px) {
    a.bouton {
        border-width: 2px;
    }
}




.wrapper-site {
    /* overflow: hidden; */ /* Quand il est activé le sticky ne fonctionne plus */
}



.wrapper-contenu {
    z-index: 1;
    position: relative;
}

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

.wrapper-boxed {
    background: url('i/deco-contenu.svg') no-repeat bottom 50px right;
    background-size: clamp(400px, 80%, 1100px) auto;
}

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

div.padding { padding:90px 30px 60px 30px;}


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

@media (max-width: 400px) {
    div.padding { 
        padding:50px 15px 60px 15px;
    }
}



h1,h2.h1 {
    position: relative;
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 700;
    line-height: 1.05;
    color: #004AAD;
    text-transform: uppercase;
    margin: 0;
    font-family: "Inter", sans-serif;
}

span.dl {
    display: block;
    color: #595959;
    font-size: 0.65em;
    line-height: 0.6;
    font-weight: 300;
    margin-top: 0.3em;
    text-transform: none;
    font-family: "La Belle Aurore", cursive;
}


h2 {
    font-family: "Inter", sans-serif;
    margin: 0;
    font-weight: 700;
    color: #0E1E20;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 55px) * 42/62);
    margin-bottom: -0.5em;
    text-transform: uppercase;
}

h3 {  
    font-family: "Inter", sans-serif;
    margin: 0;
    font-weight: 400;
    color: #011315;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 44px) * 36/44);
    margin-bottom: -0.5em;

    position: relative;
}


h3::after {
    content: '';
    position: absolute;
    bottom: -0.3em;
    left: 0;
    width: 5em;
    height: 4px;
    background-color: currentColor;
}






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


a.lien:link,
a.lien:visited {
    color: #004AAD;
    font-weight: 700;
    text-decoration: none;
}

a.lien:hover {
    color: #01377f;
    text-decoration: none;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#004AAD; font-weight:700; text-decoration:none; }
a.lienpetit:hover{color:#01377f;text-decoration:none;}

span.petit {
    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;
    padding-left: 16px;
    overflow: hidden;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 11px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    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%;
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 5px;
  color: #072a66;
  border: 1px solid #072a66;
  border-radius: 0;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=url]:focus-visible,
input[type=password]:focus-visible,
textarea:focus-visible {
    border-radius: 0;
}



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:32px;max-width:100%;}
div.left-responsive-xl {float:left; padding-right:32px;max-width:100%;}


@media (max-width:800px) {
    div.right-responsive-xl {float:none;width:auto;padding:0;padding-bottom:24px;text-align: center;}
    div.left-responsive-xl {float:none;width:auto;padding:0;padding-bottom:24dpx;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:#ba0000; font-weight:bold; }

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

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

.cadresubmit { border:1px #072a66 solid; }

.pagination_inactif { color:#c6bdbd; font-weight:normal; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#072a66; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {   color:#072a66; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#ba0000;pointer-events: none; }
a.lienpaginations{color: #fff!important;}
a.lienpaginations[href="#"] {pointer-events: none; color: #fff;}

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

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

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


div.map {
    padding-top: 20px;
}

.form_header {
    background: #011315;
    padding: 4px 20px !important;
    color: #ffffff;
    text-align: left;

    text-align: center;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
form table:nth-of-type(1) {    
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;*/
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.formulaire-message-envoye {
    padding: 20px;
    margin-top: 20px;
    color: #000000;
    box-shadow: 10px 10px 0px #d8d8d8;
    background: #efefef;
    text-align: center;
    font-size: 24px;
}

sup{
    color: #ba0000;
    font-weight: 700;
    font-size: 16px;
    vertical-align: top;
}
.error{color:#ba0000;font-weight: 600; font-size: 15px;}
.form_label {font-weight:normal;}
.form_input {}
div.form_note {font-style:italic;font-size:10px;}

#form {
    color:currentColor;
    background-position: center center;
    padding: 20px;
}

#form textarea {
    resize: vertical;
    min-height: 50px;
}

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

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

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

a.back-to-top {
    display: none;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    background: #004AAD url("i/arrow-up.svg") repeat-y center center;
    background-size: 100% 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
    transition: backgrond-color 0.3s ease;
}

a.back-to-top:hover {
    background-color: #004AAD;
    transition: backgrond-color 0.3s ease;
}



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



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: 14px 14px 0px 0px #EEEEEE;
    margin-right: 14px;
    margin-bottom: 14px;
}

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

}


.wrapper-flex-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.wrapper-flex-columns.items-center {
    align-items: center;
}

.wrapper-flex-columns > br {
    display: none;
}

.wrapper-flex-columns .wrapper-col {
    flex: 1;
    min-width: min(450px, 100%);
    position: relative;
}



.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:#072a66;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;}

body label[for="element7i0"] {font-size: 12px;line-height: 1.1;}

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

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

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

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

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

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

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


.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}
.detail-pagination a.lien {
    color: #004AAD !important;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

.detail-pagination .back-list {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

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


.back-list .lien,
.show-previous .lien {
    padding-left: 2px;
    transition: padding 0.2s ease;
    
}
.back-list .lien:hover,
.show-previous .lien:hover {
    padding-left: 0;
    padding-right: 2px;
}
.show-next .lien {
    padding-right: 2px;
    transition: padding 0.2s ease;
}
.show-next .lien:hover {
    padding-right: 0;
    padding-left: 2px;
}


.liste-pagination {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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:#004AAD !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
}


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






.form_label {
    
    font-weight: 500;
}


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


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



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




/* BANDEAU SWIPER */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 760;
    position: relative;
    user-select: none;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}


.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 760;
    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 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: #004AAD url('i/arrow-right.svg') no-repeat center center / 100% 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: 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;
}

.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 45%;
    text-align: left;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
}
.pix-bandeau-swiper .swiper-slogan  h3 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    font-size: clamp(16px, 3.2vw, 62px);
    color: #fff;
}
.pix-bandeau-swiper .swiper-slogan  h3::after {
    content: none;
}
.pix-bandeau-swiper .swiper-slogan  h3 span {
    font-style: italic;
    font-weight: 200;
    display: block;
    font-size: 0.75em;
}
.pix-bandeau-swiper .swiper-slogan  h3::after {
    content: none;
}


@media (max-width: 500px) {
    .pix-bandeau-swiper {
        height: 200px;
        aspect-ratio: auto;
    }

    .pix-bandeau-swiper .swiper-slogan {
        left: auto;
        right: 50px;
        width: calc(100% - 100px);
    }
}


/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(34, 51, 83, 0.1);
    position: relative;
    z-index: 1;
}



/* FORMULAIRES */
.formulaire {
    display: block;
}
.formulaire tbody {
    display: block;
}
.formulaire tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.formulaire th {
    text-align: left;
    padding: 0 20px;
    margin-bottom: 3px;
}
.formulaire td {
    padding: 0 20px;
    line-height: 1;
}
.formulaire td input:not([type="checkbox"]), .formulaire td textarea {
    width: 100%;
}
.formulaire-envoyer {
    text-align: left;
}


/* BANDE PAGES */
.wrapper-bande-pages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #000;
}

.wrapper-page {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    background: var(--background-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
}

.wrapper-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
    opacity: 0;

    transition: opacity 0.2s ease;
}

/* Alterne la direction toutes les deux cartes (chaque ligne) */
.wrapper-bande-pages .wrapper-page:nth-child(4n),
.wrapper-bande-pages .wrapper-page:nth-child(4n + 3) {
    flex-direction: row;
}

.wrapper-page-image {
    width: 50%;
    aspect-ratio: 1 / 1;
}
.wrapper-page-image img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-page-content {
    width: 50%;
    padding: 3em 2em 2em 2em;
    color: var(--text-color);
    position: relative;
    height: 100%;
    overflow: hidden;
}


.wrapper-page-content h3 {
    color: currentColor;
    margin: 0;
    margin-bottom: 1.2em;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}
.wrapper-page-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 5em;
    height: 2px;
    background: currentColor;
    opacity: 0.8;
}

.wrapper-page-content .wrapper-page-description {
    position: relative;
    z-index: 2;
}

.wrapper-page-content .wrapper-page-number {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: "Libre Caslon Display", serif;
    color: var(--number-color);
    font-size: 12.5em;
    line-height: 0.7;
    transform: translateX(-25%);
    z-index: 0;
}


.wrapper-bande-pages:hover .wrapper-page:not(:hover)::before {
    opacity: 1;
}

@media (max-width: 1400px) {
    .wrapper-page {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .wrapper-page {
        font-size: 16px;
    }
}

@media (max-width: 1050px) {
    .wrapper-bande-pages {
        grid-template-columns: 1fr;
    }

    .wrapper-bande-pages .wrapper-page:nth-child(even) {
        flex-direction: row;
    }
    .wrapper-bande-pages .wrapper-page:nth-child(odd) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 600px) {
    .wrapper-page {
        font-size: 14px;
    }

    .wrapper-page-image {
        width: 40%;
    }
    .wrapper-page-content {
        width: 60%;
        padding: 2em 1.5em 1.5em 1.5em;
    }
}

@media (max-width: 450px) {
    .wrapper-page-content h3 {
        font-size: 1.2em;
    }

    .wrapper-bande-pages .wrapper-page:nth-child(even) {
        flex-direction: column;
    }
    .wrapper-bande-pages .wrapper-page:nth-child(odd) {
        flex-direction: column;
    }

    .wrapper-page-content {
        width: 100%;
        padding: 3em 2em 2em 2em;
    }
    .wrapper-page-image {
        width: 100%;
        aspect-ratio: auto;
    }
}



/* BANDE ACTUS */
.wrapper-bande-actus {
    max-width: 1920px;
    margin: 0 auto;
    background: #EEEEEE;

    padding: 20px 40px clamp(30px, 4vw, 70px); 
    overflow: hidden;

}
.wrapper-bande-actus h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 12vw;
    position: relative;
    border: none;
    color: #D6DEE7;
    margin: 0;
    margin-bottom: -0.25em;
}


.wrapper-bande-actus .swiper-actus .swiper-slide {
    height: auto;
}
.wrapper-bande-actus .wrapper-actualite {
    height: 100%;
}
.wrapper-bande-actus .pix-card {
    /* max-width: 500px; */
    margin: 0 auto;
}

@media (max-width: 1250px) {
    .wrapper-bande-actus {
        padding-inline: 30px;
    }
}
@media (max-width: 640px) {
    .wrapper-bande-actus {
        padding-inline: 20px;
    }
}





/* GRILLE LISTE DES  ACTUS */
.wrapper-liste-actualites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .wrapper-liste-actualites {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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




/* CARD POUR LES ACTUS */
.pix-card {
    position: relative;
    text-decoration: none;
    color: #004AAD;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    height: 100%;
    
    font-size: 20px;

    background-color: #fff;
    
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 1em;
    overflow: hidden;
    margin: 0 auto;

    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);

    transition: box-shadow 0.2s ease;
}

.pix-card .pix-card-image {
    width: 100%;
}
.pix-card .pix-card-image img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pix-card .pix-card-content {
    position: absolute;
    top: 3em;
    left: 0;
    width: 100%;

    padding: 1.5em 1.5em 2.5em;
    width: 100%;
    text-align: left;

    background: rgba(255, 255, 255, 0.7);
}


.pix-card .pix-card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    font-size: 1.3em;
    color: inherit;
    color: #004AAD;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: color 0.2s ease;
}

.pix-card .pix-card-title::after {
    content: none;
}

.pix-card .voir-plus {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);

    background: #004AAD;
    box-sizing: content-box;
    width: 2em;
    height: 2.75em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: background 0.2s ease;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 0.75em), 0 100%);
}

.pix-card .voir-plus img {
    width: 1em;
    padding: 0.5em;
    transition: transform 0.5s ease;
}


.pix-card:hover .voir-plus img {
    transform: rotate(270deg);
}

.pix-card:hover {
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.3);
}
.pix-card:hover .voir-plus {
    background: #01377f;
}

@media (max-width: 900px) {
    .pix-card {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .pix-card {
        font-size: 16px;
    }
}





/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-marques {
    overflow: hidden;
    padding: clamp(30px, 7vw, 80px) 0;
    background: #fff;
    white-space: nowrap;
    position: relative;
}

.marques-slide {
    width: max-content;
    animation: 35s slide infinite linear;
    animation-duration: calc(var(--nb-logos) * 3s);
    display: inline-block;
    text-align: center;
    background: inherit;

    display: inline-flex;
    flex-direction: row;
}


.marques-slide .wrapper-marque {
    align-content: center;
    mix-blend-mode: luminosity;
    padding: 30px 40px;
    
    position: relative;
    
}

.marques-slide .wrapper-marque::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #66666600, #666666,#66666600);
}

.marques-slide img {
    --scale: 1;
    width: calc(var(--width) * var(--scale));
    vertical-align: top;
}

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

@media (max-width: 900px) {
    .marques-slide .wrapper-marque {
        padding: 20px 30px;
    }
    .marques-slide img {
        --scale: 0.8;
    }
}
@media (max-width: 550px) {
    .marques-slide {
        animation-duration: calc(var(--nb-logos) * 2s);
    }
    .marques-slide .wrapper-marque {
        padding: 10px 20px;
    }
    .marques-slide img {
        --scale: 0.6;
    }
}





/* ======== */
/* ANNONCES */
/* ======== */


/* FORMULAIRE DE RECHERCHE DES ANNONCES */
.form-search-annonces {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.2em 1em;

    border-bottom: 1px solid #eee;

    padding-bottom: 1em;
    margin-bottom: 1em;
}

.form-search-annonces .form-control {
    display: flex;
    flex-direction: column;
}


.form-search-annonces .form-control label {
    font-size: 16px;
    margin-bottom: auto;
}

.form-search-annonces .break-tablet {
    display: none;
}
@media (max-width: 1000px) {
    .form-search-annonces .break-tablet {
        flex-basis: 100%;
        height: 0;
        display: block;
    }
}

@media (max-width: 800px) {
    .form-search-annonces {
        flex-direction: column;
        gap: 0.2em;
    }
}


/* PIX INPUT FORM */
.pix-input[type=text] {
    border: 1px solid #004AAD;
    border-radius: 0;
    padding: 0.20em 0.5em;
    font-size: 0.9em;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    min-width: 200px;
    max-width: 350px;
}

/* PIX SELECT FORM */
.pix-select {
    position: relative;
    min-width: 200px;
    max-width: 350px;
    border: 1px solid #004AAD;
    border-radius: 0;
    padding: 0;
    font-size: 1em;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    display: inline-block;
}
.pix-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    color: #000;
    font-weight: 400;
    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: #004AAD;
    -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;
}

/* PIX BUTTON FORM */
.pix-button-form {
    background-color: #004AAD;
    color: #fff;
    border: none;
    padding: 0.45em 0.6em;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: auto;
}



/* GRILLE LISTE DES ANNONCES */
.wrapper-liste-annonces {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 980px) {
    .wrapper-liste-annonces {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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







/* CARD POUR LES ACTUS */
.pix-card-annonce {
    position: relative;
    text-decoration: none;
    color: #004AAD;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    font-size: 20px;

    background-color: #fff;

    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.pix-card-annonce .pix-card-image {
    width: 100%;
}
.pix-card-annonce .pix-card-image img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pix-card-annonce .pix-card-content {

    padding: 1em 1em;
    width: 100%;
    text-align: left;
}


.pix-card-annonce:hover {
        background: #ededed;
    box-shadow: 10px 10px 0px #c2c2c2
}


.pix-card-annonce .pix-card-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    font-size: 1.1em;
    color: inherit;
    color: #004AAD;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.pix-card-annonce .pix-card-title::after {
    content: none;
}

.pix-card-annonce .pix-card-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25em;
    margin-top: 0.2em;
}

.pix-card-annonce .pix-card-tags .pix-card-tag {
    display: inline-block;
    color: #0E1E20;
    background: transparent;
    border: 1px solid #0E1E20;
    text-decoration: none;
    padding: 0.4em 0.6em;
    font-weight: 500;
    font-size: 0.6em;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 50px;
}

.pix-card-annonce .pix-card-tags .pix-card-tag-badge,
.pix-card-annonce .pix-card-tags .pix-card-tag-disponibilite {
    background: #0E1E20;
    color: #fff;
}

.pix-card-annonce .pix-card-price {
    margin: 0;
    margin-top: 0.5em;
}
.pix-card-annonce .pix-card-price-text {
    color: #000;
    font-weight: 500;

}

.pix-card-annonce .voir-plus {
    display: flex;
    align-items: center;
    margin-top: 1em;
    font-size: 0.8em;
    font-weight: 600;
    gap: 0.4em;
    margin-left: 0.2em;
}

@media (max-width: 900px) {
    .pix-card-annonce {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .pix-card-annonce {
        font-size: 16px;
    }
}


.back-list-annonces {
    margin-bottom: 1em;
}
.back-list-annonces img {
    filter: brightness(0) invert(1);
}



.wrapper-annonce h1 {
    margin-bottom: 0.2em;
}

.wrapper-annonce .annonce-content {
    position: relative;
}

.wrapper-annonce .detail-texte {
}

.wrapper-annonce .annonce-image {
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
}
.wrapper-annonce .annonce-image .annonce-first-image a {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.wrapper-annonce .annonce-galerie .isotope-grid-item {
    width: 33.33%;
}

.wrapper-annonce .annonce-galerie a {
    display: inline-block;
}
.wrapper-annonce .annonce-galerie a img {
    vertical-align: top;
}



.wrapper-annonce .annonce-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
.wrapper-annonce .annonce-tags .annonce-tag {
    display: inline-block;
    color: #0E1E20;
    background: transparent;
    border: 1px solid #0E1E20;
    text-decoration: none;
    padding: 0.5em 0.75em;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 50px;
}
.wrapper-annonce .annonce-tags .annonce-tag-badge,
.wrapper-annonce .annonce-tags .annonce-tag-disponibilite {
    background: #0E1E20;
    color: #fff;
}

.wrapper-annonce .annonce-prix {
    margin-top: 0.4em;
    margin-bottom: 1em;
    font-size: 1.2em;
    font-weight: 500;
}

@media (max-width: 940px) {
    .wrapper-annonce .annonce-image {
        float: none;
        padding-left: 0;
        text-align: center;
    }
    .wrapper-annonce .annonce-galerie .isotope-grid-item {
        width: 50%;
    }

    .wrapper-annonce .annonce-galerie .pix-masonry-photo {
        padding: 5px;
    }
}



.wrapper-bande-image {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
}

.wrapper-bande-image .wrapper-bande-image-img {
    order: -1;
}

@media (max-width: 900px) {
    .wrapper-bande-image {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .wrapper-bande-image .wrapper-bande-image-img {
        order: 0;
        text-align: center;
    }
}



.pix-facebook {
    position: fixed;
    top: clamp(130px, 14vw, 200px);
    right: 0;
    z-index: 10000;

    width: 48px;
    height: 44px;
    background: #004AAD;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px 0 0 8px;
    padding-right: 4px;

    transform: translateX(4px);
    transition: transform 0.2s ease;
}

.pix-facebook img {
    width: 28px;
    height: 28px;
}

.pix-facebook:hover {
    transform: translateX(0);
}

@media (max-width: 600px) {
    .pix-facebook {
        width: 36px;
        height: 32px;
    }
    .pix-facebook img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 400px) {
    .pix-facebook {
        top: 100px;
    }
}