<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  overflow-x: hidden !important;
  max-width: 100%;
  width: 100%;
}
body {
  overflow-x: clip !important;
  max-width: 100%;
  width: 100%;
}

body #content {
  background: transparent !important;
}

/*Correction du style du header sur mobile*/

@media screen and (min-width: 768px) {
  /* Cache les menus secondaires pour mobile dans les Ã©crans de largeur 768px et plus */
  .menu_secondary-1-and-2-mobile {
    display: none !important;
  }
  /* Cache le champ de recherche pour mobile dans les Ã©crans de largeur 768px et plus */
  .header-research-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  /* Style pour le bouton de menu mobile */
  #header .toggle_menu_mobile {
    position: absolute !important;
    top: 15px;
    right: 10px;
    font-size: 12px !important;
    flex-direction: column;
    color: #0f7abb !important;
    background-color: #fff !important;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    padding: 5px 20px !important;
    text-align: center;
  }
  /* Style pour l'icÃ´ne dans le bouton de menu */
  #header .toggle_menu_mobile i {
    color: #0f7abb;
    font-size: 30px;
    display: block;
    width: 100%;
  }
  /* RÃ©ajustement des Ã©lÃ©ments de l'en-tÃªte pour mobile */
  #header .header-logo-and-research {
    align-items: center;
    flex-direction: row !important;
    column-gap: 20px;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* Style pour le logo dans l'en-tÃªte */
  #header .header-logo-and-research .header-logo img {
    max-height: 60px;
    width: auto;
  }
  /* Cache le champ de recherche standard sur mobile */
  #header .header-logo-and-research .header-research {
    display: none;
  }
  /* Styles pour le champ de recherche mobile */
  #header .header-research-mobile .header-research #searchform input {
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #43494c;
    color: #43494c;
    padding: 5px 50px 5px 15px;
  }

  #header .header-research-mobile .header-research #searchform {
    position: relative;
    height: 30px;
    width: 300px !important;
  }

  #header .header-research-mobile .header-research {
    width: 300px !important;
    margin: 0 auto;
    padding: 15px 0;
  }

  #header .header-research-mobile .header-research #searchform button {
    position: absolute;
    top: 7px;
    right: 35px;
    z-index: 2;
    background: none;
    border: none;
    outline: none !important;
  }
  /* Cache le menu secondaire pour desktop sur les Ã©crans mobiles */
  #header .menu_secondary-1-and-2-desktop {
    display: none !important;
  }
  /* Affiche le menu secondaire pour mobile */
  #header .menu_secondary-1-and-2-mobile {
    display: block;
    background-color: #f8f8f8;
  }
  /* Affiche la recherche mobile */
  #header .header-research-mobile {
    display: block;
    background-color: #f8f8f8;
  }
}

/* Correction de la page calendrier scolaire */

/* Ajout de d'une marge avant le deuxiÃ¨me calendrier */
.calendar-wysiwig {
  margin-top: 40px;
}
/* Correction de l'espacement des boutons TÃ©lÃ©charger et imprimer sur mobile */
.flex-container-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

/* Back to top button */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 30;
  border: none;
  outline: none;
  background-color: #0079c2;
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 50px;
  height: 50px;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  opacity: 0;
  pointer-events: none;
}

#scroll-to-top.show {
  opacity: 1;
  pointer-events: all;
}

#scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
}
@media screen and (min-width: 768px) {
  #scroll-to-top:hover {
    background-color: #99d7db;
  }
}
@media screen and (max-width: 1200px) {
  #scroll-to-top {
    bottom: 70px;
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  #scroll-to-top {
    bottom: 50px;
    right: 10px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  #scroll-to-top svg {
    width: 15px;
    height: 15px;
  }
  /* Ajuster le z-index du menu du bas sur mobile pour Ã©viter une superposition avec le bouton */
  .menu_persona_v2 {
    z-index: 99;
  }
}

/* Page Ã©tudiants actuels */

/* Style du menu liens utiles */
@media screen and (min-width: 768px) {
  .etudiants-actuels #menu2_top_fr {
    display: none;
  }
  .row-liens-utiles {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .etudiants-actuels #menu2_top_fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 20px;
    list-style: none;
    margin: 30px 0 60px;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
  .etudiants-actuels #menu2_top_fr li {
    list-style: none;
    padding: 0;
  }

  .etudiants-actuels #menu2_top_fr li a {
    background-color: #0079c2;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    border-radius: 15px;
    text-align: center;
  }
  .etudiants-actuels #menu2_top_fr li a::before {
    margin-right: 5px;
  }
  .etudiants-actuels #menu2_top_fr li a:hover {
    background-color: #003e7e;
  }
}

