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

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

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


#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



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

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

    font-size: 20px;
}

body:not(.page-accueil) .wrapper-header {
    background-color: #fff;
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.2);
}


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

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
    padding:0;
    margin:0;
    position: relative;
}
.wrapper-header div.logo img {
   vertical-align: top;
   width: 11em;
}


/* HEADER TOP */
.wrapper-header .header-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    
    gap: 1em;
    padding: 0.6em 0.6em;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: round(up, 0.6em, 1px) round(up, 0.6em, 1px);
}

.header-top-reseaux,
.header-mobile-reseaux {
}

.header-mobile-reseaux {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    padding-left: 10px;
}

.header-top-reseaux .reseaux,
.header-mobile-reseaux .reseaux {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
}

.header-top-reseaux a,
.header-mobile-reseaux a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.header-top-reseaux a img,
.header-mobile-reseaux a img {
    height: 1.5em;
    width: auto;
    vertical-align: top;
}
.header-top-reseaux .reseaux a:hover img,
.header-mobile-reseaux .reseaux a:hover img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(73%) saturate(4397%) hue-rotate(344deg) brightness(83%) contrast(102%);
}


.header-top-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-langues {
    position: relative;
    padding-left: 1.5em;
    margin-left: 1.5em;
}

.header-langues::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #868686;
}

.header-langues a {
    display: inline-block;
    width: 2em;
}
.header-langues a img {
    vertical-align: top;
    width: 100%;
}

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

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

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

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

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


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

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2;
    color: #223562;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.5em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;

    font-variation-settings: "wdth" 85;
}





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

.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content:"";
    position: absolute;
    width: 0.6em;
    height: 0.6em;
    background: #ce1126;
    bottom: 0.2em;
    left: 50%;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.2s ease;
}

.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    opacity: 1;
}


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

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




.wrapper-menu .menu span div.menu-arrow {
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    margin-left: 0.2em;
    background: url('i2/arrow.svg') no-repeat center center;
    background-size: contain;
    transition: all 0.2s ease;
}

.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(255, 255, 255, 0.95);
    z-index: -1;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

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

.wrapper-menu .sousmenu .sousmenu-item:hover a {
    background: rgba(206, 17, 38, 0.1);
}

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

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



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

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

    border-radius: 99px;

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -9px);
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 6px);
}
.wrapper-header.open .burger-btn .line:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}
.wrapper-header.open .burger-btn .line:nth-child(2){
    transform: translate(-50%, -50%) scaleX(0);
}
.wrapper-header.open .burger-btn .line:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}


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

    .wrapper-header div.logo {
        font-size: 18px;
    }
}
@media (max-width: 1550px) {
    .wrapper-header .header-bottom {
        font-size: 20px;
    }
    .wrapper-header .header-top {
        font-size: 18px;
    }

    .wrapper-header div.logo {
        font-size: 17px;
    }
}
@media (max-width: 1380px) {
    .wrapper-header .header-bottom {
        font-size: 19px;
    }    
    .wrapper-header .header-top {
        font-size: 17px;
    }
    .wrapper-header div.logo {
        font-size: 15px;
        padding-inline: 1.5em 1.5em;
    }
}
@media (max-width: 1280px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        padding-inline: 0.8em;
    }
    .wrapper-menu .sousmenu a {
        padding: 14px 10px;
    }

    .wrapper-header .header-bottom {
        font-size: 17px;
    }    
    .wrapper-header .header-top {
        font-size: 16px;
    }
    .wrapper-header div.logo {
        font-size: 12px;
        padding-inline: 0.8em 0.8em;
    }
}

@media (max-width: 1120px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        padding-inline: 0.6em;
        font-variation-settings: "wdth" 75;
    }
}

@media (max-width: 980px) {

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

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

    
    .wrapper-menu {
        padding-right: 10px;
    }
    
    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

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

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

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

    .wrapper-header.open .wrapper-menu{
        opacity: 1;
        pointer-events: all;
    }

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
    }

    .wrapper-header .wrapper-menu .wrapper-inner {
        padding: 10px 55px 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 .wrapper-inner {
        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 .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        padding-left: 15px;
        transform: none;
    }
    .wrapper-header .sousmenu::before {
        content: none;
    }

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

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

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

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


    .wrapper-menu .menu-item > a::before, 
    .wrapper-menu .menu-item > span::before {
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(-50%);
        transform-origin: top center;
    }

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


    .header-top-reseaux .reseaux, .header-mobile-reseaux .reseaux {
        gap: 0.5em;
    }
    .header-langues {
        padding-left: 0.8em;
        margin-left: 0.8em;
    }
}

