* {-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: 'Raleway', sans-serif;
    font-size: 18px;
    color: #444444;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    background: #ffffff;
    line-height: 1.5;
}

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

.logo a.logo {
    display: inline-block;
}
.logo a.logo img {vertical-align: top;}


.wrapper-header {
    position: relative;
    z-index: 20000;
    background: #a0c2dd;
    margin: 14px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}
.page-bienvenue .wrapper-header {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    margin: 0;
}
.wrapper-header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.wrapper-logo {
    padding: 10px 20px;
}

.wrapper-menu {
    padding-right: 5vw;
}


@media (max-width:1500px) {
    .wrapper-menu { padding-right: 20px;}
}



.wrapper-menu .menu {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    list-style: none;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
}

.wrapper-header .menu-item {
    position: relative;
}
.wrapper-header .menu-item > a, 
.wrapper-header .menu-item > span { 
    padding: 1em 1em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
.wrapper-menu .menu-item.selected > a,
.wrapper-menu .menu-item.selected > span {
    color: #1a496f;
    position: relative;
    text-shadow: none;
}



.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #1a496f;

    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}
.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    opacity: .75;
}
.wrapper-menu .menu-item.selected > a::before,
.wrapper-menu .menu-item.selected > span::before {
    opacity: 1;
    clip-path: none;
}

.wrapper-header .sousmenu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    padding: 0;
    list-style: none;
    min-width: 100%;
    display: none;
    font-size: 0.9em;
    background-color: #a0c2dd;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
    min-width: 200px;
}
.wrapper-header .menu-item:hover .sousmenu {
    display: block;
}
.wrapper-header .sousmenu-item a{
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    padding: 16px;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
.wrapper-header .sousmenu-item a:hover{
    color:#1a496f;
    text-shadow: none;
}
.wrapper-header .sousmenu-item.selected a {
    color:#1a496f;
    text-shadow: none;
}
.wrapper-menu .menu-item.selected .menu-arrow {
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(637%) hue-rotate(168deg) brightness(96%) contrast(90%);
}

.wrapper-header .menu-arrow {
    margin-left: 5px;
    vertical-align: 2px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.75));
}


.wrapper-header .burger-btn{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: transparent;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 1000000;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #1a496f;

    transition: transform 0.3s ease;
}

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




.wrapper-header-contact {
    position: absolute;
    top: 13px;
    right: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.wrapper-header-contact a.bouton {
    background-color: #1a496f;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.30);
}
.header-langue img{
    display: inline-block;
    vertical-align: middle;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.30);
    vertical-align: bottom;
}

@media (max-width: 1350px) {
    .wrapper-logo {
        width: 380px;
        padding: 10px;
    }
    .wrapper-menu {
        padding-right: 10px;
    }

}
    
@media (max-width: 1500px) {
    .wrapper-menu .menu {
        font-size: 19px;
    }
}
@media (max-width: 1250px) {
    .wrapper-menu .menu {
        font-size: 18px;
    }    
    .wrapper-header-contact {
        font-size: 18px;
    }
}


@media (max-width: 1220px) {
    .wrapper-menu .menu {
        font-size: 16px;
    }
    .wrapper-header-contact {
        font-size: 17px;
    }
    .wrapper-header .menu-item > a, .wrapper-header .menu-item > span {
        padding: 1em 0.7em;
    }
}

@media (max-width: 1100px) {
    .wrapper-logo {
        width: 320px;
    }
}
@media (max-width: 1000px) {
    .wrapper-header-contact {
        top: auto;
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    .wrapper-header-contact a.bouton {
        font-size: 17px;
        padding: 0.3em 0.9em;   
    }
    .wrapper-menu {
        padding: 0;
    }

    body.nav-open{
        height: 100vh;
        overflow-y: hidden;
    }
    
    .wrapper-header .burger-btn{
        display: block;
    }

    .wrapper-header .menu {
        margin-top: 0;
        font-size: clamp(16px, 3.5vw ,24px);
    }

    .wrapper-header  .wrapper-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 1000000;
        opacity: 1;
        background: url('i/rose.svg') center center no-repeat, #e9e6d9 url('i/footer.jpg') center center;
        background-size: 80% auto, cover;
        width: 100%;
        transition: transform cubic-bezier(.18,1.01,.55,1) 0.3s;
        transform: translateX(-100%);
    }

    .wrapper-header .wrapper-menu div{
        height: 100%;
    }

    .wrapper-header.open .wrapper-menu{
        transform: translateX(0);
    }
    .wrapper-header.no-animation .wrapper-menu{
        transition: none;
    }

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;   
        height: 100%;
        text-align: center;
    }
    .wrapper-menu .menu-item {
        margin-top: 0;
    }
    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        color: #1a496f;
    }
    .wrapper-header .wrapper-menu .menu .menu-arrow{
        display: none;
    }
    .wrapper-menu .menu-item > a::before, .wrapper-menu .menu-item > span::before {
        /* content: none; */
        bottom: 50%;
        left: -10px;
        z-index: -1;
        background-color: #a0c2dd;
        clip-path: none;
    }
    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        display: block;
        transform: none;
        background: transparent;
        box-shadow: none;
    }
    .wrapper-header .wrapper-menu .sousmenu a{
        font-weight: 400;
        padding: 10px;
    }


    .wrapper-header .wrapper-menu .menu-item > a,
    .wrapper-header .wrapper-menu .menu-item > span {
        font-weight: 700;
    }
    .wrapper-header .wrapper-menu .menu a:hover,
    .wrapper-header .wrapper-menu .menu span:hover {
        color: #1a496f;
    }
    .wrapper-header .sousmenu-item.selected a {
        background: transparent;
        font-weight: 600;
    }
    .wrapper-header .menu-item > a, 
    .wrapper-header .menu-item > span,
    .wrapper-header .sousmenu-item a {
        text-shadow: none;
    }
}