body.page-template-tpl_accueil_futurs_etudiants-php
  #content
  .contenu.etudiants-actuels
  h3
  .lien_calendrier,
body.page-template-tpl_accueil_entreprises_et_organisations-php
  #content
  .contenu.etudiants-actuels
  h3
  .lien_calendrier,
body.page-template-tpl_accueil_etudiants_actuels-php
  #content
  .contenu.etudiants-actuels
  h3
  .lien_calendrier,
body.page-template-tpl_accueil_grand_public-php
  #content
  .contenu.etudiants-actuels
  h3
  .lien_calendrier {
  background: #99d7db;
  transition: all 0.3s ease;
}

/* Correction du responsif de 'Tout sur la rentrÃ©e */
.etudiants-actuels .publicite {
  margin-bottom: 20px;
}
/* Correction du responsif du lien calendrier scolaire */
.etudiants-actuels .flex-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.etudiants-actuels .flex-title .lien_calendrier {
  position: relative;
  float: none !important;
  top: unset !important;
  right: unset !important;
  bottom: unset !important;
  left: unset !important;
}
/* Correction du responsif de la banniÃ¨re sur la page 'Tout sur la rentrÃ©e' */
@media screen and (max-width: 767px) {
  .page-id-55103 #banniere img {
    width: 100%;
    height: auto;
  }
  .page-id-55103 #banniere {
    height: auto;
  }
}

/* Style du bouton calendrier dans la banniÃ¨re */
.page-id-56796 .banner-calendar {
  margin-bottom: 0;
  text-align: center;
}

.page-id-56796 .banner-calendar a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  padding: 30px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  text-align: left;
}

.page-id-56796 .banner-calendar a i {
  font-size: 44px;
}

.page-id-56796 .banniere-accueil-contenu {
  margin-bottom: 0 !important;
}

.page-id-56796
  #banniere-accueil
  .container
  .banniere-accueil-contenu-et-bouton {
  background-color: #0078c2ee;
  padding: 0;
}
.page-id-56796
  #banniere-accueil
  .container
  .banniere-accueil-contenu-et-bouton:hover {
  background-color: #003e7e;
}

/* Style de la publicitÃ© "tout sur la rentrÃ©e */
.etudiants-actuels .publicite {
  position: relative;
  margin-top: 8px !important;
}

.etudiants-actuels .publicite .arrow {
  position: absolute;
  top: 40%;
  right: 30px;
  transform: translateY(-50%);
  fill: #fff;
  width: 80px;
  transition: 0.3s;
}
@media screen and (max-width: 980px) {
  .etudiants-actuels .publicite .arrow {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .etudiants-actuels .publicite .arrow {
    width: 80px;
    right: unset;
    left: 200px;
  }
}
@media screen and (max-width: 500px) {
  .etudiants-actuels .publicite a img {
    width: 100% !important;
  }
  .etudiants-actuels .publicite .arrow {
    width: 80px;
    right: 30px;
    left: unset;
  }
}
.etudiants-actuels .publicite:hover .arrow {
  right: 10px;
}

.etudiants-actuels .publicite:hover {
  opacity: 0.8;
}

/* Remove the grey color */

body #menu_principal {
  background: #0da1ac;
}
body.page-template-tpl_nous_joindre-php #content .contenu a.btn_plein {
  background-color: #0da1ac;
}

/* Carrousel de tÃ©moignages */
#SliderTestimony {
  width: 100%;
  margin: 40px auto;
}
#SliderTestimony .rsContent {
  width: 100%;
  margin: 0 10px; /* Adjust the margin for spacing */
  height: 100%;
  position: relative;
}
#SliderTestimony .rsContainer {
  width: 400px;
}
#SliderTestimony .slick-slide {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
}

#SliderTestimony .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  display: block;
}
#SliderTestimony .slick-slide::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -40%;
  width: 150%;
  height: 40%;
  transform: rotate(30deg);
  background: #0f79bb;
}