@media (max-width: 540px) {  
   .header-top-reservation {
        font-size: 0.7em;
   }
}

@media (max-width: 500px) {
    .wrapper-header div.logo {
        font-size: 10px;
        margin-top: 3.5em;
    }
}

@media (max-width: 400px) {
    .wrapper-header .wrapper-menu .wrapper-inner {
        max-width: 400px;
    }
}


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


.wrapper-footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 4em 0 5em;
    font-size: 20px;
}
.wrapper-footer-top .footer-inner {
    padding: 0 20px;
}
.wrapper-footer-top .footer-inner h3 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    color: #223562;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-bottom: 0.5em;
}
.wrapper-footer-top .footer-inner h3::after {
    content: none;
}

.wrapper-footer-top :is(.footer-1, .footer-2, .footer-3) {
    text-align: center;
}

.wrapper-footer-top :is(.footer-1, .footer-2) {
    position: relative;
}
.wrapper-footer-top :is(.footer-1, .footer-2)::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #22356200, #223562, #22356200);
    /* background: linear-gradient(to bottom, #98989800, #989898, #98989800); */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


.wrapper-footer-top .footer-reseaux {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.wrapper-footer-top .footer-reseaux img {
    /* filter: brightness(0) saturate(100%) invert(32%) sepia(0%) saturate(1597%) hue-rotate(162deg) brightness(92%) contrast(95%); */
}
.wrapper-footer-top .footer-reseaux a:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(70%) saturate(3776%) hue-rotate(341deg) brightness(101%) contrast(107%);
}

.wrapper-footer-top .carte-cadeau {
    width: 6.25em;
}



.wrapper-footer {
    color: #fff;
    position: relative;
    font-weight: 400;
    background: linear-gradient(to bottom, #263e72, #002654);

    padding: clamp(80px, 14vw, 120px) 20px clamp(40px, 7vw, 80px);

    font-size: 20px;
}

.wrapper-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 6em;
    height: 6em;
    pointer-events: none;
    background: #fff url('i2/logo-footer-top.svg') no-repeat center center;
    background-size: 80% 80%;
    z-index: 1;
}

.wrapper-footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('i2/logo-footer-bg.svg') no-repeat right -15% center;
    background-size: auto 110%;
    z-index: 0;
    pointer-events: none;

    mask: linear-gradient(to bottom, #000 80%, #0000 100%);
}

.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
    position: relative;
}

.wrapper-footer a:not(.bouton):hover {
    color: #ce1126;
}

.wrapper-footer-inner {
    position: relative;

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

    margin: 0 auto;

    z-index: 1;

    max-width: 1920px;

}


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

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

.footer-inner h3 {
    display: block;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5em;
    padding-bottom: 0.4em;
    margin-bottom: 0.4em;
    position: relative;
}
.footer-inner h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to right, #ffffff00, #ffffff, #ffffff00);
}

.footer-inner p {
    margin: 0;
}

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

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

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

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

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

.wrapper-footer .footer-inner .bouton {
    margin-top: 1em;
}


.footer-1 p {
    margin-top: 1em;
}


div.mentions {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
    padding: 0 20px;
    color: #61809a;
    font-size: 0.9em;

    margin-top: calc(clamp(40px, 10vw, 120px) * 250/120);
}


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



.wrapper-footer-logos {
    padding: clamp(30px, 3vw, 60px) 0;
    position: relative;
    z-index: 2;
}

.wrapper-footer-logos::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 25px;
    background: url('i2/wave-footer.svg') no-repeat bottom right;
    background-size: auto 100%;
    transform: translateY(-100%);
}

.wrapper-footer-logos .swiper-partenaires {
    overflow: hidden;
}

.wrapper-footer-logos .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.wrapper-footer-logos img {
    height: var(--logo-height);
    width: auto;
}

@media (max-width: 1120px) {
    .wrapper-footer-inner {
        flex-wrap: wrap;
    }
    
    .wrapper-footer .footer-1 {
        width: 100%;
    }
    .wrapper-footer .footer-2,
    .wrapper-footer .footer-3 {
        width: 50%;
    }

    .wrapper-footer-top {
        font-size: 17px;
    }


    .wrapper-footer::after {
        background-size: 80% auto;
        background-position: bottom right -15%;
    }

    .wrapper-footer-logos img {
        height: calc(var(--logo-height) * 0.7);
    }
}

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

    .wrapper-footer-top {
        font-size: 14px;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 2em;
    }

    .wrapper-footer-top .footer-2 {
        grid-column: span 2;
        order: -1;
    }

    .wrapper-footer-top .footer-2::after {
        content: none;
    }


    .wrapper-footer-logos::before {
        height: 20px;
    }
    .wrapper-footer-logos img {
        height: calc(var(--logo-height) * 0.6);
    }

}