@media (max-width: 800px) {
    .wrapper-logo {
        align-self: flex-start;
    }
}
@media (max-width: 550px) {
    .page-bienvenue .wrapper-header{
        top: 7px;
        left: 7px;
        right: 7px;
    }
    .wrapper-header {
        margin: 7px;
    }
    .wrapper-header-contact a.bouton {
        display: none;
    }
    .header-langue img {
        width: 30px;
    }
}
@media (max-width: 400px) {
    .wrapper-logo {
        width: 240px;
    }
}



.wrapper-contenu {
    background:#fff;
    z-index: 2;
    position: relative;
}

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


@media (max-width:800px) {
.wrapper-boxed {background-size:1000px auto;}

}



h1,h2.h1,h3.h1 {
    font-family: 'Raleway', sans-serif;
	font-size: clamp(30px, 4.5vw, 44px);
	font-weight: 800;
	color: #1a496f;
	margin:0px;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
}

.h1-centre {text-align: center !important;}
.h1-centre span.dl {text-align: center !important;}


span.dl {
    font-family: 'Seaweed Script', cursive;
    font-weight: 400;
    color: #1a496f;
    text-transform: none;
    display: block;
    font-size: 1em;
    line-height: 1;
}


h2 { 
    text-align:left;
    font-size: clamp(25px, 4vw, 36px);
    color:#1a496f;
    font-weight: 700;
    text-transform: uppercase;
    margin:0px;
    position: relative;
    line-height: 1.2;
}
h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 5px;
    background-color: #a0c2dd;
}



div.padding { padding:20px 20px 40px 20px;}

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

@media (max-width:600px) {
    div.padding { padding:10px 20px 20px 20px;}
}


.justify  { 
    text-align:left;
}

div.center  { text-align:center;}

