/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
 * Palette Institut Tamkin 2026 — harmonisée avec le certificat
 * Principal / CTA: #d43e31
 * Texte & identité: #1a365b
 * Fond: #ffffff
 * Fond doux: #fae8e3
 */
:root {
  --tamkin-navy: #1a365b;
  --tamkin-red: #d43e31;
  --tamkin-white: #ffffff;
  --tamkin-blush: #fae8e3;
  --tamkin-blush-dark: #f5d6ce;
  --tamkin-muted: #71829a;
}



a, button {
	color: #1a365b;
	text-decoration: none;
	border-radius: 0px;
	white-space: normal;
}

a:hover,
button:hover, a:focus, button:focus , a:active, button:active {
	color: #1a365b;
	text-decoration: none;
	background-color: transparent;
}
/*
    Add your custom styles here
*/
#container-hero-agence
{
    position: relative;
	align-items: center;
	background: linear-gradient(115deg, #fae8e3 55%, rgba(0, 0, 0, 0) 5%);
	background-size: contain;
	overflow: hidden;
}

#toplevel_page_anacours img{
	width:20px;
}

#env {
	position: fixed;
	bottom: 10px;
	left: 10px;
	padding: 12px;
	border-radius: 8px;
	font-size: 12px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 999998;
	min-width: 180px;
	max-width: 220px;
	backdrop-filter: blur(10px);
	opacity: 0.95;
	transition: all 0.3s ease;
}

#env:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Styles pour les différents environnements */
#env.env-local {
	background: #1a2d16;
	color: #ffffff;
}

#env.env-preprod {
	background: #d43e31;
	color: #ffffff;
}

#env.env-production {
	background: #d43e31;
	color: #ffffff;
}

#env.env-unknown {
	background: #6c757d;
	color: #ffffff;
}

/* Bouton de gestion des cookies */
#toggle-cookie-manager {
	margin-top: 8px;
	padding: 6px 12px;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 500;
	width: 100%;
	transition: all 0.2s ease;
	color: inherit;
}

#toggle-cookie-manager:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-1px);
}

/* Gestionnaire de cookies - Modal */
#cookie-manager {
	display: none;
}

#cookie-manager-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

#cookie-manager-modal {
	background: white;
	border-radius: 12px;
	padding: 24px;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	position: relative;
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* En-tête du modal */
.cookie-manager-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.cookie-manager-header h3 {
	margin: 0;
	color: #1a365b;
	font-size: 18px;
	font-weight: 600;
}

#close-cookie-manager {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #71829a;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

#close-cookie-manager:hover {
	background: #f0f0f0;
}

/* Sections du gestionnaire */
.cookie-section {
	margin-bottom: 20px;
}

.cookie-section h4 {
	color: #71829a;
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: 600;
}

.cookie-display-box {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 10px;
}

.cookie-display-box .label {
	font-size: 12px;
	color: #71829a;
	margin-bottom: 4px;
}

.cookie-value {
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 11px;
	color: #1a365b;
	word-break: break-all;
	background: white;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #d9e0e8;
	line-height: 1.4;
}

/* Boutons d'action */
.cookie-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.cookie-btn {
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.cookie-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cookie-btn.btn-primary {
	background: #d43e31;
	color: white;
}

.cookie-btn.btn-primary:hover {
	background: #d43e31;
}

.cookie-btn.btn-danger {
	background: #d43e31;
	color: white;
}

.cookie-btn.btn-danger:hover {
	background: #d43e31;
}

.cookie-btn.btn-success {
	background: #28a745;
	color: white;
}

.cookie-btn.btn-success:hover {
	background: #218838;
}

.cookie-btn.btn-warning {
	background: #ffc107;
	color: #212529;
}

.cookie-btn.btn-warning:hover {
	background: #e0a800;
}

/* Simulateur UTM */
.utm-simulator-box {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 10px;
}

#utm-simulator {
	width: 100%;
	padding: 8px;
	border: 1px solid #d9e0e8;
	border-radius: 4px;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 11px;
	margin-bottom: 8px;
	box-sizing: border-box;
}

/* Info box */
.cookie-info-box {
	background: #d1ecf1;
	border: 1px solid #bee5eb;
	border-radius: 6px;
	padding: 12px;
	font-size: 11px;
	color: #1a365b;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
	#cookie-manager-modal {
		width: 95%;
		padding: 20px;
		margin: 10px;
	}
	
	.cookie-actions {
		flex-direction: column;
	}
	
	.cookie-btn {
		width: 100%;
		justify-content: center;
	}
	
	#env {
		min-width: 160px;
		font-size: 11px;
	}
}
/* PAGE AGENCE */

.anacours-hero-banner 
{
	display: flex;
	width: 100%;
	min-height: 500px;
	height: auto;
	overflow: hidden;
}

.desc-hero-agence {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.coloneLeftHead
{
	display: flex;
	gap: 20px;
	width: 60%;
    padding: 5% 15% 5% 5%;
	z-index: 2;
	flex-direction: column;
	max-height: 600px;
}

.btn-stages {
	display: inline-block;
	cursor: pointer;
	padding: 0.75em 1.5em;
	background-color: #d43e31; /* rouge Tamkin */
	color: #ffffff;
	font-weight: 900;
	font-family: Texta;
	font-size: 15px;
	text-decoration: none;
	border-radius: 9999px; /* pour un effet pilule */
	font-size: 1rem;
	transition: background-color 0.3s ease;
	text-align: center;
  }
  
  .btn-stages:hover {
	background-color: #d43e31; /* rouge Tamkin au hover */
	color: #ffffff;
  }


.anacours-hero-picture {
	display: block;
	width: 100%;
	height: auto;
  }
  
.anacours-hero-picture img {
display: block;
width: 100%;
height: auto;
object-fit: cover;
}

/* PAGE AGENCE */

	
/* PAGE SOUTIEN */

.anacours-hero-banner-soutien-scolaire {
    position: relative;
    display: flex;
}
.colonneGaucheHeroSoutien {
    position: relative;
    width: 60%;
    max-height: 550px; /* adaptatif mobile */
    overflow: hidden;
}

.colonneGaucheHeroSoutien picture,
.colonneGaucheHeroSoutien img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.colonneDroiteHeroSoutien {
	position: absolute;
	background: linear-gradient(295deg, #fae8e3 75%, rgba(0, 0, 0, 0) 75%);
	padding: 8% 3% 5% 25.2%;
	width: 70%;
	height: 100%;
	right: 0;
	display: flex;
    gap: 10px;
    flex-direction: column;
}
.colonneDroiteHeroSoutien h1{
	font-size: 60px;

}
.colonneDroiteHeroSoutien h2 {
	font-size: 19px;
	font-family: Texta;
	color: #1a365b;
	font-weight: 600;
}

.cta-btn {
	display: inline-block;
	width: fit-content;
	padding: 0.75rem 1.5rem;
	background-color: #d43e31;
	color: white;
	font-family: Texta;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 9999px; /* effet "pill" */
	text-decoration: none;
	text-align: center;
	transition: background 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .cta-btn:hover {
	background-color: #ffffff;
	color: #d43e31;
  }
/* PAGE SOUTIEN */

@media (max-width: 1550px)
{
	.coloneLeftHead h1 {
		font-size: 45px;
	  }
}

@media (max-width: 1400px)
{
	.coloneLeftHead h1 {
		font-size: 40px;
	  }

	  .coloneLeftHead .titreSC4 {
		font-size: 17px;
	  }
	.colonneDroiteHeroSoutien h1{
		font-size: 50px;
	}
	.colonneGaucheHeroSoutien {
		
		max-height: 450px; 
	}
}

@media (max-width: 1300px)
{
	#container-hero-agence {
	max-height: 400px;
	}

	.coloneLeftHead h1 {
		font-size: 30px;
	}

	.coloneLeftHead .titreSC4 {
	font-size: 14px;
	}

}

@media (max-width: 1200px)
{
	.colonneDroiteHeroSoutien h1{
		font-size: 40px;
	}
	.colonneGaucheHeroSoutien {
		
		max-height: 400px; 
	}
}

@media (max-width: 768px) 
{
	/* PAGE AGENCE */
	#container-hero-agence {
		max-height: 100%;
		}

	.anacours-hero-banner {
	  flex-direction: column;
	}
  
	.coloneLeftHead {
	  width: 100%;
	  padding: 40px 20px;
	}

	.coloneLeftHead h1 {
		font-size: 2.5rem;
		line-height: 1.2;
		margin-bottom: 10px;
	}
  
	.coloneRightHead {

		position: static !important; /* ou "unset" si tu veux réinitialiser complètement */
		min-height: 250px;
		width: 100%!important;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		order: -1; /* Pour que l'image passe au-dessus du texte */
		z-index: 2!important;
	}
  
	/* Supprimer toute découpe sur mobile */
	#container-hero-agence {
	  background: #fae8e3;
	}

		/* PAGE AGENCE */

		/* PAGE SOUTIEN */
		
		.anacours-hero-banner-soutien-scolaire {
			flex-direction: column;
		  }
		.colonneGaucheHeroSoutien {
			position: static !important; /* ou "unset" si tu veux réinitialiser complètement */
			min-height: 250px;
			width: 100%!important;
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			order: -1; /* Pour que l'image passe au-dessus du texte */
			z-index: 2!important;
		}
		.colonneDroiteHeroSoutien h1 {
			font-size: 45px;
		}

		.colonneDroiteHeroSoutien {
			position: relative;
			width: 100%;
			padding: 40px 20px;
			background-color: #fae8e3;
		  }

		/* PAGE SOUTIEN */

}
  
.filAriane {
	color: #1a365b;
    font-family: "Texta", Sans-serif;
    font-size: 16px;
	
}

.titre_a_propos {
	font-family: "Texta", Sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a365b;
    text-align: center;
}

.overlayMenu {
  display: none;
  position: fixed;
  top: 250px; /* Décale l’overlay sous le header */
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100; /* <--- moins élevé que le menu ci-dessous */
  cursor: pointer;
}

#toggleMenu:checked ~ .overlayMenu {
  display: block;
}

/* Ton menu doit être au-dessus de l’overlay */
#menuAppear {
  position: relative;
  z-index: 101; /* plus que l’overlay */
}

.valid-feedback,
.invalid-feedback {
  display: none;
}

.icon-feedback {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.field {
  position: relative;
}

.icon-feedback::before {
  content: ''; /* vide par défaut */
}

.field.valid .icon-feedback::before {
  content: '✔'; /* ou '\2714' (check unicode) */
  color: #28a745;
}

.field.invalid .icon-feedback::before {
  content: '✖'; /* ou '\2716' (cross unicode) */
  color: #d43e31;
}







	

#contentInsc h3 sup{
	display: inline-block;
  font-size: 15px;
}


#contentInsc h3 sup{
	display: inline-block;
  font-size: 15px;
}

#primary1NewProf .marginTilteNew {
margin-bottom: -20px;
}


#primary1NewProf .form-main .info {

  font-weight: lighter !important;
  margin-top: 10px !important;
}

#primary1NewProf #diplome{
	height:80px !important;
}

#primary1NewProf textarea{
	font-size: 16px;
}

#primary1NewProf #stepCoord .field{
	margin-bottom: 0px;
}

.newColProf2{
	padding-top:30px;	
}

.btnNewBlue span{
	
border-radius: 100px;
  border: solid #d43e31 1px;
  background-color: #d43e31 !important;
  color: white !important;
  display: block;
  padding: 13px;
  padding-left: 20px;
  padding-right: 20px;
	cursor:pointer;	
	width: fit-content;
}

.btnNewBlue span:hover{
	
  border: solid #d43e31 1px;
  background-color: transparent !important;
  color: #d43e31 !important;
}


.newBtnDevis span{
	cursor: pointer;
  border-radius: 100px !important;
  border: solid #d43e31 1px !important;
  background-color: #d43e31 !important;
  padding: 13px;
  display: block;
  text-align: center;
  margin-left: 10px;

}

.newBtnDevis span:hover{

	background-color:transparent !important;
	border:solid #d43e31 1px;
	color:#d43e31 !important;
}



.newBtnDevis2 span{
	cursor: pointer;
  border-radius: 100px !important;
  border: solid #d43e31 1px !important;
  background-color: #d43e31 !important;
  padding: 13px;
  display: block;
  text-align: center;
  margin-left: 0px;
width:100%
}

.newBtnDevis2 span:hover{

	background-color:transparent !important;
	border:solid #d43e31 1px;
	color:#d43e31 !important;
}

.menuTarif{
	cursor: pointer;
  padding: 15px;
}

#primary1NewProf .form-main input[type="file"] + label{
	
	background-color: #d43e31;
}	

#primary1NewProf .form-steps-timeline-ctn .step.active .point {
  background-color: #d43e31;
}

#primary1NewProf .lineForm input[type="checkbox"]:checked + label::after{
	background-color: #d43e31;
}

#primary1NewProf .form-main .info{
	color:#1a365b;
}

#primary1NewProf .form-main{
	padding: 40px;
	padding-bottom: 20px;
}


#primary1NewProf .next-btn{
	background-color: #d43e31;
	border:solid #d43e31 1px;
}



#primary1NewProf .next-btn:hover{
	color: #d43e31 !important;
	background-color: transparent !important;
}

#primary1NewProf .prev-btn{
	border:solid white 1px;
}


#primary1NewProf .prev-btn:hover{
	color: #d43e31 !important;
	background-color: transparent !important; 
	border:solid #d43e31 1px !important;
}



#primary1NewProf .titleSpace{
	font-size: 25px;
  display: block;
  margin-bottom: 30px;
	
}

#primary1NewProf .main-title{
	font-size: 20px;
  color: #1a365b;
	  margin-top: 10px;
  display: block;
}


#primary1NewProf .ctas{
	margin-top: 40px;
	
}	

.contentcolProf{
	display: flex;
	gap: 40px;
}

.mainTitleBlack{
	text-align: center;
  display: block;
  font-size: 22px;
  font-style: italic;
}

.mainTitleBlack2{
	text-align: center;
  display: block;
  font-size: 22px;
  font-style: italic;
	padding-bottom: 0;
  margin-bottom: 0;
}


.contentcolProf .newColProf{
	width:50%;
}

.colonneTrust .e-con-inner{
	padding:0;	
}

.linkDevisAgence{
	
border-radius: 100px;
  border: solid #d43e31 1px;
  background-color: #d43e31 !important;
  color: white !important;
  display: block;
  width: fit-content;
  margin: auto;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
	cursor:pointer;	
}

.linkDevisAgence:hover{
	
  border: solid #d43e31 1px;
  background-color: white !important;
  color: #d43e31 !important;
}



.linkDevisAgence{
	cursor:pointer;	
}

.linkDevis{
	cursor:pointer;	
}

#dynaGall .dynamic-gallery-item {
	background-color: white !important;
	
}
#dynaGall .dynamic-gallery-item img{
	width: 100% !important;
	
}

#dynaGall .dynamic-gallery-item .item-content{
	
	background-color: white ;
  text-align: center;
  box-shadow: none;
}

#dynaGall .dynamic-gallery-item:hover .item-content{
	
background-color: #d43e31 !important;
color:white !important;

}

#dynaGall .dynamic-gallery-item:hover .item-content a{
	
