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

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


html {height:100%;}



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

    position: relative;
    z-index: 1000000000;
    
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.15);

    font-size: 20px;
}

.wrapper-header .header-left {
    flex-grow: 1;
    flex-shrink: 0;
}
.wrapper-header .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* HEADER LOGO */
.wrapper-header div.logo {
    z-index: 100000;
    height: 100%;
    position: relative;
    padding: 2em 6em 2em 4em;
}

.wrapper-header a.logo-bureau-ouest,
.wrapper-header a.logo-ioburo {
    text-decoration: none;
    color: currentColor;
    position: relative;
}

.wrapper-header a.logo-bureau-ouest {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.wrapper-header a.logo-bureau-ouest img {
    width: 13em;
}

.wrapper-header a.logo-ioburo {
    position: absolute;
    top: 0;
    right: 0;
    background: #e73937;
    padding: 0.6em 1.6em;
    border-bottom-right-radius: 0.8em;
    border-bottom-left-radius: 0.8em;
}

.wrapper-header a.logo-ioburo img {
    width: 5em;
}

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


/* HEADER TOP */
.wrapper-header .header-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    
    align-items: center;
    gap: 1.5em;

    padding: 0.75em;

    font-size: 1em;
}

.wrapper-header .header-top h3 {
    text-align: right;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-size: 0.9em;
    color: #9c9d9d;
    font-weight: 400;
    margin: 0;
}

/* HEADER BOTTOM */
.wrapper-header .header-bottom {
    display: flex;
    flex-direction: row;
    height: 100%;
}


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

    width: 100%;
    margin: 0 auto;

    padding-right: 6em;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.2;
    color: #4a4a4a;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.6em 0.8em;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    vertical-align: top;
}

.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 2em;
    height: 1em;
    background: #4264ad;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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



.wrapper-menu .menu span div.menu-arrow {
    display: inline-block;
    margin-left: 5px;
    vertical-align: 2px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(5%) saturate(14%) hue-rotate(324deg) brightness(97%) contrast(83%);
}

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

.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);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}


.wrapper-menu .sousmenu::before {
    content: '';
    position: absolute;
    top: 0px;
    height:10px;
    left: 0px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0) 10px);
}
.wrapper-menu .sousmenu a{
    color: #4a4a4a;
    text-decoration: none;
    padding: 17px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 18px;
    font-weight: 500;
}

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

.wrapper-menu .sousmenu .selected a {
    color: #4264ad;
}

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

/* BOUTON COMMANDER DANS LE MENU POUR LE MOBILE */
.wrapper-menu .menu .header-commande {
    display: none;
}


/* BURGER */
.wrapper-header .burger-btn{
    position: relative;
    margin-left: auto;
    margin-right: 0.75em;
    width: 40px;
    height: 40px;
    padding: 15px;
    background-color: #4264ad;
    border-radius: 1em;
    border-bottom-right-radius: 0;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: flex-end;
    transition: background 0.2sease;
    margin-bottom: 20px;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #fff;

    transition: transform 0.2s ease;
}


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


@media (max-width: 1550px) {
    .wrapper-header {
        font-size: 19px;
    }
    .wrapper-menu {
        padding-right: 5em;
    }
    .wrapper-header div.logo {
        padding-left: 3.5em;
    }
}
@media (max-width: 1480px) {
    .wrapper-header {
        font-size: 18px;
    }
    .wrapper-menu {
        padding-right: 4em;
    }
    .wrapper-header div.logo {
        padding-left: 3em;
    }
}
@media (max-width: 1360px) {
    .wrapper-header {
        font-size: 17px;
    }
    .wrapper-header div.logo {
        font-size: 16px;
    }
    .wrapper-menu {
        padding-right: 3em;
    }
    .wrapper-header div.logo {
        padding-left: 2.5em;
    }
}
@media (max-width: 1240px) {
    .wrapper-header {
        font-size: 16px;
    }
    .wrapper-header div.logo {
        font-size: 14px;
    }
    .wrapper-menu {
        padding-right: 2.5em;
    }
}

@media (max-width: 1130px) {
    .wrapper-menu .menu a, 
    .wrapper-menu .menu span {
        padding: 1.6em 0.6em;
    }

    .wrapper-menu {
        padding-right: 0.75em;
    }
}