#SliderTestimony .slick-slide .program {
  position: absolute;
  bottom: 0;
  padding-bottom: 20px;
  left: 0;
  width: calc(100% - 40px);
  z-index: 2;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: #0f79bb;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-temoignages-videos .section-title {
  margin-bottom: 30px;
  text-align: center;
  color: #003e7e;
}

#SliderTestimony .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #003e7e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.2s ease-in-out;
}
#SliderTestimony .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
#SliderTestimony .play-button svg {
  fill: #ffffff;
  stroke: #ffffff;
  width: 80px;
  height: 80px;
}
#SliderTestimony .play-button svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
#SliderTestimony .slick-list {
  overflow: visible !important;
}
@media screen and (max-width: 1200px) {
  #SliderTestimony .slick-list {
    overflow: hidden !important;
  }
  #SliderTestimony .play-button svg {
    width: 60px;
    height: 60px;
  }
  #SliderTestimony .play-button {
    width: 60px;
    height: 60px;
  }
}
#SliderTestimony .slick-dots {
  position: relative;
}

#SliderTestimony .slick-dots button::before {
  display: none;
}
#SliderTestimony .slick-dots button {
  background-color: #003e7e;
  width: 30px;
  height: 5px;
  padding: 0;
}
#SliderTestimony .slick-dots .slick-active button {
  background-color: #0da1ac;
  width: 30px;
}
#SliderTestimony .slick-dots li {
  width: auto;
}

.slick-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-active .slick-dot {
  background-color: #007bff; /* Active dot color */
  transform: scale(1.2); /* Enlarge the active dot */
}

body {
  overflow-x: clip !important;
}

/* Boutons de CTA pour la demande d'admission */

.section-demande-cta {
  padding: 100px 15px;
  background-color: #cfe7f5;
  position: relative;
}
.section-demande-cta::before {
  content: "";
  position: absolute;
  background-color: #cfe7f5;
  width: 140%;
  height: 100%;
  top: 0;
  left: -20%;
}

.section-demande-cta .container {
  background-color: #003e7e;
  padding: 50px 30px;
}
.section-demande-cta .container h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

#content .cta-button[target="_blank"]:before {
  display: none;
}

.section-demande-cta .container .cta-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  column-gap: 15px;
  row-gap: 20px;
}

.contenu.page_programme_v2 .section-demande-cta {
  padding: 100px 0px;
}

.section-demande-cta .cta-button {
  width: 80%;
  text-align: center;
  background-color: #0da1ac;
  border: 1px solid #0da1ac;
  color: #fff;
  font-size: 16px;
  padding: 15px 15px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-demande-cta .cta-button:hover {
  background-color: #ffffff;
  color: #003e7e;
  border-color: #003e7e;
  text-decoration: none;
}
.section-demande-cta .cta-button.secondary {
  background-color: #ffffff;
  color: #003e7e;
  border-color: #003e7e;
  text-align: center;
}
.section-demande-cta .cta-button.secondary:hover {
  background-color: #0da1ac;
  color: #ffffff;
  border-color: #0da1ac;
}

@media screen and (max-width: 767px) {
  .section-demande-cta .container .cta-container {
    flex-wrap: wrap;
  }
  .section-demande-cta .cta-button {
    font-size: 13px;
  }
  .section-demande-cta .container {
    padding: 40px 20px;
  }
  /* .section-demande-cta {
    margin: 20px 0 0;
  } */
}

/* HiÃ©rarchiser les rÃ©sultats de recherche */
.post_type-tag {
  display: inline-block;
  background-color: #003e7e;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0px 8px;
  margin-bottom: 10px;
}

/* Ajouts d'Ã©lÃ©ments au footer */

#menu_footer_2 {
  background-color: #1d1e1e;
  padding-top: 20px;
}

#menu_footer_2 .menu_label {
  font-family: "latobold", sans-serif;
  color: #99d7db;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  pointer-events: none;
  cursor: default;
}

#menu_footer_2 .menu {
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  list-style: none;
  margin-left: 0;
}

#menu_footer_2 .menu a {
  color: #fff;
}

#menu_footer_2 p,
#menu_footer_2 p a {
  color: #fff;
}

#menu_footer_2 p a {
  text-decoration: underline;
}

#menu_footer_2 .span4 {
  max-width: 222px;
  margin-right: 30px;
}

@media (max-width: 767px) {
  body #menu_footer_2 {
    padding: 20px;
  }
  #menu_footer_2 .menu {
    margin-bottom: 25px;
  }
}

