/* ================================================================
    1.GENERAL CSS
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  color: var(--neutral-shade-3);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing:border-box;
  box-sizing:border-box;
}
body {
  background-color: var(--neutral-tint-5);
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: auto;
  overflow-x: hidden;
  display: block;
  max-width: 2560px;
}
img {
	max-width: 100%;
}
section {
    position: relative;
}
/*---Scrollbar---*/
body::-webkit-scrollbar {
  width: 0.8em;
}
body::-webkit-scrollbar-track {
  border-radius: 100%;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--neutral-tint-2);
  border-radius: 25px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--neutral-tint-1);
}

/*---mouse selection---*/
::selection, ::-moz-selection {
  background: var(--neutral-tint-4);
  color: var(--neutral-base);
  text-shadow: none;
}

/* ================================
    2.GENERAL CSS - Responsive
*/
@media (max-width: 2560px) {
  section, footer {
    padding: 56px var(--desktop-margin);
    position: relative;
  }
}
@media (max-width: 1024px) {
  section, footer {
    padding: 48px var(--tablet-margin);
  }
}
@media (max-width: 480px) {
  section, footer {
    padding: 40px var(--phone-margin);
  }
}

/* ================================================================================================================================ */
/* ================================================================
    1.HEADER
*/
header {
    padding: 16px var(--desktop-margin);
    transition: transform 0.3s ease;
    position: sticky;
    z-index: 1000;
    background: var(--neutral-tint-5);
    transform: translateY(0%);
    top: 0; 
}
header a.logo img {
    width: 300px;
    max-width: 100%;
}
header.header--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}


header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header .header-content nav ul {
    display: flex;
    gap: 32px;
}
header nav.main_nav {
    display: flex;
    align-items: center;
    gap: 56px;
}
header nav.main_nav li a {
    display: flex;
    align-items: center;
    gap: 4px;
} 
header .arrow-close .main-lvl2-nav__item {
    display: none;
}
header .arrow-open .main-lvl2-nav__item {
    display: flex;
}

header nav.main_nav li {
    list-style-type: none;
    display: flex;
    align-items: center;
}
header nav.main_nav div {
    display: flex;
    gap: 24px;
}
/*
header .burger {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radii-8);
    cursor: pointer;
    display: flex;
    padding: 12px;
    display: none;
}
*/

header .burger {
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    border-radius: var(--radii-8);
    cursor: pointer;
    display: none;
    padding: 12px;
}
header .burger div {
    width: 56px;
    height: 8px;
    background: var(--neutral-tint-5);
    border-radius: 0 8px 8px 0;

}
header .burger div:nth-of-type(2) {
    width: 28px;
    margin: 0 0 0 auto;
   transition:0.2s ease-in all; 
}


header .burger:hover div:nth-of-type(2) {
    width: 56px;  
    margin: 0 0 0 auto;  
}

header .nav-rs {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 8px;
}
.rs-link {
    display: flex;
    gap: 12px;
}

.rs-link img {
    width:24px;
    height:24px;
}

header .burger div {
    width: 56px;
    height: 8px;
    background: var(--neutral-shade-3);
    border-radius: 0 8px 8px 0;
}

#header_search_btn {
    cursor:pointer;
    text-decoration:none;
}

#header_search {
    position: absolute;
    bottom: -100px;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    opacity:1;
    transition: all 0.3s ease-in;
}

.header_search_hide {
    /*display:none!important;*/
    opacity:0!important;
}

#header_search_form_inputs {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

#header_search_form_inputs input{
    font-size: var(--font-fs-title-body);
    border:0;
    margin:0;
    padding:5px 10px;
}

#header_search_form_inputs input[type=text]{
    flex:3;
}

#header_search_form_inputs input[type=submit]{
    flex:1;
    ÿ rs ?? ointer;
    color: var(--neutral-tint-5);
    background-color: var(--yellow-base);
    transition: all 0.3s ease-in;    
}
#header_search_form_inputs input[type=submit]:hover{
    color: var(--neutral-tint-5);
    background-color: var(--red-base);    
}



