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

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

html {
    overflow-y: scroll !important;
}

body {
    font-family: "Roboto", sans-serif;
    font-size:20px; 
    color:#000000;
    font-weight: 400;
    margin: 0;
    background-color:#ffffff;
    line-height: 1.4;
}

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




#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



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

    position: relative;
    z-index: 1000000000;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.3);
    
    margin: 0 auto;
    background: linear-gradient(to top, #222222, #313131, #222222);

    font-size: 20px;
}


/* HEADER LOGO */
.wrapper-header div.logo {
    flex-shrink: 0;
    --scale: 1;
    z-index: 100000;

    position: absolute;
    top: 1em;
    left: 2em;
    align-content: center;

    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
}

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

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
}

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


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

    width: 100%;
    margin: 0 auto;

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

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-variation-settings: "wdth" 75;
    font-size: 1.2em;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.2em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}


/* ON HOVER */
.wrapper-menu .menu-item:hover > a,
.wrapper-menu .menu-item:hover > span {
    background: rgba(255, 255, 255, 0.05)
}

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


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

.wrapper-menu .menu span div.menu-arrow img {
    width: 1em;
}

.wrapper-menu .menu-item.selected .menu-arrow {
    filter: brightness(0) saturate(100%) invert(45%) sepia(9%) saturate(12%) hue-rotate(8deg) brightness(97%) contrast(87%);
} 

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}


.wrapper-menu .sousmenu::before {
    content: '';
    position: absolute;
    top: 0px;
    height:1px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 1);
    left: 0px;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}
.wrapper-menu .sousmenu a{
    color: #fff;
    text-decoration: none;
    padding: 1em 1em;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 1em;
    font-weight: 400;
}

.wrapper-menu .sousmenu a:hover{
    background: rgba(255, 255, 255, 0.05);
}

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

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


/* HEADER TEL ET ESPACE */
.header-bouton {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    font-size: 1em;
}
.header-bouton span {
    text-transform: uppercase;
    background: #727272;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-variation-settings: "wdth" 75;
    font-weight: 400;
    color: #D6D6D6;
    padding: 0.4em 0.6em 0.4em 1.2em;
}
.header-bouton img {
    width: 2em;
    height: auto;
    margin-right: -1em;
    position: relative;
    z-index: 2;
}


/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    bottom: 16px;
    right: 10px;
    width: 40px;
    height: 40px;
    padding: 15px;
    background-color: #fff;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    transition: background 0.2s ease;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #222222;

    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: 1350px) {
    .wrapper-header {
        font-size: 18px;
    }
}

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

@media (max-width: 1020px) {
    .wrapper-header div.logo {
        left: 1em;
    }
    .wrapper-menu {
        padding-right: 1em;
    }

    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding-inline: 0.8em;
    }
}

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

@media (max-width: 860px) {
    .wrapper-header .header-top,
    .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 .header-bottom {
        height: 58px;
    }

    .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: #222222;
        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: block;
        background: transparent;
        padding-left: 15px;
        transform: none;
    }
    .wrapper-header .sousmenu::before {
        content: none;
    }
    .wrapper-header .menu-item:hover.closed .sousmenu,
    .wrapper-header .menu-item.closed .sousmenu {
        display: none;
    }
    .wrapper-header .menu-item.closed div.menu-arrow {
        transform: rotate(-90deg);
    }

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

    .wrapper-menu .menu span div.menu-arrow {
        position: static;
        transform: none;
        margin-left: 5px;
    }

}

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

@media (max-width: 530px) {
    .wrapper-header div.logo img {
        width: 7.5em;
    }
    .wrapper-header .header-top {
        gap: 0.5em;
    }

    .wrapper-header .header-bottom {
        height: 45px;
    }
}

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

