/* Définition des polices personnalisées */
/* -------------------------------------- */
@font-face {
    font-family: 'MaPolice1';
    src: url('./fonts/open-sans/OpenSans-Regular-webfont.woff2') format("woff2"), 
         url('./fonts/open-sans/OpenSans-Regular.woff') format("woff"),
	     url('./fonts/open-sans/OpenSans-Regular.ttf') format("truetype");
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}

@font-face {
    font-family: 'MaPolice2';
    src: url('./fonts/Lato2OFL/Lato-Medium.woff2') format("woff2"),
         url('./fonts/Lato2OFL/Lato-Medium.ttf');
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}
@font-face {
    font-family: 'MaPolice2-Gras';
    src: url('./fonts/Lato2OFL/Lato-Bold.woff2') format("woff2"),
         url('./fonts/Lato2OFL/Lato-Bold.woff') format("woff"),
	     url('./fonts/Lato2OFL/Lato-Bold.ttf') format("truetype");
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}

@font-face {
    font-family: 'Gabriola';
    src: url('./fonts/gabriola-font/Gabriola.woff2') format("woff2"),
         url('./fonts/gabriola-font/Gabriola.woff') format("woff"),
	     url('./fonts/gabriola-font/Gabriola.ttf') format("truetype");
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}

@font-face {
    font-family: 'SocialFont';
    src: url('./fonts/social_media_circled/Social Media Circled.otf');
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}

/* 
@font-face {
    font-family: 'LogoFont';
    src: url('./fonts/Girassol/Girassol-Regular.woff2') format("woff2"),
         url('./fonts/Girassol/Girassol-Regular.woff') format("woff"),
         url('./fonts/Girassol/Girassol-Regular.ttf');
	font-display: swap;
}
*/

@font-face {
    font-family: 'BaseLine';
    src: url('./fonts/Amsterdam_Four/amsterdam-four.ttf');
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}

/*
@font-face {
    font-family: 'SenFont';
    src: url('./fonts/Sen/Sen-SemiBold.ttf');
	font-display: swap;
}

@font-face {
    font-family: 'test';
    src: url('./fonts/Anton/Anton-Regular.ttf') format("truetype");
	font-display: swap;
}

@font-face {
    font-family: 'test2';
    src: url('./fonts/LibreBaskerville/LibreBaskerville-Regular.ttf') format("truetype");
	font-display: swap;
}

@font-face {
    font-family: 'test_ok';
    src: url('./fonts/Inter/static/Inter_18pt-Medium.ttf') format("truetype");
	font-display: swap;
}

@font-face {
    font-family: 'test_ok_ss';
    src: url('./fonts/Inter/static/Inter_18pt-ExtraLight.ttf') format("truetype");
	font-display: swap;
}

@font-face {
    font-family: 'test3';
    src: url('./fonts/PlayfairDisplay/PlayfairDisplay.ttf') format("truetype");
	font-display: swap;
}
*/

@font-face {
    font-family: 'Menu_title';
    src: url('./fonts/Georgia/georgia.woff2') format("woff2"),
        url('./fonts/Georgia/georgia.woff') format("woff"),
        url('./fonts/Georgia/georgia.ttf') format("truetype");
	font-display: swap; /* Utilisation de 'swap' pour afficher rapidement le texte */
}


/* -------------------------------------- */
/* Définition des variables */
/* -------------------------------------- */
:root {
  --background-main: #FFFFFF; /*FEFBF6*/
  --background-second: #FFFCFA; /*#FDF6F0 ou F1E3DD ou F8F8F8 ou #FFFCFA*/
  --background-third: #3c5176; /*2A303B ou 3c5176*/
  --color-highlight: rgb(218, 81, 79); /*#DA514F ou C60606 ou #D7B65D*/
  --gap-size: 15px;
  --text-color : #2A303B;
}


/* -------------------------------------- */

body{
  overflow-x:hidden;
  background-color:  var(--background-main);
  color:#2A303B; /*2A303B */
}


/* -------------------------------------- */
/* Définition des colonnes */
/* -------------------------------------- */
.container_12 {
  display: -ms-grid;
  display: grid;
  width:100%;
  margin: auto;
  -ms-grid-columns: 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr;
  /* -ms-grid-columns: (1fr, var(--gap-size))[12]; */
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--gap-size);
  grid-auto-rows: minmax(30px, auto);
}
/* -------------------------------------- */
.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px;
  background-color:orange;
}

/* -------------------------------------- */
/* ------------- DIVERS ----------------- */
/* -------------------------------------- */

/* POLICE D'ECRITURE PAR DEFAUT SUR LES PARAGRAPHES INCLUS DANS LES DIV */

div p{
	font-family:MaPolice1, sans-serif;
	font-size: 1rem;
	line-height: 1.7rem;
	text-align : justify;
}


h1{
  font-family:Gabriola, MaPolice2-Gras, sans-serif;
  font-weight:bold;
  font-size:3.5rem;
  letter-spacing: 3px;
  text-align:center;
  
  margin:0 0 0 0;
  /*margin-top:20px;*/
  border-bottom:1px solid var(--color-highlight);
  line-height: 50px;
}

/* POLICE D'ECRITURE PAR DEFAUT SUR LES TITRES h2 */
h2{
	font-family:MaPolice2-Gras, sans-serif;
	border-bottom: 2px solid var(--color-highlight);
	font-size: 1.8rem;
/*    margin:10px 0 0 0;*/
}

.h2_sous_h1{
  font-family:MaPolice2-Gras, sans-serif;
  font-weight:bold;
  font-size:1.8rem;
  text-align:center;
  margin:10px 0 0 0;
  border: none;
}

.reduced-size{
   font-size:1.4rem; 
}


/* POLICE D'ECRITURE PAR DEFAUT SUR LES TITRES h3 */
h3{
	font-family:MaPolice2-Gras, sans-serif;
	text-align:left;
	text-decoration: underline;
	font-size : 1.5rem;
	color:#2A303B;
}

a{
	color:#2A303B;
}

.lien_div{
    text-decoration: none;
}

.highlight{
	color: var(--color-highlight);
    font-weight: bold;
}
.grey_color{
	color: grey;
}

.black_color{
	color: black;
    
}

/* Call To Action */
/* -------------------------------------- */
.ctaButton {
	background-color: var(--color-highlight); /* Rouge */
	/*border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;*/
	-moz-box-shadow: 0 0 5px 0 black;
	-webkit-box-shadow: 0 0 5px 0 black;
	box-shadow: 0 0 5px 0 black;
	display: inline-block;
	font-family: tahoma,arial,helvetica,sans-serif;
	font-size: 1.3rem;
	border: 1px solid white;
	color: white; /* Blanc */
	/*font-weight: bold;*/
	padding: 8px 12px;
	text-decoration: none;
	text-transform: uppercase;
	text-align:center;
    width:auto;
	margin : auto;
	margin-bottom:0;
    transition: background-color 0.3s ease;
}

.left_align{
    text-align:left;
}

