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

html {
    overflow-y: scroll !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size:18px; 
    color:#2e466f;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;

}

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


html {height:100%;}



.wrapper-header{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 24px;

    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
    background:#fff;

}


.wrapper-header div.logo {
    position: absolute;
    top: 0;
    left: 0;
}
.wrapper-header a.logo {
    display: inline-block;
    padding: 1em;
    background: #fff;
}
.wrapper-header a.logo img {
    vertical-align: top;
    width: 10em;
}

.header-top-reseaux {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7em;
    width: 100%;
    
    background: #014562;

    padding: 0.7em;
}


.header-top-reseaux a img {
    width: auto;
    height: 1em;
    vertical-align: top;
}

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

    padding-right: 1em;
}
.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 Extra Condensed", sans-serif;
    font-weight: 500;
    font-size: 1em;
    line-height: 1.2;
    color: #014562;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 2.5em 1em 0.75em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 0.4em 0.4em 0 0;
    transition: color 0.2s ease, background 0.2s ease;
}

ul.menu .menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1em;
    height: 1.5em;
    transform: translateX(-50%) scaleY(0);
    background-color: #0097bb;
    transition: all 0.2s ease;
    opacity: 0;
    transform-origin: top center;
}

ul.menu .menu-item:hover::before {
    bottom: 0.6em;
    transform: translateX(-50%) scaleY(0.5);
    opacity: 1;
}

ul.menu .menu-item.selected::before,
ul.menu .menu-item.selected:hover::before {
    bottom: 0.6em;
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
}

li.sousmenu-item {
    position: relative;
    z-index: 10;
}

/* ul.menu li.sousmenu-item:hover::before {
 bottom:0.3em;
}

ul.menu li.sousmenu-item.selected::before {
    bottom:0.3em;
   } */


/* ON HOVER */ 
.wrapper-menu .menu .menu-item:hover > a,
.wrapper-menu .menu .menu-item:hover > span {
    /* background: rgba(40, 40, 40, 0.1); */
    /* color: #fff; */
}

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

.wrapper-menu .menu .menu-item .menu-arrow {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: currentColor;

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

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


.wrapper-menu .menu .menu-arrow {
    min-width: 12px;
} 
.wrapper-menu .menu .menu-arrow img{
    vertical-align: middle;
    margin-left: 0.15em;
    width: 0.6em;
    transform: translateY(-2px);
}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}


.wrapper-menu .sousmenu a{
    color: #014562;
    text-decoration: none;
    padding: 0.7em 0.7em;
    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;
    text-align: center;
}

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

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

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



/* BURGER */
.wrapper-header .burger-btn{
    position: relative;
    font-size: 1em;
    width: 40px;
    height: 40px;
    padding: 15px;
    background-color: #0097bb;
    border-radius: 8px;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: flex-end;
    transition: background 0.2s ease;
    margin: 10px 5px;
}
.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);
}


.header-top-bouton {
    background: #0097bb;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
}

.header-top-tel, .header-top-email {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    gap: 0.5em;
    align-items: center;
    font-size: 0.9em;
    font-weight: 600;
}

.header-top-langues {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 0.5em;
}

.header-top-langues a {
    height: 1em;
}


@media (max-width: 1650px) {
    .wrapper-header {
        font-size: 22px;
    }
}

@media (max-width: 1430px) {
    .wrapper-header {
        font-size: 21px;
    }
}

@media (max-width: 1330px) {
    .wrapper-header {
        font-size: 20px;
    }
}


@media (max-width: 1270px) {
    .wrapper-header {
        font-size: 19px;
    }
}

@media (max-width: 1190px) {
    .wrapper-menu .menu a, .wrapper-menu .menu span {padding-inline: 0.7em;}
}


@media (max-width: 1090px) {
    .wrapper-header a.logo {
        padding: 0.8em;
    }
    .wrapper-header a.logo img {
        width: 8em;
    }
}

@media (max-width: 990px) {
    .header-top-reseaux {
        font-size: 17px;
    }
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding-inline: 0.5em;
    }
}