@media (max-width: 340px) {
    .wrapper-header div.logo img {
        width: 6em;
    }
    .wrapper-header .header-bottom {
        height: 35px;
    }
}

 
.wrapper-full-footer {
    position: relative;
    z-index: 1;

    background: url('i/footer-logo-bg.svg') bottom center no-repeat, linear-gradient(to bottom, #222222, #020202);
    background-size: auto 85%, 100% 100%;
}

.wrapper-full-footer .footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-35%);
    width: clamp(230px, 50vw, 500px);
    z-index: 2;
}
.wrapper-full-footer .footer-logo img {
    vertical-align: top;
}

.wrapper-footer {
    color: #fff;
    position: relative;
    font-weight: 400;
}


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


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

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

    padding: clamp(70px, 15vw, 170px) 0 calc(clamp(70px, 15vw, 170px) * 140/170);

    margin: 0 auto;

    z-index: 1;

    max-width: 1920px;
}


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

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

.footer-inner h3 {
    font-family: "Alatsi", sans-serif;
    text-align: center;
    color: #CCCCCC;
    text-transform: uppercase;
    font-size: 1.4em;
    margin-bottom: 0.75em;
    font-weight: 400;
}

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

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


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

.footer-reseaux {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    justify-content: center;
    margin-top: 15px;
    align-items: flex-end;
}

.footer-reseaux a img {
    height: 1.6em;
    width: auto;
}

.footer-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-3 ul li a {
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 2px 0;
}
.footer-3 ul ul li a {
    font-size: 0.75em;
    color: #cccccc;
    font-weight: 400;
}


.wrapper-footer .footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}



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

div.mentions {
    position: relative;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 0 35px 40px 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #B6B6B6;
}


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

.footer-autorisations {
    font-size: 16px;
    text-align: center;
}

.footer-autorisations span {
    font-weight: 300;
    font-style: italic;
    color: #B6B6B6;
}

@media (max-width: 1120px) {
    .wrapper-footer-inner {
        flex-wrap: wrap;
    }

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

    .wrapper-full-footer {
        background-size: 90% auto, 100% 100%;
    }
}
@media (max-width: 750px) {
    .footer-1, .footer-2, .footer-3 {
        width: 100%;
    }
    
    .wrapper-footer-inner .footer-inner {
        font-size: 18px;
    }
}


/* CONTENU */

input.form_submit,
a.bouton {
    display: inline-block;
    color: #fff;
    background: #727272;
    background-size: 100% 200%;
    background-position: top center;

    border: none;

    text-decoration: none;
    padding: 1em 1.2em;
    font-weight: 400;
    font-size: 1em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;

    transition: background 0.15s ease;
}

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

a.bouton:hover,
input.form_submit:hover {
    background-color: #222222;
}


a.bouton.bouton-blanc:hover {
    color: #000000;
    background: #D6D6D6;
}

a.bouton-petit {
    font-variation-settings: "wdth" 75;
    padding: 0.8em 1em;
    font-size: 0.8em;
}


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

@media (max-width: 720px) {
    a.bouton {
        font-size: 18px;
        padding: 12px 22px;
    }
}




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



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

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

.wrapper-boxed {
}

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

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

.italic {
    font-style: italic;
    font-weight: 300;
}


@media (max-width:900px) {
    div.padding {
        padding:50px 20px 50px 20px;
    }
}
@media (max-width:620px) {
    div.padding { 
        padding:40px 15px 50px 15px;
    }
}