color:white !important;

}


.linkViolet a{
	color: #1a365b !important;
}

.linkViolet {
	
font-family: "Texta", Sans-serif;
  font-weight: 600;
}	




.coloneRightHead{
	
	 position: absolute;
    width: 60%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: -4vw;
    object-fit: cover;
    object-position: right;
}




#blocTCustom .swiper-slide {
  padding: 40px !important;
}

.footerLink{
	cursor:pointer;	
}	

#footerSup .footerLink:hover {
  opacity: 0.5;
}

.titreCenterBloc h2{
text-align:center;	
	
}

#testiFranchise img
{
  width: 100% !important;
  border-radius: 0px !important;
  height: 200px !important;
}

#testiFranchise .elementor-testimonial__image
{
  width: 100% !important;
  border-radius: 0px !important;
  height: 200px !important;
}

.numbFranch{
	margin-top: -40px;
  display: block;
  background-color: #d43e31 !important;
  width: 30px;
  border-radius: 50px;
  height: 30px;
  text-align: center;
  color: white;
  padding-top: 2px;
  z-index: 99999;
  position: absolute;
	
}	

#btnContactFranchise{
position: fixed;
  right: -55px;
  z-index: 9999999;
  top: 350px;
  transform: rotate(-90deg);
}

.ongletDF .elementor-image-box-content{
	padding: 20px;
  padding-top: 10px;
	
}

#blocHistoryF .elementor-image-box-content{
	padding: 50px;
  padding-top: 40px;
	
}	

#colZindexF{
	z-index: 99;
}

.newTitleArchive{
	  color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.validStepLand{
	float: inherit !important;
  width: 100% !important;
}

#primary1Land .main-realTitle{
 color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 30px;
  display: block;
  margin-bottom: 10px;
}

#primary1Land .field {

	margin-bottom:5px;

}

#validStepLand{
  width: 100%  !important;
}

#primary1Land .form-submit{

	margin-top: 0px !important;
}

#primary1Land .rgpd-text{

  margin-top: 10px !important;
  margin-bottom: 20px !important;
	
}

#primary1Land .main-title-info{

	font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

#primary1Land .main-title{
color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  display: block;
  margin-bottom: 10px;
}	

.blocLand{
	padding:14px;	
}	

.itemToggle2{
  font-size: 20px !important;
  font-weight: 600 !important;
	width : 100%!important;
}

.blocAvanceImmTarif .elementor-image-box-title{
	font-size: 1.75rem;
  margin-bottom: 10px;
  display: block;
  margin-top: 10px;
}

#menuHtml .elementor-item::after {
  content: "\f105";
  color: #1a365b;
  position: absolute;
  font-family: sans-serif;
  display: inline;
  right: 0;
  font-family: "Font Awesome 5 Free";
  opacity: 1 !important;
  background-color: transparent !important;
  font-weight: 600 !important;
}

#menuHtml .elementor-item {
  text-align: left;
  margin-top: 5px;
  font-weight: 400;
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.116);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 5%;
	font-size: 15px;
	color:#1a365b;
	cursor:pointer;
}

#menuHtml .recrutMenu {
	color:#1a365b !important;
	font-weight:800;
}

#menuHtml .recrutMenu::after {
	color:#1a365b !important;
}

#menuHtml .elementor-widget-container{
 display: flex;
  flex-direction: column;
}

#titleMenuCours{
	text-align: left !important;
  flex-direction: row;
  display: flex;
}	


#menuClick{
	/*z-index: 999999;*/
	z-index: 999;
  position: relative;
  background-color: white;
}

#toggleMenu:checked + label + #menuAppear {
         max-height: 500px;

    opacity: 1;
} 

/* Styles de base */
#menuAppear {
max-height: 0;
	 opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  position: absolute;
  z-index: 99999;
  width: 100%;
  background-color: white;
	display: flex;
  flex-direction: row;
	top: 60px;
	padding-top: 20px;
  padding-bottom: 20px;

}

.itemToggle {
padding-top: 5px;
  padding-bottom: 5px;
}

#toggleMenu2:checked + label + #menuAppearMob {
    max-height: 100%;
    opacity: 1;
	  display:flex;
	overflow-y:scroll;
} 

/* Styles de base */
#menuAppearMob {
	max-height: 0;
	 opacity: 0;
	transition: max-height 0.3s ease-out;
  position: fixed;
  z-index: 99999;
  width: 100%;
  flex-direction: row;
  background-color: #1a365b6b;
  margin: 0;
  padding: 0;
top: 0px;
	display:none;
}

#menuAppearMob #contentMenuOK{
position: relative;
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  background-color: white;
  height: 100%;
  border-radius: 20px;
	padding-right:0px;
}


#otherColonneMob{
  display: flex;
}

#menuAppearMob #titleMenuCours .elementor-widget-container2{
  width: 100%;
}

#contentMenuOK {
  flex-direction: row;
  max-width: 1140px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

#menuAppearMob .elementor-heading-title{
  color: #1a365b !important;
  cursor: pointer;
  font-family: "Texta", Sans-serif;
  font-size: 18px;
	position:relative;
}

#menuAppearMob .menuSous1 .elementor-icon-box-title{
    font-family: "Texta", Sans-serif;
    font-size: 30px;
    font-weight: 800;
	    color: #1a365b;
}


#menuClick .elementor-item{
margin: 0 20px;
  color: #1a365b !important;
  cursor: pointer;
  font-family: "Texta", Sans-serif;
  font-size: 18px;
	position:relative;
}

#otherColonneMob .elementor-widget-heading{
margin-bottom: 15px !important;	
}

#menuAppearMob .menuSous4 .elementor-widget-heading{
margin-bottom: 15px !important;	
}

#menuAppearMob #titleMenuCours .fa-angle-down{
	font-size: 20px;
  margin-left: 10px;
}

#menuAppearMob .elementor-button{
	margin-top: 20px;
  margin-bottom: 20px;
}

#menuClick .elementor-item::after {
 height: 3px;
  width: 100%;
  z-index: 2;
  bottom: -31px;
}

#menuClick .elementor-item:after {
    background-color: #d43e31;
}

#menuClick .elementor-item:after {
    content: "";
}

#menuClick .elementor-widget-container:first-child{
display: flex;
  margin-top: 30px;
  justify-content: center;
  flex-direction: row;
  margin-top: 30px;
  align-items: center;
	position:relative;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  height: 90px;
  margin-top: 5px;
}

#menuClick .menuSous1{
display: flex;
  justify-content: left !important;
  flex-direction: row;
  align-items: left !important;
	flex: 2;
	flex-direction: column;
margin: 0 20px 0 0;
}

#menuClick .menuSous1 .elementor-icon-box-title{
    font-family: "Texta", Sans-serif;
    font-size: 42px;
    font-weight: 800;
	    color: #1a365b;
}

#menuClick .menuSous2{
display: flex;
  justify-content: left !important;
  flex-direction: row;
  align-items: left !important;
	flex: 1;
	flex-direction: column;
}

#menuClick .menuSous3{
display: flex;
  justify-content: left !important;
  flex-direction: row;
  align-items: left !important;
	flex: 1;
	flex-direction: column;
}

#menuClick .menuSous4{
display: flex;
  justify-content: left !important;
  flex-direction: row;
  align-items: left !important;
	flex: 1;
	flex-direction: column;

}

#menuClick .elementor-heading-title{
    color: #1a365b;
    font-family: "Texta", Sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1em;

}

#menuClick .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item{
	  color: #1a365b !important;
}

#menuClick .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:hover{
	  color: #1a365b !important;
}

#menuClick  .elementor-widget-container22 p{
		  color: #1a365b !important;

}

#contentMenuOK  .elementor-item:after {
    background-color: #d43e31;
}

#contentMenuOK  .elementor-item:after {
    content: "a";
	  display: none; /* Masque complètement l'élément généré */
    bottom: 0;
}

#addAg a{
  color: #1a365b !important;
}

#menuClick .elementor-widget{
	width:100%;
}

#contentMenuOK .elementor-widget-heading{

		margin-bottom:-15px;
	
}

#menuClick .recrutMenu{
	 color: #1a365b !important;
	
    font-weight: 800;
}	


.containAgBloc{
  margin-top: 40px;
  margin-bottom: 40px;
}

.titleHow{
  color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
	text-align:center;
}

.titleHow2{
  color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
	text-align:center;
}


.titreSC4 a{
	color: #1a365b !important;
	text-decoration:underline !important;
	font-weight: 800 !important;
}

.agencyPrpos p{
	color:#1a365b;
	
}

#containerInfoAg  .elementor-element{
	margin:0 !important;	
}

#containerInfoAg i{
	font-size: 23px !important;	
	color:#1a365b !important;
}

#containerInfoAg svg{
	font-size: 23px !important;	
}

#containerInfoAg{
	padding:20px;	
}

#containerInfoAg h3{
font-family: "Texta", Sans-serif !important;
  font-weight: 800 !important;
color: #1a365b !important;
}

.filAriane a{
	
	color:#1a365b;
	  font-family: "Texta", Sans-serif;
  font-size: 16px;
	text-decoration:underline;
}	

.titreSC4Plus{
color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 23px;
  font-weight: 900;
}	

.filAriane div{
	
	color:#1a365b;
	font-family: "Texta", Sans-serif;
  font-size: 16px;
	
}	

.divHeaderDroite{
	  display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    padding-top:3vh;
     padding-bottom:3vh;
width: 70%;
min-height: 60vh;
padding-left: 20%;
    padding-right: 5%;
    background: linear-gradient(295deg, #fae8e3 75%, rgba(0, 0, 0, 0) 75%);
    z-index:10;
	
}

.divHeaderGauche{
	 position: absolute;
 
    height: 100%;
    z-index: 9;
    top: 0;
    object-fit: cover;
    object-position: right;
}

.divOrdi{
	display:block;	
}


.mobTitle{
	display:none;	
}

.testiMatiere{
	font-style: italic !important;
  display: block;
	text-align:center;
	
}	


.donnePerso a{
	cursor:pointer;	
	
}

.cook a{
	cursor:pointer;	
	
}

.cgs a{
	cursor:pointer;	
	
}

	.lineGauche{
  display: block;
  margin-left: 35px;
  margin-top: 5px;
}
	
	.lineDouble{
		padding: 3px 6px !important;
	}


#agencyContent{
	
	display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
	
}


/** ADD PAGE PARTENAIRE***/

.radiusCadre{
border-radius:20px;	

}

.boldBouton a{
	font-weight:900 !important;	
}

 .liPart{
  padding: 10px;
  font-size: 18px;
}

.avtPart{
  font-weight: 900;
  color: #1a365b;
}

 .liPart::marker{
  content: '➔ ';
  color: #1a365b;
}

	.btnPageInstruTarif34	 a{
		border-radius:100px;
			border:solid #d43e31 1px;
		background-color: #d43e31!important;
		color:white !important;
	}
	
	.btnPageInstruTarif34 a:hover{
			background-color: transparent !important;
			border-radius:100px;
			border:solid #d43e31 1px;
			color:#d43e31 !important;
	}

.titlePart{
	
	font-weight: 900;
}

#colonneDroitePartenaire .elementor-widget-container{
	display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	
}	

/******/

/**** ADD MUSIQUE PAGE ***/

	.listAnacoursMu li{
		background-color: #fae8e3 !important;
		padding: 15px !important;
	}

				
	

	.blocIconMu{

    width: 28.5% !important;
    
    border-radius: 10px;
    margin: 5px 5px;
    background-color: #fffaf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #d43e3100;
    transition: all 0.3s;
    /* box-shadow: 10px 5px 5px rgb(0 0 0 / 11%); */
    margin-bottom: 5px !important;
		padding-bottom: 10px;
	}
	
	
	
			.blocIconMu figure{
				display:block !important;
				width:100% !important;
}
			.blocIconMu figure a{
				padding-bottom:0px !important;
				
}
	
	.blocIconMu  .elementor-image-box-content a{
				padding-top:5px !important;
	}			
	
	
		
	
	.blocIconMu figure img{
				
				width:25%;
}
		.blocMatiere figure img{
			width:15%;
		}
			.blocIcon a{
				display:block;
				width:100%;
}
		.blocIconMu a{
				padding: 14px;
}
		.blocIconMu .elementor-icon-box-icon a:first-child{
				padding: 14px 0px 0px;
}
	.blocIconMu h3{
				margin:0px !important;
}
	.blocIconMu .elementor-icon svg {

  margin: auto;
}
			.blocIconMu .elementor-widget-container{
				
				width:100%;
}
	
		.blocIconMu:hover{

    border:solid #d43e31 1px;
	}
	

	.postuleAnacoursMu svg g{
		fill:white;
	}
	
	
	.postuleAnacoursMu a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #d43e31 1px;
        font-size: 18px;
	}
	
	.postuleAnacoursMu a:hover g{
		
		fill:#d43e31 !important;
	}
	
	
	.postuleAnacoursMu a:hover{
		
		background-color:transparent !important;
		border:solid #d43e31 1px;
		color:#d43e31 !important;
	}
	

	.tarifButtonMu a{
		
		
		color: white;
		
	}

.titreColor1Mu{
		color: #d43e31;
	}


	.titreColor2Mu{
		color: #1a365b;
	}

	.tarifAnacours2Mu a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #d43e31 1px;
		background-color: #d43e31 !important;
		
	}
	
	.tarifAnacours2Mu a:hover{
		
		background-color:transparent !important;
		border:solid #d43e31 1px;
		color:#d43e31 !important;
	}

	.blocCallToMu img {
		
position: absolute;
  bottom: -33px;
  right: -55px;
  width: 300px;
		
	}	
	
	
	.tarifButtonMu{
		
		padding: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		display: block;
		position: relative;
		color: white;
		background-color: #d43e31;
		border-radius: 30px;
		border: solid #d43e31 1px;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 20px;
		width:140px;
	}
	
	.tarifButtonMu:hover{
		

		color: #d43e31;
		background-color: transparent;
		border: solid #d43e31 1px;

	}


.titreColorMusique{
		color: #1a365b;
	}

.blocAvanceImm #pourcentIcoMu{
    
	width:70px;
	position: absolute;
	top: -20px;
	left: -20px;

}
	

#pourcentIcoMu .st1 {
  fill: #d43e31;
}
#pourcentIcoMu .st19 {
  fill: white;
}


	.btnPageInstruTarif3Mu	 a{
		border-radius:100px;
			border:solid #d43e31 1px;
		background-color: #d43e31!important;
		color:white !important;
	}
	
	.btnPageInstruTarif3Mu a:hover{
			background-color: transparent !important;
			border-radius:100px;
			border:solid #d43e31 1px;
			color:#d43e31 !important;
	}

/**************************/



#blocTCustom .elementor-testimonial__name{
	font-weight: 900;
  font-size: 18px;
  display: block;
  color: #1a365b;	
		text-transform: capitalize;
	text-align:center  !important;
}
#blocTCustom .elementor-testimonial__footer{
justify-content: center !important;		
}

#blocTCustom .elementor-testimonial__content{
background-color: transparent !important;
		
}
	
	.blocPostule img{
		position: absolute;
  top: -240px;
  left: 0px;
  width: 80%;
	}