@media (max-width: 920px) {

    .wrapper-menu .menu .menu-arrow img {
        transform: translateX(-3px) translateY(-5px);
    }

    .wrapper-menu .menu li.open .menu-arrow img {
        transform: translateY(-2px);
    }
 
    .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;  
        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: #fff;
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 500px;
        margin-left: auto; 
        overflow: auto;

        --menu-item-padding-inline: 10px;
    }
    .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: 500;
        padding: 10px 10px;
        text-align: left;
        text-transform: uppercase;
    }

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



    ul.menu .menu-item::before {
        left: 0;
        width: 10px;
        height: 100%;
        transform: translateX(-10px) scaleX(0);
        transform-origin: left center;
        opacity: 0.5;
    }
    ul.menu .menu-item:hover::before {
        transform: translateX(-10px) scaleX(0.7);
        opacity: 0.5;
    }
    ul.menu .menu-item.selected::before,
    ul.menu .menu-item.selected:hover::before {
        transform: translateX(-10px) scaleX(1);
        opacity: 1;
    }
    
    .wrapper-menu .sousmenu .sousmenu-item.selected::before {
        content: none!important;
    }
    
    .wrapper-menu .sousmenu .sousmenu-item.selected a {
        color: #0097bb;
    }

    .wrapper-menu .sousmenu a {
        font-size: 0.9em;
    }


    .wrapper-menu .menu .menu-item .menu-arrow {
        position: static;
        margin-left: 8px;
        transform: rotate(-90deg);
    }

}


@media (max-width: 770px) {
    .header-top-tel span {
        display: none;
    }
}

@media (max-width: 650px) {
    .wrapper-header div.logo {
        font-size: 16px;
    }
    .wrapper-header a.logo {
        padding: 0.5em;
    }
    .header-top-reseaux {
        font-size: 16px;
    }
}
@media (max-width: 580px) {
    .header-top-reseaux a span {
        display: none;
    }
}

@media (max-width: 420px) {
    .header-top-email, .header-top-tel {
        display: none;
    }
}

@media (max-width: 380px) {
    .wrapper-header div.logo {
        font-size: 14px;
    }
}
@media (max-width: 340px) {
    .header-top-bouton {
        font-size: 0.75em;
    }
}



/* FOOTER */
.wrapper-full-footer {
    position: relative;
    z-index: 1;
}

.wrapper-footer {
    position: relative;
    font-weight: 400;
    color:#fff;
    background:#014562 url('i/bg-footer.webp') no-repeat center center;
}

.wrapper-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1100px;
    height: 100%;
    background: url('i/footer.svg') no-repeat bottom left;
    background-size: 100% auto;
    opacity: 0.4;
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .wrapper-footer {
        background-image: url('i/bg-footer-2x.webp');
    }
}


.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
    font-weight: 700;
}


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

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

    margin: 0 auto;

    z-index: 1;

    max-width: 1680px;
    padding: 100px 20px 0px 20px;

    font-size: 18px;

}


.footer-inner h3 {
    color:#fff;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4em;
    position: relative;
    padding-bottom: 0.5em;
}

.footer-inner h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.wrapper-footer-inner .footer-inner address {
    font-style: normal;
}


:is(.footer-1, .footer-2, .footer-3, .footer-4) {
    width: 25%;
    position: relative;
    text-align: center;
}

.footer-1 {
    margin-top: -20px;
}

.wrapper-footer-inner .footer-inner {
    text-align: left;
    padding: 20px 10px;
    display: inline-block;
}

.wrapper-footer-inner div.logo {
    display: inline-block;
}


.footer-tel {
    display: inline-block;
    margin-top: 0.5em;
}


.footer-email {
    display: inline-block;
    margin-top: 0.5em;
}