.width50{
        width:50%;
    }
.width100{
        width:100%;
    }

.ctaButton:hover {
	/* animation: jello 1s ease alternate; */
	/*color: var(--color-highlight);  */
    background-color : #a91d1b;
    border: 1px solid #a91d1b;
	/*background-color: white; */
}




/* Définition des sections de la page */
/* -------------------------------------- */
/* ------------- HEADER ----------------- */
/* -------------------------------------- */

#header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr;
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  -ms-grid-row: 1;
    grid-row: 1;
  grid-column: 1 / 13;
   margin-top:10px;
 }

.logo{
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	-ms-grid-row: 1;
    grid-row: 1;
	grid-column: 1 / 3;
	grid-row-start: 1;
	grid-row-end: 2;
}

.logo img{
  height:auto;
  width:100%;
  position:relative;
  z-index:2;
  min-width: 70px;
}

.baseline {
	-ms-grid-column: 3;
	-ms-grid-column-span: 8;
	-ms-grid-row: 1;
    grid-row: 1;
	grid-column: 3 / 11;
	grid-row-start: 1;
	grid-row-end: 2;
	font-family:BaseLine, sans-serif;
	font-weight:bold;
	font-size:4rem;
	color : #2A303B;
    letter-spacing: 5px;
	margin:auto;
	vertical-align:middle;
	text-align:center;
	display: table;
	width:100%;
	line-height: 5rem;
}

.baseline span:nth-child(0) {
/* Aligne le texte verticalement au milieu */
vertical-align:middle;
display: table-cell;
}



.reseaux{
	-ms-grid-column: 11;
	-ms-grid-column-span: 2;
	-ms-grid-row: 1;
	grid-column: 11 / 13;
	grid-row-start: 1;
	grid-row-end: 2;
    grid-row: 1;
	text-align : right;
	letter-spacing: 0.1rem;
}

.reseaux > a{
	font-family:SocialFont, sans-serif;
	color : #2A303B;
	font-size:2.5rem;
	text-decoration: none;
}
.reseaux > a:hover{
	color : var(--color-highlight);
}

/* .phrase_intro p { */
  /* font-family:MaPolice2-Gras, sans-serif; */
  /* font-weight:bold; */
  /* font-size:2rem; */
  /* letter-spacing: 3px; */
/* } */

/* .wrapper_1.phrase_intro p{ */
  /* text-align:center; */
  /* color:#2A303B; */
/* } */

.wrapper_2 h2{
	text-align:left;
	border-bottom: none;
	color:var(--color-highlight);
	position: absolute;
	opacity: 0;
	overflow: hidden;
	-webkit-animation: rotateDefilement 8.75s ease-in 0s infinite;
	animation: rotateDefilement 8.75s ease-in 0s infinite;
}

.wrapper_2 h2:nth-child(2) {
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
}

.wrapper_2 h2:nth-child(3) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
}

.wrapper_2 h2:nth-child(4) {
    -webkit-animation-delay: 3.75s;
            animation-delay: 3.75s;
}

.wrapper_2 h2:nth-child(5) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

.wrapper_2 h2:nth-child(6) {
    -webkit-animation-delay: 6.25s;
            animation-delay: 6.25s;
}

.wrapper_2 h2:nth-child(7) {
    -webkit-animation-delay: 7.5s;
            animation-delay: 7.5s;
}


@-webkit-keyframes rotateDefilement {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    10%  { opacity: 1; }
    15%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes rotateDefilement {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    10%  { opacity: 1; }
    15%  { opacity: 0; }
    100% { opacity: 0; }
}


/*************MENU BURGER*******************/
*{box-sizing: border-box}

#menu_hamburger{
	display:none;
	position:absolute;
	
}

#menu_hamburger+label{
/* position:absolute; */
/* right:150px; */
cursor: pointer;
/* margin:3rem auto;	 */
width:50px;
grid-template-rows: repeat(3,7px);
row-gap:.4rem;
visibility:hidden;
display:none;
margin: 10px 3px auto auto;
/* margin-right: -100px; */
	}

	
#menu_hamburger+label span{
background-color: #2A303B;
border-radius: 10px;
}
	
#menu_hamburger:checked+label span{
grid-area: 2/1;
}

#menu_hamburger:checked+label span:nth-child(2){
opacity: 0;
}

#menu_hamburger:checked+label span:first-of-type{
transform:rotate(45deg)
}
			
#menu_hamburger:checked+label span:last-of-type{
transform:rotate(-45deg);
}	
/*************MENU BURGER*******************/


/* -------------------------------------- */
/* ------------- BANDEAU----------------- */
/* -------------------------------------- */
.bandeau_container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  -ms-grid-row: 2;
  grid-column: 1 / 13;
  grid-row: 2;
  height: 450px; /* Pour definir la hauteur de l'image */
  position:relative;
  z-index:0;
    overflow: visible;
margin-bottom: 170px; /* un petit espace en dessous aussi */
}

.bandeau {
    position:relative;
  border-radius: 0.4rem 0.5rem 0.5rem 0.5rem;
  /* grid-column: 1 / 13; */
  overflow: hidden; /* Pour rogner le haut de l'image */
  height: 100%; /* Pour definir la hauteur de l'image */
  /* border:solid green; */
}

.bandeau img{
	height:300px;
	max-width: 100%;
	/* margin: -100px 0 0 0; Pour rogner le haut de l'image */
	opacity:0.5;
    object-fit: cover;
    margin:0;
}

.container-bandeau-texte{
  display: flex;
  width: 100%; 
    position: absolute;
  padding:10px;
    top: 85%;
  left: 70%;
  transform: translate(-70%, -85%); /* centre parfaitement au milieu */
  justify-content: center;
  align-items: center; /* aligne le bloc en bas du bandeau */
  max-width: 1200px;
  bottom: 20px; /* distance depuis le bas de l'image */
  gap: 2%; /* espace entre texte et image */
  z-index: 2;
}

/* Texte au-dessus de l’image */
.bandeau_texte {
    border-radius: 0.5rem;
    box-shadow: 0 10px 5px #ccc;
  width: 80%;
  background: rgba(255, 255, 255, 0.95); /* semi-transparent blanc */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
    z-index: 2;
    
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
}

.bandeau_texte p{
    text-align: center;
}



.container-bandeau-texte img {
  width: auto;
  height: auto;
  max-height: 350px;
  object-fit: cover; /* optionnel, selon le rendu voulu */
    
  border-radius: 0.5rem;
  flex-shrink: 0;
    flex-grow:0;
}

.image-coin{
    position:fixed;
    top:25%;
    right:-20%;
    width: 200px;            
  height: 80%;
  object-fit: cover;         
  border-radius: 50%;
}

/* -------------------------------------- */
/* ------------- MENU ------------- */
/* -------------------------------------- */
.menu_container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  -ms-grid-row: 3;
    grid-row: 3;
  grid-column: 1 / 13;
  grid-row-start: 3;
  position:relative;
  z-index:1;
    margin-bottom:5px;
  /* border:solid 2px; */
  /* display:none; */
}