.blocPostule2 img {
  position: absolute;
  top: -290px;
  left: 0px;
  width: 95%;
}

	
	#blocTCustom .elementor-testimonial__text{
color: #1a365b !important;		
}
	.titreSC{
		color: #1a365b;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
	}


	.titreSC2{
		color: #1a365b;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
	}

	.titreSC3{
		color: #1a365b;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
	}

	.titreSC4{
		color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5 !important;
	}



	
	.post-carousel-categories{
		display:none;
	}
	
	
	.errorLoc{
		position: absolute;
top: 70px;
color: #1a365b;
		
		
	}

	.swiper-container {
		overflow:hidden;
	}

.list-landing-stages-agence-item-left h3{
    font-weight: 900;
}

.list-landing-stages-agence-item-icon img{
    width:100%;
}


.list-landing-stages-agence-item-header p{
    margin: 0;
}


   #titleMenuCours .elementor-icon-box-icon{
            display: none;
        }



.noResultStage{
    font-weight: 900;
font-size: 20px;
padding: 40px;
text-align: center;
}

#menuPremier ul{
    width:60%;
}

#menuPremier li{
    width:25%;
}
#menuPremier a{
text-align: center;
width: 100%;
display: flex;
justify-content: center;
}

#loadMore{
    
margin: auto;
width: 200px;
display: block;
cursor: pointer;
border-radius: 100px;
border: solid #d43e31 1px;
background-color: #d43e31 !important;
color: white;
padding: 12px 24px;
    text-align: center;
}

#loadMore:hover{
    

border: solid #d43e31 1px;
background-color:transparent !important;
color: #d43e31 !important;
padding: 12px 24px;
}
	
	.firstHeading{
		font-size: 28px;
    font-weight: 900;
	}
	
	#bodyContent{
		width: 250px;
		font-size:14px;
	}
	
	 #bodyContent .linkAg{
       text-align: center;
    background-color: #d43e31;
    height: 40px;
    padding-top: 10px;
    display: block;
    color: white;
		 border-radius:30px;
		     border: 1px solid #d43e31;
         width:100% !important;
}


     #bodyContent .telAg{
          display: block;
        margin-bottom: 20px;
          margin-top: 20px;
         color: #1a365b;
          font-weight: 700;
    }


     #bodyContent p{
        margin-bottom: 5px;
    }

.etablissement-scolaire-container a{
    color:#1a365b !important;
}

	#bodyContent .linkAg:hover{
    
    background-color: transparent;
  
    color: #d43e31;
		     border: 1px solid #d43e31;
}
.blueMenu a{
    color: #1a365b !important;
font-weight: 800 !important;
}

.blueMenu a:after{
    color: #1a365b !important;
font-weight: 800 !important;
}
	
	.swiper-pagination {
  
  bottom: 15px !important;
}
	
		.solBlock .swiper-pagination{
			
			
				display:none;
			
		}
	
	.trouverAgence2{
          padding: 20px;
        display: inline;
        position: relative;
        color: #1a365b;
        border-radius: 30px;
        border: solid #1a365b 1px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 20px;
        width: 170px;
	text-align:center;
        font-weight: 700;
		
	}

	.trouverAgence2:hover{
        position: relative;
        color: #d43e31;
        background-color: transparent;
        border-radius: 30px;
        border: solid #d43e31 1px;
		
	}


.decouvCP{
    
    color: #1a365b;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.tarifButtonOk2{
      padding: 20px;
    position: relative;
    color: white;
    background-color: #d43e31;
    border-radius: 30px;
    border: solid #d43e31 1px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    width: 170px;
	text-align:center;
    margin-left: 10px;
    font-weight: 700;
	cursor:pointer;
		
	}

	.tarifButtonOk2:hover{
        position: relative;
        color: #d43e31;
        background-color: transparent;
        border-radius: 30px;
        border: solid #d43e31 1px;

	}

.sectionBP h3{
    
        font-weight: 800;
}

.sectionBP h2{
    
        font-weight: 800;
}

.sectionBP h4{
    
        font-weight: 800;
}
	
.sectionBP b{
    
        font-weight: 800;
}
	
.blocCallToOk{
    background-color: #d43e31;
    height: 260px;
    border-radius: 20px;
    padding-left: 10px;
}	


.blocCallToOk .blockOk{
		display:block;
    margin-bottom: 30px;
	}	

.blocCallToOk .elementor-image-box-title{
	padding-top: 20px;
	display:block;
	}	
	

	.blocCallToOk img{
	width: 220px;
    position: absolute;
    bottom: 5px;
	}	

	
	.list-landing-stages-agence-item-header p span.city-name {
    float: right;
}
	#listEtablissementAg li::marker {
    color: #1a365b;
}
	#listEtablissementAg ul {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
}
	
	#btnChangeAg{
		padding-top:10px;
		padding-bottom:5px;
	}
	
	
	#listEtablissementAg li span {
    font-weight: 600;
}
	#listEtablissementAg li {
    font-family: "Texta";
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 20px;
}
	#addAg, #telAg, #horaireAg{
		font-size: 18px;
	}
	

	
	#contentDataAg .elementor-widget:not(:last-child) {
  margin-bottom: 0px ;
}

		#addAg{
  margin-bottom: 20px !important;
	}
	
	
	
	.containSt{
		width:100% !important;
	}
	
	#titleStageA{
		color: #1a365b;
		font-size:61px;
		text-transform:uppercase;
		font-weight:900;
		text-align: center;
	}
	
	.cta-purple {
    position: relative;
    display: block;
    padding: 10px 25px;
    background: #d43e31;
    color: white;
    width: fit-content;
    border-radius: 25px;
    border: 1px solid #d43e31;
    transition: all 0.3s;
}
	
	
	.cta-purple:hover {
      position: relative;
    display: block;
    padding: 10px 25px;
    background-color: transparent;
    color: #d43e31;
    width: fit-content;
    border-radius: 25px;
    border: 1px solid #d43e31;
    transition: all 0.3s;
}
	
	.btnWidgAg2 a{
	position: relative;
  display: block;
  padding: 15px 25px;
  background-color: #d43e31 !important;
  color: white;
  border-radius: 25px;
  border: 1px solid #d43e31;
  transition: all 0.3s;
  font-size: 18px;
  margin-top: 10px;
		margin-bottom:30px;
	}
	
	.btnWidgAg2 a:hover{
		  
    background-color: white !important;
    color: #d43e31;
   
    border: 1px solid #d43e31;
	}
	
	
	#containerStage2{
		display: flex;
flex-direction: column;
	}
	
	.clickStage{
		cursor:pointer;
		text-align: left;
color: #1a365b !important;
font-size: 24px;
	}

	#containerStage .elementor-container{
		margin:0;
		display: none;
	}
	.training-listing__section .list-landing-stages-agence-item {
    width: 100%;
    margin: 0;
}
	.contentStagesAg{
		    border: 1px solid #fffaf8;
    background: #fffaf8;
    border-radius: 20px;
    margin: 25px auto;
	}
	
	#pagination-container{

margin-bottom: 80px;
margin-top: 30px;
	}
	
	.list-landing-stages-agence-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border: solid 1px #d43e31;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

	#containerStage img{
	width: 100%;
    height: 100%;	
	}
	
#containerStage {
    width: 80%;
    margin: auto;
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    justify-content: space-between;
}
	.list-landing-stages-agence-item-right {
    position: relative;
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
	.list-landing-stages-agence-item-right p {
    font-size: 1.5rem;
    font-family: "Texta";
    font-weight: 400;
    margin-right: 30px;
    padding: 20px 0;
        margin-bottom:0px;
}

	.list-landing-stages-agence-item-right .cta-yellow {
    margin-top: 0;
}
	
	.list-landing-stages-agence-item-left h3 {
    margin: 10px 0;
}
	.list-landing-stages-agence-item-left p {
    opacity: 0.5;
}
	
	.list-landing-stages-agence-item-left h4 {
    font-size: 1.25rem;
    font-family: "Texta";
    font-weight: 900;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0px 0;
}
	
	.cta-yellow {
    position: relative;
    display: block;
    margin-top: 25px;
    padding: 10px 25px;
    background: #d43e31;
    color: #ffffff;
    width: fit-content;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid #d43e31;
    transition: all 0.3s;
}
	
	.list-landing-stages-agence-item-left {
    position: relative;
    width: 45%;
}
	
	.list-landing-stages-agence-item-text-wrapper {
    width: auto;
    padding: 5px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
	
	.list-landing-stages-agence-item-icon {
    width: 3.5%;
}
	
	.list-landing-stages-agence-item-header {
    padding: 5px 10px;
    background-color: #fffaf8;
}
.training-listing__section .list-landing-stages-agence-item {
    width: 100%;
    margin: 0;
}
.stage-listing__item {
    display: inline-flex;
    width: 49%;
    padding: 10px 0;
}
	
	
.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #ffffff;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #d43e31;
	background-color: #d43e31;
}

.simple-pagination .current {
	    color: #e6d9d5;
    background: #1a365b;
	border: 1px solid #1a365b;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #d43e31;
	border: 1px solid #d43e31;
	color:#ffffff;
}
	
	.boiteAgence{
		border-bottom: 1px solid rgba(0, 0, 0, 0.253);
	margin-bottom: 15px !important;
padding-bottom: 5px;	
	}
	
	.boiteAgence h3 a{
		font-size: 22px;
    width: 100%;
    display: block;
    color: #1a365b !important;
    height: 100%;
    text-align: left;
	}
	
	.boiteAgence svg{
		transform: rotate(-90deg);
		font-size: 15px;
	}
	
	 
	
	.telCard{
		  margin-right: 10px;
  margin-top: 2px;

	}
	
	.btnWidgAg a{
		width:100% !important;
	}
	
	.agences-cards-wrapper a {
    color: #1a365b;
    font-size: 1rem;
    /* display: flex; */
}
	.card-first-column {
    position: relative;
    width: 80%;
    display: flex;
    flex-direction: column;
}
	.card-first-row {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    
}
	.card-second-row {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
}
	.agences-card-item a {
    color: #1a365b;
    font-size: 1rem;
    /* display: flex; */
}
	.card-second-column img {
    margin-right: 0px;
    transform: rotate(-90deg);
}
	.card-second-column {
    position: relative;
    width: 10%;
    margin-top: 5px;
}
	.titleAg{
		    font-size: 3vw;
   font-family:"Texta";
    text-align:center;
    font-weight: 900; 
   
    line-height: 1.05em;
    color: #1a365b;
	}
	
	.agences-card-item{
		    position: relative;
    width: 22%;
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #d43e31;
    background-color: #d43e3100;
    border-radius: 20px;
    transition: all 0.3s;
	}
	
	.agences-card-item h3{
		  font-size: 1.6vw;
font-family:"Texta";
font-weight: 900;
line-height: 1.2em;
color: #1a365b;
		text-transform: capitalize;
	}
	.agences-card-item:hover {
    background-color: #d43e3117;
}
	
	#contentAgency{
		    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
	}
	
	#contentAgency .elementor-container{
		 
    margin: 0px !important;
	}
	
	
	#map{
		padding-bottom: 56.25%;
        margin-top: 30px;
	}
	
	.blocDecouverte {
  position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 20px;
    box-shadow: 10px 5px 5px rgb(0 0 0 / 11%);
    align-items: center;
    overflow: hidden;
    width: 32%;
    background-color: white;
    transition: all 0.3s;
}
	.blocDecouverte:hover {
   
   cursor:pointer;
    background-color:#d43e31 !important;
   color: white !important;
}
		.blocDecouverte:hover .elementor-image-box-title{
   
   color: white !important;
}
	.blocDecouverte:hover .elementor-image-box-description{
   
   color: white !important;
}
		.blocDecouverte:hover #iconArrow{
   
   fill: white !important;
}


.blocDecouverte:hover .decouvCP{
    
    color: white !important;
}

	.blocDecouverte i{
  font-size: 20px;
  color: #1a365b;
}
	.blocDecouverte figure{
  margin-bottom: -6px !important;
}
	
	.blocDecouverte i{
  font-size: 25px;
  color: #1a365b;
}


	.blocDecouverte .elementor-image-box-description{
  padding-right: 10px;
}

.btnSimple{
    margin: 0px !important;
    padding:0px !important;
}
 .btnSimple a{
    margin: 0px !important;
    padding:10px !important;
	  padding-left:0px !important;
	     justify-content: left;
   width:300px !important;
    display: flex;
	 
}

	.btnSimple a:hover .elementor-align-icon-right {
   margin-left: 18px  !important;
}

	
	#menuPremier .elementor-widget:not(:last-child) {
		
  margin-bottom: 0px !important;
}
	
	#btnSeeAg{
		
		display:none;
		
	}
	
	#btnChangeAg{
		
		display:none;
		
	}
	
	
	#stylePop{
		    position: absolute;
    top: -20px;
    left: 50%;
    height: 10px;
    width: 10px;
    background-color: #fae8e3;
    transform: translate(-50%, -5px) rotate(45deg);
		
	}
	
	#myPopin{
		display:none;
		position: absolute;
    top: 100px;
    background-color: #fae8e3;
    width: 235px;
    border-radius: 10px;
    padding: 20px;
 
    box-shadow: 0px 10px 10px rgb(0 0 0 / 20%);
    opacity: 1;
    z-index: 1;
    pointer-events: initial;
    transition: opacity 0.3s;
	}
	
	
	#myPopin .elementor-widget:not(:last-child){
		
		margin-bottom:0px !important;
		
	}
	
	.menuParticulier{
		cursor:pointer;
	}
	
	.menuParticulier a::before {
content: "\f078";
font-family: "Font Awesome 5 Free";
position: absolute;
opacity: 1 !important;
color: #1a365b;
font-weight: 600;
background-color: transparent !important;
font-size: 15px;
margin-top: -15px;
margin-left: -80px;
        transition: none;
}


	.menuParticulierClick a::before {
margin-top: 20px !important;
margin-left: -80px;
transform: rotate(-180deg) !important;
        transition: none;
}

	
.btnVoirTous a{
    background-color: transparent !important;
color: #1a365b !important;
font-weight: 700 !important;
}

	
	.chooseAancours figure{

		background-color: white;
		border-radius: 200px;

	}

	
	
	.chooseAancoursMu figure{

		background-color: white;
		border-radius: 200px;
		
	}




	
	
	.btnCallTo {
	 width: 50% !important;
	float: left;
	margin-bottom: 20px !important;
}
	

.newBtnDevis2 {
	
width:100% !important;
}
	

.btnCallTo a{
	font-weight: 800 !important;
}
	
	.logoSite img{
		width:250px !important;
	}
	
	.activeBtn{
		display:block !important;
	}
	
	#headLogoMob{
		padding-top: 8px;
	}
	
	
	#containHeader{
		border-bottom: 1px solid rgba(0, 0, 0, 0.205)
		
	}
	
	.elementor{
		margin-top: -10px;
	}
	
	
	.contentArticleImg img{
		transform: translate(0%, -20%);
	}
	