@media (max-width: 650px) {
    .wrapper-footer {
        font-size: 16px;
    }
    
    .wrapper-footer .footer-1, .wrapper-footer .footer-2, .wrapper-footer .footer-3 {
        width: 100%;
    }

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

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

    .wrapper-footer::after {
        background-size: 100% auto;
    }

    .wrapper-footer-logos img {
        height: calc(var(--logo-height) * 0.55);
    }

}

@media (max-width: 500px) {
    .wrapper-footer-top {
        font-size: 14px;
        grid-template-columns: 1fr;
        grid-row-gap: 1.5em;
    }

    .wrapper-footer-top .footer-2 {
        order: initial;
    }

    .wrapper-footer-top .footer-1,
    .wrapper-footer-top .footer-2 {
        padding-bottom: 1.5em;
    }

    .wrapper-footer-top .footer-1::after,
    .wrapper-footer-top .footer-2::after  {
        content: '';
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, #98989800, #989898, #98989800);
        transform: translateX(-50%);
    }

    .wrapper-footer-logos::before {
        height: 15px;
    }
    .wrapper-footer-logos img {
        height: calc(var(--logo-height) * 0.5);
    }

}

@media (max-width: 360px) {
    .wrapper-footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* CONTENU */

input.form_submit,
a.bouton {
    font-family: "Noto Sans", sans-serif;
    display: inline-block;
    color: #fff;
    background: #ce1126;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: none;
    padding: 0.6em 0.8em;
    padding: round(up, 0.6em, 1px) round(up, 1.2em, 1px);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}


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

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


a.bouton:hover,
input.form_submit:hover {
    background: #002654;
}

a.bouton.bouton-outline:hover {
    background: #fff;
    color: #002654;
    text-shadow: none;
}


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



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

body:not(.page-accueil) #site-content {
    padding-top: 10px;
}



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

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

.wrapper-boxed {
    position: relative;
}

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

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

@media (max-width:1015px) {
    div.padding {
        padding:30px 20px 30px 20px;
    }
}
@media (max-width:400px) {
    div.padding { 
        padding:10px 15px 10px 15px;
    }
}

h1,h2.h1 {
    font-family: "DM Serif Text", serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    color: #002654;
    text-transform: none;
    margin: 0;
    margin-bottom: -0.3em;
}

span.dl {
    display: block;
    text-transform: none;
    font-size: max(0.45em, 16px);
    line-height: 1;
    font-weight: 400;
    margin-top: 0.3em;
    text-transform: none;

    font-family: "Noto Sans", sans-serif;
    color: #e2051b;
}

h1::after {
    content: '';
    display: block;
    width: 1.2em;
    height: 2px;
    background: #e2051b;
    margin-top: 0.3em;
}

.centre h1::after {
    margin-left: auto;
    margin-right: auto;
}



h2 {
    font-family: "DM Serif Text", serif;
    margin: 0;
    font-weight: 400;
    color: currentColor;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(28px, 4vw, 44px) * 44/52);
    margin-bottom: -0.5rem;
    color: #002654;
}

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


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


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

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


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#ce1126; font-weight:800; text-decoration:none; }
a.lienpetit:hover{color:#002654;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,
ul.puce2 {
    margin: 0;
    padding: 0;
	margin-top:5px;
	margin-bottom:5px;
    padding-left:10px;
}
ul.puce > li,
ul.puce2 > li {
    position: relative;
    list-style-type:none;
    padding-left: 20px;
    overflow: hidden;
}
ul.puce > li::before,
ul.puce2 > li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    top: 8px;
    position: absolute;
    left: 0;
    background: url(i2/puce2.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.centre ul.puce li,
.centre ul.puce2 li {
    width: fit-content;
    margin: 0 auto;
}

ul.puce2 > li::before {
    background: url('i2/puce2.svg') center center no-repeat;
    width: 16px;
    height: 16px;
    top: 8px;
}
ul.puce2 li {
    padding-left: 20px;
}


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: #102237;
  border: 1px solid #102237;
  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:#ff0000; font-weight:bold; }

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

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

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

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

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

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

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

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



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


.form_header {
    /* background: #223353; */
    padding: 4px 0px!important;
    color:#102237;
    text-align:left;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid #e9e9e9;
}

.formulaire-message-envoye {
    padding: 20px;
    background: #002654;
    color: #fff;
    margin-top:20px;
}

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

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

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

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

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




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

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

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

#menu {
    display:none;
}

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

a.back-to-top {
    display: none;
    width: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #ce1126 url("i2/arrow-up.svg") no-repeat center center;
    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%;
    background-color: #002654;
}



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;
    gap: 20px;
}
.wrapper-flex-columns.items-center {
    align-items: center;
}

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