li.main-lvl1-nav__item.main-lvl1-arrow:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    right: 4%;
    top: 4px;
    background-image: url(../assets/icons/arrow-header.svg);
    background-position: center;
    background-repeat: no-repeat;
}
li.main-lvl1-nav__item.main-lvl1-arrow {
    position: relative;
}
header .burger div:nth-of-type(2) {
    width: 28px;
    margin: 0 0 0 auto;
}

/*link_contextual_3 - default*/
.main_link_lvl1 {
    color: var(--neutral-shade-3);
    position: relative;
    font-weight: var(--font-fw-semi-bold);
}
.main_link_lvl1::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: -18px;
    background-color: var(--yellow-base);
    border-radius: 100px;
}
.main-nav__li:last-child > .main_link_lvl1::after {
    display: none!important;
}
.main_link_lvl1:hover {

}
.main_link_lvl1:hover::before {

}
.main_link_lvl1:active {

}
.main_link_lvl1:active::before {

}
.main_link_lvl1:focus-visible {

}
.mobile_menu {
    display: none;
}
.displayMobile {
    display:none;
}

#header_submenu {
    position: absolute;
    top: 118px;
    left: 0;
    height: auto;
    min-height:100px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    
    display:block;
    
    opacity:1;
    transition: all 0.3s ease-in;
    
    padding: 36px var(--desktop-margin);
}

.header_submenu_hide {
    display:none!important;
    /*opacity:0!important;*/
}

.header_submenu_item {
    display:flex;
    opacity:1;
    transition: all 0.3s ease-in;
    
    gap:36px;
}
.header_submenu_item_hide {
    opacity:0!important;
    display:none;
}

.header_submenu_item_main {
    display:flex;
    gap:36px;
    flex-direction:column;
    flex:1;
}
.header_submenu_item_title {
    font-size: var(--font-fs-title-subsection);
    font-weight: var(--font-fw-medium);
    color:var(--yellow-base);
}

.header_submenu_item_content {
    flex:3;
}
.header_submenu_item_content_menu ul.main-nav-1__list {
      column-count: 2;
      column-gap: 1rem;
      width: 100%;
      padding: 0;
}
.header_submenu_item_content_menu ul.main-nav-1__list > li {
      display: inline-block;
      width: 100%;
      box-sizing: border-box;
      break-inside: avoid;
      padding: 0 0 10px 0;
}

.header_submenu_item_visuel {
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    width:80%;
    height:200px;
    margin-top:20px;
}

.header_submenu_item_content_menu a.main-lvl1-nav__link {
    color:#000!important;    
}
.header_submenu_item_content_menu a.main-lvl2-nav__link {
    color:var(--yellow-base);    
}
.header_submenu_item_content_menu a.main-lvl3-nav__link {
    color:var(--yellow-base); 
    font-size: 16px;   
}
.header_submenu_item_raccourcis {
    display:flex;
    gap:12px;
    padding-bottom:12px;
    margin-bottom:12px;
    /*border-bottom:1px solid var(--yellow-base);*/
}
.header_submenu_item_raccourci {
    display:flex;
    flex-direction:column;
    flex:1; 
    gap:12px;
    width:calc(50% - 12px); 
    max-width: 50%;  
}
.header_submenu_item_raccourci_img {
    background-position:center;
    background-size:50%;
    background-repeat:no-repeat;
    background-image: url(../assets/logos/logo-header.png);
    width:100%;
    height:160px;
    /*border: 2px solid var(--yellow-base);*/
    border:1px solid #888;
}
.header_submenu_item_raccourci_title {
    color:#000!important; 
    font-weight: var(--font-fw-medium);
}

/* ================================
    2.HEADER - Responsive
*/
@media (max-width: 1599px) {
    header nav.main_nav, header .rs-link{
        display: none;
    }
    header .burger {
        display: flex
    }
  .displayMobile {
    display: flex;
  }    
    nav#mobileMenu .btn {
    width: 100%;
    }

}
/* ================================
    3. MOBILE MENU
*/
/*
.mobile_menu li a:after {
    display: none;
}
.mobile_menu {
display: none;
    flex-direction: column;
    gap: 24px;
    background-color: var(--neutral-shade-3);
    padding: 24px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 400px;
    height: 100vh;
}

.mobile_menu.open {
  display: flex;
}

.mobile_menu a.main_link_lvl1 {
  font-size: var(--font-size-3);
  padding: 8px 0;
}

.mobile_menu div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
*/
#menu:not( .mm-menu ) {
        display: none;
}