a.lien:link,a.lien:visited {color:#4982a8; font-weight:bold; font-style:normal; text-decoration:none;}
a.lien:hover,a.lien:active {text-decoration:none; color: #1a496f;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px; color:#4982a8; font-weight:bold; font-style:italic; text-decoration:none; }
a.lienpetit:hover,a.lienpetit:active {text-decoration:none;}

span.bleu {color:#1a496f;}


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

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

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



@media (max-width:1100px) {
    .list-4-columns {-webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;}
}
@media (max-width:800px) {
    .list-4-columns, .list-3-columns {-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;}
}
@media (max-width:490px) {
    .list-4-columns, .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:10px;
	margin-bottom:5px;
    padding-left:10px;
}
ul.puce > li {
	list-style-type:none;
	background-image: url(i/puce.png);
	background-repeat: no-repeat;
	padding-left:20px;
    padding-right:2px;
	background-position:0px 9px;
	margin:0px 0px 7px 0px;
    overflow: hidden;
}



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




div.right { float:right; padding-left:20px; max-width: 100%;}
div.left { float:left; padding-right:20px;max-width: 100%;}

div.right-responsive {float:right; padding-left:20px;max-width:100%;}
div.left-responsive {float:left; padding-right:20px;max-width:100%;}


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



.pagination_inactif {font-family: 'Raleway', sans-serif;color:#9eb4c4; font-weight:bold; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#1a496f; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {       color: #fff; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#1a496f;}


div.pagination {        
    background-color: rgba(160, 194, 221, 0.5);
    border: 1px solid rgba(160, 194, 221, 1);
    padding:6px;overflow:hidden;
}
div.pagination a {font-family: 'Raleway', sans-serif;}


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



.form_header {
    font-family: 'Raleway', sans-serif;
background:#1a496f;
    color: #fff;text-align:left;padding:4px;
text-transform: uppercase;text-align: center;font-weight: bold;
font-size: 19px;
}
form table:nth-of-type(1) {    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;}

sup{color:#a10000;}
.error{color:#a10000;}
.form_label {color:#29292b;background-color:rgba(247,235,226,0.05);font-weight:normal;}
.form_input {color:#29292b;background-color:rgba(247,235,226,0.05);}
div.form_note {font-style:italic;font-size:10px;}



label[for="element10i0"] {font-size: 13px;color: #666;}


div.ticker {float:right;padding-left:20px;width: 450px;}

@media (max-width:960px) {
	div.ticker {width: 350px;}
}

@media (max-width:690px) {
	div.ticker {float:none;padding-left:0px;margin-bottom:20px;width:100%;}
}



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








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


.bandeau-boxed-padding-top {padding-top: 26px;}

#bandeau_boxed {max-width:1140px;margin:auto;box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);    outline: 1px solid #c5c5c5;
    outline-offset: 0px;margin-bottom: 20px;}
#bandeau_photos_boxed {width:100%;max-width: 1140px;height: 500px;}
#bandeau_boxed img {margin-left: 0px !important;margin-top: 0px !important;}

/* .rsDefault .rsArrow {z-index: 201 !important;} */



#bandeau_photos_fullwidth {
    width: 100%;
}
#bandeau_photos_fullwidth .rsSlide,
#bandeau_photos_fullwidth .rsOverflow {
    background: #f7ebe2;
}

.wrapper-carousel-services {clear:both;}


#bandeau_fullwidth {
    max-width: 1920px;
    margin: auto;
    margin-top: -30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#bandeau_fullwidth .wrapper-carte {
    position: absolute;
    bottom: 0;
    left: 50%;
    background-color: #4982a8;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    padding: 30px 75px 70px;
    text-decoration: none;
    border-radius: 500px 500px 0 0;
    transform: translateX(-50%) translateY(55px);
    white-space: nowrap;
    filter: drop-shadow(0 -6px 16px rgba(0,0,0,0.50));
    z-index: 1000;
    transition: transform 0.2s ease-out;
}
#bandeau_fullwidth .wrapper-carte:hover {
    transform: translateX(-50%) translateY(50px);
}

#bandeau_photos_fullwidth {
    width: 100%;
    max-width: 1920px;
    height: 1000px;
}

#bandeau_fullwidth img {
    margin-left: 0px !important;
    margin-top: 0px !important;
}


#bandeau_fullwidth .triangle-gauche,
#bandeau_fullwidth .triangle-droit {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 100;
}

@media (max-width: 1200px) {
    #bandeau_fullwidth .triangle-gauche {
        height: 30px;
    }
    #bandeau_fullwidth .triangle-droit {
        height: 48px;
    }
}
@media (max-width: 600px) {
    #bandeau_fullwidth .triangle-gauche {
        height: 15px;
    }
    #bandeau_fullwidth .triangle-droit {
        height: 24px;
    }
}

@media (max-width: 1300px) {
    #bandeau_fullwidth .wrapper-carte {
        padding: 25px 60px 50px;
        font-size: 23px;
        transform: translateX(-50%) translateY(40px);
    }
    #bandeau_fullwidth .wrapper-carte:hover {
        transform: translateX(-50%) translateY(35px);
    }
}

@media (max-width: 1000px) {
    #bandeau_fullwidth .wrapper-carte {
        padding: 20px 50px 50px;
        font-size: 18px;
        transform: translateX(-50%) translateY(40px);
    }
    #bandeau_fullwidth .wrapper-carte:hover {
        transform: translateX(-50%) translateY(35px);
    }
    .rsDefault .rsArrowIcn {
        top: 70%!important;
    }
}

@media (max-width:670px) {
    #bandeau_photos_fullwidth img {
        margin-left: 0px !important;
        margin-left: -webkit-calc(50% - 340px * (1920 / 1000 / 2)) !important;
        margin-left: calc(50% - 340px * (1920 / 1000 / 2)) !important;
        margin-top: 0px !important;
        height:340px;
        max-width: initial;
    }
    #bandeau_photos_fullwidth {
        height:340px !important;        
    }
}


h2.titre-bandeau {
    background-color: #f4e6dc;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: #333333;
    font-size: clamp(20px, 2.5vw ,40px);
    padding: 10px;
}





.rsOverflow {
    transition: none!important;
}

.rsDefault .rsGCaption {
    top: auto !important;
    bottom: 7% !important;
    left: 0px !important;
    right: initial !important;
    padding:0 !important;
    z-index: 100000;
    margin:auto !important;
    pointer-events: none;
    border-radius:0px !important;
    text-align: center !important;
    display: block!important;
    width: 100%!important;
}

