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

img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

html {
    overflow-y: scroll !important;
}

body {
    font-family: "Fira Sans", sans-serif;
    font-size:20px; 
    color:#102237;
    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%;}



:root {
    --header-height: 178px;
}

.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: 0px 0px 8px rgba(0, 0, 0, 0.2);
}


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

    padding: 0 3.3em 0 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: 18em;
}

body:not(.page-accueil) .wrapper-header a.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 57%, 61% 100%, 46% 100%, 0% 50%);
}



/* HEADER TOP */
.wrapper-header .header-top {
    font-size: 22px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    align-items: center;
    font-size: 1.1em;
    
    gap: 1em;    
    padding: 1em 0.8em;

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

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

.header-mobile-reseaux {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.header-top-reseaux .reseaux,
.header-mobile-reseaux .reseaux {
    display: flex;
    gap: 0.5em;
    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(20%) sepia(71%) saturate(4235%) hue-rotate(312deg) brightness(89%) contrast(107%);
}

.header-langues a {
    height: 2em;
    width: 2em;
}
.header-langues a img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* HEADER BOTTOM */
.wrapper-header .header-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    height: 3.5em;
    height: round(up, 3.5em, 1px);
    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{
    --padding-inline: 1.2em;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.2;
    color: #004375;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0 var(--padding-inline);
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}





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

.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content:"";
    position: absolute;
    width: calc(100% - var(--padding-inline) * 2);
    height: 3px;
    background: currentColor;
    top: 0.5em;
    left: var(--padding-inline);
    z-index: -1;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.2s ease;
    transform-origin: left center;
}

.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    opacity: 1;
    transform: scaleX(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;
    transform: scaleX(1);
}




.wrapper-menu .menu span div.menu-arrow {
    width: 11px;
    height: 7px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
}

.wrapper-menu .menu li:hover span div.menu-arrow {
    bottom: 2px;
}

.wrapper-menu .menu span div.menu-arrow-inner {
    background-color: currentColor;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 100%;
    width: 100%;
}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: #fff;
    z-index: -1;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.wrapper-menu .sousmenu a{
    color: #004375;
    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;
}

.wrapper-menu .sousmenu .sousmenu-item:hover a {
    background: rgba(93, 126, 171, 0.2);
}

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

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



/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    margin-left: auto;
    width: 40px;
    height: 40px;
    padding: 15px;
    border: none;
    background: transparent;
    border: 2px solid #004375;
    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: #004375;

    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 .header-top {
        font-size: 20px;
    }

    .wrapper-header div.logo {
        font-size: 18px;
    }

    :root {
        --header-height: 161px;
    }
}
@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;
    }
    :root {
        --header-height: 146px;
    }
}
@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: 0 1.5em 0 1.3em;
    }
    :root {
        --header-height: 140px;
    }
}
@media (max-width: 1280px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        --padding-inline: 1em;
    }
    .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: 14px;
        padding: 0 1em 0 0.8em;
    }
    :root {
        --header-height: 128px;
    }
}

@media (max-width: 1120px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        --padding-inline: 0.6em;
    }
    :root {
        --header-height: 128px;
    }
}

@media (max-width: 1015px) {


    .wrapper-header .header-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        justify-content: flex-start;
    }

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

    .wrapper-header div.logo {
        margin-bottom: 0;
        margin-top: 1em;
    }

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

    .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 {
        width: 3px;
        height: 100%;
        top: 0;
        left: 0;
        transform: scaleY(0);
        transform-origin: top center;
    }

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


    .header-top .header-langues {
        position: absolute;
        top: 60px;
        right: 15px;
    }
    .header-top .header-langues a {
        width: 40px;
        height: 40px;
    }

    :root {
        --header-height: 158px;
    }
}


@media (max-width: 700px) {
    .header-top-reseaux {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-top-reservation {
        order: -1;
    }

    .wrapper-header div.logo {
        margin-top: 0.5em;
    }
    .wrapper-header div.logo img {
        width: 16em;
    }

    :root {
        --header-height: 135px;
    }
}

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

    .wrapper-header .header-top {
        padding: 5px;
    }
    .wrapper-header .burger-btn {
        top: 5px;
        right: 5px;
    }
    .header-top .header-langues {
        top: 50px;
        right: 5px;
    }
    .header-top-reseaux .bouton {
        font-size: 13px;
    }
    :root {
        --header-height: 106px;
    }
}

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

@media (max-width: 374px) {
    .wrapper-header .header-top-reservation,
    .header-top-reseaux .reseaux {
        display: none;
    }
    .wrapper-header div.logo {
        margin-top: 5px;
    }
    .wrapper-header .header-bottom {
        justify-content: flex-start;
    }

    :root {
        --header-height: 106px;
    }
}


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


.wrapper-footer {
    color: #fff;
    position: relative;
    font-weight: 400;
    background: linear-gradient(to bottom, #0b365d, #004375);

    padding: clamp(40px, 10vw, 120px) 20px 40px;

    font-size: 20px;
}

.wrapper-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('i2/footer.webp') no-repeat bottom center;
    background-size: 100% auto;
    z-index: 0;
}
@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .wrapper-footer::before {
        background-image: url('i2/footer-2x.webp');
    }
}

.wrapper-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(100px, 20vw ,180px);
    pointer-events: none;
    background: url('i2/lion-footer.svg') no-repeat bottom center;
    background-size: auto 100%;
    opacity: 0.7;
    z-index: 0;
}

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

.wrapper-footer a:not(.bouton)::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 100px;
    height: 2px;
    background: #eb0d8a;
    transform: translateX(-50%) scaleX(0);
    transition: all 0.2s ease;
}
.footer-reseaux a::before {
    content: none!important;
}