@media (max-width: 1060px) {
    .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;
        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: 350px;
        margin-left: auto; 
        overflow: auto;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0);
        counter-reset: menu-item;
    }


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

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

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

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

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

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

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


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

    .wrapper-menu .menu a, .wrapper-menu .menu span {
        overflow: visible;
    }
    .wrapper-menu .menu-item > a::before,
    .wrapper-menu .menu-item > span::before {
        /* width: 5px;
        height: 100%; */
        bottom: auto;
        left: -10px;
        top: 50%;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        width: 1em;
        height: 1em;
        transform: translateY(-50%);
    }

    .wrapper-menu .menu-item > a:hover::before, 
    .wrapper-menu .menu-item > span:hover::before, 
    .wrapper-menu .menu-item.selected > a::before, 
    .wrapper-menu .menu-item.selected > span::before {
        transform: translateY(-50%);
    }

    .wrapper-header .header-top h3 {
        display: none;
    }

}

@media (max-width: 500px) {
    .wrapper-header .header-top .bouton {
        display: none;
    }
    .wrapper-header div.logo {
        position: static;
    }
    .wrapper-header a.logo-ioburo {
        right: 10px;
    }
    .wrapper-menu .menu .header-commande {
        display: block;
        color: #fff;
    }
}

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

/* FOOTER */
.wrapper-full-footer {
    position: relative;
    z-index: 1;    
}
.wrapper-footer {
    color: #575452;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1;
    padding: clamp(50px, 5vw, 70px) 0 clamp(20px, 6vw, 90px);
}


.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
}
.wrapper-footer a:hover {
    color: #4264ad;
}


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

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

    margin: 0 auto;

    z-index: 1;

    max-width: 1700px;
}


.footer-1, .footer-2, .footer-3, .footer-4 {
    width: 100%;
    text-align: center;
}

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

    display: inline-block;
}

.footer-inner h3 {
    text-align: left;
    color: #4264ad;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 0.7em;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
}

.footer-inner h3.ioburo {
    color: #e73937;
}

.footer-inner p {
    margin: 0;
}
.footer-inner address {
    font-style: normal;
    font-weight: 400;
}

.wrapper-footer .footer-lien-plan {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}


.footer-inner .footer-email {
    font-weight: 700;
}

.footer-inner .jours {
    text-transform: uppercase;
}
.footer-inner .horaires {
    color: #8e8e8e;
}
.footer-inner strong {
    margin-top: 15px;
    display: inline-block;
    text-transform: uppercase;
}
.footer-inner a {
    font-weight: 700;
}


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

.footer-4 {
    align-self: center;
    padding: 0 20px;
}
.footer-4 .footer-inner {
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    border: 3px solid #e3eff9;
    height: 100%;
}

.footer-4 h3 {
    margin-bottom: 0.3em;
}
.footer-4 img {
    margin-top: 15px;
}

.footer-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 20px;
}

.footer-facebook .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
}

.facebook-bureau-ouest {
    background: #4264ad;
}
.facebook-io-buro {
    background: #e73937;
}

.footer-facebook img {
    width: auto;
    height: 1em;
    vertical-align: top;
}

.footer-tel {
    display: inline-block;
    margin-top: 10px;
}


.wrapper-footer .mentions{
    color: #b4b4b4;    
    font-size: 18px;
}

div.mentions {
    position: relative;
    margin: auto;
    text-align: center;
    padding:  60px 20px 100px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    background: #4264ad url('i/motif-footer.jpg') bottom center no-repeat;
    background-size: 1920px auto;
}

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

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




@media (max-width: 1320px) {
    .wrapper-footer-inner {
        flex-wrap: wrap;
    }
    .footer-1, .footer-2,.footer-3, .footer-4 {
        width: 50%;
        text-align: left;
    }

    div.mentions {
        background-size: 1300px auto;
        padding:  40px 20px 70px 20px;
    }
}