.wrapper-flex-columns .wrapper-col {
    flex: 1;
    width: 100%;
    position: relative;
}

@media (max-width:900px) {
    .wrapper-flex-columns  {
        flex-direction: column-reverse;
    }
}


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

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

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


.ilightbox {text-decoration: none;}

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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


.liste-pagination {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.liste-pagination > div {
    display: inline-block;
    width: 100%;
}

.liste-pagination > div:first-of-type{text-align: left;}
.liste-pagination > div:nth-of-type(2){text-align: center;}
.liste-pagination > div:last-of-type{text-align: right;}

.liste-pagination a.lien {
    color:#002654 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Noto Sans", sans-serif;
    font-variation-settings: "wdth" 75;
    text-transform: uppercase;
    font-size: 15px;
}


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






.form_label {
    
    font-weight: 500;
}


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


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



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




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

.pix-bandeau-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 850;
    background-position: center center;
    background-size: cover;
    background: #fff;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(var(--header-height) / 4), rgba(0, 0, 0, 1) calc(var(--header-height) * 3));
    mask-size: 100% 100%;
    mask-position: center top;
    mask-repeat: no-repeat;
}

.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 7%;
    left: 4%;
    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);
}
.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, 5vw, 40px);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}
.pix-bandeau-swiper .swiper-slogan span {
    display: block;
}


.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: #002654 url('i2/arrow-right.svg') no-repeat center center / 10px 10px;
    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: 1015px) {
    .pix-bandeau-swiper .swiper-slide img {
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 1) calc(var(--header-height) * 2))   
    }
}


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



/* SLOGAN */
.slogan {
    padding: 20px;
    background:linear-gradient(to bottom, #efebe7, #f7f4f000);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.slogan em {
    font-size:14px;
    
}


/* FAQ */
.faq-container {
    background-color: #fff;
    /* max-width: 800px; */
}

.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: 400;
    font-family: "DM Serif Text", serif;
    position: relative;
    color: #223562;
    border: 2px solid #223562;
    border-bottom-color: transparent;
}

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

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

.faq.open .faq-question {
}

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

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

.faq-bouton img {width:14px;height:17px;display: block;filter: brightness(0) saturate(100%) invert(15%) sepia(56%) saturate(1532%) hue-rotate(200deg) brightness(91%) contrast(88%);}



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

.formulaire td input[type="checkbox"] + label {
    font-size: 0.8em;
}

.formulaire-envoyer {
    text-align: left;
}


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

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

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



/* CARD POUR LES ACTUS ETC */
.pix-card {
    position: relative;
    text-decoration: none;
    color: currentColor;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 22px;
    
    overflow: hidden;
}

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

.pix-card-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

    padding: 1em 1em;

    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);

    opacity: 0;

    transition: opacity 0.2s ease;
}

.pix-card-title {
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    font-size: 1em;
    color: #002654;
    position: relative;
    text-align: center;
    z-index: 1;
    transition: color 0.2s ease;

    transform: translateY(0.5em);

    transition: transform 0.2s 0.1s ease;
}


.pix-card:hover .pix-card-content {
    opacity: 1;
}
.pix-card:hover .pix-card-title {
    transform: translateY(0);
}


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



/* TEMOIGNAGES */
.temoignagefull-content {
    margin-bottom: 30px;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    background: #ffffff;
}
.temoignagefull-auteur {
    font-weight: 600;
    margin-top: 10px;
    font-style: normal;
    text-transform: uppercase;
}