.encart-activites {
    position: static!important;
    color:#fff;
    z-index: 100000;
    text-transform: uppercase;
    text-align:center;
    margin:auto;
    width: auto;
    line-height: 1.05;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
    font-size: clamp(28px, 2.5vw ,44px);
}
.encart-activites h3 {
    display: inline-block;
    text-align: center;
    color:#fff;
    font-size: 1em;
}


@media (max-width: 500px) {
    .bandeau-bottom {
        display: none;
    }
} 



.rsArrowIcn {background-color: rgba(26, 73, 111, 0.5) !important;}

.rsDefault .rsArrowIcn:hover {
    background-color: rgba(26, 73, 111, 0.9) !important;
}


.owl-carousel-services {
    background: #1a496f;
    color: #fff;
    padding-top: clamp(20px, 4vw, 50px);
    padding-bottom: clamp(20px, 4vw, 50px);
    position: relative;
    top: -1px;
}
.wrapper-service {
    display: inline-block;
    max-width: 250px;
    margin: 0 auto;
    text-decoration: none;
    color: currentColor;
}
.wrapper-service .icone {
    margin-bottom: 20px;
}
.wrapper-service .icone img {
    width: 130px;
    height: 100px;
    object-fit: contain;
    margin: auto;
}
.wrapper-service h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0;
}
.wrapper-service p {
    margin: 0;
    font-weight: 500;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.1;
}

@media (max-width: 900px) {
    .wrapper-service .icone {
        margin-bottom: 10px;
    }
    .wrapper-service .icone img {
        width: 90px;
        height: auto;
    }
} 




a.back-to-top {
    display: none;
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    background: #fff url("i/arrow-up.png") no-repeat center center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
    transition: all 0.2s ease 0s;
}

a.back-to-top:hover {box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.50);}


iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}


.page-bienvenue .wrapper-footer {
    background: linear-gradient(to bottom, #e9e6d9 150px, #1a496f 150px);
}
/* .page-contact .wrapper-footer {
    margin-top: -150px;
} */

.wrapper-footer {
    background: linear-gradient(to bottom, transparent 150px, #1a496f 150px);
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 10000;
}
.wrapper-footer .footer-inner {
    background: #f9f9f9 url('i/footer.jpg') center center;
    background-size: cover;
    border-radius: 30px;
    color: #1a496f;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 100px 30px 100px;
    gap: 20px;
    box-shadow: 0 7px 11px rgba(0, 0, 0, 0.30);
}
.wrapper-footer .footer-inner > div {
    width: 100%;
    text-align: center;
    line-height: 1.4;
}
.wrapper-footer .footer-inner h3 {
    text-transform: uppercase;
    font-size: clamp(22px, 4w, 28px);
    font-weight: 800;
    margin: 0;
    margin-bottom: 10px;
}
.wrapper-footer .footer-inner strong {
    font-weight: 700;
} 
.wrapper-footer .footer-inner a {
    text-decoration: none;
    font-weight: 700;
    color: currentColor;
}
.wrapper-footer .footer-inner a:hover {
    color: #a0c2dd;
}
.footer-reseaux {
    margin-top: 20px;
}
.footer-reseaux a {
    display: inline-block;
}
.footer-reseaux a img {
    vertical-align: top;
}
.footer-reseaux a:first-of-type {
    margin-right: 15px;
}
.footer-reseaux a:nth-of-type(2) {
    margin-right: 15px;
}
.footer-logo {
    margin-top: clamp(40px, 5vw, 60px);
}
.footer-1 div:first-of-type,
.footer-1 div:nth-of-type(2),
.footer-2 div:first-of-type,
.footer-2 div:nth-of-type(2) {
    margin-bottom: 15px;
}
.footer-1 .inner,
.footer-2 .inner {
    max-width: 310px;
    margin: 0 auto;
}

div.footer-comment {font-size:16px; font-style: italic;}


.mentions {
    margin: clamp(30px, 5vw, 60px) 0;
    color: #fff;
}
.mentions a {
    color: currentColor;
    text-decoration: none;
    font-weight: 700;
}

.footer-afmr {
    padding-bottom: 70px;
}
@media (max-width: 700px) {
    .wrapper-footer .footer-inner {
        flex-direction: column;
        padding: 50px 30px 50px;
    }
    .footer-1 {
        margin-bottom: 30px;
    }
}



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: 0 15px 30px rgba(0, 0, 0, 0.42);
}


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

}


body.page-salon-de-the div.col1-3, body.page-salon-de-the div.col2-3, body.page-salon-de-the div.col3-3 {text-align: center;}


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








.wrapper-bande-contact {
    background: url('i/bande-contact.jpg') no-repeat center center;
    background-size: 2500px auto;
    background-size:120% auto;
    text-align: center;
    padding:120px 10px 120px 10px;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.35);
}