.elementor-text-editor h1{
  line-height: 1.05em;
  color: #1a365b;
  font-size: 3vw;
  font-family: "Texta";
  font-weight: 800;
}
	
	.elementor-text-editor h2{
	font-size: 2vw;
font-family: "Texta";
font-weight: 900;
line-height: 1.2em;
		color: #1a365b;
	}
	.colonneWidget form p{
		display:none;
		margin:0px;
	}
	
	.colonneWidget form label{
		display:none;
		margin:0px;
	}
	
	.colonneWidget form p:first-child{
		display:block;
		width:100%;
	}
		.colonneWidget form{
			display: flex;
		flex-direction: row;
		padding: 0px 20px 20px 20px;
		position: relative;
		background-color: #fae8e3;
	}
	.colonneWidget input{
		border-top-left-radius: 100px;
		border-bottom-left-radius: 100px;
		padding: 20px 15px;
		border: 1px solid #d9e0e8;
		width: 100%;
	}
	
		
.colonneWidget input[type="submit"]{
width: 55px;
background-color: #d43e31;
border: none;
color: white;
font-weight: 600;
padding: 0 20px;
cursor: pointer;
height: 65px;
margin-top: 24px;
border-radius: 0 50px 50px 0px;
	}
	
	
	#overlay{
		position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #1a365b;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
z-index: 99;
	}
	
		#contentOverlay3{
border-radius: 10px;
padding: 50px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
color: #1a365b;
z-index: 100000;
text-align: center;
			background-color:white;
	}
	
#buttonStop{

    background-color: #d43e31;
    padding: 15px;
    margin-top: 10px;
    display: block;
    color: white;
    cursor: pointer;
    border-radius: 40px;

}
	
	#contentOverlay3 img{
		width:50px;
	}
		
	.error{
		color: crimson;
text-align: center;
		display:none;
	}
	
	.error2{
		color: crimson;
text-align: center;
		display:none;
	}


#primary1NewProf .error{
		color: crimson;
text-align: center;
		display:none;
	padding-top: 40px;
  margin: -10px;
	}
	
#primary1NewProf  .error2{
		color: crimson;
text-align: center;
		display:none;
	padding-top: 40px;
  margin: -10px;
	}

	.eael-accordion-content ul{
  list-style:none;
}
	.eael-accordion-content a{
  display:block;
}
	
	.eael-accordion-content a{
  font-family: "Texta", Sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1a365b !important;
  position: relative;
}
	
	.eael-accordion-content a::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  margin-left: 10px;
		/*left:70px;*/
  position: absolute;
}
	
	
.eael-accordion-content .excerpt{
  font-size: 1.1em !important;
  font-family: "Texta", Sans-serif !important;
}
	
	.elementor-29 .elementor-element.elementor-element-85edd40 .eael-filter-gallery-container.eael-cards .item-content {

  height: 170px;
}
	
	.elementor-portfolio-item__title {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 14px !important;
  color: #1a365b !important;
}
	.elementor-portfolio-item__overlay {
  opacity: 1 !important;
  position: absolute;
  bottom: 0 !important;
		top: inherit !important;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  transition: opacity 1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: white !important;
  width: 100%;
  height: 50px;
}
.elementor-portfolio-item:hover .elementor-portfolio-item__overlay {
 
  background-color: #d43e31 !important;
}
	
.elementor-portfolio-item:hover .elementor-portfolio-item__title{
 
  color: white !important;
}
	
	.elementor-portfolio-item {
 
  margin:10px !important;
}
	
.widget-newsletter {
  display: flex;
  flex-direction: column;
  background-color: #fae8e3;
  padding: 20px 20px;
}
	
	.widget-newsletter-input-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 100px;
  padding: 20px 0px;
}
	
	.widget-newsletter-input-wrapper input {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 20px 15px;
  border: 1px solid #d9e0e8;
  width: 100%;
}
	
	
	.arrow-input {
  width: auto;
  background-color: #d43e31;
  border: none;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  color: white;
  font-weight: 600;
  padding: 0 20px;
  cursor: pointer;
}
	
	
	.elementor-post-info__terms-list-item{
		font-size: 15px;
margin-right: 7px;
color: #1a365b;
float: left;
background-color: antiquewhite;
padding: 8px;
border-radius: 10px;
		
	}
	
	.elementor-post-info__terms-list{
		
		color:white;
	}
	
	.elementor-widget-theme-post-content h2{
		  color: #1a365b;
  font-family: "Texta", Sans-serif;
  font-size: 36px;
  font-weight: 900;
}
	
	
	
	.blocBlueFull .elementor-widget-image{
		position: absolute;
bottom: -10px;
width: 300px;
left: 10px;
		
		
	}
	
	.colonneUrsaff h2{
		background-color: #d43e31;
padding: 15px;
border-radius: 10px;
	}
	
		.colonneUrsaff {
	
padding: 10px;
	}
	
	.paiementAnacours img{
		
		border-style: solid;
border-color: #ffffff;
border-radius: 100%;
filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
transition-duration: 0.3s;
background-color: white;
		
		
	}
	
	.colonneTarif1 {
		border-bottom: solid 6px #fae8e3;
padding-bottom: 20px;
		margin: 20px;
	}
	
	
.colonneTarif2 {
		border-bottom: solid 6px #fae8e3;
padding-bottom: 20px;
	margin: 20px;
	}
	
.colonneTarif1 h2{
		background-color: #fae8e3;
padding: 20px;
	}
	
	
.colonneTarif2 h2{
		background-color: #fae8e3;
padding: 20px;
	}
	
	
.colonneTarif1 .elementor-widget-text-editor, .colonneTarif2 .elementor-widget-text-editor{
	padding: 5%;
background-color: #fffaf8;
flex: 1;
margin-top: -15px;
	}
	
	
	.form-main label.hidden-label {
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}
	.form-main input[type="file"] {
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}
	
	.form-main textarea::placeholder {
  color: #71829a;
  font-weight: 300;
}
	.form-main textarea {
  width: 100% !important;
  height: 150px;
  border-radius: 20px;
  background-color: white;
  padding: 15px;
  font-size: 20px;
  font-family: "Texta", sans-serif;
  border: none;
  outline: none;
}
	.form-main textarea::placeholder {
  color: #71829a;
  font-weight: 300;
}
	
	.form-main input[type="file"] + label {
 background-color: #d43e31;
color: white;
padding: 10px;
width: 100%;
border-radius: 55px;
cursor: pointer;
font-size: 18px;
font-weight: 700;
text-align: center;
}
	.form-main .info {
  font-size: 14px;
  color: #1a365b;
  margin-top: 20px;
}
	.form-main .main-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  display: block;
}
	
	.form-main .separator {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background-color: #d43e31;
  margin: 5px 0 5px 0;
}
	
	.form-steps-timeline-ctn .step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
	
	 .form-steps-timeline-ctn {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
    margin-top: 0px;
  height: 1px;
  margin-top: 30px;
		 margin-bottom: 30px;
  background-image: url('../img/dashed-bg_b68373.png');
}
	.form-steps-timeline-ctn .step.active .point::before {
  content: '';
  width: 24px;
  height: 24px;
  background-color: #fae8e3;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
	
	.form-steps-timeline-ctn .step.active .point {
  background-color: #d43e31;
}
	.form-steps-timeline-ctn .step .point {
  width: 14px;
  height: 14px;
  background-color: #fae8e3;
  border-radius: 100%;
  position: relative;
  transition: background 0.3s ease-out;
}
	
	.bloc-form-with-steps * {
  box-sizing: border-box;
}
	
	.form-steps-timeline-ctn .step .name {
  color: #71829a;
  font-size: 16px;
  text-align: center;
  position: absolute;
  font-weight: 300;
  top: 20px;
  transition: color 0.3s ease-out;
}
	
	.form-steps-timeline-ctn .step.active .name {
  color: #1a365b;
  font-weight: 500;
}
	
	.colonnePointi{
		padding: 30px;
		border: dashed 2px #d43e31;
		border-radius: 20px;
		margin: 10px;
	}
	
.colonnePointi2{
		border: dashed 2px #d43e31;
		border-radius: 20px;
	padding: 30px;
	}
	

.recrutement-swiper-nav-container {
    position: relative;
    width: 25%;
    margin: 40px auto;
    height: auto;
    display: flex;
    flex-direction: row;
}
	
.recrutement-swiper-nav-container .prev-ctrl {
    width: auto;
    
    margin-right: auto;
   
    cursor: pointer;
    border: solid #1a365b 1px;
border-radius: 30px;
width: 70px;
height: 50px;
}

.recrutement-swiper-nav-container .swiper-pagination-bullet {
  
  margin-left: 10px;
     cursor: pointer;
}

.bulletActive{
    opacity: 1;
    background-color:#d43e31;
    cursor: pointer;
}

.recrutement-swiper-nav-container .swiper-pagination {
    position: relative !important;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.recrutement-swiper-nav-container .next-ctrl {
    width: auto;
   
    margin-left: auto;
  
    cursor: pointer;
    border: solid #1a365b 1px;
border-radius: 30px;
width: 70px;
height: 50px;
}


.recrutement-swiper-nav-container .next-ctrl i, .recrutement-swiper-nav-container .prev-ctrl i{
  padding-top: 15px;
padding-left: 20px;
}

.txtArticle strong, .txtArticle b{
    
    font-weight: 800;
    
}

.txtArticle h3, .txtArticle h2, .txtArticle h1, .txtArticle h4{
    
    font-weight: 900;
    margin-top:30px;
     margin-bottom:30px;
}


.txtArticle a{
    
    font-weight: 700;
    color:#1a365b !important;
    
}

	.blocAvanceTarif{
		background-color: #fae8e3;
	}
	
	.choiceVille{
		padding: 10px;
		border-bottom: solid black 1px;
		cursor:pointer;
	}
	
	.choiceVille:hover{
		background-color: #d43e31;
color: white;
	}
	
	.firstLigne{
		margin: 0;
font-weight: 600;
	}
	
	.secondLigne{
		margin: 0;
	}
	
	#resultSearchA{
		position: absolute;
		box-sizing: border-box;
		overflow: hidden;
			overflow-y: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 9999;
		width: 0;
		margin: 8px 0;
		max-height: 288px;
		background: white;
		border-radius: 4px;
		box-shadow: 0 0 0 1px rgba(0,0,0,0.1),0 4px 11px rgba(0,0,0,0.1);
		-ms-touch-action: manipulation;
		touch-action: manipulation;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	
.lds-ellipsis {
	opacity:0;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 50px;

}
.lds-ellipsis div {
  position: absolute;

  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c5d0dc;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 3px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 3px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 12px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 18px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

	
	.is-disabled{
		cursor: not-allowed;
		opacity: 0.5;
	}
	
	#validStep{
			color:white;
		float:right;
	}
		#newStepRecrut2, #validStepRecrut{
			color:white;
		float:right;
	}
	
		
#prevStep1 {
   
	color:#1a365b;
}
	
	
#nextStep1 {
    width: 220px;
    margin: auto;
   display: flex;
text-align: center;
justify-content: center;
	color:white;
}
	
	#nextStepRecrut1 {
    width: 220px;
    margin: auto;
   display: flex;
text-align: center;
justify-content: center;
	color:white;
}
	
	
.next-btn {
    width: 220px;
    margin: auto;
    display: inline-block;
	color:white !important;
}
	
	
	
	.form-submit {
    margin-top: 40px;
}
	
	
	#stepInstru{
		display:block;
	}
	
.contentFormAnacours  textarea {
  border: 1px solid transparent;
  transition: border 0.3s ease-out;
}
	
	.contentFormAnacours  .field-surwrapper {
  display: flex;
  justify-content: space-between;
}
	.contentFormAnacours .field-40{
  width: 40%;
}

	.contentFormAnacours .field-60{
  width: 60%;
	padding-left: 0px !important;
	}

	
	
	.contentFormAnacours  label.hidden-label {
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}
	
	.contentFormAnacours input {
  width: 100% !important;
  height: 45px;
  border-radius: 55px;
  background-color: white;
  padding: 20px 25px;
  font-size: 18px;
  font-family: "Texta", sans-serif;
  border: none;
  outline: none;
}
	

#primary1Land input {
  	height: 45px!important;
	font-size: 18px;
}
	
.contentFormAnacours .main-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    display: block;
}
	
.contentFormAnacours .separator {
    width: 100%;
    height: 1px;
    opacity: 0.5;
    background-color: #d43e31;
    margin: 55px 0 35px 0;
}
	
.contentFormAnacours select {
    width: 100% !important;
    background-color: white;
    border: 1px solid white;
    min-height: 40px;
	height: 45px!important;
	font-family: texta, sans-serif;
	font-size: 18px;
    padding: 10px;
    border-radius: 100px;
    outline: none;
   
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icon-chevron_a10eef.svg) no-repeat 92.5% #ffffff;
    transition: border 0.3s;
}

#primary1Land select {
  padding-left: 25px;
}

	#stepInstru select {
    
	margin-bottom:10px;
}

	
	
.contentFormAnacours select[placeholder] {
    color: grey;
    font-size: 1.25rem;
    font-family: "Texta";
    font-weight: 400;
		    padding-left: 20px;
}	
#primary1Land  select[placeholder] {
 
    font-size: 18px;
}	
	
	
.contentFormAnacours .form-timeline-ctn {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + 20px));
}
.contentFormAnacours .form-timeline-ctn .timeline {
    width: 100%;
    background-color: #1a365b;
    height: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}
.contentFormAnacours .form-timeline-ctn .timeline-wrapper {
    width: 100%;
    background-color: #fae8e3;
    height: 10px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.contentFormAnacours .form-timeline-ctn .number-container {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
	
	.rgpd-text p, .rgpd-text a {
    font-size: 11px;
    color: #1a365b;
    line-height: 16px;
	
}
		.rgpd-text {

    margin-top: 30px;
    margin-bottom: 30px;
    display: block;

}
	 .prev-btn {
    background-color: white;
    color: #1a365b;
    border: none;
    outline: none;
    width: 45%;
    padding: 16px;
    cursor: pointer;
    border-radius: 55px;
    font-size: 16px;
         font-weight: 700;
		 
}
	
	 .prev-btn:hover {
    background-color: transparent !important;
    color: #d43e31 !important;
    border: solid 1px #d43e31;
	}
	
	 .next-btn {
    background-color: #d43e31;
    color: white;
    border: none;
    outline: none;
    width: 45%;
    padding: 16px;
    cursor: pointer;
    border-radius: 55px;
    font-size: 16px;
         font-weight: 700;
}
	
	 .next-btn:hover {
    background-color: transparent !important;
    color: #d43e31 !important;
    border: solid 1px #d43e31;
	}
	
	.form-main{
		display:none;
	}

		.active{
		display:block;
	}
	
	
	.lineForm {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 20px 0 0;
}

.lineForm input[type='radio'] {
  display: none;
}

	.lineForm input[type='checkbox'] {
  display: none;
}
.lineForm label {
  font-weight: normal;
	cursor:pointer;
}

.lineForm label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 15px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  
  background-color: white;
}

.lineForm input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  left: 10px;
  content: " ";
  display: block;
  background: #d43e31;
}
	

.lineForm input[type=checkbox]:checked + label:after {
  border-radius: 11px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  left: 10px;
  content: " ";
  display: block;
  background: #d43e31;
}
	
	
	.form .form-mains .form-main .main-title-info{
    padding-bottom: 20px;
display: block;
}
	
