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

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


html {height: 100%;}

.wrapper-header{
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 20px;
    background: #fff url('i/header-bg.svg') repeat-x left center;
    background-size: cover;
    color: #000;

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

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

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

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

.header-top {
    position: absolute;
    top: 0;
    right: 0;
}

.header-top-inner {
    position: relative;
    z-index: 8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;

    padding-top: 0.75em;
    padding-right: 0.5em;

    gap: 0.5em;
}

.header-top-inner .header-top-tel,
.header-top-inner .header-top-email {
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1em;
}

.header-top-inner .header-top-tel img,
.header-top-inner .header-top-email img {
    height: 1.6em;
    width: auto;
}

.header-top-inner .header-top-email {
    margin-right: 1em;
}

.header-top-inner .header-top-bouton {
    background: #254B91;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    padding: 0.5em 0.75em;
    border-radius: 0.4em;
    transition: background 0.2s ease;
}

.header-top-inner .header-top-tel:hover,
.header-top-inner .header-top-email:hover {
    filter: brightness(0) saturate(100%) invert(16%) sepia(90%) saturate(7274%) hue-rotate(353deg) brightness(87%) contrast(105%);
}
.header-top-inner .header-top-bouton:hover {
    background: #E30310;
}

.header-bottom {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    margin-top: auto;
}


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

    width: 100%;
    height: 100%;

    max-width: 1780px;
    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{
    position: relative;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 1em 1.5em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;

    border-radius: 0.3em 0.3em 0 0;

    transition: color 0.2s ease;
}

.wrapper-menu .menu .menu-item > a::before,
.wrapper-menu .menu .menu-item > span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4em;
    background: #E30310;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.2s ease;
    pointer-events: none;
    user-select: none;
}


/* ON HOVER */
.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    transform: scaleY(1);
}


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


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

.wrapper-menu .menu .menu-arrow img {
    vertical-align: middle;
    margin-left: 0.1em;
    width: 0.8em;
    filter: brightness(0);
}

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

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

}


.wrapper-menu .sousmenu a{
    font-family: "Fira Sans Condensed", sans-serif;
    color: #000;
    text-decoration: none;
    padding: 1em 0.7em;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0;
}

.wrapper-menu .sousmenu a:hover{
    background: rgba(227, 3, 14, 0.2);
}

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

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


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


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

    transition: transform 0.2s ease;
}


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


@media (max-width: 1650px) {
    .wrapper-menu {
        padding-right: 4em;
    }
}
@media (max-width: 1530px) {
    .wrapper-menu {
        padding-right: 2em;
    }
}
@media (max-width: 1430px) {
    .wrapper-menu {
        padding-right: 1em;
    }
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 1em 1em 1em;
    }
}
@media (max-width: 1340px) {
    .wrapper-header {
        font-size: 18px;
    }
}
@media (max-width: 1160px) {
    .wrapper-header {
        font-size: 17px;
    }
    .wrapper-header div.logo {
        font-size: 14px;
    }
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 1em 0.75em 1em;
    }
}
@media (max-width: 1050px) {
    .wrapper-header {
        font-size: 16px;
    }
}
@media (max-width: 800px) {
 
    .wrapper-menu {
        padding-right: 10px;
    }
    
    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

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

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

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

    .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;
        font-size: 1em;
    }

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

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

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

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

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

    .wrapper-header .wrapper-menu .sousmenu a:hover {
   
    }

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


    .wrapper-menu .menu .menu-item > a::before, .wrapper-menu .menu .menu-item > span::before {
        width: 0.2em;
        height: 100%;
    }

}


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

@media (max-width: 480px) {
    .header-top-inner .header-top-espace-adhesion {
        display: none;
    }
}






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

.wrapper-footer {
    position: relative;
    font-weight: 400;

    background: linear-gradient(65deg, #254B91 50%, #0B2C68 70%);

    padding: clamp(40px, 6vw, 100px) 0 0;
}


.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
}
.wrapper-footer a:hover {
    color: #E30310;
}
.wrapper-footer a:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(90%) saturate(7274%) hue-rotate(353deg) brightness(87%) contrast(105%);
}


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

    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    font-size: 20px;

    margin: 0 auto;

    z-index: 1;

    padding-left: 40px;
}