.boxed-bande-contact {
    color:#fff;
    text-shadow:1px 1px 3px rgba(0,0,0,0.75);
}
.boxed-bande-contact strong {font-weight: 800;display: block;font-size:41px;}

.boxed-bande-contact h2.h1:after {content:none;}
.boxed-bande-contact h2.h1-centre {
    text-align: center;
    color: #ffffff;
}
h2.h1-centre::before {
    content: none;
}

.bande-contact-texte {padding:20px 0px;}


@media (max-width:1400px) {
    .wrapper-bande-contact {
        padding: 80px 10px 80px 10px;
    }
}

@media (max-width:1000px) {
    .wrapper-bande-contact {
        padding: 60px 10px 60px 10px;
    }
    .bande-contact-texte {
        padding: 14px 0px;
    }
}

@media (max-width:800px) {
    .wrapper-bande-contact {
        background-size: cover;
        padding: 60px 10px 40px 10px;
    }
    .bande-contact-texte {
        padding: 10px 0px 14px 0px;
    }
}



@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (   min--moz-device-pixel-ratio: 1.5),
only screen and (     -o-min-device-pixel-ratio: 3/2),
only screen and (        min-device-pixel-ratio: 1.5),
only screen and (                min-resolution: 144dpi),
only screen and (                min-resolution: 1.5dppx) { 


    ul.puce > li {background-image: url(i/puce-2x.png);background-size: 10px 10px;}
 
    a.back-to-top {background: #ffffff url("i/arrow-up.png") no-repeat center center;background-size: 16px 16px;}
    a.back-to-top:hover {    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.50);}  

    .form_header {background-size: 110px auto !important;}

}





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


.form_submit,
a.bouton {
    display: inline-block;
    background-color: #4982a8;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    padding: 0.5em 1.3em;
    border: none;
    cursor: pointer;
}

.form_submit:hover,
a.bouton:hover {
    background: #1a496f;
}





#cookiescript_badge {z-index: 99999 !important;}



table.tableau {border-collapse: collapse;}
table.tableau tr:first-of-type td {background: #000;color:#fff;font-weight: bold;}
table.tableau td {padding:4px;border:1px solid #ccc;background: #efefef;}





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

.pix-masonry-wrapper {display:none;overflow: hidden;}  




/* These are the classes that are going to be applied: */
.column { float: left; }
.size-1of3 { width: 33.333%; }

#pix-masonry[data-columns]::before {
  content: '3 .column.size-1of3';
}

@media screen and (max-width: 480px){
  #pix-masonry[data-columns]::before {
    content: '1 .column.size-1of1';
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  #pix-masonry[data-columns]::before {
    content: '2 .column.size-1of2';
  }
}
@media screen and (min-width: 769px) {
  #pix-masonry[data-columns]::before {
    content: '3 .column.size-1of3';
  }
}

/* Again, youre free to use and define the classes: */
.column { float: left; }
.size-1of1 { width: 100%; }
.size-1of2 { width: 50%; }
.size-1of3 { width: 33.333%; }
/* fin masonry */




.visitevirtuelle {text-align: center;}







/* isotope */

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

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

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

.isotope-filter {margin-bottom: 30px;}
.isotope-filter a {position: relative;cursor: pointer;text-transform: uppercase;display: inline-block;padding:4px 20px;}