.footer-reseaux {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.footer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-inner ul a {
    text-transform: uppercase;
    padding: 2px 0;
    display: inline-block;
}
.footer-inner ul li:first-of-type a {
    padding-top: 0;
}
.footer-inner ul li:last-of-type a {
    padding-bottom: 0;
}


div.mentions {
    position: relative;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    margin-top: clamp(40px, 14vw, 200px);

    padding: 0 20px 80px;
}


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

@media (max-width: 1300px) {
    .footer-1 {
        width: 100%;
    }
    :is(.footer-2, .footer-3, .footer-4) {
        width: 33.33%;
    }

    .wrapper-footer::before {
        width: 860px;
    }
}

@media (max-width: 1050px) {
    .wrapper-footer-inner {
        padding-top: 60px;
    }
    div.mentions {
        padding-bottom: 60px;
    }
}

@media (max-width: 900px) {
    .footer-1 div.logo img {
        width: 200px;
    }
    .wrapper-footer-inner {
        font-size: 16px;
    }

        .wrapper-footer::before {
        width: 700px;
    }
}


@media (max-width:780px) {
    :is(.footer-2, .footer-3) {
        width: 50%;
        text-align: center;
    }
    .footer-4 {
        width: 100%;
    }

    .wrapper-footer::before {
        width: 500px;
    }
}

@media (max-width: 560px) {
    :is(.footer-2, .footer-3) {
        width: 100%;
    }
    .wrapper-footer-inner .footer-inner {
        text-align: center;
    }

    .footer-inner h3::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .wrapper-footer::before {
        width: 80%;
    }
}





/* CONTENU */
input.form_submit,
a.bouton {
    display: inline-block;
    color: #fff;
    background: #0097bb;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: none;
    padding: 0.6em 1em;
}


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



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



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

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

.wrapper-boxed {
    position: relative;
}


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

div.padding { padding:140px 30px 50px 30px;}

.page-accueil div.padding {
    padding-top: 50px;
}

@media (max-width: 1650px) {
    div.padding {padding-top: 125px;}
}
@media (max-width: 1430px) {
    div.padding {padding-top: 110px;}
}

@media (max-width: 1090px) {
    div.padding {
        padding-top: 60px;
    }
}

@media (max-width: 920px) {
    div.padding {
        padding-top: 90px;
    }
}

@media (max-width:900px) {
    div.padding {
        padding:90px 20px 35px 20px;
    }
}
@media (max-width:650px) {
    div.padding { 
        padding:50px 15px 30px 15px;
    }
}
@media (max-width: 380px) {
    div.padding {
        padding-top: 30px;
    }
}


.bleu {
    color: #0097bb;
}

h1,h2.h1 {
    font-size: clamp(28px, 4vw, 50px);
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    color: #014562;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.5rem;
    padding-bottom: 0.4em;
    position: relative;
}
h1.annonces {
    margin-bottom: 1rem;
}

span.dl {
    display: block;
    text-transform: none;
    color: #014562;
    font-size: 0.6em;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    margin-top: 0.1em;
}


h1::before,h2.h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;

    background: #014562;
}

h2 {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #014562;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(28px, 4vw, 50px) * 36/50);
    margin-bottom: -0.5rem;
    text-transform: uppercase;
}

h3 {  
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #014562;
    position: relative;
    line-height: 1.1;
    font-size: max(calc(clamp(28px, 4vw, 50px) * 30/50), 20px);
    margin-bottom: -0.5rem;
    text-transform: uppercase;
}






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


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

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


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



a.externe {
  position: relative;
  text-decoration: none;
   white-space: wrap;
}

a.externe::after {
  content: "";
    background: url(i/link2.svg) center top no-repeat;
    display: inline-block;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    white-space: nowrap;  
}




a.externe:hover {
  color: inherit;
}

a.externe:hover::after {
  background-image: url("i/link.svg");
}


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: 9px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}



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: #333;
  border: 1px solid #333;
  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:16px;max-width:100%;}
div.left-responsive-xl {float:left; padding-right:16px;max-width:100%;}


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

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


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


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

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

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

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


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

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

.arrow-next img,
.arrow-previous img {
    height: 0.8em;
    width: auto;
}


.form_header {
    background: #014562;
    padding: 4px 20px!important;
    color:#ffffff;text-align:left;
    text-transform: uppercase;text-align: center;font-weight: 700;
}
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;
    background: #014562;
    margin-top: 20px;
    color: #fff;
}

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

#form {
    color:#000;
    background-position: center center;
}

#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: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #0097bb url("i/arrow-up.svg") no-repeat center center;
    background-size: 20px 20px;
    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;
}



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: 0.1em 0.2em 0.4em rgba(0, 0, 0, 0.15);
}

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

}


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

ul.images li {
    display: inline-block;
    vertical-align: top;
}