/* BANDE ACTUS */
.wrapper-bande-actus {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
.wrapper-bande-actus h2 {
    text-align: center;
    text-transform: none;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 0.5em;
    position: relative;
    background: none;
    color: #002654;
    padding: 0;
    padding-inline: 20px;
    white-space: nowrap;
}

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


.wrapper-bande-accueil {
    position: relative;
    min-height: 300px;
    display: flex;
}

.bande-accueil-image {
    position: relative;
}
.bande-accueil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bande-accueil-image::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 10vw;
    width: clamp(90px, 24vw, 140px);
    height: clamp(90px, 24vw, 140px);
    background: url('i2/mouette.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: translateY(-50%);
    opacity: 0.6;
}

.bande-accueil-image img {
    vertical-align: top;
}

.bande-accueil-inner {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 clamp(30px, 8vw, 70px) clamp(30px, 8vw, 70px) clamp(30px, 8vw, 70px);
}

.bande-accueil-inner a {
    font-size: clamp(30px, 6vw, 70px);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: right;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
    
    display: flex;
    align-items: flex-end;
    gap: 0.3em;
}
.bande-accueil-inner .plus-icon {
    height: 0.8em;
    width: 0.8em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0.07em solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.bande-accueil-inner .plus-icon img {
    width: 0.3em;
    height: auto;
}





/* TEMOIGNAGES */
.wrapper-bande-temoignages {
    background-image: url('i2/temoignages.webp');
    background-position: center right 15%;
    background-repeat: no-repeat;
    background-size: auto 95%;

    position: relative;
    text-align: center;
    padding: clamp(40px, 4vw, 70px) 20px clamp(40px, 4vw, 70px);
}

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

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

    position: relative;
}

.wrapper-bande-temoignages h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #002654;
    font-weight: 800;
    font-family: "Oswald", sans-serif;
    font-size: clamp(26px, 4vw, 48px);
}

.wrapper-bande-temoignages h2.h1::before {
    margin-left: auto;
    margin-right: auto;
    background-image: url('i2/heart.svg');
    animation: animateHeart 2.5s infinite;
}

@keyframes animateHeart {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.1);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

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

.wrapper-bande-temoignages a {
    color: currentColor;
    text-decoration: none;
}
.wrapper-bande-temoignages q {
    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;
}


@media (max-width: 1000px) {
    .wrapper-bande-temoignages {
        background-size: auto 70%;
        background-position: center right 10%;
    }
}

@media (max-width: 500px) {
    .wrapper-bande-temoignages {
        background-size: auto 60%;
        background-position: center right 10%;
    }
}

/* CAROUSEL ICONES */
.wrapper-bande-icones {
    position: relative;
    padding: clamp(10px, 2vw, 40px) 0 clamp(10px, 2vw, 40px) 0;
    overflow: hidden;
}

.wrapper-bande-icones h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 1em;
    font-size: clamp(28px, 4vw, 52px);
}


.wrapper-bande-icones .wrapper-icones {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.wrapper-icone {
    text-decoration: none;
    color: #102237;
    display: inline-block;
    max-width: 500px;
    text-align: center;

    transition: all 0.3s ease 0s;
}


.wrapper-icone-image {
    width: 3.5em;
    height: 3.5em;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}

.wrapper-icone-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wrapper-icone-texte {
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}
.wrapper-icone-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: "Noto Sans", sans-serif;
    color: #002654;
    font-weight: 600;
}


@media (max-width: 550px) {
    .wrapper-bande-icones {
        padding: 35px 20px;
        font-size: 16px;
    }
}




/* CAROUSEL ICONES */
.wrapper-bande-pages {
    position: relative;
    padding: 10px 0 20px;
    overflow: hidden;
}

.swiper-pages {
    position: relative;
    cursor: grab;
    
    max-width: 1920px;
    margin: 0 auto;
}
.swiper-pages:active {
    cursor: grabbing;
}

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

.wrapper-page {
    margin: 0 1em;
    text-decoration: none;
    color: #002654;
    display: inline-block;
    max-width: 400px;
    text-align: center;

    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);

    font-size: clamp(14px, 1.2vw, 20px);

    transition: all 0.3s ease 0s;
}


.wrapper-page-icone img,
.wrapper-page-image img {
    vertical-align: top;
}

.wrapper-page-icone img {
    width: 3em;
    height: 3em;
    object-fit: contain;
}

.wrapper-page-texte {
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
    position: relative;
    padding: 1.5em 0.5em 2em;
}
.wrapper-page-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 2em;
    text-transform: none;
    font-family: "DM Serif Text", serif;
    color: #002654;
    font-weight: 400;
}