.isotope-filter a.active {color:#b87d2a;}

.isotope-filter a.active:after {    position: absolute;
    content:" ";
    display: block;
    height:3px;
    background-color: #b87d2a;
    width:100%;
    left:50%;
    transform: translateX(-50%);
    margin:auto;
    margin-top:10px;
}

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




.formulaire-demande-bien-envoyee {
    background-color: rgba(0,0,0,0.1);
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}



.slogan {
    background-color: #e9e6d9;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    color: #1a496f;
    padding: 20px;
    /* border-radius: 10px; */
    overflow: hidden;
}







.bouton-savoirplus {
    display: inline-block;
    background-color: #fff;
    text-transform: uppercase;
    color:#2e4770;
    border-radius: 20px;padding:10px 20px;
    margin-top:16px;
}


@media (max-width:1400px) {
    .bouton-savoirplus {margin-top: 10px;}
}

@media (max-width:1220px) {
    .bouton-savoirplus {margin-top: 4px;font-size: 16px;}
}


.wrapper-pix-iframe {

}

.pix-iframe {
    margin:auto;height:730px;
    max-width: 1380px;
}

.infos {
    background-color: #efefef;
    padding: 10px;
    border: 1px solid #ccc;
    position:relative;
}


.infos-picto {
        left:0px;top:50%;
    transform:translate(-44px, -50%);
    position: absolute;z-index: 10;
   
}

.infos-picto img {
     -webkit-animation: pulsate-fwd 5s ease-in-out infinite both;
            animation: pulsate-fwd 5s ease-in-out infinite both;
}


.owl-carousel .owl-item img {margin:auto;}
.owl-dots {display: none !important;}




.uv {
    position: absolute;bottom: -50px;left: 50%;
    pointer-events: none;
    transform: translateX(-50%);
}

@media (max-width:980px) {
    .uv {bottom: -45px;}
    .uv img {width:150px;}
}

@media (max-width:780px) {
    .uv {bottom: -39px;}
    .uv img {width:120px;}
}




.carousel-ticker .owl-item {
    padding: 0px 20px;

}

.owl-carousel-ticker {text-align: center;}

.owl-dots {display: none;}

.wrapper-bande-carousel-ticker {
    position: relative;
    padding-top:80px;padding-bottom: 70px;
    background:#ffffff;
    text-align: center;
}


.wrapper-bande-carousel-ticker a.bouton {
    margin-bottom: 50px;

}


@media (max-width:420px) {
    .wrapper-bande-carousel-ticker {padding-left:10px;padding-right: 10px;}
}




.wrapper-bande-carousel-ticker > h3 {
    text-align: center;
    margin-bottom: 20px;
}


.wrapper-bande-carousel-ticker > h3 span.dl {
}



h3.carousel-ticker-titre {
    margin: 0;padding:0;margin-bottom:10px;color:#29292b;
    text-transform: uppercase;text-align: center;
    line-height: 1;
}

.carousel-ticker-texte {color: #29292b;text-align: center;}

.carousel-ticker-wrapper {
    display: inline-block;
    padding: 20px 20px 20px 20px;
}  
.carousel-ticker-wrapper img {
    max-width: 340px;
    margin: auto;
    box-shadow: 0px 5px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease 0s;
}

.carousel-ticker-wrapper a {
    text-decoration: none;color:initial;display: inline-block;
 box-shadow: 0px 5px 12px rgba(0,0,0,0.2);
 transition: all 0.3s ease 0s;
}

.carousel-ticker-wrapper a:hover {
    box-shadow: 0px 5px 16px rgba(0,0,0,0.4);
}




.carousel-ticker-wrapper a:hover .carousel-ticker-wrapper-col2 {
    background-color: #ffffff;
}


.carousel-ticker-wrapper a:hover img {}


.carousel-ticker-wrapper-col1 {
    display: block;
    max-width: 340px;
    margin: auto;
    background-color: #fff;
}


.carousel-ticker-wrapper-col2 {
    display: block;
    text-align: left;
    max-width: 340px;
    margin: auto;
    padding:20px 20px 20px 20px;
    background-color: #fff;
}



@media (max-width:1450px) {
    .carousel-ticker-wrapper-col1 {display: block;}
    .carousel-ticker-wrapper-col2 {display: block; padding: 20px 10px 10px 10px;}
}




.pix-marque {text-align: center;display: inline-block;width: 25%;vertical-align: middle;padding:20px;}




@media (max-width:980px) {
    .pix-marque {width:33.33%;}
}


@media (max-width:600px) {
    .pix-marque {width:50%;}
}

@media (max-width:400px) {
    .pix-marque {width:100%;}
}




















.galerie-produit {
    max-width: 700px;background-color: #efefef;padding-bottom:10px;    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    touch-action: none;
}
.pix-galerie {}

.liste-galerie {float:right;width:640px;}


@media (max-width:1140px) {
    .liste-galerie {float:none;display:block;margin:auto;width:initial;max-width:640px;margin-bottom: 20px;}
}


h1.annonce {margin-top: 30px;margin-bottom: 20px;position: relative;}



.wrapper-boxed em {font-size: 14px;color: #666;}



.owl-carousel .owl-item img {margin:auto;}
.owl-dots {display: none !important;}


.owl-carousel .owl-item img {margin:auto;}
.owl-carousel .owl-item {text-align:center;}


.flex-container {
    display: flex;
    align-items: center;
}


.flex-image {
    width: 50%;
}
.flex-content {
    width: 50%;
    padding: 80px 40px 30px;
    background-color: #f7ebe2;
    text-align: center;
}

.flex-content h2 {
    text-align: center;
}
.flex-image img {
    width: 100%;
}

@media (max-width:800px) {
    .flex-container {
        flex-direction: column;
    }

    .flex-image,.flex-content {width: 100%;}
    .flex-image {order: 1;}
    .flex-content {order: 2;}
}




.wrapper-bande-temoignages{
    background: #e9e6d9;
    padding: 0px 30px;
}
.wrapper-bande-temoignages .boxed-bande-temoignages{
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: clamp(50px, 8vw ,100px) 20px clamp(40px, 8vw, 90px);
    border-radius: 20px;
}
.temoignages-inner {
    padding: 0.5vw;
}

.wrapper-bande-temoignages h3{
    font-family: 'Raleway', sans-serif;
	font-size: clamp(30px, 6vw, 44px);
	font-weight: 800;
	color: #1a496f;
	margin:0px;
    position: relative;
    text-transform: uppercase;

}
.wrapper-bande-temoignages .wrapper-temoignages-slick{
    margin: 15px auto 25px auto;
    max-width: 1000px;
}
.wrapper-bande-temoignages a{
    color: #1a496f;
    text-decoration: none;
}
.wrapper-bande-temoignages .quote{
    font-style: italic;
    text-align: center;
}
.wrapper-bande-temoignages .temoignage-auteur em{
    display: inline-block;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    color: #1a496f;
    margin-top: 10px;
    margin-bottom: 10px;
}

.wrapper-bande-temoignages .quote q::before,
.wrapper-bande-temoignages .quote q::after {
    display: inline-block;
}
.wrapper-bande-temoignages .quote q::before {
    margin-right: 5px;
    content: '«';
}
.wrapper-bande-temoignages .quote q::after {
    margin-left: 5px;
    content: '»';
}


.slick-dots {bottom: -30px;}


.slick-list {padding-top: 0px;}

.slick-dots li button {
    font-size: 0 ;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #1a496f;
    border-radius: 50%;
    opacity: 0.5;
    color: transparent;
}

.slick-dots li.slick-active button {
    opacity: 1;
    background-color: #1a496f;

}




/* CARTES */
.wrapper-full-carte {
    display: flex;
    flex-direction: row;
}
.nav-carte {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-right: 40px;
    margin-bottom: 20px;
    height: 100%;
    white-space: nowrap;
}
.tab-carte {
    display: inline-block;
    background-color: #4982a8;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5em 1.3em;
    cursor: pointer;
    border: none;
}
.tab-carte.active {
    background-color: #1a496f;
}
.bloc-carte {
    display: none;
    width: 100%;
}
.bloc-carte.active {
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px 20px;
}

.wrapper-drink {
    padding: 10px 0;
}

.drink {
    display: flex;
    width: 100%;
    height: 100%;
    /* border-bottom: 1px dotted #aaa; */
}

.intitule {
    padding-right: 10px;
    max-width: 70%;
    align-self: flex-start;
}
.intitule strong {
    display: inline-block;
    line-height: 1.1;
}

.intitule span {
    display: block;
    color: #1a496f;
    font-style: italic;
    font-size: 14px;
}

.prix {
    padding-left: 10px;
    display: flex;
    align-self: flex-start;
    text-align: right;
    font-weight: bold;
    color:#1a496f;
}

.intitule span strong {
    display: block;
    color: #000;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
}

.drink-sep {
    flex: 100 1 auto;
    border-bottom: 1px dotted #aaa;
    content: '';
    align-self: flex-start;
    height: 13px;
}

.wrapper-carte-menu {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    background: url('i/rose.svg') center center no-repeat;
    background-size: 80% 80%;
    margin-bottom: 20px;

}

body.page-groupes .wrapper-carte-menu {
    background-color: #1a496f;
    color: #fff;
    border: 9px solid #a0c2dd;
}

.wrapper-carte-menu h3 {
    text-align: center;
    display: inline-block;
    margin: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.wrapper-carte-menu .sep {
    border-top: 1px solid #000;
    display: block;
    margin: 10px auto;
    width: 30px;
}

@media (max-width:1000px) {
    .tab-carte {
        font-size: 16px;
        padding: 0.5em 0.9em;
    }
    .bloc-carte .grid {
        grid-template-columns: 1fr;
    }
    .wrapper-carte-menu {
        width: 100%;
        margin-bottom: 10px;
    }
    .wrapper-carte-menu:nth-of-type(n+2) {
        margin-left: 0;
    }
}
@media (max-width: 650px) {
    .wrapper-full-carte {
        flex-direction: column;
        
    }
    .nav-carte {
        position: static;
        align-items: center;
        flex-direction: row;
        margin-right: 0;

        flex-wrap: wrap;
        min-width: auto;
        overflow-x: visible;
    }
    .nav-carte .tab-carte {
        letter-spacing: -0.5px;
        font-weight: 600;
        padding: 0.5em 0.6em;
        font-size: 14px;
    }

    /* WEBKIT */
    .nav-carte::-webkit-scrollbar {
        display: none;
    }

}



.map-embed {
    height: 450px;
}

.gmap-tooltip button[type="button"] {
    color: #1a496f;
    background: transparent;
    display: inline-block;
    padding: 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.gmap-tooltip button[type="button"]:disabled {
    color: currentColor;
    cursor: default;
}
.gmap-tooltip form {
    width: 100%;
    display: none;
}
.gmap-tooltip form.show {
    display: block;
}
.gmap-tooltip label {
    width: 250px;
}
.gmap-tooltip .row {
    display: flex;
    flex-direction: row;
}

.map-legend {
    margin: 20px 0;
    list-style: none;
    padding: 0;
}
.map-legend .legend {
    cursor: pointer;
    margin-bottom: 5px;
}

.temoignagefull-content {
    padding: 40px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #1a496f;
    font-style: italic;
    position: relative;
    color: #1a496f;
}

.temoignagefull-auteur {
    font-weight: bold;
    margin-top: 10px;
    font-style: normal;
}


.typetemoignage {
    text-align: center;
    position: absolute;
    top: 0px;
    left: 50%;
    background-color: #847b73;
    color:#fff;
    transform: translate(-50%,-6px);
    padding:1px 5px;font-size: 14px;
    font-style: normal;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.18);
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

@media (max-width:500px) {
    .typetemoignage {width:80%;}
}   






.wrapper-marque {position: relative;}

.wrapper-marque:before {
    content:     "";
    display:     block;
    padding-top: 75%; /* initial ratio of 1:1*/
}

.marque-logo {
    position: absolute;
    top:      0;
    left:     0;
    bottom:   0;
    right:    0;
}


.wrapper-marque-logo {
    position: absolute;
    vertical-align: middle;
    width:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding:0px 20px;
}


.wrapper-bande-marques h2.h1 {
    margin-top:20px;
}


@media (max-width:1600px) {
    .wrapper-bande-marques strong {font-size: 22px;}
}


@media (max-width:1200px) {
    .wrapper-bande-marques strong {font-size: 20px;}
}


@media (max-width:1000px) {
    .wrapper-bande-marques strong {font-size: 18px;}
}

@media (max-width:700px) {
    .wrapper-bande-marques strong {font-size: 16px;}
}




.bande-rooftop {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20)), url('i/rooftop.jpg') center center;
    background-size: cover;
    padding: clamp(100px, 15vw, 270px) 20px;
    text-align: center;
    color: #fff;
    position: relative;
}
.bande-rooftop .vague-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: clamp(24px, 4vw, 48px);
    color: #fff;
    transform: scaleY(-1);
}
.bande-rooftop .vague-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: clamp(24px, 4vw, 48px);
    color: #e9e6d9;
}

.bande-rooftop h2.h1 {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 15px;
}
.bande-rooftop h2.h1::before {
    content: none;
}
.bande-rooftop p {
    font-weight: 800;
    font-size: clamp(25px, 5vw, 36px);
    font-style: italic;
    margin: 0;
    text-shadow: 2px 2px 4px #000;
    line-height: 1.2;
}

.wrapper-rotator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.wrapper-rotator .rotator-images-container {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / 1;
    list-style: none;
    margin: 0;
    position: relative;
    vertical-align: top;
    padding: 0;
}

.wrapper-rotator .rotator-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.wrapper-rotator .rotator-image.active{
    opacity: 1;
}


.rose-vents {
    background: url('i/rose.svg') top -100px right -100px no-repeat;
    background-size: 450px auto;
}




#map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0px 11px rgba(0, 0, 0, 0.30);
}