nav ul {
	list-style: none;
/*	font-weight: 300;*/
	display:flex;
	justify-content: space-evenly;     /* Alignements des liens dans le menu */
    padding: 0;
    margin: 0;
    align-items: center; /* Alignement vertical au centre */ 
}

nav a {
	display: block;
	margin-left: 0.3rem;               
    margin-right: 0.3rem; 
    /*Marges externes (1 valeurs = 4 directions) */
    text-align: center;           /* Centrage du texte */   
    color:#2A303B;                  /* Couleur du texte */
    text-decoration: none;        /* Suppression du soulignement */
    border-top: 3px solid var(--background-main);       /* Ajout d'une bordure */  
	border-bottom: 3px solid black;       /* Ajout d'une bordure */
	font-family:Menu_title, sans-serif;
	font-weight:bold;
	/* text-transform: uppercase; */
	letter-spacing: 1.5px;
	font-size:2rem; 
}


/* Adding some background color to the different menu items 
nav li {
}
*/

nav a.actif {    
    color: var(--color-highlight) ;
    border-color: var(--color-highlight) ;
}

nav a:hover, nav a:hover.actif{
    color: var(--color-highlight);
	border-top: 3px var(--color-highlight) solid;       /* Ajout d'une bordure */
	border-bottom: 3px var(--color-highlight) solid;       /* Ajout d'une bordure */
}


li {
    display: block;
    /*display: inline-block;*/
    position: relative;
}

/* Bouton contact blanc sur rouge*/
.highlight_menu{
    background-color: #2A303B;
    border-radius:15px;
	border:2px #2A303B solid;
    margin-top:0;
    line-height: 3.5rem;
    

}

.highlight_menu a{
    color:white;
    border-top:0;
        border-bottom:0;
}

/* Surlignement Bouton contact cas normal */
.highlight_menu:hover{
    background-color: var(--color-highlight);
    color:white;
}

.highlight_menu a:hover{
    color:white;
}


/*
.highlight_menu actif{
     background-color: var(--color-highlight);
    color:white;
    border-top: 0 solid ;
	border-bottom: 0 solid ;
    padding:0;
}*/




.highlight_menu menu_actif:hover{
    background-color: var(--color-highlight);
    color:white;
    border-radius:15px;
	border:2px var(--color-highlight) solid;
}


/* Bouton contact Rouge sur Blanc si actif */
.menu_actif{
    background-color: #FFFFFF;
    color: var(--color-highlight);
    border:2px var(--color-highlight) solid;
}

.menu_actif a{
     color: var(--color-highlight);
}


/* Surlignement Bouton contact si actif */
.menu_actif:hover{
    background-color: white; /*#f9e1e0*/
    color: white;
}



/* -------------------------------------- */
/* ------------- SOUS MENU ------------- */
/* -------------------------------------- */
ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-main);
    width: 100%;
	border: 1px solid #ccc;
    border-top: none;
}

ul ul li {
    display: block;
}

li:hover > ul {
    display: block;
}

ul ul li a{
    font-size:1.3rem;
	font-family:Menu_title, sans-serif;
	margin : 10px;
}

li.has-submenu:hover > ul {
    display: block;
    left: 0; /* Ajuste la position à gauche de la rubrique parente */
}


.has-submenu ul a:hover, .has-submenu ul a:hover.actif{
	border-top: 3px var(--background-main) solid;       /* Ajout d'une bordure */
	border-bottom: 3px var(--color-highlight) solid;       /* Ajout d'une bordure */
}

.has-submenu ul a.actif {
  /* Style specifique pour les sous menus actifs */
    border-top: 3px var(--background-main) solid;       /* Ajout d'une bordure */
    border-bottom: 3px var(--color-highlight) solid;       /* Ajout d'une bordure */
}



/* -------------------------------------- */
/* ------------- PRESTATION ------------- */
/* -------------------------------------- */
.wrapper-contenu {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  display: -ms-grid;
  display:grid;
  width:100%;
  margin: auto;
  -ms-grid-columns: 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(30px, auto);
  grid-gap:var(--gap-size);
}

.wrapper-intro {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2 / 12;
/*  display: -ms-grid;
  display:grid;*/
  width:100%;
  margin: auto;
  -ms-grid-columns: 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr var(--gap-size) 1fr;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(30px, auto);
  /* background-color:#FFFEFF; */
  	grid-gap: 10px;
	/*border-bottom:solid;
	border-top:solid;
	padding: 10px 0 10px 0;
	box-shadow: 0 10px 5px #ccc;
	border-radius: 30px;*/
}

/* .wrapper-intro.phrase_intro p{ */
  /* text-align:center; */
  /* color:#2A303B; */
/* } */

.wrapper_1 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 12;
	grid-column: 1 / 13;
	/*grid-auto-rows: 50px;*/
	/* display: grid;
    align-items: center;
	justify-items: center; */
}

.wrapper_2 {
	-ms-grid-column: 1;
	-ms-grid-column-span: 12;
	grid-column: 1 / 13;
	grid-auto-rows: 50px;
		display: grid;
    align-items: center;
	justify-items: center;
}

.colonne_1 {
  flex: 0 0 60%; /* 2/3 */
}

.colonne_2 {
  flex: 0 0 30%; /* 1/3 */
}


.colonne_1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-column: 2 / 9;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 0 0 100px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
}

.colonne_2 {
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
  grid-column: 9 / 12;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  padding: 0 var(--gap-size) 0 var(--gap-size);
  /* text-align:center; */
}

.colonne_1_13 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 10px 0 10px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
}

.colonne_2_12 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 11;
  grid-column: 2 / 12;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 10px 0 10px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
}

.colonne_3_7 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-column: 3 / 7;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 10px 0 10px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
  border-right : 1px solid;
}

.colonne_8_11 {
  -ms-grid-column: 7;
  -ms-grid-column-span: 4;
  grid-column: 7 / 11;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 10px 0 10px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
  border-left : 1px solid;
}

.colonne_4_10 {
  -ms-grid-column: 4;
  -ms-grid-column-span: 6;
  grid-column: 4 / 10;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin: 10px 0 10px 0;
  padding: 0 var(--gap-size) 0 var(--gap-size);
}

.colonne_2_8 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  margin:10px 10px 10px 10px;
  padding: 0 0 0 0;
}

.colonne_2_10 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2 / 10;
  margin:10px 10px 10px 10px;
  padding: 0 0 0 0;
}

.colonne_8_12 {
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-column: 8 / 12;
  margin-top:auto;
  margin-bottom:auto;
  padding: 0 var(--gap-size) 0 var(--gap-size);
}

.section-uppercase{
    text-transform: uppercase;
}

.display_grid{
    display:grid;
    
}

.display_flex{
  display: flex;
  flex-wrap: wrap; /* utile pour la version responsive */
  justify-content: center;
  align-items: center; /* centrage vertical */ 
}