/* ================================================================
    1.FOOTER
*/
footer {
    background: #19352A;
    color: var(--neutral-tint-5);
    position: relative;
    padding: 56px var(--desktop-margin) 16px;
    border-top: 2px solid var(--yellow-base);
}
footer a {
    color: var(--neutral-tint-5);
}
footer .col-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 32px;
    z-index: 1;
    position: relative;
}
footer .col-l, footer .col-r {
    display: flex;
    gap: 16px;
    padding: 16px;
    
    flex:1;
    flex-direction: column;
    border: 1px solid;
}
footer .col-m {
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    padding:0;
    gap: 16px;
}


footer #minimap {
    width:100%;
    height:250px;
    background-color:#fff;
}

footer .links, footer .links div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
footer .horaires {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width:auto;
    margin:0;
}
footer .horaires div {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
}

footer .contact  {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .contact div {

}


footer .pin  {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .pin div {
    display: flex;
    gap: 8px;
    align-items:flex-start;
}

footer .statut.open:after {
    content: "";
    width: 24px;
    height: 24px;
    background: green;
    position: absolute;
    border-radius: 100px;
    border: 4px solid #37af37;
    right:0;
    bottom: 0;
}
footer .statut.open:before {
    content: "Ouverte";
    right: 32px;
    bottom: 3px;
    position: absolute;
}
footer .statut.close:before {
    content: "Fermée";
    right: 32px;
    bottom: 3px;
    position: absolute;
}
footer .statut.close:after {
    content: "";
    width: 24px;
    height: 24px;
    background: #B52947;
    position: absolute;
    border-radius: 100px;
    border: 4px solid rgb(251, 79, 79);
    right: 0;
    bottom: 0;
}
footer .statut {
    position: relative;
}
footer .contact a {
    display: flex;
    gap: 4px;
}
footer:after {
    content: "";
    background-image: url(../assets/img/bg-footer.png);
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 94px;
    height: 221px;
    background-repeat: no-repeat;
    background-size: contain;
}
/* ================================
    2.FOOTER - Responsive
*/
@media (max-width: 900px) {
    footer .links a, footer .links p {
        font-size: var(--font-fs-body-sm);
    }
    footer .col-2 {
        flex-direction: column;
        gap: 32px;
    }
    footer .col-l {
        justify-content: space-between;
    }
    footer .col-r, footer .col-m {
        width: 100%;
    }
    footer .links, footer .links div {
        flex-wrap: wrap;
    }
    footer .links div {
        gap: 16px;
    }
}




button.splide__arrow.splide__arrow--prev svg, button.splide__arrow.splide__arrow--next svg {
    display: none;
}

 button.splide__arrow.splide__arrow--prev {
     transform: scaleX(-1);
     margin-top: -22px;
}
button.splide__arrow.splide__arrow--prev, button.splide__arrow.splide__arrow--next {
    background-image: url(../assets/icons/arrow-slide.svg);
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    background-size: contain;
}
/* ================================================================================================================================ */
/* ================================================================
    1.PAGE ACCUEIL
*/
/*---SECTION HERO---*/
.section_hero {
    padding: 0;
    position: relative;
}
.section_hero .spectacle-home {
    position: relative;
}
.section_hero .spectacle-home .info {
    position: absolute;
    top: 42%;
    left: 8%;
    z-index: 1;
}
.section_hero .spectacle-home .info p.date {
    border: 2px solid;
    border-radius: 100px;
    background: #ffffff1c;
    text-align: center;
    width: fit-content;
    padding: 2px 24px;
    backdrop-filter: blur(2px);
}
.section_hero .spectacle-home .info p:last-of-type {
    margin-bottom: 24px;
}
.section_hero .splide__slide img {
    vertical-align: bottom;
    height: 80vh;
    object-fit: cover;
    width: 100%;
}
.section_hero .spectacle-home .info  :is(h1, p) {
    color: var(--neutral-tint-5);
}
.section_hero .spectacle-home .bg-gradient:after {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgba(0, 0, 0, 0) 100%);
}
.section_hero .splide__arrows.splide__arrows--ltr {
    position: absolute;
    bottom: 8%;
    right: 8%;
}
.section_hero .splide__pagination {
    bottom: 8%;
    left: 8%;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
    width: fit-content;
    gap: 16px;
}
.section_hero .splide__pagination__page {
    background: #ffffff63;
    border: 3px solid white;
    border-radius: 50%;
    display: inline-block;
    height: 16px;
    margin: 3px;
    opacity: .9;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 16px;
}
.section_hero .splide__arrow--next {
    right: -40px;
}
.section_hero .splide__arrow--prev {
    left: -72px;
}
.section_hero a#section_actu_btn {
    position: absolute;
    left: 49%;
    bottom: 12px;
    z-index: 1;
}
section.section_hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: -webkit-fill-available;
    height: 72px;
    background-position: center;
    background-repeat: no-repeat;
    background: url(../assets/img/wave-home.png);
        background-size: cover;
    background-repeat: no-repeat;
}
.section_hero .acces-rapide {
    position: absolute;
    right: -14px;
    border: 0px;
    bottom: 0px;
    width: 354px;
}