.form .form-mains .form-main .field {
   
    display: flex;
    flex-direction: column;
		
	padding-top:0px;
	padding-bottom:0px;
	margin-top: 10px;
}
	.form .form-mains .form-main .field.field-flex-row {
    flex-direction: row;
}
	.form .form-mains .form-main .main-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 0;
		margin-bottom: 5px;
}
	.field .err-not-filled {
    display: none;
    width: 80%;
    position: absolute;
    text-align: center;
    color: #d43e31;
    font-size: 16px;
}

#primary1Land .err-not-filled {
    display: none;
  text-align: center;
  color: #d43e31;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
	
	
	.form .form-mains .form-main .field .col {
    display: flex;
    flex-direction: column;
    width: 100%;
}
	
	
	
		
.contentFormAnacours{
		    padding: 50px;
    background-color: #fae8e3;
    display: block;
    border-radius: 20px;
		
	}


#primary1New{
	    background-color: #fae8e3 !important;

}

#primary1New #validStep {
    float: none;
    margin: auto;
    display: block;
    font-size: 18px;
}

#primary1New .err-not-filled{
	color: crimson;
  text-align: center;
  padding-top: 50px;
  display: none;

}

#primary1New .rgpd-text{
	margin-top: 30px;
  margin-bottom: 30px;
  display: block;

}

#primary1New .rgpd-text p{
  font-size: 14px;
  line-height: 21px;
  font-weight: lighter;
  color: #1a365b;
}

#primary1New .rgpd-text a{
  font-size: 14px;
  line-height: 21px;
  font-weight: lighter;
  color: #1a365b;
}


#primary1New .form-submit{
	margin-top:0px;

}

#primary1NewProf{
	 background-color: #fae8e3 !important;
}

#primary1NewProf .err-not-filled{
	color: crimson;
  text-align: center;
  padding-top: 50px;
  display: none;

}

#primary1NewProf .rgpd-text{
	margin-top: 30px;
  margin-bottom: 30px;
  display: block;

}

#primary1NewProf .rgpd-text p{

	 font-size: 16px;
  line-height: 21px;
  font-weight: lighter;
  color: #1a365b;
  font-family: "TEXTA";

}

#primary1NewProf .rgpd-text a{

	 font-size: 16px;
  line-height: 21px;
  font-weight: lighter;
  color: #1a365b;
  font-family: "TEXTA";

}


#primary1NewProf .form-submit{
	margin-top:0px;

}

.blocBlueRound{
	border-radius:30px;	
}

.blocBlueOther{
background-color:#fae8e3 !important
}

#primary1New #validStep{
  float: none;
  margin: auto;
  display: block;
	font-size: 18px;
}

.formContent{
	display:flex;	
}	

.formContent #stepInstru{
	width: 90%;
  border-right: dashed #d43e31 5px;
  padding: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}	

.formContent #stepCoord{
	width:100%;
	padding: 40px;
   
  padding-top: 20px;
  padding-bottom: 20px;
}	

.main-title-etaape{
background-color: #d43e31;
  padding: 10px;
  color: white;
  font-weight: 600;
  display: block;
  width: 90px;
  text-align: center;
  text-transform: uppercase;
}

.main-title-etaape2{
background-color: #d43e31;
  padding: 10px;
  color: white;
  font-weight: 600;
  display: block;
  width: 90px;
  text-align: center;
  text-transform: uppercase;
	margin-bottom: 10px;
}

.tilteBlack{
	font-family: "Texta", Sans-serif;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a365b;
  text-align: center;
}
.tilteBlack2{
	font-family: "Texta", Sans-serif;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a365b;
  text-align: center;
	margin-bottom:0;
	padding-bottom:0;
}
.formContent .main-title{
	font-size: 24px;
  font-weight: 800;
margin-top: 15px;
  display: block;
  margin-bottom: 15px;
	
}

.blocScroll{
	opacity:0.5;	
	cursor:pointer;
}

.blocScroll2{
	opacity:0.5;	
	cursor:pointer;
}

.selectBloc{
	opacity:1;	
}	

.selectBloc h3{
	color:#1a365b !important;
}	

.selectBloc2{
	opacity:1;	
}	

.selectBloc2 h3{
	color:#d43e31 !important;
}

.blocScroll:hover{
	opacity:1;	
}

.blocScroll:hover h3{
	color:#d43e31 !important;
}

.blocScroll2:hover{
	opacity:1;	
}

.blocScroll2:hover h3{
	color:#d43e31 !important;
}



.flexContent{
	display:flex;	
	flex-direction:row;
}

.flexContent .col{
	display:flex;	
	flex-direction:column;
	width: 100%;
}

#stepCoord .field{
	margin-bottom:5px;
}	

#primary1Land{
padding: 40px;	
}
	
	.avisTarif	.eael-testimonial-item{
			    position: relative;
    height: auto;
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #d43e31;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
		}
	
	.blocAvanceImmTarif{
		background-color:#fae8e3;
		border-radius:20px;
	}

.blocAvanceImmTarif3{
		background-color:#fae8e3;
		border-radius:20px;
	}
	
	.blocAvanceImmTarif img{
		    border-radius: 20px 0px 0px 20px;
	}

.blocAvanceImmTarif2 img{
		    border-radius: 20px 20px 0px 0px;
	}
	
	.blocAvanceImmCollab{
		background-color:#fae8e3;
		border-radius:20px;
	}
	
	.blocAvanceImmCollab img{
		    border-radius: 0px 20px 20px 0px;
	}
	
		.blocAvanceImmCollabMob{
		background-color:#fae8e3;
		border-radius:20px;
	}
	
	.blocAvanceImmCollabMob img{
		    border-radius: 20px 20px 0px 0px;
	}
	
	.titreInstru{
		font-weight:900;
	}
	
	.gridInstru{
		
		position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
	
	
	.blocIcon{

    width: 28.5% !important;
    
    border-radius: 10px;
    margin: 5px 5px;
    background-color: #fffaf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #d43e3100;
    transition: all 0.3s;
    /* box-shadow: 10px 5px 5px rgb(0 0 0 / 11%); */
    margin-bottom: 5px !important;
	}
	
	
	
			.blocIcon figure{
				display:block !important;
				width:100% !important;
}
			.blocIcon figure a{
				padding-bottom:0px !important;
				
}
	
	.blocIcon  .elementor-image-box-content a{
				padding-top:5px !important;
	}			
	
	
		
	
	.blocIcon figure img{
				
				width:25%;
}
		.blocMatiere figure img{
			width:15%;
		}
			.blocIcon a{
				display:block;
				width:100%;
}
		.blocIcon a{
				padding: 14px;
}
		.blocIcon .elementor-icon-box-icon a:first-child{
				padding: 14px 0px 0px;
}
	.blocIcon h3{
				margin:0px !important;
}
	.blocIcon .elementor-icon svg {

  margin: auto;
}
			.blocIcon .elementor-widget-container{
				
				width:100%;
}
	
		.blocIcon:hover{

    border:solid #d43e31 1px;
	}
	

/***/
	.blocIcon2{

    width: 28.5% !important;
    
    border-radius: 10px;
    margin: 5px 5px;
    background-color: #fffaf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #d43e3100;
    transition: all 0.3s;
    /* box-shadow: 10px 5px 5px rgb(0 0 0 / 11%); */
    margin-bottom: 5px !important;
	}
	
	
	
			.blocIcon2 figure{
				display:block !important;
				width:100% !important;
}
			.blocIcon figure a{
				padding-bottom:0px !important;
				
}
	
	.blocIcon2  .elementor-image-box-content a{
				padding-top:5px !important;
	}			
	
	
		
	
	.blocIcon2 figure img{
				
				width:25%;
}

	.blocMatiere2 figure img{
				
				width:15% !important;
}


		.blocIcon2 figure img{
			width:25%;
		}
			.blocIcon2 a{
				display:block;
				width:100%;
}
		.blocIcon2 .elementor-widget-container{
				padding: 20px !important;
}
		.blocIcon2 .elementor-icon-box-icon a:first-child{
				padding: 14px 0px 0px;
}
	.blocIcon2 h3{
				margin:0px !important;
}
	.blocIcon2 .elementor-icon svg {

  margin: auto;
}
			.blocIcon2 .elementor-widget-container{
				
				width:100%;
}
	
		.blocIcon2:hover{

    border:solid #d43e31 1px;
	}
/**/


		.trustWidgetCorps2{
		   margin: auto !important;
    margin-left: auto !important;
    width: 390px !important;
	}
	
	.trustWidgetCorps .trustpilot-widget{
		    width: 252px !important;
	}
	
	.trustWidgetCorps iframe{
		    height: 70px !important;
	}
	
	.txtHomeSlide .elementor-widget-container{
		
		width:50%  !important;
	}
	
	.titreEnseignants h2{
	  
    color: #1a365b !important;
	}
	
	.titreEnseignants{
	    background-color: #d43e31;
    padding: 10px;
    margin-bottom: -15px !important;
    width: auto !important;
    border-radius: 101px;
    z-index: 99;
    display: block;
    position: relative;
    margin-left: 20px;
    font-weight: 900;
    color: #ffffff;
	}
	
	.elementor-testimonial--skin-bubble{
		position: relative;
    height: auto;
    border-radius: 20px;
    border: 2px dashed #d43e31;
	}
	
	.blocBlue img{
		 position: absolute;
    bottom:-100px;
    width:250px;
    left: 40px;
	}
	
	.blocBlueFull img{
		 position: absolute;
    bottom:0px;
    width:250px;
    left: 40px;
	}
	
.blocBlueMiddle img{
		position: absolute;
bottom: -70px;
width: 250px;
right: -20px;
	}
.blocCartable img {
    bottom: -130px !important;
}
	
	.blocOld img{
		 position: absolute;
    bottom:-110px !important;
    width:300px;
    left: 10px;
	}
	
	.btnPageInstruTarif	 a{
		border-radius:100px;
			border:solid #d43e31 1px;
		background-color: #d43e31 !important;
		color:#ffffff !important;
	}
	
	.btnPageInstruTarif a:hover{
			background-color: transparent !important;
			border-radius:100px;
			
					border:solid #1a365b 1px;
		color:#1a365b;
	}
	
		.btnPageInstruTarif2	 a{
		border-radius:100px;
			border:solid #d43e31 1px;

	}
	
	.btnPageInstruTarif2 a:hover{
			background-color: transparent !important;
			border-radius:100px;
border:solid #d43e31 1px;
		color:#d43e31;
	}
	
		.btnPageInstruTarif3	 a{
		border-radius:100px;
			border:solid #d43e31 1px;
		background-color: #d43e31!important;
		color:white !important;
	}
	
	.btnPageInstruTarif3 a:hover{
			background-color: transparent !important;
			border-radius:100px;
			
					border:solid #d43e31 1px;
		color:#d43e31 !important;
	}
	
	#colRelative{
		position:absolute;
	}
	
	#imgBoy{
		    position: absolute;
    bottom: -20px;
    width: 300px;
    right: -50px;
	}
	
	
	#footerSup .colFooter a:hover {
    opacity: 0.5;
		}
	
	#btnTarifAnacours a{
		width:100% !important;
		border-radius:100px;
			border:solid white 1px;
	}
	
	#btnNewsFoot span{
	  width: 100% !important;
	  border-radius: 100px;
	  border: solid white 1px;
	  background-color: white;
	  color: #1a365b;
	  display: block;
	  padding: 12px;
	  margin: 0;
	  font-weight: 400;
	  font-size: 15px;
	  cursor: pointer;
	}

		#btnAnacoursMusic a{
			width:100% !important;
			background-color: transparent !important;
			border-radius:100px;
			border:solid white 1px;
	}
	
	
		.btnMenu a{
			width:100% !important;
			background-color: #d43e31 !important;
			border-radius:100px;
			border:solid #d43e31 1px;
	}
	
		.btnMenu a:hover{
			width:100% !important;
			background-color: white !important;
			border-radius:100px;
			border:solid #d43e31 1px;
			color:#d43e31 !important;
	}
	
	.btnPopin a{
			width:100% !important;
			background-color: transparent !important;
			border-radius:100px;
			border:solid #1a365b 1px;
		color:#1a365b !important;
        font-weight: 500 !important;
	}
	
		.btnPopin a:hover{
			width:100% !important;
			background-color: #d43e31 !important;
			border-radius:100px;
			border:solid #d43e31 1px;
			color:white !important;
	}
	
	
	#btnSeeAg a{
			width:100% !important;
			background-color: #d43e31 !important;
			border-radius:100px;
			border:solid #d43e31 1px;
        color:white !important;
	}
	
		#btnSeeAg a:hover{
			width:100% !important;
			background-color: white !important;
			border-radius:100px;
			border:solid #d43e31 1px;
			color:#d43e31 !important;
	}
		
		#btnAnacoursMusic i{
			 transform: rotate(-45deg); 
	}
	
	
	#btnTarifAnacours a:hover{
			background-color: transparent !important;
			border-radius:100px;
			border:solid white 1px;
			color:white;
	}


	#btnNewsFoot span:hover{
			background-color: transparent !important;
			border-radius:100px;
			border:solid white 1px;
			color:white;
	}
	
		#btnAnacoursMusic a:hover{
			width:100% !important;
			background-color:white !important;
			border-radius:100px;
			border:solid white 1px;
			color:#1a365b;
	}
	
	
	#menuImportantTab	a {
    border-radius: 100px;
    background-color: #d43e31;
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    display: block;
    margin-top: 5px;
		border: solid #d43e31 1px;
}
	
#menuImportantTab	a:hover {
  
    background-color: transparent !important;
  	border:solid #d43e31 1px;
		color:#d43e31;
	
}
		
	
#menuImportant	a {
    border-radius: 100px;
    background-color: #d43e31;
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    display: block;
    margin-top: 5px;
	border: solid #d43e31 1px;
}
	
#menuImportant	a:hover {
  
    background-color: transparent !important;
  	border:solid #d43e31 1px;
		color:#d43e31;
	
}
		
#menuImportant2	a {
   
text-align: left;
margin-top: 5px;
font-weight: 400;
font-size: 18px;
border-bottom: 1px solid rgba(0, 0, 0, 0.116);
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 15px 5%;
}
	
#menuImportant2	a::after {
content: "\f105";
color: #1a365b;
position: absolute;
font-family: sans-serif;
display: inline;
right: 0;
	font-family: "Font Awesome 5 Free";
	opacity:1 !important;
	    background-color: transparent !important;

    font-weight: 600 !important;

}
	

	#menuImportant2	li{
		width:100%;
	}
			
	
	.menuInstru2 a{
    margin-left:10px !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.199);
padding-top: 15px !important;
padding-bottom: 15px !important;
		font-weight: 400 !important;
		font-size: 18px ;
}
	
	
.menuInstru2 a:hover {
    margin-left:20px !important;
}
	

.menuInstru2 a::before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    left: -10px;
    position: absolute;
	opacity:1 !important;
		color:#1a365b;
	background-color: white !important;
	font-weight: bold;
}
	
.menuMusique a::before {

	color:#1a365b !important;
}
	
