/* =========================
   BASE
========================= */

body{
  background: white;
  color: black;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

.elementor{
  display: flex;
  flex-direction: column;
  gap: 0vh;
}

.container{
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Sécurité anti-bullets / marges WP */
.main-nav ul,
.main-nav li,
.mobile_menu ul,
.mobile_menu li{
  margin: 0;
  padding: 0;
  list-style: none;
}

a{
  color: inherit;
}

/* =========================
   FONTS
========================= */

@font-face {
  font-family: "poppins_regular";
  src: url(../assets/fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: "poppins_bold";
  src: url(../assets/fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: "poppins_italic";
  src: url(../assets/fonts/Poppins-Italic.ttf);
}

@font-face {
  font-family: "Loos_regular";
  src: url(../assets/fonts/fonnts.com-Loos_Normal_Regular.otf);
}

@font-face {
  font-family: "Loos_bold";
  src: url(../assets/fonts/fonnts.com-Loos_Normal_Bold.otf);
}

p, a, li, ul, span{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6{
  font-family: "Loos_bold", sans-serif;
  font-weight: 700;
  margin: 0;
}

/* =========================
   (OPTION) Couleurs fallback
========================= */

:root{
  --color-primary: #4678B9;
  --color-secondary: #AAC1DF;
  --color-muted: #e9e2d8;

  --header-height: 60px;
  --header-gap: 24px;
  --nav-gap: 14px;

  --drop-gap: 16px;
  --drop-padding: 18px;
  --drop-radius: 36px;

  --flex-direction: none;
}

/* =========================
   HEADER – LAYOUT
========================= */

.site-header{
  position: relative;
  z-index: 999;
  background: white;
}

.header-inner{
  position: relative; /* ancre absolute pour .drop */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--header-gap);
}

/* =========================
   LOGO
========================= */

.logo{
  flex: 0 0 auto;
}

.logo a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
}

.logo-img{
  display: block;
  max-height: 64px;
  width: auto;
  height: auto;
}

/* =========================
   MENU TOP (WP)
========================= */

.main-nav{
  flex: 1 1 auto;
  display: flex;
  justify-content: right;
  position: relative;
  overflow: visible;
}

.nav-list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nav-gap);
  width: 90%;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.nav-list > li{
  position: relative;
}

.nav-list > li > a{
  font-family: "Loos_bold", sans-serif;
  font-size: 1.2rem;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  text-decoration: none;
  color: black;
  display: block;
  border: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

/* Rounded spécifiques */
.nav-list > li:nth-child(1) > a,
.nav-list > li:nth-child(5) > a,
.nav-list > li:nth-child(7) > a,
.nav-list > li:nth-child(8) > a{
  border-radius: 25px;
}

/* On cache les sub-menu WP (tu utilises tes mega panels) */
.nav-list .sub-menu{
  display: none;
}

/* =========================
   HOVER COULEURS
========================= */

.nav-list > li:nth-child(1) > a:hover{
  background-color: var(--primary7);
  color: white;
}

.nav-list > li:nth-child(2) > a:hover{
  background-color: var(--primary2);
  color: white;
}

.nav-list > li:nth-child(3) > a:hover{
  background-color: var(--secondary3);
  color: white;
}

.nav-list > li:nth-child(4) > a:hover{
  background-color: var(--muted2);
  color: var(--color-primary);
}

.nav-list > li:nth-child(5) > a:hover{
  background-color: var(--muted7);
  color: white;
  border-radius: 25px;
}

.nav-list > li:nth-child(6) > a:hover{
  background-color: var(--primary7);
  color: white;
}

.nav-list > li:nth-child(7) > a:hover{
  background-color: var(--primary2);
  color: white;
}

.nav-list > li:nth-child(8) > a:hover{
  background-color: var(--secondary3);
  color: white;
  border-radius: 25px;
}

/* =========================
   “ACTIVE” quand mega menu ouvert
========================= */

.nav-list > li.is-open > a{
  color: white;
}

.nav-list > li.is-open.is-lycee > a{
  background-color: var(--primary2);
}

.nav-list > li.is-open.is-formations > a{
  background-color: var(--secondary3);
}

.nav-list > li.is-open.is-vie > a{
  background-color: var(--muted2);
  color: var(--color-primary);
}

.nav-list > li.is-open.is-inscriptions > a{
  background-color: var(--primary7);
}

/* =========================
   MEGA PANELS (tes .drop_*)
========================= */

.drop{
  display: none;
  position: absolute;
  top: calc(85%);
  left: 50%;
  z-index: 1000;

  width: 90%;
  max-width: min(1100px, calc(100vw - 2rem));
  background-color: white;
  border-radius: var(--drop-radius);
  padding: var(--drop-padding);
  gap: var(--drop-gap);

  align-items: stretch;
  justify-content: space-around;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;

  transform: translateX(-50%) translateY(6px);
}

/* pont anti-flicker */
.drop::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

/* visible */
.drop.visible{
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* cartes */
.drop a{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 17vw;
  max-width: 240px;
  min-width: 180px;
  height: auto;

  padding: 1.25rem 1.25rem 1.25rem 0;
  gap: 10px;

  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* image wrapper */
.drop a .img-wrapper{
  position: relative;
  width: 80%;
}

.drop a .img-wrapper img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  height: auto;
}

/* flèche overlay */
.drop a .img-wrapper::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 56px;
  height: 56px;
  background-image: url("../img/fleche_actu.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  pointer-events: none;
}

.drop a .titre_menu{
  font-family: "Loos_bold", sans-serif !important;
  font-size: 1.15rem;
  margin: 0;
}

.drop a .desc_menu{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15rem;
}

/* bordures */
.drop_lycee{ border: solid 5px var(--primary2); }
.drop_formations{ border: solid 5px var(--secondary3); }
.drop_inscriptions{ border: solid 5px var(--primary7); }
.drop_viedeseleves{ border: solid 5px var(--muted2); }

/* vie des élèves : variantes */
.drop_viedeseleves a{
  width: 20vw;
  max-width: 280px;
}

.drop_viedeseleves a .img-wrapper{
  width: 60%;
}

.drop_viedeseleves a .img-wrapper img{
  border-radius: 30px;
}

/* =========================
   BURGER + MOBILE MENU
========================= */

.menu-burger{
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.menu-burger .ligne-burger{
  width: 2rem;
  height: 0.3rem;
  background-color: black;
  border-radius: 50px;
  display: block;
}

.mobile_menu{
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-primary);
  color: white;
  padding: 1.5rem 1rem;
  z-index: 999;
}

.mobile_menu.menu_active{
  display: block;
}

.mobile_menu_container{
  width: min(900px, calc(100% - 1rem));
  margin-inline: auto;
}

.mobile_menu_list{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.mobile_menu_list a{
  font-family: "Loos_bold", sans-serif !important;
  font-size: 1.35rem;
  padding: 0.9rem 0.75rem;
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 14px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.mobile_menu_list a:hover{
  background-color: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* =========================
   HOME HERO (DESKTOP)
========================= */

.home_hero{
  margin-bottom: 5vh;
  width: 90vw;
  height: 75vh;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.home_hero > .e-con-inner{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.home_hero .hero_video{
  width: 100%;
  height: 100%;
  position: relative;
}

.home_hero .elementor-background-video-container{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.home_hero video.elementor-background-video-hosted{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.home_hero .hero_video::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.home_hero .home_hero_txt,
.home_hero .home_hero_title{
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
}

.home_hero .home_hero_txt{
  position: absolute;
  top: 145px;
  left: 45px;
  max-width: 60%;
  font-size: 2rem;
}

.home_hero .home_hero_title{
  position: absolute;
  bottom: 70px;
  left: 45px;
  max-width: 40%;
}

.home_hero .home_hero_title .elementor-heading-title{
  color: #fff;
  margin: 0;
  text-align: left;
  width: min(50vw, 800px);
  font-size: clamp(3rem, 4vw, 5rem);
}

.home_hero .home_hero_img{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.home_hero .home_hero_img img{
  display: block;
  width: min(520px, 25vw);
  height: auto;
}

/* =========================
   HOME ACCÈS RAPIDE (DESKTOP)
========================= */

.home_acces_rapide{
  height: 55vh;
  margin-bottom: 5vh;
}

.home_acces_rapide .e-con-inner{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 55vh;
}

.home_acces_rapide_intro{
  width: 30%;
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home_acces_rapide_intro .elementor-widget-heading{
  display: flex;
  justify-content: center;
}

.home_acces_rapide_intro .elementor-widget-heading h2{
  font-size: 2.5rem;
  width: 60%;
  margin: 1vw;
}

.home_acces_rapide_intro .elementor-widget-text-editor{
  display: flex;
  justify-content: center;
}

.home_acces_rapide_intro p{
  font-size: 1rem;
  width: 60%;
  margin: 1vw;
}

.home_acces_rapide_boite{
  width: 30%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: solid 2px black;
  position: relative;
  overflow: hidden;
}

.acces_rapide_img1,
.acces_rapide_img2,
.acces_rapide_img3,
.acces_rapide_img4,
.acces_rapide_img5{
  height: 25vh;
  display: flex;
  justify-content: center;
  border-bottom: solid 2px black;
}

.acces_rapide_img1{ background-color: var(--color-secondary); }
.acces_rapide_img2{ background-color: var(--color-secondary); }
.acces_rapide_img3{ background-color: var(--color-muted); }
.acces_rapide_img4{ background-color: var(--color-muted); }
.acces_rapide_img5{ background-color: var(--primary5); }

.acces_rapide_img1 img,
.acces_rapide_img2 img,
.acces_rapide_img3 img,
.acces_rapide_img4 img,
.acces_rapide_img5 img{
  height: 25vh;
  width: auto;
}

.home_acces_rapide_boite h2{
  margin: 1.5vw;
  font-size: 1.5rem;
}

.home_acces_rapide_boite p{
  margin: 1.5vw;
  margin-top: 0;
  width: 70%;
}

.acces_rapide_fleche{
  width: fit-content;
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.acces_rapide_fleche img{
  width: 50px;
  height: auto;
}

/* =========================
   LAYOUT ÉQUIPE
========================= */

.presentation_equipe{
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.presentation_equipe .e-con-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "texte image"
    "texte equipe";
  row-gap: 10px;
}

/* BLOC TEXTE MR CHEVALIER */
.presentation_equipe .txt_mr_chevalier{
  grid-area: texte;
  width: 100%;
  text-align: center;
}

/* IMAGE MR CHEVALIER */
.presentation_equipe .image_mr_chevalier div{
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_mr_chevalier img{
  width: 40%;
  height: auto;
}

/* BLOC ÉQUIPE */
.presentation_equipe .bloc_vie_scolaire{
  grid-area: equipe;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 2vh;
}

/* CARTES ÉQUIPE */
.sandra_gohier,
.marie_renou{
  width: 80%;
  height: fit-content;
  border-radius: 30px;
  overflow: hidden;
  border: solid 2px black;
  display: flex;
  flex-direction: column;
  position: relative;
}

.marie_renou{
  margin-left: 20%;
}

/* TEXTE CARTES */
.nom_equipe{
  background-color: var(--primary5);
  color: white;
  padding-left: 2vh;
  padding-right: 1vh;
  padding-top: 1vh;
}

.nom_equipe p{ margin: 0; }

.equipe_fonction{
  background-color: var(--primary5);
  color: white;
  padding-left: 2vh;
  padding-right: 1vh;
  padding-bottom: 1vh;
}

.equipe_fonction p{ margin: 0; }

.txt_equipe{
  padding: 2vh;
}

/* IMAGES ABSOLUTES */
.img_sandra_gohier{
  height: 80px;
  width: 80px;
  position: absolute;
  top: -5%;
  right: 0%;
}

.img_sandra_gohier img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_marie_renou{
  height: 80px;
  width: 80px;
  position: absolute;
  bottom: 0%;
  right: 0%;
}

.img_marie_renou img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   ACTUS - CARDS
========================= */

.actus-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.actu-card{
  overflow: hidden;
  background: #fff;
}

.actu-card__media{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
}

.actu-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actu-card__img--placeholder{
  width: 100%;
  height: 100%;
  background: #e9e9e9;
}

.actu-card__body{
  padding-top: 28px;
}

.actu-card__title{
  margin: 0 0 14px 0;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 800;
}

.actu-card__title a{
  color: inherit;
  text-decoration: none;
}

.actu-card__date{
  margin: 0 0 22px 0;
  color: #bcbcbc;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.actu-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.05rem;
}

.actu-card__btn:hover{
  background: rgba(0,0,0,0.04);
}

/* =========================
   BLOC IMAGE + TEXTE
========================= */

.bloc_img_txt{
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.bloc_img_txt .e-con-inner{
  display: flex;
  align-items: stretch;
  gap: 64px;
  position: relative;
}

.bloc_img_txt_image{
  flex: 0 0 50%;
  height: 40vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bloc_img_txt_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bloc_img_txt_text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.bloc_img_txt_text a{
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 100px;
  background-color: var(--primary7);
}

.bloc_img_txt_text a span{
  color: white;
  font-size: 1rem;
}

/* =========================
   PARTENAIRES
========================= */

.partenaires{
  margin-top: 5vh;
  margin-bottom: 5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.partenaires img{
  width: 150px;
  height: auto;
  margin-right: 24px;
}

.partenaires img:hover{
  transform: translateY(-4px);
  transition: transform 160ms ease;
}

/* =========================
   EN SAVOIR PLUS
========================= */

.en_savoir_plus{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 40vh;
}

.en_savoir_plus_haut{
  display: flex;
  justify-content: space-between;
  width: 90%;
  height: 25vh;
  background-color: var(--secondary3);
  padding: 3vw;
  border-radius: 30px;
  position: relative;
}

.en_savoir_plus_haut .elementor-element-a796161{
  width: 60%;
}

.en_savoir_plus_haut h2,
.en_savoir_plus_haut .uk-text-center{
  color: white;
  margin: 0;
  text-align: center;
}

.grosse_beige{
  width: 60px;
  height: auto;
  position: absolute;
  top: 5%;
  left: 5%;
}

.grosse_beige img{
  width: 100%;
  height: auto;
}

.grosse_marron{
  width: 60px;
  height: auto;
  position: absolute;
  bottom: 5%;
  right: 5%;
}

.grosse_marron img{
  width: 100%;
  height: auto;
}

.petite_beige{
  width: 30px;
  height: auto;
  position: absolute;
  top: 10%;
  right: 5%;
}

.petite_beige img{
  width: 100%;
  height: auto;
}

.petite_marron{
  width: 30px;
  height: auto;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.petite_marron img{
  width: 100%;
  height: auto;
}

.en_savoir_plus_bas{
  display: flex;
  width: 50%;
  padding: clamp(1rem, 2vw, 2.5rem);
  border-radius: 30px;
  background-color: white;
  border: solid 5px var(--muted2);
  position: absolute;
  bottom: -2rem;
}

.en_savoir_plus_bas p{
  text-align: center;
}

/* =========================
   HERO PHOTO
========================= */

.hero_photo .e-con-inner{ 
  height: 45vh;
  width: 100%;
  background-color: var(--primary3);
  display: flex;
  justify-content: right;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 5vh;
}

.hero_photo .e-con-inner img{
  height: 45vh;
  width: auto;
}

.hero_photo .e-con-inner .hero_img_absolute{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
}

.hero_photo .e-con-inner .hero_img_absolute img{
  height: 15vh;
}

.hero_photo .e-con-inner h1,
.hero_photo .e-con-inner h2{
  width: 30vw;
  margin-right: 3vw;
  margin-left: 5vw;
  margin-top: 17vh;
  color: white;
}

/* =========================
   NAVIGATION PAGES
========================= */

.navigation_pages .e-con-inner{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 20vh;
  margin-bottom: 10vh;
}

.navigation_pages .e-con-inner .btn_nav{
  cursor: pointer;
  width: 30%;
  height: 15vh;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  justify-content: center;
  align-items: center;
  border: solid 3px var(--primary3);
  border-radius: 25px;
  padding: 20px;
}

.navigation_pages .e-con-inner .btn_nav img{
  width: 100px;
  max-width: 100px;
  padding: 20px;
  border: solid 3px var(--primary3);
  border-radius: 25px;
}

.navigation_pages .e-con-inner .btn_nav h1,
.navigation_pages .e-con-inner .btn_nav span{
  font-size: 1.5rem;
  font-family: "Loos_bold", sans-serif;
  font-weight: 700;
  margin: 0;
}

.nav_a_propos1,
.nav_equipe2,
.nav_pastorale3{
  background-color: var(--primary3);
  color: white;
}

.nav_a_propos1 img,
.nav_equipe2 img,
.nav_pastorale3 img{
  border: solid 3px white !important;
}

/* =========================
   FRISE CHRONO
========================= */

.frise_chrono .e-con-inner{
  display: flex;
  justify-content: space-between;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.frise_chrono .e-con-inner p{
  border-left: solid 1px black;
  padding-left: 15px;
  font-size: 0.9rem;
}

.frise_chrono .e-con-inner .bloc_frise_bleu{
  width: 10vw;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.frise_chrono .e-con-inner .bloc_frise_bleu .histoire_date p{
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--color-primary);
  border-left: none;
}

.frise_chrono .e-con-inner .bloc_frise_bleu .elementor-widget-image{
  display: flex;
  justify-content: center;
}

.frise_chrono .e-con-inner .bloc_frise_beige{
  width: 10vw;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.frise_chrono .e-con-inner .bloc_frise_beige .histoire_date_beige p{
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--muted4);
  border-left: none !important;
}

.frise_chrono .e-con-inner .bloc_frise_beige .elementor-widget-image{
  display: flex;
  justify-content: center;
}

/* =========================
   RÉSULTATS BAC
========================= */

.resultats_bac .e-con-inner{
  display: flex;
  justify-content: space-between;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.resultats_bac .e-con-inner .resultat_bac_titre{
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 25vh;
}

.resultats_bac .e-con-inner .resultats_brevet{
  width: 15vw;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 25vh;
  padding: clamp(0.5rem, 1vw, 1.5rem);
  border: solid 1px var(--color-primary);
  border-radius: 25px;
}

.resultats_bac .e-con-inner .resultats_brevet img{
  width: 40px;
  height: auto;
}

.resultats_bac .e-con-inner .resultats_brevet .elementor-widget-heading{
  display: flex;
  justify-content: center;
  align-items: center;
}

.resultats_bac .e-con-inner .resultats_brevet .elementor-widget-heading h3{
  font-size: 1.1rem;
  font-weight: bold;
  width: 70%;
  text-align: center;
}

.resultats_bac .e-con-inner .resultats_avant{
  color: #bcbcbc;
}

/* =========================
   BLOC TEXTE + IMAGE
========================= */

.bloc_txt_img{
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.bloc_txt_img .e-con-inner{
  display: flex;
  align-items: stretch;
  gap: 64px;
  position: relative;
}

.bloc_txt_img_image{
  flex: 0 0 50%;
  height: 40vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bloc_txt_img_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bloc_txt_img_text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.bloc_txt_img_text a{
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 100px;
  background-color: var(--primary7);
}

.bloc_txt_img_text a span{
  color: white;
  font-size: 1rem;
}

/* =========================
   RÔLES ESSENTIELS
========================= */

.role_essentiel .e-con-inner{
  margin-top: 10vh;
  display: flex;
  justify-content: space-between;
}

.role_essentiel .e-con-inner .roles_box{
  width: 20vw;
  max-width: 380px;
  height: 40vh;
  position: relative;
}

.role_essentiel .e-con-inner .roles_box .roles_images{
  height: 50%;
  position: relative;
}

.role_essentiel .e-con-inner .roles_box .roles_images .roles_image_fond{
  display: flex;
  align-items: flex-end;
  position: absolute;
  z-index: -1;
  bottom: 0;
  border: solid 1px var(--color-primary);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
}

.role_essentiel .e-con-inner .roles_box .roles_images .roles_portraits{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.role_essentiel .e-con-inner .roles_box .roles_images .roles_portraits img{
  width: 85%;
}

.role_essentiel .e-con-inner .roles_box .roles_infos{
  height: 35%;
  border: solid 1px var(--color-primary);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  margin: 0;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.role_essentiel .e-con-inner .roles_box .roles_infos .role{
  font-family: "Loos_bold", sans-serif;
}

.role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles{
  padding: 0.5vw;
  border: solid 1px black;
  border-radius: 100px;
}

/* =========================
   PARTENAIRES ROLES
========================= */

.partenaire_roles .e-con-inner{
  display: flex;
  flex-direction: column;
  row-gap: 6vh;
}

.partenaire_roles .e-con-inner .partenaire_ligne{
  display: flex;
  justify-content: space-between;
}

.partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire{
  display: flex;
  justify-content: space-between;
  width: 48%;
  height: 25vh;
  gap: clamp(1rem, 3vw, 3rem);
  border: solid 2px var(--color-primary);
  border-radius: 25px;
  padding: clamp(1rem, 2vw, 2.5rem);
}

.partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire .box_partenaire_image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire .text_bloc_partenaire{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

/* =========================
   PASTORALE AXES
========================= */

.pastorale_axes .e-con-inner{
  margin-top: 5vh;
  margin-bottom: 5vh;
  display: flex;
  justify-content: space-between;
}

.pastorale_axes .e-con-inner .pastorale_box{
  width: 25vw;
  max-width: 450px;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: solid 2px black;
  border-radius: 25px;
}

.pastorale_axes .e-con-inner .pastorale_box .pastorale_txt{
  width: 70%;
  text-align: center;
}

.restauration .e-con-inner{
    display: flex;
    flex-direction: row;
  }

  .restauration_infos{
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
    margin-top: 4vh;
    width: 45%;
  }

  .restauration_infos_box{
    display: flex;
    width: 100%;
    justify-content: space-around;
    border: solid black 1px;
    border-radius: 25px;
    padding: 2vw;
  }
  
  .restauration_infos_box_img{
    width: 30%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_titre{
    width: 30%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_titre h3{
    font-size: 1rem;
  }

  .restauration_infos_texte{
    width: 40%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_texte p{
    font-size: 0.8rem;
  }

  .internat .e-con-inner{
    margin-top: 5vh;
    display: flex;
    justify-content: space-between;
  }

  .internat_carrousel{
    width: 48%;
  }

  .internat_txt{
    width: 48%;
  }

  .CDI .e-con-inner{
    display: flex;
  }

  .cdi_infos{
    display: flex;
    flex-direction: column;
    margin-top: 4vh;
    row-gap: 2vh;
    width: 48%;
  }

  .cdi_infos_box{
    display: flex;
    justify-content: space-around;
  }

  .cdi_infos_box_img{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cdi_infos_box_txt{
    width: 65%;
    display: flex;
    align-items: center;
  }

  .cdi_infos_box_txt p{
    font-size: 1rem;
  }

  .cdi_img{
    width: 48%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .reglements .e-con-inner{
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 10vh;
  }

  .reglements_haut{
    margin-top: 5vh;
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 25vh;
    background-color: var(--muted2);
    padding: 3vw;
    border-radius: 30px;
    position: relative;
    color: black;
    text-align: center;
  }

  .reglement_texte{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reglement_titre{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vh;
  }

  .reglements_haut p{
    width: 70%;
  }

  .reglements_haut h2{
    width: 70%;
  }

  .reglement_bas{
    display: flex;
    width: 50%;
    position: absolute;
    bottom: -30%;
    left: 25%;
    background-color: white;
    border: solid 3px var(--muted7);
    border-radius: 25px;
  }

  .reglement_bas_box{
    padding: 1vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .reglement_bas_box1{
    border-right: solid 3px var(--muted7);
  }

  .reglement_bas_box3{
    border-left: solid 3px var(--muted7);
  }

  .reglement_bas_box_img{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reglement_bas_box_txt{
    width: 60%;
    font-family: 'Loos_bold';
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reglement_bas_box_txt p{
    margin: 0;
  }

/* =====================================================
   RESPONSIVE TABLETTE
===================================================== */

/* =========================
   TABLETTE ≤1250px
========================= */

@media (max-width: 1200px){

  .home_hero{
    width: 90vw;
    height: 70vh;
  }

  .home_hero .home_hero_txt{
    top: 100px;
    left: 35px;
    font-size: 1.6rem;
    max-width: 70%;
  }

  .home_hero .home_hero_title{
    bottom: 50px;
    left: 35px;
    max-width: 60%;
  }

  .home_hero .home_hero_title .elementor-heading-title{
    font-size: 3.8rem;
    width: auto;
    line-height: 1.1;
  }

  .home_hero .home_hero_img img{
    width: min(420px, 30vw);
  }

  .main-nav{
    display: none;
  }

  .menu-burger{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .drop{
    display: none;
  }

  .actus-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .actu-card__title{
    font-size: 1.9rem;
  }

  .home_acces_rapide {
    height: 50vh;
    margin-bottom: 5vh;
  }

  .home_acces_rapide .e-con-inner {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      height: auto;
  }

  .home_acces_rapide_boite {
    width: 30%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    border: solid 2px black;
    position: relative;
    overflow: hidden;
  }

  .presentation_equipe .e-con-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "texte image"
        "texte equipe";
    column-gap: 3vw;
  }

  .sandra_gohier, .marie_renou {
    width: 100%;
    height: fit-content;
    border-radius: 30px;
    overflow: hidden;
    border: solid 2px black;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .sandra_gohier p, .marie_renou p{
    font-size: 0.9rem;
  }

  .marie_renou {
    margin-left: 0%;
  }

  .bloc_img_txt_image {
    flex: 0 0 50%;
    height: 30vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .en_savoir_plus_bas {
    display: flex;
    width: 50%;
    padding: 2vw;
    border-radius: 30px;
    background-color: white;
    border: solid 5px var(--muted2);
    position: absolute;
    bottom: -10%;
  }

  .navigation_pages .e-con-inner .btn_nav {
    cursor: pointer;
    width: 32%;
    height: 16vh;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    padding: 10px;
  }

  .navigation_pages .e-con-inner .btn_nav p{
    font-size: 0.8rem;
    margin-top: 10px;
  }

  .frise_chrono .e-con-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
    margin-bottom: 10vh;
    flex-wrap: wrap;
    row-gap: 6vh;
  }

  .frise_chrono .e-con-inner .bloc_frise_bleu {
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1vh;
    padding-right: 1vw;
  }

  .frise_chrono .e-con-inner .bloc_frise_beige {
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1vh;
    padding-right: 1vw;
  }

  .resultats_bac .e-con-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
    margin-bottom: 10vh;
    flex-wrap: wrap;
    row-gap: 2vh;
  }

  .resultats_bac .e-con-inner .resultat_bac_titre {
    width: 51vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 25vh;
  }

  .resultats_bac .e-con-inner .resultats_brevet {
    width: 29vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 25vh;
    padding: 1vw;
    border: solid 1px var(--color-primary);
    border-radius: 25px;
  }

  .home_acces_rapide_boite p {
    margin: 1.5vw;
    margin-top: 0;
    width: 70%;
    font-size: 0.9rem;
  } 

  .role_essentiel .e-con-inner {
    margin-top: 10vh;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5vh;
  }

  .role_essentiel .e-con-inner .roles_box {
    width: 20vw;
    height: 38vh;
    position: relative;
  }

  .role_essentiel .e-con-inner .roles_box .roles_images {
    height: 35%;
    position: relative;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos {
    height: 65%;
    border: solid 1px var(--color-primary);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    margin: 0;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .role {
    font-family: "Loos_bold", sans-serif;
    text-align: center;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles {
    padding: 1.5vw;
    border: solid 1px black;
    border-radius: 100px;
    font-size: 0.6rem;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles a{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100%;
    display: flex;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles span{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100%;
    display: flex;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire {
    display: flex;
    justify-content: space-between;
    width: 48%;
    height: 28vh;
    gap: 3vw;
    border: solid 2px var(--color-primary);
    border-radius: 25px;
    padding: 2vw;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire h3{
    font-size: 1.5rem;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire p{
    font-size: 0.9rem;
  }

  .pastorale_axes .e-con-inner {
    margin-top: 5vh;
    margin-bottom: 5vh;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 2vh;
  }

  .pastorale_axes .e-con-inner .pastorale_box {
    width: 100%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: solid 2px black;
    border-radius: 25px;
  }

}

/* =====================================================
   RESPONSIVE TÉLÉPHONE
===================================================== */

/* =========================
   MOBILE ≤768px
========================= */

@media (max-width: 768px){

  p{
    font-size: 0.9rem;
  }

  .home_hero{
    width: calc(100vw - 60px);
    height: 56vh;
    border-radius: 22px;
  }

  .home_hero .home_hero_txt{
    top: 18px;
    left: 18px;
    max-width: 85%;
    font-size: 1.25rem;
  }

  .home_hero .home_hero_title{
    top: 48px;
    left: 18px;
    max-width: 90%;
    bottom: auto;
  }

  .home_hero .home_hero_title .elementor-heading-title{
    font-size: 3rem;
  }

  .home_hero .home_hero_img img{
    width: min(360px, 55vw);
  }

  .home_acces_rapide .e-con-inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1vh;
    justify-content: space-between;
    align-items: center;
    height: auto;
  }

  .home_acces_rapide_intro{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home_acces_rapide_intro h2{
    text-align: center;
  }

  .home_acces_rapide_intro p{
    text-align: center;
  }

  .home_acces_rapide_l1{
    height: auto;
  }

  .home_acces_rapide_l2{
    height: auto;
  }

  .home_acces_rapide_boite{
    width: 48%;
    height: 50vh;
  }

  .last_boite{
    width: 100%;
    height: 35vh;
  }

  .acces_rapide_img1 img,
  .acces_rapide_img2 img,
  .acces_rapide_img3 img,
  .acces_rapide_img4 img,
  .acces_rapide_img5 img{
    height: 17vh;
    margin-top: 2vh;
  }

  .presentation_equipe .e-con-inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "texte"
      "equipe";
  }

  .actus-grid{
    grid-template-columns: 1fr;
  }

  .actu-card__body{
    padding: 22px;
  }

  .actu-card__title{
    font-size: 2rem;
  }

  /* ⚠️ Tu avais un h2 global centré en mobile : je le garde tel quel */
  h2{
    text-align: center;
  }

  .bloc_img_txt .e-con-inner{
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0;
  }

  .bloc_img_txt_text{
    all: unset;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 30vh;
    align-items: center;
    text-align: center;
  }

  .en_savoir_plus{
    height: 50vh;
  }

  .en_savoir_plus_bas{
    display: flex;
    width: 50%;
    padding: 2vw;
    border-radius: 30px;
    background-color: white;
    border: solid 5px var(--muted2);
    position: absolute;
    bottom: 10%;
  }

  .en_savoir_plus_bas p{
    text-align: center;
  }

  .en_savoir_plus_bas .elementor-widget-image{
    display: none;
  }

  .bloc_txt_img .e-con-inner{
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 32px;
  }

  .navigation_pages .e-con-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: auto;
    margin-bottom: 10vh;
    row-gap: 1vh;
  }

  .navigation_pages .e-con-inner .btn_nav {
        cursor: pointer;
        width: 100%;
        height: 12vh;
        display: flex;
        flex-direction: row;
        gap: 2vw;
        justify-content: left;
        align-items: center;
        border-radius: 25px;
        padding: 10px;
  }

    .navigation_pages .e-con-inner .btn_nav img {
    width: 80px;
    max-width: 100px;
    padding: 10px;
    border: solid 2px var(--primary3);
    border-radius: 25px;
  }

  .nav_a_propos1 img,
  .nav_equipe2 img,
  .nav_pastorale3 img{
    border: solid 2px white !important;
  }

  .hero_photo .e-con-inner img {
    height: 45vh;
    width: auto;
    display: none;
  }

  .hero_photo .e-con-inner .hero_img_absolute img {
    height: 12vh;
    display: flex;
}

  .hero_photo .e-con-inner {
    height: 40vh;
    width: 100%;
    background-color: var(--primary3);
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 5vh;
  }

  .hero_photo .e-con-inner h1, .hero_photo .e-con-inner h2 {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 10vh;
    color: white;
    text-align: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .resultats_bac .e-con-inner .resultats_brevet .elementor-widget-heading h3 {
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
  }

  .frise_chrono .e-con-inner .bloc_frise_beige {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1vh;
    padding-right: 1vw;
  }

  .frise_chrono .e-con-inner .bloc_frise_bleu {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1vh;
    padding-right: 1vw;
  }

  .resultats_bac .e-con-inner .resultats_brevet {
    width: 43vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 25vh;
    padding: 1vw;
    border: solid 1px var(--color-primary);
    border-radius: 25px;
  }

  .resultats_bac .e-con-inner .resultat_bac_titre {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 25vh;
        text-align: center;
  }

  .home_acces_rapide_boite {
    width: 30%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    border: solid 2px black;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    padding-bottom: 2vh;
  }

  .home_acces_rapide_boite p {
    margin: 1.5vw;
    margin-top: 0;
    font-size: 0.8rem;
  }

  .acces_rapide_fleche img {
    width: 50px;
    height: auto;
    display: none;
  }
  .en_savoir_plus_haut {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 40vh;
    background-color: var(--secondary3);
    padding: 3vw;
    border-radius: 30px;
    position: relative;
  }

  .en_savoir_plus_haut .elementor-element-a796161 {
    width: 80%;
    margin-top: 10vh;
  }

  .en_savoir_plus_bas {
        display: flex;
        width: 77%;
        padding: 2vw;
        border-radius: 30px;
        background-color: white;
        border: solid 5px var(--muted2);
        position: absolute;
        bottom: 0%;
  }

  .role_essentiel .e-con-inner {
    margin-top: 0vh;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5vh;
  }

  .role_essentiel .e-con-inner .roles_box {
    width: 40vw;
    height: 35vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .role_essentiel .e-con-inner .roles_box .roles_images {
    height: 50%;
    position: relative;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos {
    height: 60%;
    border: solid 1px var(--color-primary);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    margin: 0;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .role {
    font-family: "Loos_bold", sans-serif;
    text-align: center;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles {
    padding: 1.5vw;
    border: solid 1px black;
    border-radius: 100px;
    font-size: 0.7rem;
  }

  .role_essentiel .e-con-inner .roles_box .roles_infos .btn_roles a{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100%;
    display: flex;
  }

  .partenaire_roles .e-con-inner {
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 2vh;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 25vh;
    gap: 3vw;
    border: solid 2px var(--color-primary);
    border-radius: 25px;
    padding: 2vw;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire h3{
    font-size: 1.5rem;
  }

  .partenaire_roles .e-con-inner .partenaire_ligne .box_partenaire p{
    font-size: 0.9rem;
  }

  .pastorale_axes .e-con-inner {
    margin-top: 5vh;
    margin-bottom: 5vh;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 2vh;
  }

  .pastorale_axes .e-con-inner .pastorale_box {
    width: 100%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: solid 2px black;
    border-radius: 25px;
  }

  .restauration{
    display: flex;
    flex-direction: column;
  }

  .restauration_infos{
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
    margin-top: 4vh;
  }

  .restauration_infos_box{
    display: flex;
    width: 100%;
    justify-content: space-around;
    border: solid black 1px;
    border-radius: 25px;
    padding: 2vw;
  }
  
  .restauration_infos_box_img{
    width: 30%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_titre{
    width: 30%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_titre h3{
    font-size: 1rem;
  }

  .restauration_infos_texte{
    width: 40%;
    display: flex;
    align-items: center;
  }

  .restauration_infos_texte p{
    font-size: 0.8rem;
  }

  .cdi_infos_box{
    display: flex;
    width: 100%;
    justify-content: space-around;
    row-gap: 2vh;
    margin-top: 4vh;
    margin-bottom: 4vh;
  }

  .cdi_infos_box_img{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cdi_infos_box_txt{
    width: 65%;
    display: flex;
    align-items: center;
  }

  .cdi_infos_box_txt p{
    font-size: 0.8rem;
  }

  
}



/* =========================
   MOBILE ≤520px
========================= */

@media (max-width: 520px){
  :root{
    --header-height: 72px;
  }

  .logo-img{
    max-height: 54px;
  }

  .mobile_menu_list a{
    font-size: 1.2rem;
  }
}

/* =====================================================
   RESPONSIVE GRAND ÉCRAN ≥1400px
===================================================== */

@media (min-width: 1400px){

  .home_hero .home_hero_txt{
    font-size: 2.25rem;
    top: 160px;
    left: 55px;
  }

  .home_hero .home_hero_title{
    bottom: 80px;
    left: 55px;
  }

  .nav-list{
    width: 80%;
  }

  .drop a{
    width: 14vw;
  }

  .home_acces_rapide_boite h2{
    font-size: 1.6rem;
  }
}