.div-middle {
  position: relative;
  /*max-width: 80%;*/
  margin: 0 var(--gap-size) 0 var(--gap-size);
  padding: 0 var(--gap-size) 0 var(--gap-size);
  /*background:#F9F9FB;  gris clair */
  border-radius: 25px;
    min-width:50px;
    width:45%;
    display: flex;
    flex-direction: column;
   /* justify-content: space-between;*/
}

.center_text{
    text-align:center;
}

.margtop-10{
    margin-top:10px;
}

.margtop-100{
    margin-top:100px;
}

.margbot-0{
    margin-bottom: 0;
}

.margbot-100{
    margin-bottom:100px;
}

.colonne_1 > p {
	margin: 0;
	text-align : justify;
}

.photo_presta{
	 width:100%;
}

.photo_presta_vignette{
	width:100%;
	min-height:100px;
	max-height:250px;
	object-fit: cover;
	overflow: hidden;
	border:2px solid white;
    -moz-box-shadow: 0 5px 5px grey; /*h-offset v-offset blur spread color |inset|initial|inherit; */
    -webkit-box-shadow: 0 5px 5px #ccc;
    box-shadow: 0 5px 5px #ccc;
    -moz-border-radius:25px;
    -webkit-border-radius:25px;
    border-radius:25px;
	/*margin: 0 0 20px 0;*/
    display:block;
}

.image-container {
position: relative;
display: inline-block;
}

.photos{
	-ms-grid-column: 1;
	-ms-grid-column-span: 12;
	grid-column: 1 / 13;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	/* border:solid green; */
	margin:30px;
}

.photos div{
	-webkit-box-flex:20%;
	    -ms-flex:20%;
	        flex:20%;
}

.photos img{
	width:95%;
}


.Large_div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 13;
  grid-column: 1 / 13;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}

.margin-0{
    margin:0;
}
.margin-10{
    margin:10px;
}
.padding-10{
    padding:10px
}

.avis-google-5etoiles{
    width:auto;
    height:80px;
}

.padding30px{
    padding-bottom:30px;
}

.background1{
    background-color: var(--background-main);
}
.background2{
    background-color: var(--background-second);
}
.background3{
    color: white;
    background-color: var(--background-third);
}

.background3 a{
    color:white;
}

.Dispo-flex{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px; /* espace entre les blocs */
}

.Logo-flex{
	display:flex;
	flex-wrap: wrap;
    justify-content: center;
    background: #ffffff;
    border:1px gray solid;
}

.Logo-flex img{
	height:100px;
	width:auto;
    max-width: 50%; /* pour eviter les debordements*/
	margin:20px;
}

.Large_div>h2 {
  text-align:center;
}

.prestas-align-center {
  position: relative;
  max-width: 80%;
  margin:15px;
  padding:10px;
  background:white;
  /*background:#FFFAF3; orange clair*/  
  /*background:#F9F9FB;  gris clair */
  text-align: center;
  border : 3px solid;
  border-color : #F9F9FB;
  border-radius: 25px;
  -moz-box-shadow: 0 10px 5px #ccc; /*h-offset v-offset blur spread color |inset|initial|inherit; */
  -webkit-box-shadow: 0 10px 5px #ccc;
  box-shadow: 0 10px 5px #ccc;
    overflow:auto;
}


.prestas-align-center img{
    margin-top: 0;
    height:300px;
    width:auto;
    
}
.largeur_30pct {
	width: 30%;
}

.largeur_40pct {
	width: 40%;
}

.largeur_70pct{
 width:70%;   
}
.largeur_90pct {
	width: 90%;
}

.div-parente {
    /* position: relative; */
  max-width: 80%;
  margin:15px;
  padding:10px;
  background:white; 
  text-align: center;
  border-radius: 25px;
  -moz-box-shadow: 0 10px 5px #ccc; /*h-offset v-offset blur spread color |inset|initial|inherit; */
  -webkit-box-shadow: 0 10px 5px #ccc;
  box-shadow: 0 10px 5px #ccc;
    width:21%;
    display: flex;
    flex-direction: column;
   /* height: 800px;  Ajustez la hauteur de la div parente selon vos besoins*/
    transition: transform 0.3s ease;
	justify-content: flex-start;   /* Centre horizontalement */
  align-items: center;       /* Centre verticalement */
    
}

.blocs3{
  width:25%;  
}

.shadow-effect1{
    background: linear-gradient(to bottom, var(--background-main), var(--background-second) 80%, var(--background-second));
}

.animate-effect{
  transition: transform 0.3s ease;
  transform-origin: bottom center; /* origine pour rotation */
}

/* Rotation pour créer l'arc */
.arc-effect:nth-child(1) {
  transform: rotate(-3deg) translateY(6px);
}
.arc-effect:nth-child(2) {
  transform: rotate(0deg) translateY(0);
}
.arc-effect:nth-child(3) {
  transform: rotate(3deg) translateY(6px);
}


.width-cours{
  width:90%;  
}

.animate-effect:hover {
    transform: scale(1.05);
    background:#F9F9FB; /* gris clair*/
}

.div-enfant-1 {
	display:flex;
	flex-direction: column;
    flex: 1;
	align-items: center; 
	width:100%;
    /* background-color: lightblue; */
     
}

.div-enfant-2 { 
     align-content: space-between;
    background: white;
    border-radius: 15px;
    padding:2px 15px 2px 15px;
    border:1px solid;
    /* background-color: lightgreen; */
}

.div-parente img{
    height:200px;
    width:auto;
    max-width:100%;
    
}

.div-enfant-1 > h2{ 
    margin-top:10px;
    margin-bottom: 0;
}

.div-enfant-image{
position: relative;
}

.height-70px{
    height:70px;
}



.avis-align-center {
  position: relative;
  flex: 1;
  max-width: 90%;
  margin:50px 10px 10px 10px;
  background:white;
  text-align: center;
  border: solid 1px gray;
    border-radius: 4px;
  padding:5px;
}


.avis-icon{
	fill: var(--color-highlight);
	margin:0 0 0 5px;
	position:absolute;
	top: -20px;
	left: -20px;
}

.avis-text{
/*	font-style: italic;*/
	margin: 0 5px 0 5px;
    font-size:0.9em;
    text-align:justify;
}

.avis-personne{
	text-align:right;
	font-weight: bold;
	margin: 0 0 0 0;
}

.separateur{
	text-align:center;
}

.separateur img{
	width:90%;
	height:auto;
    max-height:15px;
    margin-bottom:25px;
    margin-top: 0;
}

.fil-ariane {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
     -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2 / 12;
}

.fil-ariane a {
    text-decoration: none;
    color: var(--color-highlight);
    margin: 0;
    display: inline; /* Forcer les liens à être en ligne */
}

.fil-ariane a:hover {
    text-decoration: underline;
}

.custom-shape-divider-top-1748333985 {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    line-height: 0;
    outline: var(--gap-size) solid var(--background-second); /* masque le gap autour, de la même couleur */
}