.wrapper-footer a:not(.bouton):hover::before {
    transform: translateX(-50%) scaleX(1);
}

.wrapper-footer a:hover {
    color: #fff;
}

.wrapper-footer-inner {
    position: relative;

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

    margin: 0 auto;

    z-index: 1;

    max-width: 1920px;

}


.footer-1, .footer-2, .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 {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 0.75em;
}

.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 .bouton {
    margin-top: 1em;
}


.footer-reseaux {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 1em;
    padding-top: 0.25em;
}
.footer-reseaux a img {
    width: auto;
    height: 2em;
    vertical-align: top;
    filter: brightness(0) invert(1);
}

.footer-reseaux a img:hover {
    filter: brightness(0) saturate(100%) invert(20%) sepia(71%) saturate(4235%) hue-rotate(312deg) brightness(89%) contrast(107%);
}


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


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

    .wrapper-footer::before {
        background-size: 150% auto;
    }

}

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

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

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

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

    
    .wrapper-footer::before {
        background-size: 200% auto;
    }

}


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

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

/* CONTENU */

input.form_submit,
a.bouton {
    font-family: "Oswald", sans-serif;
    display: inline-block;
    color: #fff;
    background: #004375;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border: none;
    padding: 0.6em 0.8em;
    padding: round(up, 0.6em, 1px) round(up, 0.8em, 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: #eb0d8a;
}

a.bouton.bouton-outline:hover {
    background: #fff;
    color: #004375;
    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: "Oswald", sans-serif;
    font-size: clamp(24px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    color: #004375;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.3em;
}

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

    font-family: "Square Peg", cursive;
    color: #5d7eab;
}


h1::before,
h2.h1::before {
    content: '';
    display: block;
    width: 1.4em;
    height: 1.4em;
    background: url('i2/h1.svg') no-repeat center center;
    background-size: contain;
    margin-bottom: 0.2em;
}
.centre h1::before,
.centre h2.h1::before {
    margin-left: auto;
    margin-right: auto;
}


h2 {
    font-family: "Oswald", sans-serif;
    margin: 0;
    font-weight: 500;
    color: currentColor;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(24px, 4vw, 40px) * 30/40);
    margin-bottom: -0.3rem;
    text-transform: uppercase;
    color: #004375;
}

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


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


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

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


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

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



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

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



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



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



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



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

ul.images li {
    float:left;
}

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

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

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


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




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



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



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;
    align-items: center;
}
.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: #102237 !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:#102237 !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 / 1000;
    position: relative;
    user-select: none;
    max-width: 1920px;
    margin: 0 auto;

    margin-top: calc(-1 * var(--header-height));
}

.pix-bandeau-swiper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('i2/lion-bandeau.svg') bottom right 10% no-repeat;
    background-size: max(20%, 100px) auto;
    z-index: 10;
    pointer-events: none;
    opacity: 0.6;
}

.pix-bandeau-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 1000;
    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: #004375 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;
    }
}

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


/* 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: "Russo One", serif;
    position: relative;
    
    border: 2px solid rgb(204, 204, 204);
    border-bottom-color: transparent;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
    border: 2px solid rgb(204, 204, 204);
    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%);
    height: 24px;
}

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

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



/* 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;
    
    background-color: #fff;
    border-bottom-right-radius: 1.6em;
    box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.2);
    
    overflow: hidden;

    transition: background 0.2s ease, box-shadow 0.2s ease;
}

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

.pix-card-content {

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;

    padding: 1.3em 1em;
    padding-right: 3em;
}

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

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

.pix-card .voir-plus {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: auto;
    border-radius: 50%;
    background: #004375;
}
.pix-card .voir-plus img {
    vertical-align: top;
    width: 0.8em;
    height: 0.8em;
}

.pix-card:hover .voir-plus {
    background: #eb0d8a;
}

@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;
    background: linear-gradient(to bottom, #efebe7, #f7f4f000);
    background-size: cover;

    padding-top: clamp(15px, 2vw, 30px);
    padding-bottom: 20px; 
    overflow: hidden;
}
.wrapper-bande-actus h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 6vw, 70px);
    margin-bottom: clamp(15px, 2vw, 30px);
    position: relative;
    background: none;
    color: #fff;
    padding: 0;
    padding-inline: 20px;
    white-space: nowrap;
}
.wrapper-bande-actus h2 span {
    width: max-content;
    animation: 50s news-title-slide infinite linear;
    display: inline-block;
    text-align: center;
}
@keyframes news-title-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

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

.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, 4vw, 80px) 0 clamp(10px, 4vw, 80px) 0;
    overflow: hidden;
}

.wrapper-bande-icones h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #faf8f6;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 22vw;
}

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

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

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

    transition: all 0.3s ease 0s;
}


.wrapper-icone-image {
    width: 170px;
    height: 130px;
    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: 26px;
    text-transform: uppercase;
    margin-top: 25px;
    font-family: "Oswald", sans-serif;
    color: #004375;
    font-weight: 600;
}
.wrapper-icone-texte p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    margin-top: 10px;
}


@media (max-width: 1000px) {
    .wrapper-icone-texte h3 {
        font-size: 22px;
        margin-top: 15px;
    }
    .wrapper-icone-texte p {
        font-size: 17px;
    }
    .wrapper-icone-image {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 550px) {
    .wrapper-bande-icones h2 {
        font-size: 21vw;
    }
    .wrapper-icone-texte h3 {
        font-size: 20px;
        margin-top: 10px;
    }
    .wrapper-icone-texte p {
        font-size: 16px;
    }
    .wrapper-icone-image {
        width: 100px;
        height: 70px;
    }
}




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

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

.tableau-tarifs .ligne-0 {
    background: #004375;
    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;
}