ul.images div.i {
    padding:0px 10px;
    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%;}


@media (max-width:520px) {
    ul.n2 li {width:100%;margin-bottom: 15px;}
}

@media (max-width:900px) {
    ul.n3 li {width:50%;margin-bottom: 15px;}
}


@media (max-width:520px) {
    ul.n3 li {width:100%;margin-bottom: 15px;}
}



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

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


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

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

@media (max-width:520px) {
    .isotope-grid-item { width: 100%; }
    .pix-masonry-photo {
        padding: 0;
        padding-bottom: 10px;
    }
}



.pswp {z-index: 150000000;}


.back-list a.lien,
.detail-pagination a.lien {
    color: #000 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Barlow", serif;
}

.back-list {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.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:#000 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Barlow", serif;
    text-transform: uppercase;
    font-size: 15px;
}





.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 / 810;
    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 / 810;
    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: 0;
    left: 0;
    text-align: center;
    font-size: clamp(16px, 4vw, 50px);
    color: #fff;
    width: 100%;
    background: linear-gradient(to top, #014562, #01456200 60%);
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2vw 5vw;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

}
.pix-bandeau-swiper .swiper-slogan h3 {  
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: #fff;

    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.pix-bandeau-swiper .swiper-slogan span {
    display: block;
    text-transform: uppercase;
    font-size: 0.9em;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-top: 0.2em;
}

.pix-bandeau-swiper .pix-bandeau-button {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: 0.08em solid #fff;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.5em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding: 0.5em 1.2em;
    margin-top: 1em;

    transition: background 0.2s ease, color 0.2s ease;
}
.pix-bandeau-swiper .pix-bandeau-button:hover {
    background: #fff;
    color: #014562;
    text-shadow: none;
}

.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: 36px;
    height: 36px;
    background: #fff url('i/arrow-right.svg') no-repeat left 14px center / 8px 12px;
    border-radius: 8px;
    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: 1;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}


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



/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    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;
}
 
div.form-group label {
    display: block;
    margin-bottom: 5px;
}

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

.wrapper-liste-actualites .wrapper-actu {
    margin: 0;
}

@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-2 {
    position: relative;
    text-decoration: none;
    color: currentColor;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    
    font-size: 22px;

    background-color: #fff;
    box-shadow: 0.1em 0.2em 0.4em rgba(0, 0, 0, 0.15);
    
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

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

.pix-card-2 .pix-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding: 1em 0.7em;

    width: 100%;
}

.pix-card-2 .pix-card-title {
    font-family: "Barlow", serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-size: 1em;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.pix-card-2 .pix-card-description {
    font-size: 0.85em;
    line-height: 1.2;
    margin: 0;
    margin-top: 0.4em;
    font-weight: 300;
}
.pix-card-2 .pix-card-description:empty {
    display: none;
}


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

@media (max-width: 800px) {
    .pix-card-2 {
        font-size: 19px;
    }
}

@media (max-width: 500px) {
    .pix-card-2 {
        font-size: 18px;
    }
    .pix-card-2 .pix-card-content {
        padding: 1em 0.8em;
    }
}




/* LISTE DES ACTUALITES */
.intro-actualites {
    margin-bottom: 2em;
}

/* DETAIL DES ACTUALITES */
.titre-actualite {
    margin-bottom: 0.5em;
}



em.pix-masonry-photo-titre {font-style: normal;display: block;font-size:16px;}
em.pix-masonry-photo-commentaire {font-style: normal;display: block;font-size:14px;color:#999;}



.wrapper-bande-accueil {
    display: grid;
    grid-template-columns: 50% 50%;
}

.bande-accueil-text {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    align-self: center;

}

.bande-accueil-image {
    padding: 20px;
}

.bande-accueil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}



@media (max-width: 750px) {
    .wrapper-bande-accueil {
        grid-template-columns: 1fr;
    }
    .bande-accueil-text {
        padding: 0 20px;
        grid-row: 1;
    }
}





.wrapper-bande-references {
    padding: 30px 30px 50px;
}
.wrapper-bande-references h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: "Barlow", sans-serif;
    font-size: clamp(24px, 5vw, 54px);
}