.custom-shape-divider-top-1748333985 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 110px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1748333985 .shape-fill {
    fill: var(--background-second);
}

.icone-magie {
  width: 40px; /* Taille largeur */
  height: auto; /* Garder proportions */
  fill: var(--color-highlight);
}


/* -------------------------------------- */
/* ------------- GALERIE PHOTO ------------- */
/* -------------------------------------- */
#galerie {
    grid-column: 1 / -1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

#galerie img {
  flex: 0 1 auto;
  height: auto;
  margin: 0.5rem;
  max-height: 250px;
  object-fit: cover;
  border: 1px solid #28323B;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #28323B;
  transform: scale(1);
  transition: transform 1s;
}


/* -------------------------------------- */
/* ------------- FORMULE APPRENTISSAGE ------------- */
/* -------------------------------------- */
.conditions_formule{
	color:grey;
}

.accroche{
	font-weight: bold;
	text-align:center;
	text-decoration: underline;
	font-size : 1.5rem;
    
}

.formule_intro {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2 / 12;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin-top:auto;
  margin-bottom:auto;
  padding: 0 15px 0 15px;
  /* text-align:center; */
  line-height: 2rem;
}

.formule_1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-column: 2 / 9;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin:10px 10px 10px 10px;
  padding: 0 0 0 0;
}

.formule_2 {
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
  grid-column: 9 / 12;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin-top:auto;
  margin-bottom:auto;
  padding: 0 15px 0 15px;
  /* text-align:center; */
}

.conditions-cours{
    border-radius: 15px;
    padding:2px 15px 2px 15px;
    border:1px solid;
}

/* -------------------------------------- */
/* ------------- PACKS VIDEOS  ---------------- */
/* -------------------------------------- */


.produits-vente{
	margin:20px;
	overflow:hidden;
	height:auto;
	text-align : center;
	width:100%;
	border:2px solid grey;
    -moz-box-shadow: 0 5px 5px #ccc; /*h-offset v-offset blur spread color |inset|initial|inherit; */
    -webkit-box-shadow: 0 5px 5px #ccc;
    box-shadow: 0 5px 5px #ccc;
    -moz-border-radius:25px;
    -webkit-border-radius:25px;
    border-radius:25px;
	background:white;
	
}

.produits-vente-entete{
	text-align : center;
	font-size : 1.5rem;
	color:var(--color-highlight); /* Rouge */
}

.produits-vente-description{
	text-align : center;
}

.container-video-stripe{
	display:flex;
	justify-content: space-evenly;
	flex-wrap:wrap;
}

/* -------------------------------------- */
/* ------------- FAQ  ---------------- */
/* -------------------------------------- */
.faq {
  -ms-grid-column: 2;
  -ms-grid-column-span: 9;
  grid-column: 2 / 11;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin-top:auto;
  margin-bottom:auto;
  padding: 0 15px 20px 15px;
  /* text-align:center; */
  border:1px solid;
  border-radius: 5px;
}

.faq details{
  font-size:1.2rem;
  border-bottom:1px solid;
  margin-bottom:5px;
}

.faq h2{
	margin-top:50px;
}

.faq_reponse{
  font-size:1rem;
  line-height: 1.5rem;
  font-style:italic;
}

summary{
	/* font-weight: bold; */
    margin: -0.5rem -0.5rem 0;
    padding: 0.5rem;
	list-style-type:"+";
}

summary+div{
    margin-bottom: 1rem;
}

summary:after{
	font-size: 1.5rem;
	margin: -5px 5px 0 0;
	padding: 0;
	text-align: center;
}

summary:hover{
	cursor: pointer;
}

details[open] summary {
   list-style-type: "-";
   background-color:#fff4f4;
}


/* -------------------------------------- */
/* ------------- BLOG  ---------------- */
/* -------------------------------------- */
html {
  scroll-behavior: smooth;
}

.sommaire {
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
  font-family: sans-serif;
    margin-top:0;
}

.sommaire h2 {
  margin-top: 0;
  font-size: 1.25rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
}

.sommaire ul {
    list-style-type: none;
  padding-left: 1.2rem;
  margin: 0;
}

.sommaire li {
  margin: 0.5rem 0;
}

.sommaire li.sous-titre {
   padding-left: 2rem; /* indentation */
  font-size: 0.95rem;
}

.sommaire a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.sommaire a:hover {
  color: #555;
}

.Blog-flex{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}


.vignette-article-container {
  position: relative;
  width: 350px;
  margin:20px 10px 10px 10px;
  background:#F9F9FB;
  text-align: center;
  min-width: 300px;
    -moz-border-radius:25px;
    -webkit-border-radius:25px;
    border-radius:25px;
  transition: transform 0.3s ease;
  background : white;
}

.article-texte-apercu {
  color : grey;
}

.lire-la-suite {
  color : grey;
    text-decoration: underline;
    
}

.vignette-article-container:hover {
    transform: scale(1.05);
}

.vignette-article-container img{
    height:200px;
    width:auto;
    max-width:100%;
}

.vignette-article-contenu{
    padding : 10px;
	overflow:hidden;
	text-align : center;
	border:2px solid grey;
    -moz-box-shadow: 0 5px 5px #ccc; /*h-offset v-offset blur spread color |inset|initial|inherit; */
    -webkit-box-shadow: 0 5px 5px #ccc;
    box-shadow: 0 5px 5px #ccc;
    -moz-border-radius:25px;
    -webkit-border-radius:25px;
    border-radius:25px;
	background:white;
	
}

.legende_h2{
    text-align: center; 
    margin:0;
    color:grey;
    font-size:1rem; 
    font-weight: bold;
}

.legende_h2 a{
   color:grey; 
}

.legende_h2 a::before {
  content: "|";
    margin:0.1rem;
}
.legende_h2 a:first-child::before {
  content: "";
}

.posted-on{
    color:grey;
    text-align: left;
    font-size:1rem;
}

.articles_recents{
    line-height:normal;

}
.articles_recents a{
    text-decoration: underline;

}

.article-contenu {
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2 / 10;
  margin:10px 10px 10px 10px;
  padding: 0 0 0 0;
  border-right: 1px solid;
  padding-right:35px;
}

.Dispo-grid{
    display:grid;
}

aside {
  position: sticky;
  top: 0; /* La barre latérale restera collée en haut de son conteneur parent */
  height: 100vh; /* Pour s'assurer que la barre latérale prend toute la hauteur de la vue */
  /* Autres styles pour la barre latérale */
}

#sidebar{
    -ms-grid-column: 10;
    -ms-grid-column-span: 3;
    grid-column: 10 / 13;
    text-align: center;
}

#sidebar img{
    width : auto;
    height:150px;
    border-radius: 150px;
}

.photos-titre-article{
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2 / 10;
  margin:10px 10px 10px 10px;
  padding: 0 0 0 0;   
  text-align: center;  
}

.photos-titre-article img{
    width:100%;
    height:400px;
    object-fit:cover;
    object-position: bottom;
    overflow: hidden;
    opacity:0.9;
}