.wrapper-footer-inner .footer-section {
    text-align: center;
    padding-top: 60px;
}

.wrapper-footer-inner .footer-inner {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    max-width: 580px;

    padding: 0 40px 0;
}


.wrapper-footer-inner .footer-inner h3 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 1em;
    font-size: 1.1em;
    position: relative;
    line-height: 1.2;
    text-transform: uppercase;
    font-style: normal;
}

.wrapper-footer-inner .footer-lien-plan,
.wrapper-footer-inner .footer-lien-tel,
.wrapper-footer-inner .footer-lien-email {
    font-weight: 700;
    display: inline-block;
}


.wrapper-footer-inner .footer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-footer-inner .footer-inner ul li a {
    font-weight: 700;
    text-transform: uppercase;
}
.wrapper-footer-inner .footer-inner ul ul li a {
    font-weight: 400;
    font-size: 0.9em;
}
.wrapper-footer-inner .footer-inner ul li a img {
    filter: brightness(0) invert(1);
}
.wrapper-footer-inner .footer-inner ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(90%) saturate(7274%) hue-rotate(353deg) brightness(87%) contrast(105%);
}

.footer-section.footer-info {
    background: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
    padding: 100px 20px 100px calc(10% + 20px);
}
.footer-section.footer-info .footer-inner {
    color: #000;
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    gap: 1em;
    max-width: 700px;
}

.footer-section.footer-info .footer-inner p {
    font-style: italic;
    margin: 0;
    margin-top: 0.5em;
}

.footer-section.footer-info .footer-inner .footer-bouton-adhesion {
    margin-top: 1em;
}

.footer-info .footer-logo-wrapper {
    flex-shrink: 0;
}

.footer-section .footer-reseaux {
    display: inline-flex;
    flex-direction: row;
    gap: 0.5em;
}
.footer-section .footer-reseaux img {
    height: 2.1em;
    width: auto;
}

.wrapper-footer .mentions{
    background-color: #193C7D;
    color: #ACBEDF;
}

div.mentions {
    position: relative;
    margin: auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #ACBEDF;
    margin-top: clamp(60px, 10vw, 140px);

    padding: 40px 20px 70px;
}


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



@media (max-width: 1470px) {
    .wrapper-footer-inner .footer-horaires .footer-inner,
    .wrapper-footer-inner .footer-plan .footer-inner {
        padding-inline: 0;
    }

    .footer-section.footer-info {
        padding: 70px 10px 70px calc(5% + 10px);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    }
}


@media (max-width: 1200px) {
    .wrapper-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
}

@media (max-width: 750px) {
    .footer-section.footer-info {
        padding: 40px 10px 40px calc(5% + 10px);
    }
    .footer-section.footer-info .footer-inner {
        flex-direction: column;
        padding: 0 10px;
    }
}