.wrapper-page-plus {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2em;
    height: 2em;
    transform: translateX(-50%) translateY(50%);
    background: #ce1126 url('i2/plus.svg') no-repeat center center / 40% 40%;
    border-radius: 50%;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.wrapper-page:hover .wrapper-page-plus {
    background-color: #002654;
    transform:  translateX(-50%) translateY(35%);
}

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



/* TABLEAU TARIFS */
.tableau-tarifs {
    width: 100%;
    outline: 2px solid #002654;
    outline-offset: -2px;
}

.tableau-tarifs td {
    padding: 5px;
}

.tableau-tarifs .ligne-0 {
    background: #002654;
    color: #fff;
}

.tableau-tarifs tr:not(.ligne-0):nth-child(odd) {
    background: #f4f4f4;
}

em.small {
    font-size:0.65em;
    color:#999;
    line-height:0.7em;
}

em.checkout {
    font-size:0.65em;
    color:#999;
    line-height:1;
    display: inline-block;
}



.icone-velo, .icone-pet {
    float:left;
}

.icone-velo {
    margin-right:15px;
}




.wrapper-bande-image {
    display: grid;
    grid-template-columns: 3fr 0.5fr 2fr;
    grid-template-rows: minmax(20px, 1fr) auto minmax(20px, 1fr);

    font-size: clamp(15px, 2vw, 24px);

    max-width: 1300px;
    padding: 0 20px;
    margin: 4em auto;
}

.wrapper-bande-image-content {
    position: relative;
    z-index: 2;
    padding: 3em 1em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    text-align: center;


    grid-column: 1 / 3;
    grid-row: 2;

    align-content: center;
}

.wrapper-image-background {
    grid-column: 2 / 4;
    grid-row: 1 / 4;
}

.wrapper-image-background .swiper-wrapper {
    height: auto;
}
.wrapper-image-background .swiper-slide {
    height: auto;
}

.wrapper-image-background img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.wrapper-bande-image h2 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #002654;
}
.wrapper-bande-image h2 span.dl {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-size: 1.6em;
    color: #002654;
    margin-top: 0.4em;
}


@media (max-width: 500px) {
    .wrapper-bande-image {
        grid-template-columns: 10px 1fr 10px;
        grid-template-rows: auto 40px auto;
        margin: 2em auto;
    }

    .wrapper-bande-image-content {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        padding: 2em 1em;
    }

    .wrapper-image-background {
        grid-column: 1 / 4;
        grid-row: 2 / 4;
    }

}




/* PARTENAIRES */
.pix-liste-partenaires {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pix-liste-partenaires .pix-partenaire {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.13);
    padding: 20px;
}
.pix-liste-partenaires .pix-partenaire-image {
    padding: 15px;
    aspect-ratio: 2 / 1;
    display: flex;
    justify-content: center;
}
.pix-liste-partenaires .pix-partenaire-image img {
    width: auto;
    height: auto;
    aspect-ratio: initial;
    object-fit: contain;
}

.pix-liste-partenaires .pix-partenaire-content {
    padding-top:15px;
}


.pix-liste-partenaires .pix-partenaire-description {
    margin-top:0px;
}

.pix-partenaire .voir-plus {
    padding-top:0px;
}

.pix-partenaire {
    color: currentColor;
    text-decoration: none;
    text-align: center;
}
.pix-partenaire h3 {
    margin: 0;
}
.pix-partenaire-type {
    margin: 0;
}
.pix-partenaire-content h3 {
    text-transform: none;
}
.pix-partenaire .voir-plus {
    color: #ce1126;
    font-weight: 500;
    font-size: 0.8em;
    margin-top: 0.8em;
    display: inline-block;
}

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


.wrapper-voir-plus details summary {
    font-style: italic;
    cursor: pointer;

    color: #ce1126;
    font-weight: 800;
    
    list-style: none;

}
.wrapper-voir-plus details summary::marker,
summary::-webkit-details-marker {
    content: none!important;
    display: none!important;
}


.wrapper-voir-plus details summary:hover {
    color: #002654;
}

.wrapper-voir-plus details summary .voir-plus-label {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 2px solid #ce1126;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.wrapper-voir-plus details summary img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(65%) saturate(5981%) hue-rotate(345deg) brightness(80%) contrast(102%);
}


.wrapper-icones-titre {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
    width: max-content;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .wrapper-icones-titre {
        gap: 1em;
        font-size: 14px;
    }
}

@media (max-width: 410px) {
    .wrapper-icones-titre {
        display: flex;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }
}






table.tableau-tarifs tr td:nth-child(2), table.tableau-tarifs tr td:nth-child(3) {
    text-align: right;
    text-wrap-mode: nowrap;
}