.photos-contenu-article {
    float: left;
    max-width: 300px;
    width: auto;
    max-height: 300px;
    /*height: 300px;*/
    object-fit: cover;
    overflow: hidden;
    margin: 10px 30px 10px 10px;
    position: relative; /* Ajouté pour permettre le positionnement absolu de la div overlay */
}

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

.clear{
    clear: both;
    width:100%;
/*    height: 0;
    line-height: 0;*/
}

.comparatif{
    width : 48%;
    padding:15px;
}

.comparatif p{
    font-weight:bold;
    font-family: MaPolice1, sans-serif;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: underline;
    margin:auto;
}
.comparatif li{
    list-style: none;
    font-family: MaPolice1, sans-serif;
    font-weight:normal;
    line-height: 1.5em;
    text-align: left;
}

.positif-icon {
    margin-right: 5px;
    color: #19b88b;
}
.negatif-icon {
    margin-right: 5px;
    color: var(--color-highlight);
}

figcaption {
  font-size: 12px; /* Taille de la police du crédit photo */
  color: #666; /* Couleur du texte du crédit photo */
  font-style: italic;  
}

.overlay {
position: absolute;
bottom: 0; /* Ajustez selon vos besoins */
right: 20px; /* Ajustez selon vos besoins */
background-color: rgba(255, 255, 255, 0.35); /* Fond blanc semi-transparent */
color: black;
font-style: italic; /* Texte en italique */    
font-weight:bold;
font-size:0.7em;
padding: 5px 10px;
border-radius: 25px;  
}

.liste-prestataires {
  display: flex;
  flex-wrap: wrap;           /* permet le retour à la ligne */
  justify-content: center;
  gap: 50px;                 /* espace entre les blocs */
  flex-direction: row;
    margin-top:0;
    margin-bottom:50px;
  align-items: center;       /* Centre verticalement */
}

.prestataire{
    border: 0 solid;
    text-align:center;
    padding:10px;
}

.prestataire-contact p{
    text-align:center;
    margin: 0;
}
.prestataire-contact a{
    text-decoration: none;
}

.prestataire-ville{
    font-weight:bold;
    color:grey;
}

.prestataire-photo img{
  border-radius: 50%;
}


/*
.not-visible{
    display:none;
}*/

/* -------------------------------------- */
/* ------------- GALERIE ---------------- */
/* -------------------------------------- */


.galerie-carroussel {
    display: flex;
    flex-wrap: wrap; /* Permet aux éléments de revenir à la ligne */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.galerie-carroussel .slide {
    display: inline-block; /* Afficher les éléments en ligne */
    flex: 1 1 15%; /* Permet aux éléments de prendre 25% de l'espace disponible */
    text-align: center; /* Centrer le contenu */
    padding: 5px; /* Ajouter un peu d'espace autour des images */
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur et la hauteur */
}

.galerie-carroussel .slide img {
    width : auto;
    height: 100%; /* Conserver le ratio hauteur-largeur de l'image */
    max-height: 200px; /* La hauteur maximale de chaque image est de 100 pixels */
    display: block; /* Pour éviter tout espace indésirable en bas de l'image */
    margin: 0 auto; /* Centrer l'image horizontalement */
}

/* The Modal (background) padding-top:100px supprime */
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgb(0, 0, 0);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

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

.mySlides {
  display: none;
  text-align: center;
}

.mySlides img {
	float:none;
	width:100%;
	height:auto;
	max-height:500px;
 object-fit: contain; /* Assure que l'image s'ajuste au conteneur sans déformation */
	margin:auto;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
}

.prev {
  left: 10px; /* Positionne le bouton à gauche */
  border-radius: 5px 5px 5px 5px;
}
/* Position the "next button" to the right */
.next {
  right: 10px;
  border-radius: 5px 5px 5px 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
   
}

#caption{
    font-weight:bold;
    font-size:1rem;  
    color: white;
}

img.demo {
  cursor: pointer;
}


.demo:hover {
  opacity: 0.5;
}


/* -------------------------------------- */
/* ------------- FOOTER  ---------------- */
/* -------------------------------------- */
#footer {
  -ms-grid-column: 1;
  -ms-grid-column-span: 13;
  grid-column: 1 / 13; /* prend toute la largeur de la grille */
  background-color: #2A303B;
  color: white;
  padding: 0 0 20px 0;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.8em;  
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
}

.footer-links > div {
  width:25%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
    align-content: flex-start;
}

.section-title {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
    width:100%;
    text-align: center;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #444;
  padding-top: 15px;
    text-align: center;
}

.footer-reseau a {
  text-align:left;
  color: white;
    text-decoration: none;
  margin: 0 5px;
    display: inline-block;
     transition: transform 0.3s ease;
}

.footer-reseau a:hover{
    transform: scale(1.3);
}

.footer-copyright a {
  text-align:left;
  color: white;
    text-decoration: underline;
  margin: 0 5px;
}

.footer-copyright a::before {
  content: "|";
  margin: 1rem;
}


.footer-links,
.footer-links p,
.footer-links a,
.footer-links span {
  color: white;
}

/* -------------------------------------- */

/* ---------------  POUR LE FORMULAIRE ----------------------- */
.wrapper-contenu-flex {
  grid-column: 2 / -1; /* s'étend de la première à la dernière colonne */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; /* pour aligner en hauteur */
  gap: 20px; /* espace entre les deux colonnes */
  flex-wrap: wrap; /* utile si l’écran est trop petit */
}

.image-flottante {
  float: left;
  margin-top:0;
    margin-right: 15px;      /* espace entre image et texte */
  margin-bottom: 10px;     /* optionnel : espace sous l’image */
  width: auto;            /* ou toute taille adaptée */
  max-height: 300px;
  max-width:100%;
    object-fit: cover;         /* garde le contenu bien centré et rempli */
  border-radius: 30%;        /* rend l’image parfaitement ronde */
}


.localisation {
  flex: 1;
  display: flex;
  justify-content: center;  /* horizontal centering */
  align-items: center;      /* vertical centering */
  min-width: 200px;
  flex-direction: column;
}

/* Pour que l'image s’adapte bien */
.localisation img {
  max-width: 100%;
  height: 350px;
    width:auto;
  object-fit: contain;
    border:1px solid var(--color-highlight);
    border-radius:50%;
}

.legend_contact{
 text-align:center;   
 font-size:1.5rem;
 }

.background_gradient{
    text-decoration:none;
    border-radius: 50%;
    display: inline;
  background: linear-gradient(to top, rgba(218, 81, 79, 0.26) 25%, transparent 40%);
}

.contact_intro {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2 / 12;
  /* overflow:auto; /* Pour eviter que l'image depasse du conteneur */
  margin-top:auto;
  margin-bottom:auto;
  padding: 0 15px 0 15px;
  /* text-align:center; */
  line-height: 2rem;
}

.contact_intro a{
	text-decoration: none;
}

.contact_intro a:hover{
	color : var(--color-highlight);
}