/* Fiches programmes */

.page_programme_v2_zone_fixe .link-container:first-child {
  margin-bottom: 20px;
}
.page_programme_v2_zone_fixe .link-container {
  margin-bottom: 2px;
}

#presentation_programme .wp-caption-text {
  margin-top: 10px;
}

.accordeon-presentation.type-h2 {
  border-bottom: 1px solid #40aeb5;
  background: #cfe7f5;
}

.accordeon-presentation.type-h3 {
  border-bottom: 1px solid #40aeb5;
}
.accordeon-presentation {
  padding: 30px 20px 20px 20px;
  cursor: pointer;
  position: relative;
}

.accordeon-presentation .accordeon-presentation-content img {
  width: 100%;
  height: auto;
}

.accordeon-presentation .accordeon-presentation-content {
  display: none;
}

.accordeon-presentation .title {
  width: calc(100% - 25px);
  position: relative;
}
.accordeon-presentation .title h2,
.accordeon-presentation .title h3 {
  padding: 0 !important;
}
.accordeon-presentation::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #40aeb5;
  border-radius: 2px;
}
.accordeon-presentation.active::after {
  transform: rotate(180deg);
  top: unset;
  bottom: 20px;
}

.accordeon-presentation .accordeon-presentation-content ul {
  margin-top: 20px !important;
}

.accordeon-presentation .accordeon-presentation-content p {
  margin-top: 20px;
}
.accordeon-presentation .accordeon-presentation-content p:last-child {
  margin-bottom: 0;
}
.page_programme_v2_row .page_programme_v2_col-right {
  width: 30%;
  margin-top: 36px;
}
.page_programme_v2_row .page_programme_v2_col-left {
  width: 65%;
}

.texte-presentation-contenu.texte_contenu img {
  width: 100%;
  height: auto;
}
.texte-presentation-contenu.texte_contenu p {
  margin-top: 20px;
}
.texte-presentation-contenu.texte_contenu p:first-child {
  margin-top: 0;
}
.texte-presentation-contenu.texte_contenu p:last-child {
  margin-bottom: 0;
}

.texte-presentation-contenu.texte_contenu h2,
.texte-presentation-contenu.texte_contenu h3 {
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.texte-presentation-contenu.texte_contenu h2:first-child {
  margin-top: 0 !important;
}
.texte-presentation-contenu {
  margin-bottom: 36px;
}

.programmes-lies-container {
  margin-top: 40px;
}

.page_programme_v2_onglets-menu,
.page_programme_v2_onglets-menu.no-margin-bottom {
  margin: 40px 0 20px;
}
.mobile-tablet {
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .page_programme_v2_row {
    flex-direction: column;
  }
  .page_programme_v2_row .page_programme_v2_col-right {
    width: 100%;
    margin-top: 20px;
  }
  .page_programme_v2_row .page_programme_v2_col-left {
    width: 100%;
  }
  body #content .the_content .accordeon-presentation h2 {
    font-size: 20px;
  }
  body #content .the_content .accordeon-presentation h3 {
    font-size: 18px;
  }
  .mobile-tablet {
    display: block !important;
    position: relative;
  }
  .page_programme_v2_informations_importantes.mobile-tablet {
    padding-right: 95px;
  }
  .mobile-tablet .page_programme_v2_informations_importantes_text span {
    color: #003e7e;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-family: "latoheavy";
    margin-bottom: 10px;
    display: inline-block;
  }
  .mobile-tablet .inscription-button {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-tablet .inscription-button .icon {
    background-color: #0f7abb;
    padding: 20px;
    border-radius: 50px;
    position: relative;
  }

  .mobile-tablet .inscription-button .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%) rotate(135deg);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid #0f7abb;
    border-top: 12px solid transparent;
    border-radius: 2px;
  }

  .mobile-tablet .inscription-button:hover .icon {
    background-color: #0da1ac;
  }
  .page_programme_v2_col-right .page_programme_v2_informations_importantes {
    display: none !important;
  }
  body.single-cm_programmes #content .code_de_cours {
    display: block;
    float: none;
  }
}
body #content .page_programme_v2 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.page_programme_v2_row_container {
  padding-bottom: 0;
}

/* page de programme */

.page-template-tpl_intercalaire_programme .programme_cell {
  background-color: #cfe7f5 !important;
}