@media (max-width: 600px) {
    .wrapper-footer-inner {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
    .footer-info {
        grid-column: 1;
        grid-row: 1;
        max-width: 95%;
         margin-left: auto;
    }

    .wrapper-footer-inner .footer-horaires .footer-inner,
    .wrapper-footer-inner .footer-plan .footer-inner {
        padding-inline: 20px;
    }
}



/* CONTENU */
input.form_submit,
a.bouton {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    padding: 0.75em 0.5em;
    border-radius: 0.2em;
    border: none;
    color: #fff;
    text-decoration: none;

    background: #E30310;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

input.form_submit:hover,
a.bouton:hover {
    background: #254B91;
    color: #fff;
}


 a.bouton:hover {
    background: #254B91;
    color: #fff;
}

a.bouton-footer-contact:hover {
   background: #E30310;
}

a.bouton:hover img {
    filter: brightness(0) invert(1);
}

a.bouton-blanc {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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



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


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

.wrapper-boxed {
    position: relative;
}



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

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

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



h1,h2.h1 {
    font-size: clamp(30px, 3.5vw, 60px);
    font-weight: 700;
    line-height: 1;
    color: #E30310;
    margin: 0;
    text-transform: none;
    margin-bottom: -0.3em;
    text-transform: uppercase;
}

span.dl {
    display: block;
    text-transform: none;
    color: #254B91;
    font-size: max(0.8em, 20px);
    line-height: 1;
    font-weight: 600;
    margin-top: 0.2em;
    font-style: italic;
}

h2 {
    font-size: calc(clamp(30px, 3.5vw, 60px) * 48 / 60);
    font-weight: 700;
    line-height: 1.1;
    color: #254B91;
    text-transform: none;
    margin: 0;
    margin-bottom: -0.3em;
    text-transform: uppercase;
}

h3 {  
    font-size: clamp(22px, 3.5vw, 26px);
    font-weight: 700;
    color: #254B91;
    margin: 0;
    line-height: 1;
    margin-bottom: -0.7em;
    text-transform: none;
    font-style: italic;
}


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


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

a.lien:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}


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

a.lien[target="_blank"]::after {
    content: url('i/external.svg');
    display: inline-block;
    width: 0.8em;
    height: auto;
    margin-left: 0.2em;
    vertical-align: middle;
}


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



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: #000000;
  border: 1px solid #000000;
  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; padding-bottom: 16px;max-width:100%;}
div.left-responsive {float:left; padding-right:16px; padding-bottom: 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:#E30310; font-weight:bold; }

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

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

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


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

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

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

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


.form_header {
    background-color: #254B91;
    background-size: auto 100%, 100% 100%;
    background-repeat: repeat-x, no-repeat;
    padding: 4px 20px !important;
    color: #ffffff;
    text-align: left;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}
form table:nth-of-type(1) {    
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;*/
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.formulaire-message-envoye {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    font-size: 23px;
    text-align: center;
    background: #254B91;
}

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

#form {
    color:#000000;
    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;
    left:50%;
    transform: translateX(-50%);
    bottom: 20px;
    border-radius: 8px;
    background: url("i/arrow-up.svg") no-repeat center center, #254B91;
    background-size: 20px 20px, 100% 100%;
    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, 100% 100%;
}



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, img.ronde {
    box-shadow: 1em 1em 2em rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    img.cadrephoto, img.ombre, ul.images img, img.ronde {
        box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.2);
    }
}


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: 10px 30px;
}
.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;
}

.wrapper-flex-columns .wrapper-col.fit-content {
    flex: 0;
}



.style-galerie {
    border:1px solid #d8d8d8;background:rgba(0,0,0,0.05);position:relative;max-width: 760px;
    margin: auto;
}

.wrapper-galerie {
        float: none;
        width:100%;
        max-width:720px;
        margin:auto;margin-bottom: 20px;
    }

.photo_commentaire {display: block;text-align: center;text-decoration: none !important;color:#193d4d;padding-top:5px;}


.ilightbox {text-decoration: none;}

.h2-puce {
    vertical-align: -1px;
    padding-right: 3px;
}

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

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

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

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

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


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

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

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



.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

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

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

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


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






.form_label {
    
    font-weight: 500;
}


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


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



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



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

.pix-bandeau-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    background: url('i/deco-bandeau-photos.svg') no-repeat right center;
    background-size: auto 100%;
    z-index: 1;
}

.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 20%;
    left: 50%;
    text-align: center;
    pointer-events: none;
    font-size: clamp(16px, 4vw, 60px);
    color: #fff;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;

    transform: translateX(-50%);

    z-index: 10;
}
.pix-bandeau-swiper .swiper-slogan h3 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: currentColor;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.pix-bandeau-swiper .swiper-slogan span.dl {
    display: block;
    font-family: inherit;
    font-weight: 800;
    font-size: inherit;
    line-height: 1;
    margin-top: 0.2em;
    text-transform: uppercase;
    font-style: inherit;
    color: inherit;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.pix-bandeau-swiper .swiper-button-prev::after,
.pix-bandeau-swiper .swiper-button-next::after {
    content: none;
}
.pix-bandeau-swiper .swiper-button-prev,
.pix-bandeau-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    --swiper-navigation-size: 36px;
    background: #254B91 url('i/arrow-right-white.svg') no-repeat left 60% center / 50% 50%;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: rotate(180deg);
}
.pix-bandeau-swiper:hover .swiper-button-prev,
.pix-bandeau-swiper:hover .swiper-button-next {
    opacity: 0.5;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
    background-color: #254B91;
}