.formulaire {
  flex: 2;
  min-width: 300px;
}

/*.contact_line_height{
    line-height: 40px;
}
*/

.contact_line_height a{
    text-decoration: none;
}

.icon_font{
	font-family: SocialFont, sans-serif;
	color : black;
	font-size:1.8rem;
	text-decoration: none;
	line-height: 2.5rem;
}

.color_white{
   color : white; 
}



form {
	font-family:MaPolice2, sans-serif;
 width:90%;
 max-width:1200px;
 min-width:100px;
 margin:auto;
 /*background-color:white;*/
 border-radius:15px;
 font-size:1rem;
 text-align:center;
    color:white;
/* line-height:1.5rem;*/
 }
fieldset {
 padding:20px;
 margin-bottom: 0;
 border:1px solid var(--color-highlight);
 border-radius:15px;
 background-color: var(--background-third);
 }
legend {
 color:var(--text-color);
 background-color : white;
 font-weight:bold;
 border:1px solid var(--color-highlight);
 border-radius:5px;
 letter-spacing: 1px;
 padding: 8px 16px;
 width: fit-content;
 text-align:center;
 margin: auto;
    text-transform: uppercase;
 }

.form-group {
  display: flex;
  flex-direction: row; /* toujours en ligne */
  align-items: center;
  gap: 10px;
}

.form-group label {
  width: 30%;
    min-width:100px;
  margin-right: 10px;
  text-align: right;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 0.95rem;
  width: 70%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-highlight);
  outline: none;
  box-shadow: 0 0 5px rgba(216, 63, 61, 0.4);
}
.form-submit {
    text-align: center;
    margin-top: 20px;
}
input[type="submit"] {
    background-color: var(--color-highlight);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
 margin-left:5px;
}

input, textarea, select, option {
 background-color:white;
  margin-bottom:20px;
 }
input, textarea, select {
 padding:3px;
 border-radius:5px;
 width:90%;
 resize:none;
 }
select {
 margin-top: 0;
 }

/*
input[type=submit] {
 
 }
 */

input[type=submit]:hover {
	font-weight:bold;
	color: white;
	/* font-size:1.1rem; */
	background-color : #b73230;
 }

fieldset p{
	text-align:center;
}


/* -------------------------------------- */
/* ----------- COOKIES ------------ */
/* // Functionality: */
#cookie {
  position: fixed;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  text-align: center;
  line-height:2rem;
}
 
#cookie input {
    display: none;
}

#cookie input:not(:checked) ~ span::before {
	/* // Put text in CSS so search engines don't index it */
    /* // This is optional! */
      content: "J'utilise des cookies pour vous garantir la meilleure expérience sur mon site web.";
      display: inline;
	  
    }
    
#cookie input:checked ~ * {
      display: none;
      /* // Prevent interacting with any elements in the notice after clicking it away. */
      /* // This is optional! */
      pointer-events: none;
}

.cookieButton {
	background-color: var(--color-highlight); 
	border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
	display: inline;
	font-family: tahoma,arial,helvetica,sans-serif;
	font-size: 1rem;
	border: 1px solid black;
	color: white; /* Blanc */
	font-weight: bold;
	padding: 5px;
	text-decoration: none;
	text-align:center;
}

.cookieButton:hover {
	background-color: var(--color-highlight);
	cursor: pointer;
}

/* -------------------------------------- */
/* -------------------------------------- */

/* -------------------------------------- */
/* ------------- IE only --------------- */
@media all and (max-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.formulaire{
		display:none;
	}
   
}

/* -------------------------------------- */				/* -------------------------------------- */
/* -------------------------------------- RESPONSIVE DESIGN -------------------------------------- */
/* -------------------------------------- */				/* -------------------------------------- */

/* TABLETTE */
@media screen  and (max-width: 1400px)
{
	/* div p{ */
		/* font-size: 1.1rem; */
	/* } */
	
	.colonne_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 5;
	  grid-column: 2 / 7;
	}
	.colonne_2 {
	  -ms-grid-column: 7;
	  -ms-grid-column-span: 5;
	  grid-column: 7 / 12;
	}
    .formule_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 5;
	  grid-column: 2 / 7;
	}
	.formule_2 {
	  -ms-grid-column: 7;
	  -ms-grid-column-span: 5;
	  grid-column: 7 / 12;
	}
    
    .footer-links > div {
    flex: 1 1 45%;
    max-width: 100%;
  }


}


@media screen and (max-width: 1024px)
{

	/* div p{ */
		/* font-size: 1.2rem; */
	/* } */
	
	h1{
      font-size: 2rem;
	}
    
	h2{
      font-size: 1.5rem;
	}
	.h2_sous_h1{
      font-size: 1.3rem;
	}
	
    div p{
      font-size: 0.8rem;
	}
    
        
	.baseline {
	font-size:2.5rem;
	line-height: 3rem;
	}
	
    nav a {
	font-size:1.5rem;
	/* opacity: 0; */
	/* visibility: hidden; */
	}
    
    ul ul li a{
    font-size:1rem;
    }
    
	.reseaux > a{
		font-size: 2rem;
	}
	
	.colonne_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 5;
	  grid-column: 2 / 7;
	}
		
	.colonne_2 {
	  -ms-grid-column: 7;
	  -ms-grid-column-span: 5;
	  grid-column: 7 / 12;
	}
	
    .formule_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
	.formule_2 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
    
    
    .photo_presta_vignette{
	width:100%;
    max-width:600px;
	min-height:80px;
	max-height:200px;
        margin : 0 auto;
    }
    
	.colonne_1 > p {
		font-size: 0.8rem;
	}
	
    .div-parente {
    width:41%;
    }
	
/*	.prestas-align-center {
	  width: 90%;
	}*/

	.photo_presta{
		width:100%;
	}
	
	.photos div{
		-webkit-box-flex:50%;
		    -ms-flex:50%;
		        flex:50%;
	}
	
	.formulaire {
		-ms-grid-column: 2;
		-ms-grid-column-span: 10;
		grid-column: 2 / 12;
	}
    
    .div-middle {
        width:95%;
    }


	.localisation img {
	  height:250px;
	  width:auto;
	}
    
	
	.not_visible_mobile{
		display:none;
	}
	
    .photos-titre-article{
      -ms-grid-column: 1;
      -ms-grid-column-span: 12;
      grid-column: 1 / 13;
    }

    .article-contenu{
      -ms-grid-column: 1;
      -ms-grid-column-span: 12;
      grid-column: 1 / 13;
      border-right : 0;
        padding: 0;
    }
    
    #sidebar{
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1 / 13;
    }
    
    .galerie-carroussel .slide img {
    max-height: 150px;
    }
    
        
}