.wrapper-references {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px clamp(40px, 4vw, 80px);
}

.wrapper-bande-references .wrapper-bouton {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 1300px) {
    .wrapper-bande-references {
        padding: 20px 20px 40px;
    }
    .wrapper-references {
        gap: 20px 30px;
    }
    .wrapper-bande-references h2 {
        margin-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .wrapper-references {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .wrapper-bande-references {
        padding: 20px 20px 30px;
    }
    .wrapper-references {
        gap: 10px 20px;
    }
    .wrapper-bande-references h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .wrapper-references {
        grid-template-columns: 1fr;
    }
}



.realisation-details-type {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    font-style: italic;
    font-optical-sizing: none;
    line-height: 1.2;
    margin: 0;
    margin-top: -0.4em;
    margin-bottom: 0.5em;
    color: inherit;
    font-size: calc(clamp(28px, 5vw, 60px) * 36 / 60);
}





.wrapper-rotator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.wrapper-rotator .rotator-images-container {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / 1;
    list-style: none;
    margin: 0;
    position: relative;
    vertical-align: top;
    padding: 0;
}

.wrapper-rotator .rotator-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.wrapper-rotator .rotator-image.active{
    opacity: 1;
}







/* CAROUSEL ICONES */
.wrapper-bande-icones {
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: row;
    max-width: 1920px;
    margin: 0 auto;

    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.wrapper-bande-icones h2 {
    background: #0097bb;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    text-align: center;
    line-height: 1;

    padding: 0.8em 0.6em 0.8em 0.6em;

    flex-shrink: 0;
    z-index: 2;
    margin: 0;

    box-shadow: 0 8px 24px rgba(36, 36, 36, 0.20);
}

.swiper-icones {
    position: relative;
    
    padding: 0;
    
    width: 100%;
    margin: 0 auto;

    overflow: hidden;
}

.swiper-icones .swiper-slide {
    text-align: center;
}

.wrapper-icone {
    text-decoration: none;
    color: #014562;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    text-align: center;
    
    font-size: 20px;
    padding: 1.5em 0.5em;
    margin: 0 0.5em;

    height: 100%;

}



.wrapper-icone-image {
}


.wrapper-icone-image img {
    width: 4.5em;
    height: 4.5em;
    object-fit: contain;
    vertical-align: top;
}

.wrapper-icone-texte {
    color: #014562;
    max-width: 320px;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}
.wrapper-icone-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 1.25em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #0097bb;
}
.wrapper-icone-texte p {
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    color: #014562;
    max-width: 300px;
    margin: 5px auto 0;
}

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

    .wrapper-bande-icones h2 {
        font-size: 30px;
    }
}


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

    .wrapper-bande-icones h2 {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .wrapper-icone {
        font-size: 15px;
    }

    .wrapper-bande-icones h2 {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .wrapper-bande-icones h2 {
        font-size: 20px;
    }

    .wrapper-icone-image img {
        width: 3.5em;
        height: 3.5em;
    }
    .wrapper-icone {
        font-size: 14px;
    }
}




/* CAROUSEL ACTUS */
.wrapper-bande-actus {
    max-width: 1920px;
    margin: 0 auto;

    overflow: hidden;

    position: relative;
    padding: 40px 0 40px;

    background: url('i/bande-actus.webp') top center no-repeat;
    background-size: cover;
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .wrapper-bande-actus {
        background-image: url('i/bande-actus-2x.webp');
    }
}

.wrapper-bande-actus::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #fff;
}

.wrapper-bande-actus h2.h1 {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: clamp(26px, 4vw, 50px);
    font-size: clamp(26px, 4vw, 60px);
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #fff;
    text-align: center;
}


.swiper-actus {
    position: relative;

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

.swiper-actus .swiper-slide {
    text-align: center;
}

.wrapper-actu {
    margin: 0 20px;
    text-decoration: none;
    color: #5a5a5a;
    display: inline-block;
    max-width: 500px;
    text-align: left;

    position: relative;
    
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.wrapper-actu .actu {
    color: currentColor;
    text-decoration: none;
}


.wrapper-actu-image img {
    vertical-align: top;

    aspect-ratio: 5 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-actu-texte {
    background-color: rgba(255, 255, 255, 1);
    color: #014562;
    
    display: flex;
    flex-direction: column;
    padding: 30px;

    padding-right: 54px;

    transition: transform 0.3s ease 0s, background 0.3s ease 0s, color 0.3s ease 0s;
}
.wrapper-actu-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 22px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    color: currentColor;
    width: 100%;
    display: inline-block;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.wrapper-actu-texte p {
    margin: 0;
    margin-top: 12px;
}

.wrapper-actu-texte .plus {
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: inline-block;
    width: 44px;
    height: 44px;
    text-align: center;
    background: #0097bb url(i/plus.svg) center center no-repeat;
    background-size: 20px 20px;
    pointer-events: none;
    transition: transform 0.3s ease 0s;
}


@media (max-width: 1300px) {
  .wrapper-actu-texte h3 {
    font-size: 20px;
  }
  .wrapper-actu-texte {
    padding-left: 20px;
  }
  .wrapper-actu-texte .plus {
    width: 36px;
    height: 36px;
    background-size: 16px;
}
  
}

@media (max-width: 750px) {

}

@media (max-width: 500px) {
    
}


/* .faq-container {
    max-width: 800px;
}
 */
.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    
    border: 4px solid #0097bb;
    border-bottom-color: transparent;

    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    color: #014562;
    font-size: 1.4em;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
    border: 4px solid #0097bb;
    border-top-color: transparent;
    margin-top: -8px;
}

.faq-answer-inner {
    padding: 20px 12px;
    padding-top: 0;
}

.faq.open .faq-question {
}

.faq-bouton {
    padding:8px 8px 0px 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0px;
    transition: all 0.2s ease-in-out 0s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
}

.faq.open .faq-bouton {
    transform: translateY(-50%) rotate(90deg);
}

.faq-bouton img {width:8px;height:calc(8px * 21 / 15);display: block;}

table.tableau tr td {padding:15px 0px;}
div.tableau-services table.tableau tr td:first-of-type {padding-right:15px;}
div.tableau-services table.tableau tr td:first-of-type img {min-width: 26px;}



.wrapper-bande-carte {
    background: #f4fafb;
    text-align: right;

    position: relative;

    margin-top: 60px;
}

.wrapper-bande-carte img {
    vertical-align: top;
}

.wrapper-bande-carte .wrapper-carte-logos {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    display: flex;
    flex-direction: column;

    padding: 50px;
    gap: 30px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1100px) {
    .wrapper-bande-carte .wrapper-carte-logos {
        padding: 50px 30px;
        gap: 20px;
    }
    .wrapper-bande-carte .wrapper-carte-logos img {
        width: 150px;
    }
}

@media (max-width: 720px) {
    .wrapper-bande-carte .wrapper-carte-logos {
        padding: 30px 20px;
        gap: 15px;
    }
    .wrapper-bande-carte .wrapper-carte-logos img {
        width: 120px;
    }
}

@media (max-width: 550px) {
    .wrapper-bande-carte .wrapper-carte-logos {
        position: static;
        transform: none;
        gap: 15px;
        padding: 10px;
        /* box-shadow: none; */
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        box-shadow: 2px 2px 10px rgb(0, 0, 0, 0.20);
    }
}


/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-partenaires {
    overflow: hidden;
    padding: 40px 0;
    background: white;
    white-space: nowrap;
    position: relative;

    box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.15);
}

.partenaires-slide {
    width: max-content;
    animation: 35s slide infinite linear;
    animation-duration: calc(var(--nb-logos) * 3s); /* 3s par logo */
    animation-play-state: paused;
    /* min-width: 100vw; */
    display: inline-block;
    text-align: center;
}

.partenaires-slide.animate {
    animation-play-state: running;
}


.partenaires-slide img {
    margin: 0 40px;
    --scale: 1;
    width: calc(var(--width) * var(--scale));
}

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

@media (max-width: 900px) {
    .partenaires-slide img {
        margin: 0 20px;
        --scale: 0.8;
    }
}
@media (max-width: 550px) {
    .partenaires-slide img {
        margin: 0 10px;
        --scale: 0.6;
    }

    .wrapper-bande-partenaires {
        padding: 30px 0;
    }
}