/*---SECTION ACTU---*/
.section_actu {
    background: var(--neutral-tint-5);
}
section.section_actu:after {
    content: "";
    background-image: url(../assets/img/bg-actu.svg);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 163px;
    height: 393px;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_actu .col-2 {
    display: flex;
    gap: 56px;
        z-index: 1;
    position: relative;
}

.section_actu .col-l .date {
    margin:8px 0;
}
.section_actu .col-r .date {
    margin-bottom:8px;
}

.section_actu .actu h3, .section_actu .actu p {
    color: var(--neutral-shade-3);
}
.section_actu .date {
    color: var(--red-base);
}
.section_actu .actu {
    position: relative;
}
.section_actu .actu .tag {
        color: var(--neutral-tint-5);
    background: var(--yellow-base);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
}
.section_actu .col-l, .section_actu .col-r {
    width: 50%;
}
.section_actu .col-r {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section_actu .col-l .img {
    height:380px;
    background-color:#eee;
    background-image:url('../assets/logos/logo-header.png');
    background-position:center;
    background-size:40%;
    background-repeat:no-repeat;
}
.section_actu .col-l img  {
    vertical-align: bottom;
    object-fit: cover;
    object-position:center;
    height: 100%;
    border-radius: 8px;
    width: 100%;
    max-height:380px;

}

.section_actu .col-r .img {
    height:243px;
    background-color:#eee;
    background-image:url('../assets/logos/logo-header.png');
    background-position:center;
    background-size:40%;
    background-repeat:no-repeat;
    width:50%;
}
.section_actu .col-r img {
    vertical-align: bottom;
    object-fit: cover;
    object-position:center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}
.actu .img {
    position: relative;
    border-radius: 8px;
}
.actu .img:after {
    content: "";
    position: absolute;
    background-image: url(../assets/img/cache-actu.png);
    width: 60px;
    height: 60px;
    bottom: 0;
    right: 0;
}
.section_actu .col-r .actu .info {
    width: 60%;
}
.section_actu .col-r .actu {
    display: flex;
    gap: 24px;
}
.section_actu .col-l.actu img {
    width: 100%;
}
.section_actu .info .btn_secondary {
    position: absolute;
    right: 0px;
}
.section_actu .col-r .info .btn_secondary {
    bottom: 0;
}
.section_actu .actu:hover img {
    scale: 1.05;
    transition: 0.2s;
}
section.section_actu .actu .img {
    overflow: hidden;
}
.section_actu .col-r .actu:first-of-type:after {
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: -16px;
    background-image: url(../assets/img/actu-divider-x.svg);
}
section.section_actu .actu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section_actu .col-l.actu:after {
    content: "";
    width: 6px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -28px;
    background-image: url(../assets/img/actu-divider.svg);
}


/*---SECTION AGENDA---*/
.section_agenda {
    background-color: var(--neutral-tint-4);
    padding: 56px 6%;
}
.section_agenda button.splide__arrow.splide__arrow--prev {
    /*left: 24%;*/
}
.section_agenda .splide__pagination__page.is-active {
    background: var(--red-base) !important;
    transform: scale(1) !important;
}
.event-list .event:hover .info h3 {
    color: var(--neutral-tint-5);
    transition: 0.2s;
}
.section_agenda .splide__slide img {
    vertical-align: bottom;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height:400px;
        
}


img.img-agenda-default {
    background-color:#fff;
    object-fit: contain;
    object-position: center;
}

.event-list .event:hover .info {
    transition: 0.2s;
    background: var(--red-base);
}
.section_agenda .splide__pagination__page {
    background: #E6ACB8 !important;
    border-radius: 0 !important;
    height: 4px !important;
    margin: 0 14px !important;
    opacity: .7;
    width: 32px !important;
}
.section_agenda .splide__pagination {
    bottom: 24px !important;
}
.section_agenda .bloc-info {
    background-image: url(../assets/img/bg-agenda.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 24px;
    height: -webkit-fill-available;
    display: flex;
    align-items:center;
    gap: 24px;
    justify-content: space-between;
    margin-bottom:24px;
}
.section_agenda .bloc-info .boutons {
    display: flex;
    align-items:center;
    gap: 24px;
}
.section_agenda .bloc-info h2 {
    margin: 0;
}
.section_agenda .bloc-info > * {
    color: var(--neutral-tint-5);
}
.section_agenda .container {
    display: flex;
    flex-direction: column;

}
.event-list {
    /*gap: 32px;*/
}
.section_agenda .btn-agenda {
    background: none;
    border: 1px solid;
    padding: 4px;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}
.event-list .event .date {
    /*background-image: url(../assets/img/date-actu-bg.jpg);*/
    background-color:#B52947;
    flex:1;
    display: flex;
    gap: 8px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}
.event-list .event .debut, .event-list .event .fin {
    text-align: center;
    color: var(--neutral-tint-5);
    position: relative;
    padding:10px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-transform:uppercase;    
}
.section_agenda .fin:before {
    content: "";
    width: 1px;
    height: 100%;
    left: -4px;
    background: white;
    position: absolute;
}
.event-list .event .debut p, .event-list .event .fin p {
    font-size: var(--font-fs-body-sm);
}

.event-list .event .info {
    background: var(--neutral-tint-5);
    display: flex;
    padding: 8px;
    border-radius: 0 0 8px 8px;
    gap: 12px;
    align-items: center;
}
.event-list .event .info h3 {
    margin: 0;
    flex:4;
    color: var(--neutral-shade-3);
}




/*---SECTION BULLETIN / CARTE---*/
section.section_carte-bulletin .container {
    display: flex;
    gap: 56px;
}
.bulletin, .carte {
    display: flex;
    align-items: center;
    gap: 24px;
    flex:1;
}
.bulletin .img, .carte .img {
    height: 100%;
    width: 100%;
    align-items: center;
    display: flex;
}

.bulletin .img {
    flex:1;
}
.bulletin .img img {
    max-width:250px;
}

.bulletin h2, .carte h2 {
    margin: 0;
}
.bulletin div, .carte div {
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
/*---SECTION RS---*/
section.section_rs .container {
    display: flex;
    gap: 56px;
}
.panneau-pocket {
    background: #DEF1FD;
    border: 4px solid #E6F4FD;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 32px;
}
.panneau-pocket .txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 70%;
}
.fb {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.fb h3 span {
    color: #0866FF;
}
.fb:after {
    content: "";
    position: absolute;
    background-image: url(../assets/img/fb-illu.png);
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
}
.panneau-pocket h3, .fb h3 {
    margin: 0px;
}
.panneau-pocket .img img:first-of-type {
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}
.panneau-pocket .img {
    display: flex;
    align-items: center;
}
.fb {
    background: #DBE9FF;
    border: 4px solid #E5EFFF;
    border-radius: 8px;
    padding: 16px;
}

/* ================================
    2.HOME - Responsive
*/
@media (max-width: 1024px) {
    .section_hero .splide__slide img {
        height: 48vh;
        width: 100%;
    }

    .section_actu .col-2 {
        flex-direction: column;
    }
    .section_actu .col-l, .section_actu .col-r {
        width: 100%;
    }
    .section_actu .col-r {
        /*flex-direction: row;*/
    }
    .section_actu .col-r .actu {
        flex-direction: column;
    }
    .section_actu .col-r .img { 
        width: 100%;
    }
    .section_actu .col-r img {
        width: 100%;
    }
    .section_actu .col-r .actu .info {
        width: 100%;
    }
    .section_actu .col-l.actu:after {
        display : none;
    }
    .section_actu .col-l.actu:after, .section_actu .col-r .actu:first-of-type:after {
        display : none;
    }
    .section_actu .col-r .actu .info {
        padding-bottom: 24px;
    }

    section.section_carte-bulletin .container {
        flex-direction: column;
    }
        .section_agenda .bloc-info {
        width: 100%;
    }
    .section_agenda {
    background-color: var(--neutral-tint-5);
    padding: 56px 6%;
}
    .section_agenda .container {
        flex-direction: column;
    }
    .section_agenda button.splide__arrow.splide__arrow--prev {
        left: 3% !important;
    }
    .section_agenda button.splide__arrow.splide__arrow--prev, .section_agenda button.splide__arrow.splide__arrow--next {
        top: 48% !important;
    }
    .section_agenda .splide__slide img {
        /*height:auto;*/
    }    
    
    

    footer .col-3 {
        flex-direction: column;
    }
    footer .col-l, footer .col-r {
        width: 100%;
    }
    .panneau-pocket {
        flex-direction: column;
    }
    .panneau-pocket .txt {
        width: 100%;
    }
    .panneau-pocket .img img:first-of-type {
        height: 200px;
        width: fit-content;
        margin: 0 auto;
    }
    .section_hero .acces-rapide {
    position: relative;
    width: 100%;
    right: 0;
    border: 0;
}

}
@media (max-width: 900px) {
    section.section_rs .container {
        flex-direction: column;
        gap: 24px;
    }
}



/* ================================================================================================================================ */
/* ================================================================
    1.PAGE INTERNE
*/
.bandeau-interne {
    padding: 0px;
    position: relative;
}
.bandeau-interne:after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: -webkit-fill-available;
    height: 72px;
    background-position: center;
    background-repeat: no-repeat;
    background: url(../assets/img/wave-interne.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    left: 0;
}

.bandeau-interne picture {
    max-height:520px;
    min-height:340px;
}
.bandeau-interne img {
    width:100%;
    max-height:520px;
    min-height:340px;
    object-fit:cover;
}

section.titre-interne {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -70px;
    z-index: 2;
    gap: 24px;
    padding: 56px var(--desktop-margin) 0 var(--desktop-margin);
}

.section_interne.col-1 {
    display:block;  
}

.section_interne.col-1 .col-l {
    width:100%;
}

.section_interne.col-1 .col-r {
    display:none;
}

.section_interne.col-2 {
    display: flex;
    gap: 56px;          
}
.section_interne.col-2 .col-l {
    width: calc(70% - 56px);
}
.section_interne.col-2 .col-r {
    width: calc(30% - 56px);
}

.section_interne .bloc {
    margin: 0 0 32px;
}
.section_interne .bloc ul li::marker {
    color: var(--red-base);
}
.section_interne .bloc li {
    list-style: disc;
}


.section_interne .bloc_splide .splide__slide {
    margin: 8px;
}
.section_interne .splide__pagination__page.is-active {
    background: var(--blue-base);
    transform: scale(1.4);
    z-index: 1;
}

.section_interne .splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 100px;
    display: inline-block;
    height: 16px;
    margin: 0 12px;
    opacity: 1;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 24px;
}
.section_interne .splide__pagination {
    bottom: -4px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}
.section_interne .bloc_splide {
    padding-bottom: 24px;
}
/*liens interne nav*/
.links_interne {
    background-color: #fff;
}
.links_interne img {
    height:100px;
    width: 100px;
    object-fit: cover;
    border:1px solid #fff;    
}
.links_interne .col-2 {
    display: flex;
    gap:24px;
    justify-content:space-between;
    
}

.links_interne a.link-interne {
    position: relative;
    display:flex;
    align-items:center;
    gap:24px;
}

.links_interne a.prev {
    flex-direction:row-reverse;
}

.links_interne a.link-interne p, section.links_interne a.link-interne h4 {
    color: rgba(0,0,0,0.5);
}

.links_interne a.link-interne:hover h4 {
    color:rgba(0,0,0,0.8);
}
.links_interne a.link-interne:hover img {
    border:1px solid rgba(0,0,0,0.8);
}


.links_interne a.prev::after {
    content:'‹';
    position:absolute;
    /*color:rgba(255,255,255,0.2);*/
    color:rgba(0,0,0,0.5);
    font-size:100px;
    bottom:calc(50% - 55px);
    left:-50px;
    transition:0.2s;
    font-family: var(--font-ff-title);
}
.links_interne a.prev:hover::after {
    color:rgba(0,0,0,0.8);
}
.links_interne a.next::after {
    content:'›';
    position:absolute;
    color:rgba(0,0,0,0.5);
    font-size:100px;
    bottom:calc(50% - 55px);
    right:-50px;
    transition:0.2s;
    font-family: var(--font-ff-title);
}
.links_interne a.next:hover::after {
    color:rgba(0,0,0,0.8);
}

@media (max-width: 900px) {
    .links_interne .col-2 {
        flex-direction:column;
    }
    .links_interne a.prev::after {
        left:0;
    }
    .links_interne a.next::after {
        right:0;
    }
}

/*
.links_interne, .links_interne img {
    height:300px;
    object-fit: cover;
    width: 100%;    
}
.links_interne:after {
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    top: -4px;
    background-image: url(../assets/img/actu-divider-x.svg);
}

a.link-interne .img {

}

a.link-interne .img:after {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    background: #000000;
    background: linear-gradient(0deg, #19352adb 0%, rgba(0, 0, 0, 0) 100%);
}
.links_interne .col-2 {
    display: flex;
}
.links_interne {
    padding: 0;
}
.links_interne a.link-interne div:last-of-type {
    position: absolute;
    bottom: 16px;
    left: 4%;
}
.links_interne a.link-interne {
    position: relative;
    flex:1;
}
.links_interne a.link-interne p, section.links_interne a.link-interne h4 {
    color: var(--neutral-tint-5);
}

.links_interne a.prev::after {
    content:'‹';
    position:absolute;
    color:rgba(255,255,255,0.2);
    font-size:100px;
    bottom:calc(50% - 75px);
    left:4%;
    transition:0.2s;
    font-family: var(--font-ff-title);
}
.links_interne a.prev:hover::after {
    color:rgba(255,255,255,0.8);
}
.links_interne a.next::after {
    content:'›';
    position:absolute;
    color:rgba(255,255,255,0.2);
    font-size:100px;
    bottom:calc(50% - 75px);
    right:4%;
    transition:0.2s;
    font-family: var(--font-ff-title);
}
.links_interne a.next:hover::after {
    color:rgba(255,255,255,0.8);
}

.links_interne a.next div:last-of-type {
    position: absolute;
    bottom: 16px;
    right: 4%;
}
.links_interne a.next div:last-of-type h4 {
    text-align:right;
}
*/

/*Sticky*/

.section_interne .sticky-blocs li {
    position: relative;
    margin-bottom:5px;
}
.section_interne .sticky-blocs li:before {
    content: "";
    background-image: url('../assets/icons/li-link-nav.png');
    position: absolute;
    background-size: contain;
    left: -18px;
    width: 9px;
    height: 9px;
    top: 6px;
}
.section_interne .sticky-blocs {
    position: sticky;
    top: 56px;
}
.section_interne .sticky-blocs .link-active {
    font-weight: 600;
}
.section_interne .sticky-blocs a {
    font-weight: 500;
}
.section_interne.col-2 .sticky {
    background: #E9F5EF;
    border-radius: 8px;
}
.section_interne .info-sticky {
    padding: 16px;
}
.section_interne .sticky-blocs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section_interne.col-2 .sticky a{
    color: var(--neutral-shade-3);
}
.section_interne.col-2 .sticky h3 {
    background: #3AB979;
    margin: 0;
    color: var(--neutral-tint-5);
    padding: 4px 16px;
    border-radius: 8px 8px 0 0;
    
    background-repeat:no-repeat;
    background-position:calc(100% - 20px) center;
    background-size:20px;
    
    font-size:22px;
}

.section_interne.col-2 .sticky h3[data-icon="menu"] {
    background-image:url('../assets/icons/menu-white.svg');
}
.section_interne.col-2 .sticky h3[data-icon="download"] {
    background-image:url('../assets/icons/download-white.svg');
}
.section_interne.col-2 .sticky h3[data-icon="forward"] {
    background-image:url('../assets/icons/forward-white.svg');
}
/* ================================
    2.PAGE INTERNE - Responsive
*/
@media (max-width: 900px) {

}
@media (max-width: 768px) {
    .section_interne.col-2 {
        flex-direction: column;
    }
    .section_interne.col-2 .col-r, section.col-2 .col-l  {
        width: 100%!important;
    }
}


button.acces-rapide-btn {
    position: fixed;
    right: 0;
    top: 78.5%;
    z-index: 10;
    background: var(--green-shade-3);
    color: var(--neutral-tint-5);
    border: none;
    padding: 4px 8px;
    border-radius: 100px 0 0 100px;
    cursor: pointer;
    font-size: var(--font-fs-body-lg);
}
span.btn-close img {
    align-items: center;
    justify-content: center;
    margin-bottom: -6px;
}
.acces-rapide h3 {
    color: var(--green-shade-3) ;
        text-align: center;
}

.acces-rapide .links a {
    color: var(--neutral-shade-3);
    font-weight: 500;
    /* border: var(--green-base) 1px solid; */
    border-radius: 100px;
    padding: 4px 16px;
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    width: calc(33% - 16px);
    height: 90px;
    justify-content: center;
    font-size: 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
div#contenuAccesRapide img {
    width: 40px;
}
.acces-rapide .links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}
.btn-close {
    display: none; /* Masqué par défaut */
}
.acces-rapide.active {
    right: -8px; /* Affiche le contenu en glissant de la droite */
}
.acces-rapide .links a:hover {
    background: #e9f5ef;
}
.acces-rapide {
    position: fixed;
    top: 37%;
    height: fit-content;
    right: 100%;
    background: white;
    z-index: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    width: 354px;
    z-index: 100;
    border-radius: 8px;
    border: 2px solid green;
}

@media (max-width: 900px) {
  .acces-rapide .links a {
      width: calc(33% - 32px);
  }
}

button.btn-accessibilite {
    position: fixed;
    background: var(--green-shade-3);
    z-index: 9999;
    top: 3%;
    right: 0;
    border: 0;
    border-radius: 32px 0 0 32px;
    padding: 2px 16px;
    cursor:pointer;  
}
#cdu_close {
    display:none!important;
}

#uci_link {
    display:none;
}

@media (max-width: 900px) {
    button.btn-accessibilite {
        display:none;
    }
}

.leaflet-bottom  a {
    font-size:14px!important;
    font-weight:200;
}

#reseaux_sociaux_menu {

    position:absolute;
    bottom:0;
    right:0;
    margin:10px;    
}

#reseaux_sociaux_menu .rs-link {
    gap: 18px;
}

#reseaux_sociaux_menu .rs-link img {
    width:36px;
    height:36px;
}

/** textes issus de l'editeur admin **/
.netc-editor {
}
.netc-editor p {
    margin-bottom: 10px;
}
.netc-editor h2 {
    margin: 20px 0 10px 0;
    color: #F8A442;
}
.netc-editor h3 {
    margin: 10px 0;
    color: #3AB979;
}
.netc-editor li {
    display: list-item!important;
    list-style-type: disc !important;
}
.netc-editor ul {
    list-style-type: disc!important;
}

.netc-editor a[target="_blank"] {
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.netc-editor a[target="_blank"]:after {
    content: '';
    background-image: url(../assets/icons/open.svg);
    background-position: center;
    background-repeat: no-repeat;    
    background-size:16px;
    width:16px;
    height:16px;
    display:block;
    
}