/* SMARTPHONE */
@media screen and (max-width: 720px)
{
	
	/* div p{ */
		/* font-size: 1.2 rem; */
	/* } */
	
    
	
	.baseline {
	font-size:2.5rem;
	line-height: 2.5rem;
	}
    
    
	
	.menu_container {
	  -ms-grid-column: 11;
	  -ms-grid-column-span: 2;
	  grid-column: 11 / 13;
	  position:relative;
	  z-index:1;
	}
	
	.reseaux > a{
		font-size: 1.5rem;
		line-height: 3rem;
	}
	
	/* h1{ */
	/* font-size:1.2rem; */
	/* } */
	
    
    .bandeau_container {
	  height: auto;
	  margin:auto;
    }

	.bandeau {   
  width: 100%;
  height: 100px;
  overflow: hidden; /* pour cacher si l'image dépasse */
  position: relative;   
	}
    
    .bandeau img{
     width: 100%;       /* largeur complète */
  height: 100%;      /* hauteur égale au parent */
 
  display: block;    /* évite l'espace blanc sous l'image */
    }
    
    .container-bandeau-texte {
    position: static; /* remet le bloc dans le flux normal */
    transform: none;
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 0 16px;
    flex-direction: column;
  }

  .bandeau_texte {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    text-align: left;
      margin-top:150px;
  }

  .container-bandeau-texte img {
    /*display: none;  cache l’image portrait */
    position: absolute;
    top: 0; /* ou négatif si tu veux plus haut */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 250px;
    z-index: 20; /* au-dessus de la bannière */
  }
    
	
	
	.colonne_1 > p {
		font-size: 0.8rem;
	}
	
    .div-parente {
    width:80%;
    }
    
	.prestas-align-center img{
    width:100%;
    }
	
	.photo_presta{
		width:100%;
	}
	
	.photos div{
		-webkit-box-flex:50%;
		    -ms-flex:50%;
		        flex:50%;
	}
	
    .div-middle {
        width:95%;
    }
    
	.formulaire {
		-ms-grid-column: 2;
		-ms-grid-column-span: 10;
		grid-column: 2 / 12;
		grid-row: 3;
	}
	
	.not_visible_mobile{
		display:none;
	}
    
    .photos-titre-article{
      -ms-grid-column: 1;
      -ms-grid-column-span: 12;
      grid-column: 1 / 13;
    }
    
    .photos-titre-article img{
    height:300px;
    }
    
    .article-contenu{
      -ms-grid-column: 1;
      -ms-grid-column-span: 12;
      grid-column: 1 / 13;
      border-right : 0;
        padding: 0;
    }
    
    #sidebar{
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 3;
    grid-column: 1 / 13;
    grid-row : 3;
    }
	
	/*************MENU BURGER*******************/
	
	#menu_hamburger+label {
		visibility:visible;
		z-index:2;
		display:grid;
	}
	
	/*************MENU SLIDE*******************/
	nav {
	position: absolute;
	right: -0;
	top: 50px;
	/* height: 250px; */
	width: 300px;
	background: var(--background-main);
	transform: translateX(100%);
	will-change: transform;
	transition: 0.7s;
	z-index:2;
	visibility: hidden;
	opacity:0;
	display:none;
	}
	
	nav ul{
	list-style-type: none;
	padding-left:0;	
	margin-top: 1rem;
	display:block;
	}
		
	nav ul li{margin:1rem}	

	nav a {
	font-size:1rem;
	/* opacity: 0; */
	/* visibility: hidden; */
	}
		
	#menu_hamburger:checked+label~ nav{ 
	 transform: unset; /*on revient à l'état initial */	
	}

	#menu_hamburger:checked+label~ nav {
		display: block;
	visibility: visible;
	opacity: 1;
	}
    
    /* -------------------------------------- */
    /* ------------- SOUS MENU ------------- */
    /* -------------------------------------- */
    ul ul{
        display:none;
    }
 
    li.has-submenu:hover > ul {
        display: none;
    }
	/*************MENU SLIDE*******************/
	.container-video-stripe{
	display:block;
	}
	
	.video-responsive { 
	overflow:hidden; 
	padding-bottom:56.25%; 
	position:relative; 
	height:0;
	}

	.video-responsive iframe {
	left:0; 
	top:0; 
	height:100%;
	width:100%;
	position:absolute;
	}
    
    .galerie-carroussel .slide img {
    max-height: 130px;
    }
    

    .footer-bottom > div {
    margin-bottom: 10px;
    }
    
    .footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* espacement entre les lignes */
    text-align: center; /* ou center si tu préfères */
  }

  .footer-copyright a {
    display: inline-block;
    margin-left: 0; /* au cas où un style global l'affecte */
      text-align: center;
  }
    
    .footer-copyright a::before {
  content: "";
  margin: 0;
}

}

@media screen and (max-width: 480px)
{
	
	/* div p{ */
		/* font-size: 1.2rem; */
	/* } */
	
	/* h2{ */
		/* font-size: 1.4rem; */
	/* } */
	
	.logo img{
		min-width: 65px;
	}

	.baseline {
	-ms-grid-column: 4;
	-ms-grid-column-span: 8;
	-ms-grid-row: 1;
        grid-row: 1;
	grid-column: 4 / 11;
	font-size:1.5rem;
	line-height: 1.6rem;
	}
	
	.ctaButton{
		width:100%;
	}
    
	
	/* h1{ */
	/* font-size:0.9rem; */
	/* } */
	
	.reseaux{
		letter-spacing: 0;
	}
	
	.reseaux > a{
		font-size: 1.5rem;
	}

	.colonne_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
		
	.colonne_2 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
	
    .formule_1 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
	.formule_2 {
	  -ms-grid-column: 2;
	  -ms-grid-column-span: 10;
	  grid-column: 2 / 12;
	}
    
	.colonne_1 > p {
		font-size: 0.8rem;
	}

	.photo_presta{
		width:100%;
	}
	
	.photos div{
		-webkit-box-flex:40%;
		    -ms-flex:40%;
		        flex:40%;
	}
	
    .Logo-flex img{
        height:50px;
        max-width: 90%; /* pour eviter les debordements*/
        margin:10px;
    }
	
    .avis-google-5etoiles {
        height:50px;
    }
    
	.not_visible_mobile{
		display:none;
	}
    
    .photos-titre-article img{
    height:auto;
    }
    
    .photos-contenu-article img{
        max-width:100%;
        height:auto;
    }
    
    .comparatif{
        width:100%;
    }
    
    .galerie-carroussel .slide img {
    max-height: 130px;
    }
    
    .footer-links {
    flex-direction: row;
  }
    .footer-links > div {
        flex: 1 1 100%;
        max-width: 100%;
      }
    
    #galerie img{
        max-width:100%;
    }
    
    form {
        font-size: 0.95rem;
    }

    legend {
        width: 100%;
    }
    
    .wrapper-contenu-flex {
      grid-column: 1 / -1; /* s'étend de la première à la dernière colonne */
      gap: 10px; /* espace entre les deux colonnes */
    }

    .form-group {
        flex-direction: column; /* en colonne */
    }
    .form-group label {
        width: 90%;
        text-align: center;
        margin-bottom: 0;
    }
    
    .form-group input,
    .form-group textarea {
      width: 90%;
    }
    	
}