body{
    margin:0
}
/** banner  **/
.banner-1{
    background-image: url('../img/propos/banner.webp');
    padding: 10em 7em;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-1 h1{
    text-align: center;
    font-family: system-ui;
    font-size: 53px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.slide img {
    border-radius: 15px;
}
.banner-1 h2{
    margin: 0;
font-family: system-ui;
font-size: 33px;
font-weight: 400;
color: #fff;
text-align: center;
}

/** banner programe  **/
.banner-prg{
    background-image: url('../img/program/banner-prg.webp');
    padding: 10em 7em;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-prg h1{
    text-align: center;
    font-family: system-ui;
    font-size: 53px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.banner-prg h2{
    margin: 0;
font-family: system-ui;
font-size: 33px;
font-weight: 400;
color: #fff;
text-align: center;
}

/**    propos    **/
.propos {
    padding: 3em 10em;
}
.propos h1{
    color: #FAB20F;
    font-size: 40px;
    font-weight: 700;
    font-family: sans-serif;
    margin: 0;
    text-transform: uppercase;
}
.propos h2{
    font-size: 53px;
    font-family: sans-serif;
    font-weight: 750;
    color: #0B0D53;
    margin: 0;
}
.propos p{
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    font-family: sans-serif;
    font-weight: 400;
    color: #1D2332;
}

/**             chiffres clées              */
.chf-1-1 h1{
font-size: 40px;
font-family: sans-serif;
font-weight: 700;
color: #FAB20F;
margin: 0;
}
.chf-1-1 h2 {
    font-size: 43px;
    font-weight: 800;
    font-family: sans-serif;
    color: #0B0D53;
    margin: 0;
    padding-bottom: 0.5em;
}
.chf-1-1 p{
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    color: #1D2332;
    margin: 0;

}
.chiffres {
    display: flex;
    padding: 1em 7em 1em 7em;
    gap: 1em;
}
.chf-1 {
    width: 47.3%;
}
.chf-2 {
    width: 26.3%;
}
.chf-3 {
    width: 27.7%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.chiffres img{
    width: 100%;
}
.chf-1-x h3 {
    font-size: 58px;
    font-weight: 700;
    font-family: sans-serif;
    color: #16C2ED;
    margin: 0;

}
.chf-1-x h4{

font-size: 30px;
    font-weight: 700;
    font-family: sans-serif;
    color: #0B0D53;
    margin: 0;
}
.chf-1-x {
    display: flex;
    gap: 10em;
    padding-top: 1em;
    padding-bottom: 1em;
    justify-content: center;
}
.chf-1-y {
    display: flex;
    gap: 7.8em;
    padding-top: 1em;
    padding-bottom: 1em;
    justify-content: center;
    padding-right: 2em;
}
.chf-1-y h3{
    
    font-size: 58px;
    font-weight: 700;
    font-family: sans-serif;
    color: #16C2ED;
    margin: 0;

}
.chf-1-y h4{

font-size: 30px;
    font-weight: 700;
    font-family: sans-serif;
    color: #0B0D53;
    margin: 0;
}
/**             editions                   */
.edition h1{
font-size: 49px;
font-weight: 700;
font-family: sans-serif;
margin: 0;
color: #FAB20F;
}
.edition p{
font-family: sans-serif;
font-size: 18px;
font-weight: 400;
text-align: justify;
line-height: 30px;
color: #1D2332;
}
.edition {
    padding: 1em 10em;
}
.edition h3{
    font-size: 40px;
    font-family: sans-serif;
    color: #0B0D53;
    font-weight: 700;
}
@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Change to match the original number of slides */
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Change to match the original number of slides */
    }
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(390px * 10); /* Match the number of slides after duplication */
}

  .slider {
    background: white;
    height: 100%;
    overflow: hidden;
    margin: auto;
    position: relative;
    width: 100%;
    padding: 1em 0em;
}
  .slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    padding: 50px;
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }

  .slider .slide {
    height: 100%;
    width: 100%;
}
  @media screen and (max-width: 720px) {
    .slider img{
      width: auto;
    }
  }

/**             video                      */
/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #0B0D53;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 60%;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox iframe {
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    color: black;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}
.vid h1{
    color: #FAB20F;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin: 0;
}
.vid p{
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    margin: 0;
}
.vid {
    padding: 2em 10em;
    background-color: #EFEFEF;
}
.video-thumb {
    padding: 1em 18em 3em;
    background-color: #EFEFEF;
}
/**              page programme            **/
.soon {
    background-color: #0B0D53;
    text-align: center;
    padding: 14em 1em;
}
.soon h1 {
    font-size: 61px;
    color: #FAB20F;
    font-weight: 700;
    font-family: sans-serif;
}
.soon h2 {
    font-size: 32px;
    font-weight: 400;
    font-family: sans-serif;
    color: #ffff;
    padding-top: 0.5em;
}
.filter-buttons {
    display: flex
;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0em 0em;
}

.filter-btn {
    padding: 1em 3em;
    border: none;
    background-color: #FFFFFF;
    color: #0B0D53;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid #EBEEF3;
}

.filter-btn.active {
    background-color: #ff8800;
    color: white;
}
.img-inter {
    width: 400px;
}
/* Accordion */
.accordion-item {
    border-radius: 10px;
    margin-bottom: 15px; /* Increased margin for better separation */
    overflow: hidden;
    background-color: #ffffff; /* Explicitly set background for clarity */
    display: none; /* Keep original display none for filtering logic */
    width: 100%; /* Ensure each accordion item takes full width of its parent */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}
.accordion-header {
    display: flex;
    align-items: center; /* Vertically align items in the header */
    padding: 15px;
    width: 100%; /* Ensure header takes full width */
    box-sizing: border-box;
}

.accordion-header h3 {
    margin: 0;
}

.accordion-header p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

.accordion-toggle {
    border: none;
    background: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #21386C;
    background-color: #FAB20F;
    padding: 0em 0.5em;
    border-radius: 50%;
}
.title-acc hr {
    background: #21386C;
    height: 1.5px;
    border: none; /* Remove default border */
    margin: 0; /* Remove default margins */
    width: 100%; /* Make HR take the full width of its parent (.title-acc) */
}
.title-acc {
    flex-grow: 1; /* Allows the title section to take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%; /* Ensure title-acc takes full available width */
}
hr{
    width: 90% !important;
}
.accordion-content {
    padding: 1em 2em; /* Add consistent padding for content */
    background: #f8f8f8; /* Slightly different background for content */
    border-top: 1px solid #eee; /* Separator for content */
    display: none; /* Controlled by JavaScript */
}
.accordion-content p{
    color: #000000;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;

}
.accordion-content h4{
    color: #21386C;
    font-family: sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;

}
.accordion-content li{
    color: #000000;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;

}

.accordion-content ul {
    padding-left: 20px;
}

/**                 filtre       **/
.filtre-prg {
    /* Ensures the filter container and accordions occupy a consistent width */
    margin: 2em auto; /* Center the container with auto margins */
    padding:1em 8em; /* Add some horizontal padding */
}
.img-prg {
    flex-shrink: 0; /* Prevent image from shrinking */
}
.img-prg img {
    width: 150px;
    height: 150px;
    border-radius: 9%;
    object-fit: cover;
}
.acc-head {
    display: flex;
    flex-grow: 1; /* Allows it to take up available space in the header */
    gap: 2em; /* Reduced gap for better spacing, adjust as needed */
    align-items: center; /* Align content vertically within acc-head */
}
.date-prg {
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
    min-width: 120px;
}
.date-prg h3{
    color: #21386C;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 30px;
    margin: 0;
}
.date-prg p{
    color: #21386C;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 33px;

}
.date-prg span{
    color: #16C2ED;
    font-family: sans-serif;
    font-size: 29px;
    font-weight: 700;

}

.title-acc strong{
    color: #21386C;
    font-size: 26px;
    font-weight: 700;
    font-family: sans-serif;

}
.name-acc {
    display: flex;
    justify-content: flex-start; /* Align speaker name to the left */
    width: 100%; /* Ensure name-acc takes full width */
    margin-top: 10px; /* Space between HR and speaker name */
}
.name-parl {
    background-color: #FAB20F;
    padding: 0.4em 1em; /* Adjusted padding */
    border-radius: 30px;
}
.name-parl p{
    color: #21386C;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 500;

}
.mobile-parl{
font-size: 16px !important;
font-weight: 400 !important;
background-color: #FAB20F;
padding: 0.2em 0.8em ;
text-align: center;
border-radius: 50px;
margin-bottom: 0.7em !important;
}
.chf-3-mbl {
    display: flex
;
    gap: 0.5em;
}
.chf-2-mobile {
    display: flex
;
    flex-direction: column;
    gap: 0.5em;
}
/**             responsivité               */
@media screen and (max-width: 790px) {
    .chf-2 {
        display: none;
    }
    .chf-3 {
        display: none;
    }
    .soon{
        padding: 5em 1em;
    }
    .soon h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .soon h2 {
        font-size: 24px;
        line-height: 33px}
    .name-acc {

        justify-content: flex-end;
    }
    .date-prg p {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    line-height: 18px;

    }
    p.mobile-parl {
    padding-top: 0.8em !important;
    padding-bottom: 0.8em !important;
    line-height: 18px;
}
    .img-prg.two-two {
    display: flex
;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5em;
}
    .date-prg {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1em;
        width: 100%;
    }
    .date-prg p {
        font-size: 26px;
    }
    .date-prg span {
        font-size: 32px;
    }
    .filter-buttons {
        padding: 0em 0em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .filter-btn {
        padding: 1em 1em;
        width: 45%;
    }
    .title-acc strong {
        font-size: 22px;
    
    }
    .accordion-content {
        padding: 0em 1em 0em 1em;
        display: none;
    }
    .acc-head {
        gap: 1em;
        flex-direction: column;
    }
    
    .filtre-prg {
        padding: 2em 1em;
    }

    .edition {
        padding: 1em 1em;
    }
    .chf-2 {
        width: 100%;
    }
    .chf-3 {
        width: 100%;
    }
    .vid {
        padding: 2em 1em;
        background-color: #EFEFEF;
    }
    .lightbox-content {

        max-width: 100%;
    }
    .video-thumb {
        padding: 1em 1em;
        background-color: #EFEFEF;
    }
    .edition h3 {
        font-size: 33px;
    }
    .slider::before, .slider::after {
        background: linear-gradient(to right, #ffffff47 0%, rgba(255, 255, 255, 0) 100%);
    }
    .edition h1 {
        font-size: 33px;
    }
    .banner-1 {
        padding: 5em 1em;
    }
    .banner-1 h1 {
        font-size: 32px;
    }
.banner-1 h2{
    font-size: 35px;
}
.banner-1 h3 {
    font-size: 27px
}

.banner-prg {
    padding: 5em 1em;
}
.banner-prg h1 {
    font-size: 32px;
}
.banner-prg h2{
font-size: 35px;
}
.banner-prg h3 {
font-size: 27px
}

.propos {
    padding: 3em 1em;
}
.propos h1 {
    font-size: 34px;
    padding-bottom: 0.3em;
}
.vid h1 {
    padding-bottom: 0.5em;
}
.propos h2{
    font-size: 39px;
}
.chiffres {
    padding: 1em 1em 1em 1em;
    flex-direction: column;
}
.chf-1 {
    width: 100%;
}
.chf-1-1 h2 {
    font-size: 27px;
}
.chf-1-x h3 {
    font-size: 44px;
}
.chf-1-x h4 {
    font-size: 25px;
}
.chf-1-y h3 {
    font-size: 44px;
}
.chf-1-y h4 {
    font-size: 25px;
}
.chf-1-x {
    gap: 0em;
    justify-content: space-between;
}
.chf-1-y {
    gap: 0em;
    padding-right: 1.5em;
    justify-content: space-between;
}
.desk-pal{
    display: none;
}
.img-inter {
    width: 100% !important;
}
}
@media screen and (min-width: 791px) {
    .chf-2-mobile {
display: none;
    }
    .mobile-parl{
        display: none;
    }
}
@media screen and (max-width: 418px) {
.mbl-img-hide{
    display: none;
}
}

@media (min-width: 791px) and (max-width: 1100px) {
.filtre-prg {
    padding: 1em 2em;
}

}
@media (min-width: 792px) and (max-width: 920px) {
.img-prg.two-two {
    display: flex
;
    flex-direction: column;
    gap: 0.5em;
}
.date-prg span {
    font-size: 24px;
}
.date-prg p {
    font-size: 26px;
}
.nagy{
    font-size: 22px !important;
}
}
.nagy{
    font-size: 30px;
}
.two-img{
    width: 646px ;
}