@media (max-width: 700px) {
    .footer-inner h3 {
        font-size: 26px;
    }
    .wrapper-footer-inner .footer-inner {
        font-size: 18px;
    }
    .footer-reseaux {
        font-size: 20px;
    }

    div.mentions {
        background-size: 800px auto;
        padding:  30px 20px 50px 20px;
    }
}

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

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

    .footer-inner h3 {
        text-align: center;
        font-size: 28px;
    }

    .footer-reseaux {
        justify-content: center;
    }

    .wrapper-footer-inner {
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .footer-reseaux {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .footer-inner h3 {font-size: 24px;}
    .wrapper-footer-inner .footer-inner {
        font-size: 16px;
    }
}


/* CONTENU */

input.form_submit,
a.bouton {
    display: inline-block;
    color: #fff;
    background: #4264ad;
    border: none;
    border-radius: 1em;
    border-bottom-right-radius: 0;

    text-decoration: none;
    padding: 0.75em 1.5em;
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: background-color 0.2s ease;
}

a.bouton.bouton-blanc {
    color: #fff;
    border-color: #fff;
}

a.bouton:hover,
input.form_submit:hover {
    background-color: #e73937;
}
a.bouton.bouton-blanc:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.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 {
    z-index: 2;
    position: relative;
}

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

.wrapper-boxed {
    position: relative;
}


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

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

@media (max-width:900px) {
    div.padding {
        padding:45px 20px 35px 20px;
    }
}
@media (max-width:660px) {
    div.padding { 
        padding:35px 15px 10px 25px;
    }
}




h1,h2.h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.05;
    color: #4a4a4a;
    text-transform: uppercase;
    margin: 0;
}

span.dl {
    display: block;
    text-transform: none;
    color: #9c9d9d;
    text-transform: uppercase;
    font-size: 0.7em;
    line-height: 1;
    font-weight: 600;
    margin-top: 0.2em;
}
span.dl .fin {
    font-weight: 400;
}

h2 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #4264ad;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 36px) * 26/36);
    margin-bottom: -1rem;
    text-transform: uppercase;
}

h3 { 
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #666666;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 36px)* 24 / 36);
    margin-bottom: -1rem;
    text-transform: none;
}