.menuNews a::before {

	color:#1a365b !important;
}
	

	
#menuImportant	li{
		width:100%;
	}
	
	#menuMobInstu{
		    width: 20px;
    margin-left:20px;
		 margin-right: 10px;
	}

#menuMobileD label{
 display:flex;
  flex-direction:column;
  width:35px;
  cursor:pointer;
}

#menuMobileD label span{
  background: #1a365b;
  border-radius:10px;
  height:3px;
  margin: 3px 0;
  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);

}


#menuMobileD span:nth-of-type(1){
  width:75%;
  
}

#menuMobileD span:nth-of-type(2){
  width:75%;
}


#menuMobileD span:nth-of-type(3){
  width:75%;
 
}


#menuMobileD input[type="checkbox"]{
  display:none;
}


#menuMobileD input[type="checkbox"]:checked ~ span:nth-of-type(1){
  transform-origin:bottom;
  transform:rotatez(45deg) translate(5px,0px)
}


#menuMobileD input[type="checkbox"]:checked ~ span:nth-of-type(2){
  
  transform-origin:top;
  transform:rotatez(-45deg) translate(5px,0px)
}


#menuMobileD input[type="checkbox"]:checked ~ span:nth-of-type(3){
  
  transform-origin:bottom;
  width:50%;
  transform: translate(12px,-10px) rotatez(45deg);

}

	
	.elementor-section-wrap{
		overflow:hidden;
	}
	
	.btnVoirTous a{
		
		border-radius:100px;
		cursor:pointer;
		border:solid #1a365b 1px;
	}
	
		.btnVoirTous a:hover{
		
		background-color:#d43e31 !important;
		border:solid #d43e31 1px;
		color:white !important;
		
	}
	
	
	
	.postuleAnacours svg g{
		fill:#1a365b;
	}
	
	
	.postuleAnacours a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #d43e31 1px;
        font-size: 18px;
	}
	
	.postuleAnacours a:hover g{
		
		fill:#1a365b !important;
	}
	
	
	.postuleAnacours a:hover{
		
		background-color:transparent !important;
		border:solid #1a365b 1px;
		color:#1a365b !important;
	}
	
	
	
	.trouverAgence a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #1a365b 1px;
		color:#1a365b !important;
		background-color: transparent !important;
		
	}
	
	.trouverAgence a:hover{
		
		background-color:transparent !important;
		border:solid #d43e31 1px;
		color:#d43e31 !important;
	}
	
	.tarifAnacours2 a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #d43e31 1px;
		background-color: #d43e31 !important;
		
	}
	
	.tarifAnacours2 a:hover{
		
		background-color:transparent !important;
		border:solid #d43e31 1px;
		color:#d43e31 !important;
	}
	
	.tarifAnacoursYellow a{
		
		cursor:pointer;
		border-radius:100px;
		border:solid #d43e31 1px;
		background-color: #d43e31 !important;
		
	}
	
	.tarifAnacoursYellow a:hover{
		
		background-color:transparent !important;
		border:solid #d43e31 1px;
		color:#d43e31 !important;
	}
	


	.tarifAnacoursFull a{
		width:100% !important;
	}
	
	.plusAnacoursMusique{
	margin-top:20px;
	}	

	.plusAnacours{
	margin-top:20px;
	}	
	
	.plusAnacours .elementor-icon-box-title span{
		
		background-color: #d43e31;
  		border-radius: 20px;
		  padding: 10px;

		  margin-left: 40px;
		  color: white;
		  padding-top: 3px;
		  padding-bottom: 5px;
		  margin-top: -25px;
		  display: block;
		  width: 89px;
		  margin-bottom: 12px;
		  height: 30px;
		  padding-left: 12px;

	}
		.plusAnacours p{
		
		border: 1px dashed #d43e31;
		border-radius: 20px;
		padding: 20px;
		margin-top: -25px !important;
	}
	
	
	
	.plusAnacoursMusique  .elementor-icon-box-title span{
		
		background-color: #d43e31;
		border-radius: 20px;
		  padding: 10px;

		  margin-left: 40px;
		  color: white;
		  padding-top: 3px;
		  padding-bottom: 5px;
		  margin-top: -25px;
		  display: block;
		  width: 89px;
		  margin-bottom: 12px;
		  height: 30px;
		  padding-left: 12px;

	}
		.plusAnacoursMusique p{
		
		border: 1px dashed #d43e31;
		border-radius: 20px;
		padding: 20px;
		margin-top: -25px !important;
	}
	
	
	.listAnacours li{
		background-color: #fae8e3;
		padding: 15px !important;
	}
	

	
	#containHeader{
		
		height: auto;
		background-color: white;
		box-shadow: 0px 5px 5px rgb(0 0 0 / 0%);
		/*z-index: 999999999;*/
		z-index: 9999;
		transition: boxShadow 0.3s;
	    width: 100%;
		position:fixed;
        
	}
	
	#colonneMenu{
		
		
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		position: relative;
		
	}
	
	#menuMobFooter{
		 z-index:99999;
    position : fixed !important;
    bottom:0px;
    width:100%;
		margin:0px !important;
		padding:10px !important;
	}

#menuMobFooter .elementor-icon-box-icon{
        height: 25px;
}
#menuMobFooter a{
      font-size: 16px;
}
	
	
	#menuMobFooter .elementor-element-populated{

		margin:0px !important;
		padding:0px !important;
	}
	
	#menuMobFooter .elementor-widget-wrap {
    justify-content: center;
}
	
	#menuPremier{
		transition: transform 0.3s;
		box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
		width: 100%;
		height: auto;
		z-index: 997;
		/*    position: absolute;*/
    margin-bottom: 10px;
    margin-top: 110px;
	}

/*
	.elementor-location-header{
		margin-bottom: 180px;
	}
	*/
	#menuPremier li:last-child a{
		color:	#1a365b;
		font-weight:800;
	}
	

	
	#menuSecondaire{
		
		box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: absolute;
		top:190px;
    z-index: 99999999;   
    width:100% !important;
		  
	}
	
	#menuSecondaireMob{
		
	    box-shadow: 0px 5px 5px rgb(0 0 0 / 10%);
    transition: transform 0.3s;
    position: fixed;
    z-index: 9999999;
    overflow: scroll;
    width: 100% !important;
    height: 100%;
    min-height: 100%;
    padding-bottom: 200px;
		padding-left: 0;
	}
	

#menuSecondaireMob span{
	margin-top: 5px;
  display: block;
  margin-left: 2px;
}
	
	.menuTel{
		
    margin:0;
    width: 120px !important;
    height: 40px;   
    padding-top:5px;
		
	}
	
	
	.menuTel:hover .elementor-icon-box-title a{
       color: #d43e31 !important;
}

	.menuTel2{
		
    margin:0;
    width: 120px !important;
    height: 40px;   
    padding-top:5px;
		
	}
	
	
	.menuTel2:hover .elementor-icon-box-title a{
       color: #d43e31 !important;
}


	.menuInstru{
	
		margin:0;
    width: 120px !important;
    height: 40px;   
    padding-top:5px;
    margin-left:10px;
    margin-right:10px;
    cursor:pointer;
		
	}	
	
	.menuInstru:hover .elementor-icon-box-title span{
       color: #d43e31 !important;
}
	
	.menuEspace{
       border: 1px solid #1a365b;
    border-radius: 100px;
    transition: all 0.3s;
		cursor:pointer;
		padding:15px;
}
	
.menuEspace:hover{
  border: 1px solid #d43e31;
}

.menuEspace:hover .elementor-icon-box-title span{
  color: #d43e31 !important;
}

.menuEspace:hover .elementor-icon-box-icon span{
  color: #d43e31 !important;
}
	
		.menuEspaceMob{
       border: 1px solid #1a365b;
    border-radius: 100px;
    transition: all 0.3s;
}
	
		.menuRecrut{
       border: 1px solid #1a365b;
    border-radius: 100px;
    transition: all 0.3s;
}
	
	
.menuTarif {
    border: 1px solid #d43e31;
    background-color: #d43e31;
    transition: all 0.3s;
	 border-radius: 100px;
}
	
	.menuTarif:hover {
    border: 1px solid #d43e316b;
    background-color: #d43e316b;
}
	
	.menuTarifMob {
    border: 1px solid #d43e31;
    background-color: #d43e31;
    transition: all 0.3s;
	 border-radius: 100px;
}
	
		.menuHeaderMob{
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10.5px 1.5vw;
    margin: 0 1vw;
	
		margin-bottom:5px !important;
}

		.menuHeaderMob .elementor-icon-box-icon{
    	margin-top:6px !important;
}
	
		.menuHeaderMob .elementor-icon-box-icon a{
   
}

	.menuHeaderMob .elementor-icon-box-title a{
   
}
	
	.menuHeader{
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    margin: 0 1vw;
		width:auto !important;
		margin-bottom:0px !important;
}

	.menuHeader .elementor-icon-box-icon a{
    padding: 20px 0px 20px 20px;
}

	.menuHeader .elementor-icon-box-title a{
    padding: 20px 20px 20px 0px;
}
	
	#menuMobFooter 	.menuHeader .elementor-icon-box-icon a{
    padding: 0px !important;
}

		#menuMobFooter .menuHeader .elementor-icon-box-title a{
   padding: 0px !important;
}
	
	#menuMobFooter  .elementor-icon-box-title{
   margin: 0px !important;
}
	
#endFooter .elementor-widget:not(:last-child) {
  margin-bottom: 5px !important;
}
	
#trustFooter{
  
 width: 230px;
}
	
	
.scrollTesti{
	
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 80%;
  height: 55vh;
  overflow: hidden;
    overflow-y: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

	
.scrollTesti::-webkit-scrollbar {
    display: none;
}
	
	.testiColonne{
	margin:0px !important;
		position: relative;
		height: auto;
		padding: 15px;
		border-radius: 20px;
		border: 2px dashed #d43e31;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		margin:5px 5px !important;


	}	

.eael-testimonial-quote{
    display: none;
}

	
		.elementor-post__read-more::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  right: -20px;
  position: absolute;
			  top: 7px;
}
	
	
	.eael-post-elements-readmore-btn::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  left: 70px;
  position: absolute;
		
}
	
		
	
.eael-post-elements-readmore-btn	
{
 font-family: "Texta", Sans-serif !important;
font-size: 16px !important;
font-weight: 800 !important;
line-height: 0.1em;
color: #1a365b !important;
position: relative;
}

	.elementor-post__read-more {
 font-family: "Texta", Sans-serif !important;
font-size: 16px !important;
font-weight: 800 !important;
line-height: 0.1em;
color: #1a365b;
position: relative;
}

	
.blocMagazine	.swiper-button-prev {
		border: solid #1a365b 1px;
		border-radius: 30px;
		width: 50px;
		height: 50px;
	}
	
	
.blocMagazine	.fa-chevron-left{
	

	}
	
	
		
.blocMagazine	.swiper-button-next {
		border: solid #1a365b 1px;
		border-radius: 30px;
		width: 50px;
		height: 50px;
	}
	
	
.blocMagazine .fa-chevron-right{
		padding-left:5px;

	}
	
.blocMagazine .swiper-button-prev:hover{
		background-color: #d43e31;
	}
.blocMagazine .swiper-button-next:hover{
		background-color: #d43e31;
	}
	
.blocMagazine .swiper-pagination {
		margin-top:20px;
	}
	
.blocMagazine .eael-grid-post-holder-inner {
  height: 600px !important;
  background-color: white;
}
	

.blockSolution	.eael-grid-post-holder-inner {
	  height: 450px !important;
  background-color: white;
}	
	
	.blockSolution	.eael-entry-title {
	     padding-top: 10px!important;
}	
	.blockSolution	.eael-entry-title a{
	     font-weight:900;
}	
	
	

	
		.blockSolution .eael-grid-post-holder:hover .eael-post-elements-readmore-wrap a{
			color:white !important;
				transition: none !important;
					
	}
	
.blockTous	.eael-grid-post-holder-inner {
	  height: 470px !important;
  background-color: white;
		cursor:pointer;
}	
		
.blockTous	.eael-entry-title {
	     padding-top: 10px!important;
}	
	.blockTous	.eael-entry-title a{
	     font-weight:900;
}	
	
	.blockTous .eael-grid-post-holder:hover .eael-grid-post-holder-inner{
		cursor:pointer;
		background-color:#d43e31 !important;
	}
	
	
	.blockTous .eael-grid-post-holder:hover .eael-grid-post-link{
			color:white !important;
		transition: none !important;
	}
	
 	.blockTous .eael-grid-post-holder:hover .eael-post-elements-readmore-wrap a{
			color:white !important;
				transition: none !important;
					
	}
	
	
	.eael-grid-post-holder:hover .eael-post-elements-readmore-wrap a::after {

    filter: brightness(5);

}
	
	
	
.eael-post-grid-container .eael-post-grid .eael-grid-post {
  
  padding: 0px !important;
}
	
	
.eael-post-elements-readmore-wrap{
		position: absolute;
bottom: 0;
		  padding-bottom: 20px;

	}
	
 .eael-grid-post-excerpt p {

  margin-bottom: 20px;
}
	
 .eael-grid-post-holder-inner{
		
		text-align:left;
		
	}
	
.eael-entry-title {
  margin: 0  !important;
  padding-top: 20px;

}
	
 .eael-entry-title a{
		
		color: #1a365b;
		font-weight: 800;
		font-size: 22px;

	}
	
	.apprentissage{
		    background-color: #fae8e3 !important;
	}
	
	.cours-particuliers{
		
		    background-color: #fae8e3 !important;
	}
	
	.methodologie{
		    background-color: #fae8e3 !important;
	}
	
	.baccalaureat{
		 background-color: #fae8e3 !important;
	}
	
	.college{
		 background-color: #effaf1 !important;
	}
	
		.lycee{
		 background-color: #fae8e3 !important;
	}
	
		.revision{
		 background-color: #fae8e3 !important;
	}
	
		.education{
		 background-color: #fae8e3 !important;
	}
		.bien-etre{
		 background-color: #fae8e3 !important;
	}

		.primaire{
		 background-color: #fae8e3 !important;
	}
	
		.neurodiversite{
		 background-color: #fae8e3 !important;
	}
		.actualites{
		 background-color: #fae8e3 !important;
	}

	.brevet{
		 background-color: #fae8e3 !important;
	}
		.postbac{
		 background-color: #fae8e3 !important;
	}



	.meta-cat-icon{
		display:none;
	}
	
.blocMagazine .eael-post-carousel-style-two .eael-entry-meta .post-meta-categories li {
  font-size: 12px;
  margin-right: 7px;
  color: #1a365b;
  float: left;
  background-color: antiquewhite;
  padding: 8px;
  border-radius: 10px;
    margin-top: 5px;
}
	
	
.blocMagazine .eael-post-carousel-style-two .eael-entry-meta .post-meta-categories li a{
  color: #1a365b;
 
}
	
.blocMagazine .eael-post-carousel-style-two .eael-entry-meta .post-meta-categories {

  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
	width: 100%;
}
	
.blocMagazine .post-carousel-categories {
 
  text-indent: 9999px;
}
	
.blockCours{
		
		cursor:pointer;
		background-color:transparent;
		
	}
	