h1,h2.h1 {

    font-size: clamp(26px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.05;
    color: #222222;
    font-family: "Alatsi", sans-serif;
    text-transform: uppercase;
    margin: 0;
    margin-bottom:-0.4rem;
    line-height: 1;

    position: relative;
}

h1::before {
    content: '';
    position: absolute;
    top: 0.15em;
    left: -0.4em;
    height: 0.8em;
    aspect-ratio: 15 / 48;
    background: url('i/h1.svg') center center no-repeat;
    background-size: contain;

}

h1.titre-actualite {
    font-size: clamp(22px, 4vw, 40px);
    margin-bottom: 0.2em;
}

span.dl {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    display: block;
    text-transform: uppercase;
    color: #54565A;
    font-size: max(0.5em, 18px);
    line-height: 1;
    margin-top: 0.1em;
}
span.dl .fin {
    font-weight: 400;
}



h2 {
    font-family: "Alatsi", sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    color: #727272;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(26px, 4vw, 60px) * 40/60);

    margin-bottom: -1rem;
}

h2 span.dl {
    font-size: max(0.7em, 18px);
}

h3 {
    font-family: "Alatsi", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(22px, 4vw, 26px);
    color: #222222;
    margin: 0;
    line-height: 1;
    margin-bottom: -1rem;
}






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


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

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


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

span.petit {
    font-size: 16px;
}



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

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



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



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





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



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

ul.images li {
    float:left;
}

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

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

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


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




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



input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 90%;
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 5px;
  color: #222222;
  border: 1px solid #222222;
  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:#ba0000; font-weight:bold; }

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

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

.cadresubmit { border:1px #222222 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:#ba0000;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;
}
div.detail-pagination {background-color:transparent;padding:6px 0;overflow:hidden;}

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

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



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



div.map {
    padding: 20px 0;
}

.form_header {
    background: #222222;
    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: #222222;
    margin-top: 20px;
    color: #fff;
}

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

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

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

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

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

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

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

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

#menu {
    display:none;
}

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

a.back-to-top {
    display: none;
    width: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #222222 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: #020202;
}



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



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

a.fancybox {
    text-decoration: none;
}
.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: 25%; }

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

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

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

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


.pswp {z-index: 150000000;}


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

.detail-pagination .back-list {
    width: 100%;
    margin-bottom: 20px;
}

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


.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:#222222 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Roboto", 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 */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 850;
    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 / 850;
    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: 30px;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);

    display: inline-block;
    max-width: min(700px, 80%);
}
.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
    opacity: 1;
    transform: translateY(0px);
}
.pix-bandeau-swiper .swiper-slogan h3 {
    
    font-weight: 900;
    font-size: clamp(20px, 4vw, 50px);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #fff;
  
    
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.4em 0.5em;
}

.pix-bandeau-swiper .swiper-slogan h3 .l1 {
    display: inline-block;
    font-family: "Alatsi", sans-serif;
    font-weight: 400;
}

.pix-bandeau-swiper .swiper-slogan span.l2 {
    display: block;
    max-width: calc(100% - 20px);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #878787;
    font-size: 0.55em;
    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: #222222 url('i/arrow-right.svg') no-repeat center center / 25px 25px;
    border-radius: 0px;
    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: 700px) {
    .pix-bandeau-swiper {
        height: 267px;
        aspect-ratio: initial;
    }
}






/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    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 LISTE DES ACTUS */
.wrapper-liste-actualites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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


/* BANDE CHIFFRES */
.wrapper-bande-chiffres {
    background: linear-gradient(to right, #727272, #333333);
    color: #fff;

    display: flex;
    flex-direction: row;

    --image-width: clamp(400px, 40vw, 700px);
}

.bande-chiffres-image {
    flex-shrink: 0;
    margin-top: -10px;
    margin-bottom: -10px;
    margin-right: -1px;

    filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.25));

    width: var(--image-width);
}
.bande-chiffres-image img {
    vertical-align: top;

    mask-image: url('i/mask-bande-chiffres.svg');
    mask-size: 100% 100%; 

    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bande-chiffres-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;

    margin: 0 auto;
    padding: 70px 40px 70px 40px;

    width: calc(100% - var(--image-width));

    overflow: hidden;
}

.bande-chiffres-inner .swiper-chiffres {
    width: 100%;
}

.swiper-chiffres .swiper-wrapper {
    justify-content: space-around;
}

.bande-chiffres-inner > br {
    display: none;
}

.bande-chiffres-inner .wrapper-chiffre {
    margin: 0 auto;
    padding: 0.65em;
    font-size: 20px;
    height: 100%;
    align-content: center;
}

.bande-chiffres-inner .wrapper-chiffre .chiffre-inner {
    max-width: 280px;
    margin: auto;
    text-align: center;
}