body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table
  .programme_cell
  .programme_container
  h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  height: 70px;
  border-bottom: none;
}

.page-template-tpl_intercalaire_programme .secteur {
  display: block;
  margin-bottom: 10px;
}
.page-template-tpl_intercalaire_programme .spe {
  display: block;
  color: #003e7e;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  text-transform: uppercase;
}

body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table {
  margin-bottom: 40px;
  margin-top: 40px;
}

body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table
  .programme_cell {
  border-left: 30px solid #fff;
}

body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table
  .programme_cell
  .programme_container
  .programme_image {
  margin-bottom: 36px;
  /* aspect-ratio: 4/3; */
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
}
body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table
  .programme_cell
  .programme_container
  .programme_image
  img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-template-tpl_intercalaire_programme-php
  #content
  .the_content
  .programme_table
  .programme_cell
  .programme_container
  ul
  li::before {
  display: none;
}

@media screen and (max-width: 767px) {
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    .programme_image {
    /* aspect-ratio: 4/3; */
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell {
    border-left: 0px solid #fff;
    position: relative;
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid #40aeb5;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container {
    position: relative;
    z-index: 1;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25%;
    width: 150%;
    height: 100%;
    background-color: #cfe7f5;
    z-index: 0;
    border-bottom: 1px solid #40aeb5;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    a.btn_plein {
    position: relative;
    margin-top: 30px;
    float: none;
    left: unset;
    right: unset;
  }

  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table:not(:first-child) {
    margin-top: 0;
    margin-bottom: 0;
  }

  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .content-wrap {
    margin-bottom: 40px;
  }

  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .desc-content {
    display: none;
  }

  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #40aeb5;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell.active::after {
    transform: translateY(-50%) rotate(180deg);
    top: unset;
    bottom: 20px;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell.active
    .desc-content {
    display: block;
  }

  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    h2 {
    margin-bottom: 0;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    ul
    li::before {
    display: block;
    content: "\f111";
    font-size: 6px;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    ul
    li {
    padding-left: 15px;
    margin-bottom: 12px;
  }

  .page-template-tpl_intercalaire_programme .spe {
    font-size: 20px;
  }
  .page-template-tpl_intercalaire_programme .secteur {
    font-size: 14px;
  }
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    h2 {
    font-size: 20px;
  }
}

/* Pop up vidÃ©o */

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-popup.active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Add a background overlay */
  z-index: 1000; /* Ensure it appears above other content */
}

.video-popup .video-popup-content {
  position: relative;
  width: 90%; /* Adjust width for responsiveness */
  max-width: 800px;
  background-color: #000; /* Ensure contrast */
  padding: 20px;
  border-radius: 5px;
}

.video-popup .video-popup-content .video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1001; /* Ensure it appears above the iframe */
}

.video-popup-iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 16; /* Standard video aspect ratio */
  border-radius: 10px;
  overflow: hidden;
}

.modal-msbooking {
  display: none; /* Ensure the modal is visible */
  position: fixed;
  z-index: 1000; /* Ensure it appears above other elements */
  background-color: rgba(0, 0, 0, 0.4); /* Optional for overlay effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scrolling if needed */
  margin: auto;
}

.modal-msbooking-content {
  background-color: #fefefe;
  margin: auto;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #888;
  width: 90%; /* Use percentage for responsiveness */
  max-width: 600px; /* Maximum width */
  height: 90%;
}

.iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.close {
  color: #696868;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.card-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff; /* Card background color */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside the card */
  margin: 10px; /* Margin around the card */
  flex: 1;
}

.card-container .btn {
  align-self: center; /* Center button horizontally within the card */
}

/* .am-els__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */

@media (min-width: 500px) {
  .video-popup-iframe {
    aspect-ratio: 16 / 9; /* Standard video aspect ratio */
  }
}

.bwg-background-0 .bwg-container-0 {
  justify-content: flex-start !important;
  width: 100% !important;
  padding: 0 !important;
}

.bwg-item &gt; a {
  margin: 5px !important;
}

.bwg-thumb-description {
  margin: 5px 5px 10px 5px !important;
}

@media (max-width: 450px) {
  .bwg-container-0 .bwg-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (min-width: 728px) {
  body.page-template-tpl_intercalaire_programme-php
    #content
    .the_content
    .programme_table
    .programme_cell
    .programme_container
    h2 {
    height: 90px;
  }
}
</pre></body></html>