.blockCours .elementor-image-box-content
{
		
		padding:20px;
	padding-bottom:40px;
		
}
	
	.eael-grid-post-holder:hover .eael-grid-post-holder-inner{
		cursor:pointer;
		background-color:#d43e31 !important;
		color:white !important;
	}
	
	
	.eael-grid-post-holder:hover .eael-grid-post-link{
			color:white !important;
		transition: none !important;
	}
	
		.eael-grid-post-holder:hover .eael-post-elements-readmore-wrap a{
			color:white !important;
				transition: none !important;
					
	}
	
	
	.sp-pcp-post:hover{
		
		cursor:pointer;
		background-color: #d43e31 !important;
			color:white !important;
					
	}
	
 .sp-pcp-title a{
		
		transition: none !important;
					
	}
	.sp-pcp-post:hover .sp-pcp-title a{
			color:white !important;
		transition: none !important;
					
	}

	
	.sp-pcp-title a{
	  margin-bottom: 0px;
  color: #1a365b;
  font-family: "Texta", Sans-serif !important;;
  font-weight: 900 !important;;
		font-size: 1.75rem !important;
		padding:10px !important;
		padding-bottom:0px !important;
}
	
	.sp-pcp-post-content{
			 font-family: "Texta", Sans-serif !important;;
  		font-weight: 300 !important;
			padding:10px !important;
	}
	
	.sp-pcp-post:hover .sp-pcp-post-content{
			color:white !important;
					
	}
	
.pcp-readmore-link{
	
		font-weight: 900 !important;
			background: transparent;
		color: #1a365b;
		border-color: transparent;
		padding: 0 !important;
		font-size: 16px !important;
		text-transform: initial !important;

	}
	

	
	.sp-pcp-post:hover .pcp-readmore-link{
			color:#d43e31 !important;
					
	}
	
	
	.blockCours:hover{
		
		cursor:pointer;
		background-color: #d43e31;
			color:white !important;
					
	}
	
		.blockCours:hover .buttonDecouvre{
			color:#ffffff !important;
					
	}
	
	
		.blockCours:hover h3{
		
		
			color:white !important;
					
	}

		
	.titreColor11{
		color: #1a365b;
		font-weight:900;
	}
	
	.titreColor1{
		color: #1a365b;
	}
	
	.titreColor2{
		color: #1a365b;
	}

	.buttonDecouvre{
		
		display:block;
		color:#1a365b !important;
		padding-top:20px;
	}
	
		.buttonDecouvre span{
		
			padding-right: 10px;
			font-weight: 900;
			font-size: 17px;
	}

	
		/***************/
			/******* STYLE DE BLOC GENERAL ****/
		/***************/
	
	
		/***************/
			/******* STYLE DE BLOC CALL TO ACTION ****/
		/***************/
	.blocCallTo img {
		
position: absolute;
bottom: -40px;
right: -50px;
width: 300px;
		
	}	
	
		.tarifButton a{
		
		
		color: white;
		
	}
	
	
	.tarifButton{
		
		padding: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		display: block;
		position: relative;
		color: white;
		background-color: #d43e31;
		border-radius: 30px;
		border: solid #d43e31 1px;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 20px;
		width:140px;
	}
	
	.tarifButton:hover{
		

		color: #d43e31;
		background-color: transparent;
		border: solid #d43e31 1px;

	}
	
	/***************/
			/******* STYLE DE BLOC AVANCE IMMEDIATE ****/
		/***************/
.blocAvanceImm .elementor-element-populated{
		
			
	}
	
.blocAvanceImm img{
		
	
  margin-bottom: -5px;
}

.blocAvanceImm .elementor-image-box-content{
	
	padding:20px;
		
}

.blocAccSol .elementor-image-box-content{
	
	padding-right: 0px !important;
		
}
	
.blocAvanceImm #pourcentIco{
    
	width:70px;
	position: absolute;
	top: -20px;
	left: -20px;

}
	
	
	 #pourcentIco .st0{fill:#fae8e3;}
	 #pourcentIco .st1{fill:#d43e31;}
	 #pourcentIco .st2{fill:#d43e31;}
	 #pourcentIco .st3{fill:#fae8e3;}
	 #pourcentIco .st4{fill:#d43e31;}
	 #pourcentIco .st5{fill:#d43e31;}
	 #pourcentIco .st6{fill:#fae8e3;}
	 #pourcentIco .st7{fill:#d43e31;}
	 #pourcentIco .st8{clip-path:url(#SVGID_00000056426127902602515170000007697312713344068491_);}
	 #pourcentIco .st9{filter:url(#Adobe_OpacityMaskFilter);}
	 #pourcentIco .st10{fill-rule:evenodd;clip-rule:evenodd;fill:#ffffff;}
	 #pourcentIco .st11{mask:url(#mask-2_00000110437656118478509440000011397106383687973775_);}
	 #pourcentIco .st12{fill-rule:evenodd;clip-rule:evenodd;fill:#d43e31;}
	 #pourcentIco .st13{clip-path:url(#SVGID_00000152966749486115585850000017324815666792835715_);}
	 #pourcentIco .st14{fill:none;}
	 #pourcentIco .st15{clip-path:url(#SVGID_00000048470321891099623080000015917484135813626802_);}
	 #pourcentIco .st16{clip-path:url(#SVGID_00000034792822305668759780000004048513547560661687_);}
	 #pourcentIco .st17{clip-path:url(#SVGID_00000085212244792085909130000018333747452154591386_);}
	 #pourcentIco .st18{clip-path:url(#SVGID_00000073681957078489885240000007650933456302255489_);}
	 #pourcentIco .st19{fill:#ffffff;}
	 #pourcentIco .st20{fill:#fae8e3;}
	 #pourcentIco .st21{clip-path:url(#SVGID_00000166677218272210975220000001040709580354719673_);}
	 #pourcentIco .st22{fill:#d43e31;}
	 #pourcentIco .st23{fill:#d43e31;}
	 #pourcentIco .st24{clip-path:url(#SVGID_00000078045694905123298220000011611372171657613451_);}
	 #pourcentIco .st25{clip-path:url(#SVGID_00000170964445009068713790000002478511649340678316_);}
	 #pourcentIco .st26{clip-path:url(#SVGID_00000032649519561745424620000009597430508335849377_);}
	 #pourcentIco .st27{fill:#ffffff;stroke:#1a365b;stroke-miterlimit:10;}
	 #pourcentIco .st28{fill:#1a365b;}
	 #pourcentIco .st29{fill:none;stroke:#ffffff;stroke-miterlimit:10;}
		
	/***************/
			/******* FIN STYLE DE BLOC GENERAL ****/
		/***************/
	
	
		/***************/
			/******* GESTION DU BANDEAU PAGE DACCUEIL AVEC FORMULAIRE INTEGRE ****/
		/***************/
.home-landing-bandeau-searchbar {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	
}
	
	.search-button svg{
		
		padding-top:6px;
		
	}
	
	.search-button:hover{
		
		background-color:white;
		border:solid #d43e31 1px;
		color: #d43e31;
	}
	
	.search-button:hover #Icons{

		fill: #d43e31;
	}
	
	
	.search-button21 svg{
		
		padding-top:6px;
		
	}
	
	.search-button21:hover{
		
		background-color:#d43e31;
		
	}
	
	#baselineOk {
    width: 28%;

}
	
	.acplt .acplt-message, .acplt .acplt-clear span {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    opacity: 0.01;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
	
	.acplt .acplt-clear svg {
    -ms-flex-item-align: center;
    align-self: center;
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
    pointer-events: none;
}

.acplt .acplt-clear {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -webkit-appearance: none;
    appearance: none;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    margin: 0;
    padding: 0;
    height: auto;
    max-height: none;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transition: color 150ms ease;
}
	
	.wpgb-facet .wpgb-locate-button svg {
    -ms-flex-item-align: center;
    align-self: center;
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
    pointer-events: none;
}
	
	.wpgb-facet-1, .wpgb-facet-6 {
    width: 100%;
    border-radius: 100px;
    height: 55px;
    border: 1px solid #1a365b;
}
	


.wpgb-facet-1 input, .wpgb-facet-6 input {
  
    border: none !important;
    width: 100% !important;
    border-style: none !important;
    height: 100% !important;
}	
	
.home-landing-bandeau-searchbar label{	
		display:block;
	}

.wpgb-facet .wpgb-geolocation-facet input[type="search"] {
    position: relative;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    height: 40px;
    min-height: 40px;
    width: 100%;
    margin: 0;
    padding: 8px 6px;
    background: none;
    background-image: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 4px;
    box-shadow: none;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: border-color 100ms ease;
	  border: none;
  padding-left: 20px;
  padding-top: 15px;

}


input[type="search"]::-webkit-search-cancel-button{

    -webkit-appearance: none;
      appearance: none;

}

.home-landing-bandeau-searchbar .wpgb-facet {
	position:relative;
    width:100%;
       background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.253);
    transition: border 0.3s;
}
.wpgb-facet fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}
	
	.wpgb-sr-only {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    opacity: 0.01;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
	
	.acplt .acplt-message, .acplt .acplt-clear span {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    opacity: 0.01;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}


	
.home-landing-bandeau-searchbar select {
    width: 100% !important;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.253);
    min-height: 40px;
    padding: 12px;
    border-radius: 100px;
    outline: none;
    margin-right: 10px;
    margin-left: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icon-chevron_a10eef.svg) no-repeat 92.5% #ffffff;
    transition: border 0.3s;
}
	.home-landing-bandeau-searchbar select[placeholder] {
    color: grey;
    font-size: 1.25rem;
    font-family: "Texta";
    font-weight: 400;
		    padding-left: 20px;
}
	
	.home-landing-bandeau-searchbar button {
    width: 100%;
    height: 55px;
    border-radius: 125px;
    background-color: #d43e31;
    color: white;
    border: 1px solid #d43e31;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
    cursor: pointer;
    padding: 3px 6px;
    transition: background-color 0.3s;
}
	
	.wpgb-facet .wpgb-input-icon {
    position: absolute;
    top: calc( 50% - 8px);
    left: 0;
    height: 16px;
    width: 16px;
    margin: 0 8px 0 10px;
}
	
	.wpgb-facet .wpgb-locate-button {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -webkit-appearance: none;
    appearance: none;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 40px;
    margin: 0;
    padding: 0;
    height: auto;
    max-height: none;
    background: none;
    border: none;
    box-shadow: none;
    color: #c5d0dc;
    cursor: pointer;
    outline: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transition: color 150ms ease;
}
	
			/***************/
			/******* FIN GESTION DU BANDEAU PAGE DACCUEIL AVEC FORMULAIRE INTEGRE ****/
		/***************/
	
	
		/***************/
			/******* GESTION RESPONSIVE ****/
		/***************/
	@media screen and (max-width: 750px) {
		#primary1NewProf {
  border-radius: 0;
}
		
		.contentcolProf{
			gap: 0px;
  			flex-direction: column;
		}	
		
		.contentcolProf .newColProf {
			  width: 100%;
			}
		
		
		
			.contentcolProf .newColProf2 {
			  padding-top: 0px;
			}
		
		#primary1NewProf .form-main {
		  padding: 10px !important;
		}
		
		#primary1NewProf .form-mains{
		 padding-top: 20px;
		}
		
		#primary1NewProf .newColProfAutre{
		 margin-top: 20px;
		}
		
		
		#primary1NewProf .form .form-mains .form-main .field.field-flex-row{

		 margin-top: -10px;
		}
		
		#primary1NewProf .form-steps-timeline-ctn .step .name{
			
			font-size: 14px;
		}	
		
		#primary1NewProf .error2 {

		  padding-top: 10px;
		}

		#primary1NewProf .titleSpace {

		  margin-bottom: 20px;
		  margin-top: 20px;
		}
		
		#primary1NewProf .main-title {
  font-size: 20px;
}
		
		#btnNewsFoot span{
			padding: 20px !important;
  			font-size: 18px !important;
			
		}
		
		

		
		
		