.bande-chiffres-inner .wrapper-chiffre .chiffre {
    font-style: normal;
    font-weight: 900;
    font-size: 2.5em;
    line-height: 1;

    font-family: "Roboto", sans-serif;

    display: inline-flex;
    width: 3.4em;
    height: 3.4em;
    justify-content: center;
    align-items: center;
    border: 10px solid #D9D9D9;
    border-radius: 50%;
    background: #3c3c3c;

    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}
.bande-chiffres-inner .wrapper-chiffre .chiffre span {
    font-variant-numeric: tabular-nums;
}
.bande-chiffres-inner .wrapper-chiffre h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.3em;
    color: #fff;
    margin-top: 0.5em;
    position: relative;
    line-height: 1.2;
    font-family: "Alatsi", sans-serif;
}

@media (max-width: 1340px) {
    .bande-chiffres-inner {
        padding: 50px 40px 50px 40px;
    }
    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 18px;
    }
}

@media (max-width: 1050px) {
    .bande-chiffres-inner {
        padding: 30px 30px 30px 30px;
    }
    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 16px;
    }
}

@media (max-width: 780px) {
    .wrapper-bande-chiffres {
        flex-direction: column-reverse;
    }
    .bande-chiffres-inner {
        width: 100%;
    }
    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 14px;
    }
    .bande-chiffres-inner .wrapper-chiffre .chiffre {
        border-width: 7px;
        width: 3em;
        height: 3em;
    }
    .bande-chiffres-image {
        margin-left: auto;
        height: clamp(150px, 40vw, 300px);
        width: 90%;
    }

}



/* BANDE ACTIVITES */
.wrapper-bande-activites {
    --space-between-activites: clamp(26px, 5vw, 80px);
}

.wrapper-bande-activites h2 {
    text-align: center;
    margin: 0;
    font-size: clamp(30px, 7vw, 80px);
    margin-bottom: 0.2em;

}

.wrapper-bande-activites-inner {
    display: grid;
    grid-template-columns: 1fr var(--space-between-activites) 1fr;
    position: relative;
}

.wrapper-bande-activites-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(200px, 40vw,600px);
    aspect-ratio: 1;
    transform: translateY(-100%);
    z-index: 0;
    pointer-events: none;
    background: url('i/lion-bg.svg') bottom left no-repeat;
    background-size: 100% 100%;
}


.bande-activite-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: clamp(26px, 5vw, 80px) var(--space-between-activites) calc(clamp(26px, 5vw, 80px) * 100/80);

    text-align: center;
}

.bande-activite.flp-securite-incendie {
    background: linear-gradient(to bottom, #222222, #020202);

    grid-column: 1 / 3;
    grid-row: 1;
}
.bande-activite.flp-formation {
    background: linear-gradient(to bottom, #727272, #525252);

    clip-path: polygon(var(--space-between-activites) 0%, 100% 0, 100% 100%, 0% 100%);

    grid-column: 2 / 4;
    grid-row: 1;
}

.bande-activite-logo {
    margin-bottom: 30px;
}

.bande-activite h3 {
    color: #fff;
    font-family: "Alatsi", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(26px, 4vw, 60px);
    margin: 0;
}

.bande-activite p {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: max(18px, calc(clamp(26px, 4vw, 60px) * 28/60));
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 1.5em;
}

.bande-activite a.bouton {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}


@media (max-width: 600px) {

    .wrapper-bande-activites-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto var(--space-between-activites) auto;
    }

    .bande-activite.flp-securite-incendie {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .bande-activite.flp-formation {
        grid-column: 1;
        grid-row: 2 / 4;
        clip-path: polygon(0 var(--space-between-activites), 100% 0, 100% 100%, 0% 100%);
    }

    .bande-activite.flp-securite-incendie .bande-activite-inner {
        padding-bottom: calc(var(--space-between-activites) + 20px);
    }
    .bande-activite.flp-formation .bande-activite-inner {
        padding-top: calc(var(--space-between-activites) + 20px);
    }

    .bande-activite-logo {
        width: 100px;
    }

    .bande-activite h3 {
        font-size: 20px;
    }
    .bande-activite p {
        font-size: 16px;
    }
}




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

    padding: calc(clamp(30px, 4vw, 70px) * 50/70) 0 clamp(30px, 4vw, 70px); 
    overflow: hidden;

    position: relative;
}


.wrapper-bande-actus h2 {
    text-align: center;
    margin: 0;

    font-size: clamp(30px, 7vw, 80px);
    margin-bottom: 0.2em;
}


.wrapper-bande-actus h2 span.dl {
    color: #fff;
    font-size: 1em;
}

.wrapper-bande-actus .swiper-actus {
    padding: 0 40px;
}

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

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

@media (max-width: 650px) {
    .wrapper-bande-actus {
        background: #fff url('i/bg-actus.jpg') no-repeat bottom 100% left 0;
        background-size: 100% auto;
    }
    .wrapper-bande-actus::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 540px) {
    .wrapper-bande-actus .swiper-actus {
        padding-inline: 20px;
    }
}




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

    background-color: #fff;
    overflow: hidden;
    
    max-width: 500px;
    margin: 0 auto;

    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);

    transition: box-shadow 0.2s ease;

    overflow: hidden;
}

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