@media (pointer: coarse) {
    .pix-bandeau-swiper .swiper-button-prev,
    .pix-bandeau-swiper .swiper-button-next {
        display: none;
    }
}


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

    .pix-bandeau-swiper::before {
        aspect-ratio: initial;
        height: 35px;
    }
}
@media (max-width: 640px) {
    .pix-bandeau-swiper {
        height: 300px;
        aspect-ratio: initial;
    }

    .pix-bandeau-swiper::before {
        aspect-ratio: initial;
        height: 30px;
    }
}

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

    .pix-bandeau-swiper::before {
        aspect-ratio: initial;
        height: 25px;
    }
}






/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(239, 138, 37, 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: 1200px) {
    .wrapper-liste-actualites {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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



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

    background-color: #fff;
    
    max-width: 450px;
    margin: 0 auto;

    border-radius: 1em;
    overflow: hidden;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);

    transition: border 0.2s ease;
}

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

.pix-card .pix-card-content {
    padding: 1em 1.5em 1em;
    text-align: center;

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


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

.pix-card .pix-card-plus {
    background: #E30310;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    padding: 0.5em 0.75em;
    border-radius: 0.4em;
    margin-top: 1em;
}
.pix-card .pix-card-plus img {
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.pix-card:hover .pix-card-plus {
    background: #254B91;
}


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

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


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

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




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

    padding: clamp(30px, 7vw, 80px) 0; 
    overflow: hidden;

    position: relative;

    background: #254B91 url('i/bg-actus.jpg') no-repeat center center;
    background-size: cover;
}

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


.wrapper-bande-actus h2 {
    text-align: center;
    margin-bottom: 1em;
    padding: 0 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
.wrapper-bande-actus h2 span.dl {
    color: inherit;
    font-style: italic;
    font-weight: 500;
    font-size: 0.7em;
}


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

.bande-actus-bouton {
    margin-top: 40px;
    text-align: center;
}

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

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









/* CAROUSEL EQUIPE */
.wrapper-bande-equipe {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: clamp(30px, 7vw, 100px) 0;
}

.wrapper-bande-equipe h2 {
    text-align: center;
    margin-bottom: 0.5em;
    padding: 0 20px;
}

.swiper-equipe {
    position: relative;

    padding: 20px 80px;
    
    width: 100%;
    margin: 0 auto;

    overflow: hidden;

    text-align: center;
}


.swiper-equipe .swiper-wrapper .swiper-slide {
    height: auto;
}


.wrapper-equipe {
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
    height: 100%;

    font-size: 20px;

    color: #E30310;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: all 0.3s ease;

    position: relative;

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

.wrapper-equipe-image {
    position: relative;
    width: 100%;
}

.wrapper-equipe-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
    position: relative;
    z-index: 1;
}

.wrapper-equipe-texte {
    padding: 1em;
}

.wrapper-equipe-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: currentColor;
    transition: color 0.4s ease;
    font-style: normal;
}

.wrapper-equipe-texte p {
    margin: 0;
    color: #000;
}

.bande-equipe-bouton {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1670px) {
    .swiper-equipe {
        padding-inline: 40px;
    }
}

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

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

    .swiper-equipe {
        padding-inline: 20px;
    }

    .bande-equipe-bouton {
        margin-top: 20px;
    }
}

@media (max-width: 650px) {
    .wrapper-equipe-texte {
        padding: 1em 0.5em;
    }
}