.divHeaderDroite{
	  display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    padding-top:3vh;
     padding-bottom:3vh;
width: 100% !important;
min-height: 0 !important;
padding-left: 0px !important;
    padding-right: 0px !important;
    background: linear-gradient(295deg, #fae8e3 100%, rgba(0, 0, 0, 0) 75%) !important;
    z-index:10;
	
}
		
 	.divHeaderDroite .titreSC{
	 font-size: 45px !important;	
}

.divHeaderGauche{
	 position: relative !important;
 	height: 280px  !important;
}
		
		
		.divHide{
			display:block;	
		}
		
		.divOrdi{
			display:none;	
		}
		
		.mobTitle{
			display:block;	
			
		}

		.mobTitle .titreSC{
			font-size: 45px !important;
  margin-bottom: 10px !important;
		}
		
		.eael-advanced-search-wrap {
					  height: 40px !important;
					  width: 100%;
					}
		
		
  				.logoSite img{
		width: 200px !important;top: -15px;
	}
        
    #bodyContent{
		width: 100% !important;
        min-width:150px;
		font-size:14px;
	}
	    
			.chooseAancoursMu .elementor-widget-image-box .elementor-image-box-img{
    margin-right: 20px !important;
}
				
		
        
    .btnWidgAg2 a {

  width: 95% !important;
  display: block !important;
  margin: auto !important;
}    
        
        
        .errorLoc{
		position: initial !important;
color: #1a365b;
		margin-top: 20px ;
		
	}

        
        #containerStage {
    width: 95% !important;
}
        
        .list-landing-stages-agence-item-header p span.city-name {
    float: left !important;
}
        
        
      .form .form-mains .form-main .field.field-flex-row  {
    display: flex;
    flex-direction: column !important;
    width: 100%;
}
        
        
        .list-landing-stages-agence-item-icon{
            display: none;
        }
        
        .list-landing-stages-agence-item-right p{
            position: absolute;
            top: -60px;
            right: -30px;
        }
        
          .list-landing-stages-agence-item-right a{
            position: absolute;
            bottom: -60px;
              right: -10px;
        }
        
        .list-landing-stages-agence-item-left h3 {
  font-weight: 900;
            font-size: 24px;
}
        
        #menuPremier ul{
    width:auto !important;
        }

        #menuPremier li{
            width:100% !important;
        }
      

        	
		.blocIcon {
			width: 46% !important;
		}
        
          	
		.blocIcon2 {
			width: 46% !important;
		}
		
		
		
		.elementor-testimonial--layout-image_left .elementor-testimonial, .elementor-testimonial--layout-image_right .elementor-testimonial {
               
                flex-direction: column !important;
            }
		
		.agences-card-item {

            width: 100%;

        }
                .titleAg {
            font-size: 36px;

        }
		.agences-card-item h3 {
			font-size: 25px;
		}
		
		.menuEspace{
           position: relative !important;
            width: auto !important;
            border: solid 1px #1a365b;
            border-radius: 50px !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
                padding:10px !important;
        }

         .blocMagazine .eael-grid-post-holder-inner {
              height: 450px !important;
              background-color: white;
            }
		
		.blocMagazine .eael-grid-post-holder-inner .eael-grid-post-excerpt p{
              display:none;
            }
				
		.menuEspace	.elementor-icon-box-icon i{
					padding-top:2px;
			}
		
        .menuTarif {

        width: 100% !important;

        }

            .menuTel{


        width: 100% !important;

        }
		
		     .menuTel2{


        width: 100% !important;

        }
	
		.menuTarif	.elementor-icon-box-title, .menuTel	.elementor-icon-box-title, .menuTel2	.elementor-icon-box-title{
			 margin-top:2px;
			
		}
		
		.forceColonne .elementor-image-box-wrapper{
			    display: flex;
   			 flex-direction: column;
		}
        
       .accompaAnacours .elementor-widget-image-box .elementor-image-box-img{

                width: 50% !important;
        margin-right: 20px !important;

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

			.tilteBlack{
				font-size: 35px;
			}
		
		.tilteBlack2{
				font-size: 35px;
			}

			.formContent{
				flex-direction:column;
			}
		
			.formContent #stepInstru {
			  width: 100%;
			  border-bottom: dashed #d43e31 5px;
			  border-right: none;
				padding: 10px;
				padding-bottom: 40px;
			}
		
		.blocNewLanding img{
			display:none;	
		}

		.formContent #stepCoord {
			 
				padding: 10px;
			padding-top: 20px;
			}

		#primary1New .rgpd-text {
		  margin-top: 10px;
		  margin-bottom: 30px;
		  display: block;
		}
		
		#primary1NewProf .rgpd-text {
		  margin-top: 10px;
		  margin-bottom: 30px;
		  display: block;
		}
		
		.blocAvanceImmTarif21 figure{
				width: 100% !important;
				
		}	
		
		#testiFranchise img {
		  width: 100% !important;
		  border-radius: 0px !important;
		  height: 160px !important;
		}
		
		#testiFranchise .elementor-testimonial__footer{
			margin:0 !important;	
			
		}	

		.blocAvanceImmTarif21 img {
		  border-radius: 20px 20px 0px 0px !important;
		}

		.ongletDF figure{
			width: 100% !important;
 			height: 100px !important;
		}	
		
		.ongletDF h3{
			font-size: 18px !important;
			
		}
  
		
		.ongletDF p{
			    padding-left: 0px !important;
			font-size: 14px !important;
		}
		.mapContainOk .elementor-icon-box-icon{
			
			float: right;
            margin-top: 10px;
			
		}
        
        	.listAgence .elementor-icon-box-icon{
			
			float: right;
             margin-top: 10px;
			
		}
        
		
			.solBlock .swiper-pagination{
			
			margin-top: 20px;
				display:block;
			
		}
        
        #titleMenuCours .elementor-icon-box-icon{
            display: inline-block;
                float: right;
        }
        
        		
  #titleMenuCours h3{
         font-size: 20px;
        }
		
		
        .menuInstru2 a {
   
    border-bottom: none;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-weight: 400 !important;
     border-radius: 30px;
    color: #1a365b !important;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
}
      
             .menuInstru2 a:hover {
   
  margin-left: 0px !important
}
        
        
        .colMenuMat a {
   
    border-bottom: none;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-weight: 400 !important;
     border-radius: 30px;
    color: #1a365b !important;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
            margin-left: 0px !important;
					padding-left: 0px !important;
    padding-right: 0px !important;
					justify-content: center !important;
}
        
     .colMenuNiv a {
   
    border-bottom: none;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-weight: 400 !important;
    background-color: #fae8e3 !important;
    border-radius: 30px;
    color: #1a365b !important;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
			 	padding-left: 0px !important;
    padding-right: 0px !important;
					justify-content: center !important;
}
		
 .colMenuNiv .menuMusique a {
   
    background-color: #fae8e3 !important;
}
    
 .colMenuMat {
   
    padding-left: 20px; 
       /*    padding-bottom: 50px;*/

}
  
   .btnMenu a {
    width: 100% !important;
    background-color: white !important;
       color:#1a365b !important;
    border-radius: 100px;
    border: solid #d43e31 1px;
}     
           
 .colMenuNiv {
   
    padding-right: 20px; 
           padding-bottom: 50px;

}
     
        
        
		
		.menuInstru2 a::before {
    content: "" !important;
}
		
	#menuPremier {
 	 			margin-top:0px;
			}
			
        
        
 #menuSecondaire{
		
		  
    overflow: scroll;
    height: 100%;
    min-height: 100%;
    top: 0px;
    background-color: #1a365b6b;
    padding-top: 50px;
	}
        
           
 #menuSecondaire .elementor-container{
		
    background-color: white;
     height: 100%;
         border-radius: 20px;
	}    
        /*
		
		.elementor-location-header {
    margin-bottom: 110px;
}
	*/	
		
		#menuPremier .elementor-nav-menu--layout-horizontal .elementor-nav-menu {
 	 			display: flex;
  			flex-wrap: initial !important;
			}

		
		#menuPremier nav {
 	 			overflow-x:scroll;
			  -ms-overflow-style: none;
			scrollbar-width: none;
			}

			#menuBasFooter ul {
    justify-content: center!important;
			
}
			#menuBasFooter a {
    padding:5px !important;
				 margin:0px !important;
			
}
		

		
		
}
		@media screen and (max-width: 1020px) {
  	#endFooter nav {
    margin: auto !important;
    justify-content: center!important;
}

		#trustFooter {
    width: 230px;
			margin:auto;
}
	
}
	
	
	
	
	
		@media screen and (max-width: 1100px) {
			.menuEspace .elementor-icon-box-content{
				display:none;
				}
		
			
		.menuEspace	.elementor-icon-box-icon{
				margin: 0px !important;
    padding: 7px;
    padding-top: 1px;
			}
		
}
	
	
			@media screen and (max-width: 700px) {
				
				#titleMenuCours .elementor-icon{
					margin-top:20px;	
				}
				
                
					.chooseAancoursMu .elementor-image-box-img{
    margin-right: 20px !important;
}
				
                
                .widget-info {
  display: block !important;
}
                
                .trustpilot-widget{
  width: auto !important;
}
                
                .chooseAv .elementor-image-box-description{
                        padding-left: 20px;
                }
                
                
                .postuleAnacours a {
           
                    font-size: 20px !important;
                }
                
                .forceColonne .elementor-image-box-content{
                    
                    margin-top: -40px;
                    
                }    
                
                
                		.eael-testimonial-item{
			    position: relative  !important;
    height: auto  !important;
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #d43e31 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
		}
                
                
     .recrutement-swiper-nav-container {
        position: relative;
        width: 90% !important;
        margin: 10px auto !important;
        height: auto;
    }
                
                iframe{
                   /* height: 180px !important;*/
                }            

				.menuParticulier a::before {
					 content: "";

				}
				
				#map {
    height: 500px;
}
				
				.stage-listing__item {
					display: inline-flex;
					width: 100%;
					padding: 10px 0;
				}


				.swiper-button-prev, .swiper-button-next{
				display:none !important;
				}
				
				.boiteAgence {

  width: 95%;
  margin: auto;
}
				
				
				#menuSecondaireMob .elementor-icon-box-icon{
						width: 40px;
						position: relative;
				}
                
                
                #menuSecondaireMob .menuTarifMob .elementor-icon-box-wrapper{
                        width: 200px;
                        margin: auto;
                    
                }
                
                #menuSecondaireMob .menuEspaceMob .elementor-icon-box-wrapper{
                        width: 160px;
                        margin: auto;
                    
                }
				
					#menuSecondaireMob .elementor-icon-box-icon a{
						padding: 15px 0px 15px 0px;
						width: 100%;
						position: relative;
				}
				
					#menuSecondaireMob .elementor-icon-box-icon i{
						width: 100%;
						transform: translateX(40%);
				}
				
					#menuSecondaireMob .elementor-icon-box-content{
						
						position: relative;
				}
				
					#menuSecondaireMob .elementor-icon-box-content a{
						padding: 12px 0px 15px 5px;
						width: 100%;
						position: absolute;
				}
				
				
				.menuHeaderMob {
  
  display: block !important;
  margin-top: 15px !important;
  padding: 0px !important;
}
				
				
			.contentFormAnacours .field-surwrapper {
  display: inherit !important;
 
}
				.menuTarif {
 
  padding: 10px;
  
  padding-left: 12px;
}
				.home-landing-bandeau-searchbar .wpgb-facet {
  
  margin-bottom: 5px;
}
				.menuHeader .elementor-icon-box-icon a {
  padding: 0px !important;
}
				
.elementor-button {
  font-family: "Texta", Sans-serif;
  font-weight: 900;
  background-color: #d43e31;
  width: 100% !important;
  font-size: 1.1em;
	padding: 20px 40px;
}
		
			 .tarifAnacours2 a{
margin-left: 10px;
    width: 90% !important;
    margin-right: 10px;
}     
				
.tarifAnacoursYellow a{
   margin-left: 10px;
    width: 90% !important;
    margin-right: 10px;
}  	
				
.trouverAgence a{
   margin-left: 10px;
}        

   
				
   .blocPostule .tarifAnacours2 a{
    margin-left: 0px !important;
}        
                 
                
                
				.btnCallTo{
					width: 100% !important;
  font-size: 1.1em;
				}
				
				.home-landing-bandeau-searchbar {
 
 flex-direction: column !important;
width: 90%;
margin: auto;
}
				.home-landing-bandeau-searchbar select {
  margin:0px !important;
					  margin-bottom: 5px !important;
}
						
.contentFormAnacours{
		    padding: 20px;
background-color: #fae8e3;
display: block;
border-radius: 20px;
padding-top: 40px;
padding-bottom: 40px;
		
	}
				
#devFranchise .contentFormAnacours{
		
border-radius: 0px !important;
		
	}		
			
				#videoFranchise iframe{
height: 60vw !important;

				}	

				
	#btnContactFranchise{
		right: -40px !important;
		
				}	
				
	#btnContactFranchise a {
		padding: 12px !important;
  font-size: 14px !important;
		
				}	
				
				
				.contentFormAnacours .field-40{
  width: 100%  !important;
}

	.contentFormAnacours .field-60{
  width: 100%  !important;
	}

				.form .form-mains .form-main .field {

  padding: 0px  !important;
}
				
			
				
						#baseline1Anacours{
			margin-bottom:0px !important;
			
		}
                
#baselineOk {
    width: 90%!important;
    margin-top: 10px;
}
				
				
					
				.chooseAancours2 .elementor-image-box-wrapper{

					display: flex;
					flex-direction: row;
					align-items: center;
					
				}
				
				.chooseAancours2 .elementor-image-box-content{
					text-align:left;
					    margin-top: -10px;

				}	
				.chooseAancours .elementor-image-box-wrapper{

					display: flex;
					flex-direction: row;
					align-items: center;
					
				}
				
				.chooseAancours .elementor-image-box-content{
					text-align:left;
					    margin-top: -10px;

				}
				
				
					.chooseAancoursMu .elementor-image-box-wrapper{

					display: flex;
					flex-direction: row;
					align-items: center;
					
				}
				
				.chooseAancoursMu .elementor-image-box-content{
					text-align:left;
					    margin-top: -10px;

				}
				
				.numbFranch {
  margin-top: -48px !important; 
}
				
				.blocBlue img{
					display:none;
				}
				
				
				#chooseBloc .elementor-image-box-img{
					    margin-right: 20px !important;
				}
		
				.btnAna a{
					    padding: 20px 40px;
				}
				
				.trustWidgetCorps .trustpilot-widget {
    width: 252px !important;
    margin: auto;
    margin-left: auto !important;
}
				
				
				#trustFooter {
    width: 230px !important;
    margin: auto;
    margin-left: auto !important;
    height: 50px;
}
					
				#trustFooter iframe{
    height: 40px !important;
}		
				
			#menuMobFooter .menuHeader #btnDevisMobOk2 .elementor-icon-box-title a{
  padding-top: 2px !important;
  display: block;
}
				
				#menuMobFooter #btnDevisMobOk2 .elementor-icon-box-title{
					padding-top: 2px !important;
				}
				
					#menuMobFooter #btnDevisMobOk2 .elementor-icon-box-icon{
					padding-top: 2px !important;
				}
}
	
#validStepRecrut.is-loading, #validStep.is-loading {
    background-image: url('../img/Spinner-1s-200px_15cd4f.gif');
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 50px 50px;
}

.test_inscription {
display: flex;
flex-direction: row;
align-items: left;
gap: 10px;
padding-top: 10px;
}
#test_inscription {
width: 20px!important;
height: 20px!important;
}
/* Temoignages (Swiper) styles */
.temoignages {
	max-width: 1440px;
	padding: 10px 16px;
}
.temoignages .swiper {
	padding: 20px 0;
}
.temoignages .swiper-wrapper {
	align-items: stretch;
}

.temoignage-item {
	background: #ffffff;
	border: 1px solid #E8E8E8;
	border-radius: 16px;
	padding: 24px;
	height: 260px; /* fixed height so all slides match */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.temoignage-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(20,30,50,0.12);
}

/* Truncate text to a fixed number of lines */
.temoignage-texte {
	font-size: 15px;
	line-height: 1.45;
	font-style: italic;
	color: #1a365b;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 5; /* number of lines to show */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* On hover, reveal full text (make it scrollable within the fixed card) */
.temoignage-item:hover .temoignage-texte {
	-webkit-line-clamp: unset;
	max-height: calc(100% - 60px);
	overflow: auto;
}

.temoignage-auteur {
	font-weight: 600;
	color: #1a365b;
	font-size: 14px;
}

.temoignages .swiper-pagination {
	margin-top: 18px;
	position: relative;
}

@media (max-width: 767px) {
	.temoignages { padding: 8px; }
	.temoignage-texte { font-size: 14px; -webkit-line-clamp: 4; }
	.temoignage-item { padding: 14px; height: 220px; }
}

.mot-responsable-agence{
	padding : 60px 0px;
	padding-top : 0px;
}

.mot-responsable-contenu{
	max-width: 1200px;
	margin: 0 auto;
}

.mot-responsable-contenu.sans-image{
	/* Pas de changement particulier nécessaire */
}

body .photo-mot-responsable{
	border-radius: 15%;
	width: 180px;
	height: 180px;
	object-fit: cover;
	object-position: center;
	display: block;
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}

.texte-mot-responsable{
	font-size: 16px;
	line-height: 1.5;
	color: #1a365b;
	text-align: left;
}

.mot-responsable-contenu.sans-image .texte-mot-responsable{
	/* Pas de changement nécessaire */
}

.mot-responsable-contenu::after{
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 768px) {
	.mot-responsable-contenu{
		text-align: center;
		padding: 20px;
	}
	
	body .photo-mot-responsable{
		width: 150px;
		height: 150px;
		float: none;
		margin: 0 auto 20px auto;
		display: block;
	}
	
	.texte-mot-responsable{
		text-align: left;
	}
}
/* Couleur bouton Mon espace */
.menuEspace,
.menuEspace .elementor-widget-container {
  background: #d43e31 !important;
  border-color: #d43e31 !important;
  border-radius: 100px !important;
}

.menuEspace .elementor-icon-box-title a,
.menuEspace .elementor-icon-box-title span,
.menuEspace .elementor-icon-box-icon,
.menuEspace .elementor-icon-box-icon i {
  color: #ffffff !important;
}

.menuEspace .elementor-icon-box-icon svg,
.menuEspace .elementor-icon-box-icon svg path {
  fill: #ffffff !important;
} 