.pix-card .pix-card-content {
    margin-top: -1em;
    height: 100%;
    filter: drop-shadow(0 -5px 0 #fff);
}


.pix-card .pix-card-content-inner {
    padding: 2.5em 1em 1em;
    position: relative;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #242424 50%, #010101 50%);
    
    clip-path: polygon(50% 0%, 100% 1em, 100% 100%, 0 100%, 0% 1em);
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.pix-card .pix-card-title {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.pix-card .pix-card-subtitle {
    font-family: "Roboto", sans-serif;
    color: #000;
    font-weight: 300;
    line-height: 1;
    margin: 0;
        margin-bottom: 0px;
    font-size: 0.8em;
    position: relative;
    z-index: 1;
    text-transform: none;
    margin-bottom: 0.5em;
    background: #c9c9c9;
    padding: 4px;
}

.pix-card .pix-card-plus {
    background-color: #727272;
    display: inline-block;
    width: 2.1em;
    height: 2.1em;
    margin-top: 1em;
}
.pix-card .pix-card-plus img {
    vertical-align: top;
    width: 100%;
    height: 100%;

    transition: transform 0.3s ease;
}

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

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

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



/* BANDE PARTENAIRES */
.wrapper-bande-partenaires {
    padding: clamp(30px, 7vw, 100px) 0 calc(clamp(30px, 7vw, 100px) * 150/100);
    position: relative;
    z-index: 2;

    position: relative;
    z-index: 2;
}


.wrapper-bande-partenaires h2 {
    margin: 0;
    text-align: center;
    
    font-size: clamp(30px, 7vw, 80px);
    margin-bottom: 0.4em;
}

.wrapper-bande-partenaires .swiper-partenaires {
    overflow: hidden;
}

.wrapper-bande-partenaires .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: max-content;
    padding-inline: 30px;
}

.wrapper-bande-partenaires img {
    height: var(--logo-height);
    width: auto;
}

@media (max-width: 1120px) {
    .wrapper-bande-partenaires img {
        height: calc(var(--logo-height) * 0.7);
        width: auto;
    }
    .wrapper-bande-partenaires .swiper-slide {
        padding-inline: 20px;
    }
}

@media (max-width: 800px) {
    .wrapper-bande-partenaires img {
        height: calc(var(--logo-height) * 0.6);
        width: auto;
    }
    .wrapper-bande-partenaires .swiper-slide {
        padding-inline: 15px;
    }
}

@media (max-width: 650px) {
    .wrapper-bande-partenaires img {
        height: calc(var(--logo-height) * 0.5);
        width: auto;
    }
    .wrapper-bande-partenaires .swiper-slide {
        padding-inline: 10px;
    }
}



/* FAQ */
.faq-container {
    /* max-width: 800px; */
}

.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    
    border: 2px solid #dfdfdf;
    border-bottom-color: transparent;
}

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

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

.faq.open .faq-question {
}

.faq-bouton {
    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;
    width: 24px;
}

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

.faq-bouton img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(6%) sepia(8%) saturate(39%) hue-rotate(314deg) brightness(101%) contrast(84%);
}