span.bureau-ouest {
    font-weight: 900;
    color: #4264ad;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
span.io-buro {
    font-weight: 900;
    color: #e73937;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}




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


a.lien:link,
a.lien:visited {
    color: #e73937;
    font-weight: 800;
    text-decoration: none;
}

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


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#e73937; font-weight:800; text-decoration:none; }
a.lienpetit:hover{color:#4264ad;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: 14px;
    overflow: hidden;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    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: #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:#111111; background-color:#f4f7f8; border:solid #333 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#111111; background-color:#f4f7f8; border:solid #ff0000 1px; font-size:15px;}
input.frmsubmit {  background-color:#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 #111111 solid; }

.pagination_inactif { color:#c6bdbd; font-weight:normal; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#000; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {   color:#000; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#d42010;pointer-events: none; }
a.lienpaginations{color: #fff!important;}
a.lienpaginations[href="#"] {pointer-events: none; color: #fff;}
table.pagination {background-color:#CCC;border:1px solid #ccc;background-image:url(i/pagination.gif);background-repeat:repeat-x;background-position:top;}

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

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

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

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



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

.form_header {
    background: #282828;
    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: #282828;
    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:#333333;
    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: #4264ad 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;
    background-color: #4264ad;
}



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: 0px 3px 8px rgba(9, 9, 13, 0.3);
}

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

@media (max-width: 1000px) {
    .wrapper-flex-columns {
        flex-direction: column-reverse;
    }
    .wrapper-flex-columns .wrapper-col {
        width: 100%;
    }   
}



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



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

@media (max-width:500px) {
    .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: #000 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Noto Sans", sans-serif;
    font-variation-settings: "wdth" 75;
}

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

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

.show-previous .lien {
    padding-left: 2px;
    transition: padding 0.2s ease;
    
}
.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:#282828 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Noto Sans", sans-serif;
    font-variation-settings: "wdth" 75;
    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 */
.wrapper-pix-bandeau-swiper {
    position: relative;
    padding: 0 4vw;
}
.wrapper-pix-bandeau-swiper::before,
.wrapper-pix-bandeau-swiper::after {
    content: '';
    position: absolute;
    height: 50%;
    aspect-ratio: 4 / 3;
}
.wrapper-pix-bandeau-swiper::before {
    background: #4264ad;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    z-index: -1;
}
.wrapper-pix-bandeau-swiper::after {
    background: #c4dbee;
    top: 0;
    right: 0;
}


.pix-bandeau-swiper {
    aspect-ratio: 1760 / 750;
    position: relative;
    user-select: none;
    max-width: 1760px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1760 / 750;
    background-position: center center;
    background-size: cover;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 7%;
    left: 0;
    right: 0;
    text-align: left;
    pointer-events: none;
    font-size: clamp(16px, 2vw, 30px);
    color: #9c9d9d;
    font-family: "Montserrat", sans-serif;
    width: 16em;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
    transform: translateX(-1em);
    opacity: 0;
}

.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
    opacity: 1;
}


.pix-bandeau-swiper .swiper-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 0.7em;
    background: linear-gradient(to top, #676868, #959696);
    transform: translateY(-100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.pix-bandeau-swiper .swiper-slogan-inner {
    background: #fff;
    clip-path: polygon(calc(100% - 2em) 0, 100% 2em, 100% 100%, 0 100%, 0 0);
    padding: 1em 2em;
}
.pix-bandeau-swiper .swiper-slogan-inner h3 {
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}
.pix-bandeau-swiper .swiper-slogan-inner > span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 0.75em;
    margin-top: 0.4em;
}



.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: #4264ad url('i/arrow-right.svg') no-repeat center center / 10px 18px;
    border-radius: 8px;
    border-bottom-right-radius: 0;
    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;
}


@media (max-width: 1000px) {
    .wrapper-pix-bandeau-swiper::before {
        transform: translateY(20%);
    }
}

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



/* Bande actualites */
.wrapper-bande-actualites {
    width: 100%;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding: clamp(35px, 5vw, 70px) 0 clamp(35px, 5vw, 70px);

    background-image: linear-gradient(to right, #e0e0e0, #b7b8b7);
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-position: bottom left;
}


.wrapper-bande-actualites h2 {
    font-weight: 700;
    color: #c4dbee;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto;
    font-size: 3vw;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.wrapper-bande-actualites h2 br {
    display: none;
}

.wrapper-bande-actualites h2::before,
.wrapper-bande-actualites h2::after {
    content: '';
    display: inline-block;
    height: 1ch;
    background: #c4dbee;
    width: 100%;
}
.wrapper-bande-actualites h2::before{
    margin-right: 0.5em;
}
.wrapper-bande-actualites h2::after{
    margin-left: 0.5em;
}

.wrapper-bande-actualites h2 > span {
    flex-shrink: 0;
}


@media (max-width: 1080px) {
    .wrapper-bande-actualites h2 {
        font-size: 5.5vw;
    }
    .wrapper-bande-actualites h2 br {
        display: initial;
    }
}

@media (max-width: 500px) {
    .wrapper-bande-actualites h2 {
        margin-bottom: 2em;
    }
}


.swiper-actualites {
    position: relative;
}
.swiper-actualites .swiper-wrapper {
    height: auto;
}
.swiper-actualites .swiper-slide {
    height: auto;
}

/* CARD ACTUS */
.wrapper-actualite {
    padding: 0 15px;
}


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


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

.wrapper-liste-actualites .wrapper-actu {
    width: calc(1 / 3* 100% - 40px);
}
.wrapper-liste-actualites .wrapper-actu .actu {
    width: 100%;
    max-width: none;
}

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





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

.wrapper-bande-icones::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(200px, 40vw, 500px);
    background: #e0e0e0;
    aspect-ratio: 5 / 3;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    z-index: -1;
    transform: translateY(-50%);
}

.swiper-icones {
    position: relative;
    
    padding: 0;
    
    width: 100%;
    margin: 0 auto;
    max-width: 1700px;
    
    background: #fff;
    overflow: hidden;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}

/* pour cacher la barre de séparation entre les icones */
.swiper-icones::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 10;
    pointer-events: none;
}

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

.wrapper-icone {
    text-decoration: none;
    color: #5a5a5a;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 20px;
    padding: 4em 0.5em;
    height: 100%;
    position: relative;
}

.wrapper-icone::after {
    content: '';
    position: absolute;
    top: 5%;
    right: 0;
    width: 2px;
    height: 90%;
    background: #e0e0e0;
}

.wrapper-icone .arrow-top,
.wrapper-icone .arrow-bottom {
    display: block;
    position: absolute;
    left: 50%;
    width: 4em;
    height: 2em;
    background: #c4dbee;
    opacity: 0;
    transform: translateX(-50%) translateY(var(--translate-y, 0));
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wrapper-icone .arrow-top {
    top: 0;
    --translate-y: -50%;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.wrapper-icone .arrow-bottom {
    bottom: 0;
    --translate-y: 50%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.wrapper-icone:hover .arrow-top,
.wrapper-icone:hover .arrow-bottom {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wrapper-icone-image {
}


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

.wrapper-icone-texte {
    max-width: 360px;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}
.wrapper-icone-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.2em;
    text-transform: uppercase;
    margin-top: 0.75em;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #4264ad;
}
.wrapper-icone-texte p {
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    color: #9c9d9d;
    margin: 5px auto 0;
}

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


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

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

@media (max-width: 400px) {
    .wrapper-bande-icones {
        padding: 0 20px;
    }
    .wrapper-icone-image img {
        width: 3.5em;
        height: 3.5em;
    }
    .wrapper-icone {
        font-size: 14px;
    }
}




/* CAROUSEL PARTENAIRES */
.wrapper-carousel-partenaires {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.wrapper-carousel-partenaires h2 {
    background: #4264ad;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    --padding: clamp(25px, 3vw, 60px);
    padding: 0 var(--padding) 0 calc(var(--padding) / 2);
    font-size: clamp(18px, 2.5vw, 30px);
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    line-height: 1.3;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--padding)) 100%, 0% 100%);
    position: relative;
    z-index: 2;
}

/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-marques {
    padding: 30px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

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


.marques-slide img {
    margin: 0 40px;
}

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

@media (max-width: 550px) {
    .marques-slide img {
        margin: 0 30px;
    }
}




/* CARD POUR LES ACTUS */
.pix-card {
    position: relative;
    text-decoration: none;
    color: currentColor;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 20px;
    
    --rotation: 3deg;
    --padding: 10px;
    padding: var(--padding);
    height: fit-content;
}


.pix-card::before {
    content: '';
    position: absolute;
    top: var(--padding);
    left: var(--padding);
    width: calc(100% - 2 * var(--padding));
    height: calc(100% - 2 * var(--padding));
    background: #fff;
    box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.pix-card-inner {
    position: relative;
    z-index: 10;
    
    background-color: #fff;
    box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.2);

    transform: rotate(var(--rotation));

    transition: transform 0.2s ease;
}

.pix-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(calc(-1 * var(--rotation)));
    width: 2em;
    height: 2em;
    background: url('i/punaise.svg') no-repeat center center;
    background-size: contain;
}

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

.pix-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;

    padding: 1em;
    padding-top: 0;
    padding-right: 3em;
}

.pix-card-tag {
    padding: 0.4em 0.8em;
    color: #fff;
    border-radius: 0 0 0.4em 0.4em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9em;
    width: fit-content;
    margin-bottom: 1em;
}
.actualite-bureauouest .pix-card-tag {
    background: #4264ad;
}
.actualite-ioburo .pix-card-tag {
    background: #e73937;
}

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

.pix-card-description {
    font-size: 1em;
    margin: 0;
    margin-top: 0.4em;
}

.pix-card .voir-plus {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    background: #4264ad url('i/plus.svg') no-repeat center center / 0.8em 0.8em;
    border-radius: 1em;
    border-bottom-right-radius: 0;
}


.pix-card:hover .pix-card-inner {
    transform: rotate(0) scale(1.02);
} 


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

/* PARTENAIRES */
.pix-liste-partenaires {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pix-liste-partenaires .pix-card-image {
    padding: 15px;
    aspect-ratio: 3 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pix-liste-partenaires .pix-card-image img {
    width: 200px;
    height: auto;
    aspect-ratio: initial;
}


@media (max-width: 750px) {
    .pix-liste-partenaires {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 450px) {
    .pix-liste-partenaires {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* TABLEAUX */
.tableau-container {
    overflow-x: auto;
    cursor: grab;
    position: relative;
}
.tableau-container::before {
    content: '';
    position: absolute;
    left: calc(var(--width) + var(--scroll-left) - 50px);
    top: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.50));
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.tableau-container.not-scroll-end::before {
    opacity: 1;
}

.tableau {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: "Noto Sans", sans-serif;
    
}


.tableau thead {
    background-color: #282828;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-collapse: collapse;
}
.tableau thead tr{
    background-color: #282828;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    /* display: block;
    position: sticky;
    left: 0;
    text-align: center;
    width: var(--width); */
}

.tableau tbody {
    text-align: left;
    min-width: 1000px;
}

.tableau tbody tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
}

.tableau th,
.tableau td {
    padding: .625em;
    text-align: left;
   
}

.tableau td { border: 1px solid #ddd;}

.tableau th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* WEBKIT */
.tableau-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.tableau-container::-webkit-scrollbar-track {
    background: #f1f1f1;border-radius: 5px;
}
.tableau-container::-webkit-scrollbar-thumb {
    background: #282828;border-radius: 5px;
}
/* FIREFOX */
.tableau-container {
    scrollbar-width: large;
    scrollbar-color: #282828 #f1f1f1;
}