/* GRILLE EQUIPE */
.wrapper-grille-equipe {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .wrapper-grille-equipe {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

@media (max-width: 420px) {
    .wrapper-grille-equipe {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}





.wrapper-bande-accueil {
    position: relative;
}

.wrapper-bande-accueil-inner {
    margin: 0 auto;
}


.wrapper-bande-accueil::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 1em;
    height: 200px;
    width: 106px;
    background: url('i/mascotte.png') no-repeat bottom right;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

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


@media (max-width: 1500px) {
    .wrapper-bande-accueil {
        padding-bottom: calc(clamp(100px, 20vw, 200px) / 2);
    }
    .wrapper-bande-accueil::after  {
        height: clamp(100px, 20vw, 200px);
    }
}



/* FAQ */
.faq-container {
}

.faq {
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq.open {
    border-color: #000000;
}

.faq-question {
    margin: 0px;
    padding: 15px 50px 15px 0;
    display: block;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    font-family: "Fira Sans", sans-serif;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.02em;
    color: #000;
    background-color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq:has(.faq-question:hover) {
    border-bottom-color: #000000;
}

.faq.open .faq-question {
    color: #000;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 20px 20px 0;
    font-size: 0.95em;
    line-height: 1.6;
    color: #000;
}

.faq-bouton {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
}

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

.faq-bouton img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0);
}



/* FLASH INFO */


.pix-flash-info-content a.lien {
    color: #FEDC08;
}


.pix-wrapper-flash-info {
    background: #254B91;
    display: flex;
    flex-direction: row;
    font-size: 26px;
}

.pix-flash-info-title {
    color: #fff;
    background: #E30310;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.5em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
    padding: 0.2em 0.8em;
    clip-path: polygon(0% 0%, calc(100% - 0.8em) 0%, 100% 50%, calc(100% - 0.8em) 100%, 0% 100%);
    flex-shrink: 0;
}

.pix-flash-info-title img {
    width: 2em;
    height: auto;
}

.pix-flash-info-content {
    color: #FEDC08;
    padding: 0.2em 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (max-width: 1000px) {
    .pix-wrapper-flash-info {
        font-size: 20px;
    }
}

@media (max-width: 650px) {
    .pix-wrapper-flash-info {
        flex-direction: column;
    }
    .pix-flash-info-title {
        clip-path: polygon(100% 0, 100% calc(100% - 0.4em), 1.6em calc(100% - 0.4em), 0.8em 100%, 0 calc(100% - 0.4em), 0 0);
        padding-bottom: 0.5em;
    }

    .pix-flash-info-content {
        text-align: left;
        padding-bottom: 0.5em;
    }
}




.wrapper-accueil-icones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.wrapper-accueil-icones .accueil-icone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #EDEDED;
    aspect-ratio: 1  / 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #3B3B3B;
    width: 100%;
    gap: 1em;

    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    padding: 1em;

    transition: background 0.2s ease;
}

.wrapper-accueil-icones .accueil-icone:hover {
    background: #d6d6d6;
}

.wrapper-accueil-icones .accueil-icone img {
    width: 150px;
    height: auto;
}

@media (max-width: 1350px) {
    .wrapper-accueil-icones {
        gap: 20px;
    }
    .wrapper-accueil-icones .accueil-icone img {
        width: 100px;
        height: auto;
    }
}

@media (max-width: 500px) {
    .wrapper-accueil-icones {
        gap: 10px;
    }
    .wrapper-accueil-icones .accueil-icone {
        font-size: 18px;
        aspect-ratio: 3 / 2;
    }
    .wrapper-accueil-icones .accueil-icone img {
        width: 80px;
        height: auto;
    }
}

@media (max-width: 400px) {
    .wrapper-accueil-icones {
        flex-direction: column;
    }
}


/* DOWNLOAD APP BADGES */
.badges-download-app {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5em;
}

.badges-download-app img {
    width: auto;
    height: 50px;
    vertical-align: top;
}

@media (max-width: 500px) {
    .badges-download-app img {
        width: auto;
        height: 40px;
        vertical-align: top;
    }
}