/* Bande equipe */
.wrapper-bande-equipe {
    width: 100%;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;

    padding: 20px 5px;
}

.swiper-equipe {
    position: relative;
}
.swiper-equipe .swiper-wrapper {
    height: auto;
}
.swiper-equipe .swiper-slide {
    height: auto;
}
.swiper-equipe .swiper-pagination {
    position: static;
    margin-top: 20px;
    --swiper-theme-color: #222222;
    --swiper-pagination-bullet-size: 10px;
}

.wrapper-equipe {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.wrapper-equipe .equipe-content {
    padding: 20px;    
}

.wrapper-equipe .equipe-content h3 {
    font-size: 24px;
    margin: 0;
}
.wrapper-equipe .equipe-content h3 span {
    font-variation-settings: 'slnt' -12;
}

.wrapper-equipe .equipe-content p {
    margin: 0;
    margin-top: 16px;
}

@media (max-width: 500px) {
    .wrapper-equipe .equipe-content h3 {
        font-size: 20px;
    }
    .wrapper-equipe .equipe-content p {
        font-size: 16px;
    }
}





/* TEMOIGNAGES */
.wrapper-bande-temoignages {
    position: relative;
    text-align: center;
    padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 40px);
    color:#000;
}

.wrapper-bande-temoignages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('i/logo.svg') no-repeat center center;
    background-size: auto 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

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

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

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

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

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



/* TEMOIGNAGES */
.temoignagefull-content {
    margin-bottom: 30px;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    text-align: left;
    position: relative;
}

.temoignagefull-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: url('i/lion-bg.svg') no-repeat bottom right;
    background-size: 100% auto;
    pointer-events: none;
    transform: scaleX(-1);
}

.temoignagefull-auteur {
    font-weight: 700;
    margin-top: 10px;
    font-style: normal;
    text-align: left;
}





.menu-actualites ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;
}

.menu-actualites ul li {
    margin: 0px;
}

.menu-actualites ul li a {
    display: inline-block;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    border-radius: 0px;
    text-decoration: none;
    padding: 0.5em 0.75em;
    font-weight: 700;
    font-size: 0.8em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: background-color 0.2s ease;
}
.menu-actualites ul li a.current {
    color: #fff;
    background: #000;
}





/* PARTENAIRES */
.pix-liste-partenaires {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@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;
    }
}
/* CARD POUR LES PARTENAIRES */
.pix-card-partenaire {
    position: relative;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    height: 100%;
    
    text-align: center;
    font-size: 20px;
    overflow: hidden;
    background-color: #fff;

    max-width: 500px;
    margin: 0 auto;

    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);

    transition: background 0.2s ease;
}

.pix-card-partenaire .pix-card-image {
    padding-top: 20px;
}
.pix-card-partenaire .pix-card-image img {
    vertical-align: top;
    width: 200px;
    height: 100px;
    object-fit: contain;
    aspect-ratio: initial;
}

.pix-card-partenaire .pix-card-content {
    padding: 1em 1em;
    position: relative;
    width: 100%;
    height: 100%;
}


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

.pix-card-partenaire .pix-card-description {
    font-size: 1em;
    line-height: 1.2;
    margin: 0;
    margin-top: 0.4em;
    font-weight: 400;
}
.pix-card-partenaire .pix-card-description:empty {
    display: none;
}

.pix-card-partenaire .voir-plus {
    text-align: center;
    color: #727272;
    font-weight: 500;
}

.pix-card-partenaire:hover {
    /* background: #f5f5f5; */
}

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

@media (max-width: 500px) {
    .pix-card-partenaire {
        font-size: 16px;
    }
    .pix-card-partenaire .pix-card-content {
        padding: 0.8em 0.6em;

        padding-right: 40px; /* 30 du bouton + 5px de chaque côté */
    }
}