.wrapper-liste-actus {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.liste-actu {
    display: inline-flex;
    width: 25%;
    vertical-align: top;
    margin-bottom: 20px;
}
.liste-actu .actu-inner {
    flex-direction: column;
    padding: 40px 20px;
    margin: 0 10px;
    background: white;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background: url('i/rose.svg') center center no-repeat;
    background-size: contain;
}
.liste-actu h1 {
    font-size: clamp(19px, 2vw, 24px);
}
.liste-actu h1::before {
    content: none;
}
.liste-actu .actu-image {
    margin-bottom: 15px;
}
.liste-actu .actu-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}
.liste-actu .actu-texte {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.liste-actu iframe {
    max-width: 100%;
}
@media (max-width: 1250px) {
    .liste-actu {
        width: 33.33%;
    }
}
@media (max-width: 850px) {
    .liste-actu {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .liste-actu {
        width: 100%;
    }
    .liste-actu .actu-inner {
        margin: 0;
    }
}


.wrapper-message-info {
    padding:30px 20px;
    background-color: #df4b4a;
}
.boxed-message-info {
    max-width: 1380px;
    margin:auto;
    text-align: center;
    font-size: 20px;
    color:#fff;
}



.wrapper-message-gael-info {
    padding:30px 20px;
    background-color: #000;
}
.boxed-message-gael-info {
    max-width: 1380px;
    margin:auto;
    text-align: center;
    font-size: 20px;
    color:#fff;
}