@charset "utf-8";

@font-face {
font-family: 'Nickainley-Normal';
src: url('Nickainley-Normal.otf');
}
@font-face {
font-family: 'Roboto-Light';
src: url('Roboto-Light.ttf');
}
@font-face {
font-family: 'now';
src: url('now.otf');
}
@font-face {
font-family: 'now-bold';
src: url('now-bold.otf');
}
@font-face {
font-family: 'now-light';
src: url('now-light.otf');
}

html{
	height: 100%;
	display: flex;
	justify-content: center;

}
body{
	font-family: 'now-light';
	min-height: 100%;
	position: relative;
	font-size: 1rem;
	width: 100%;
	max-width: 2200px;
}
#container{
	font-size: 1.2rem;
	width: 100%;
	color: #4d4d4d;
}
@media screen and (max-width: 1275px){
	#container{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 400px){
	#container{
		font-size: 0.9rem;
	}
}
h1 {
	font-size: 2rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	h1 {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 700px){
	h1 {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 600px){
	h1 {
		font-size: 1.6rem;
	}
}
h2 {
	font-size: 1.8rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	h2 {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 700px){
	h2 {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 600px){
	h2 {
		font-size: 1.5rem;
	}
}
h3 {
	font-size: 1.6rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	h3 {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 700px){
	h3 {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 600px){
	h3 {
		font-size: 1.3rem;
	}
}
h4 {
	font-size: 1.4rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	h4 {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 700px){
	h4 {
		font-size: 1.2rem;
	}
}
h5 {
	font-size: 1.2rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	h5 {
		font-size: 1.1rem;
	}
}
h6 {
	font-size: 1rem;
	color: #008036;
}
ul {
		padding: 1rem 0rem 1rem 1.5rem;
}
ol {
		padding: 1rem 0rem 1rem 1.5rem;
}
ul li {
	list-style-type: disc;
}
ol li {
	list-style-type: decimal;
}
p {
	margin: 1rem 0rem;
}
.color_base{
	color: #000;
}
.marginTop05rem{
	margin-top: 0.5rem;
}
.marginTop1rem{
	margin-top: 1rem;
}
.marginTop2rem{
	margin-top: 2rem;
}
.marginTop3rem{
	margin-top: 3rem;
}
.marginTop4rem{
	margin-top: 4rem;
}
.marginTop5rem{
	margin-top: 5rem;
}
.marginBottom05rem{
	margin-bottom: 0.5rem;
}
.marginBottom1rem{
	margin-bottom: 1rem;
}
.marginBottom2rem{
	margin-bottom: 2rem;
}
.marginBottom3rem{
	margin-bottom: 3rem;
}
.marginBottom4rem{
	margin-bottom: 4rem;
}
.texteJustify{
	text-align: justify;
}
.texteCenter{
	text-align: center;
}
.texteGras{
	font-weight: bold;
}
.texteItalique{
	font-style: italic;
}
.texteMajuscule{
text-transform: uppercase;
}
a{
	transition: .25s ease-in-out;
}
a:hover{
	transition: .25s ease-in-out;
	color: #008036;
}
.UnderlineHoverClassic{
	color: #008036;
}
.UnderlineHoverClassic:hover{
  display: inline-block;
  position: relative;
}
.UnderlineHoverClassic:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #008036;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.UnderlineHoverClassic:hover:after{
  transform: scaleX(1);
  transform-origin: bottom left;
}
.couleurSecondaire{

}
.couleurPrimaire{
	color: #008036;
}
.ecritureSecondaire{
	font-family: Nickainley-Normal;
}

																							/*Header*/
.menu{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 0.5rem;
}
.menu ul{
	display: flex;
	color: #1c1b21;
}
.menu ul li{
	padding: 0rem 3rem;
	font-weight: normal;
	transition: .25s ease-in-out;
	display: flex;
	list-style-type: none;
}
@media screen and (max-width: 1270px){
	.menu ul li{
 		padding: 0rem 2rem;
}
}
.menu ul li a{
	padding: 8px 8px 0px 8px;
  color: #636363;
  font-size: 1.5rem;
}
@media screen and (max-width: 1270px){
	.menu ul li a{
		padding: 2px 2px 0px 2px;
 		font-size: 1.2rem;
}
}

.menu ul li a:hover{
  display: inline-block;
  position: relative;
  color: #008036;
}
.menu ul li a:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #008036;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.menu ul li a:hover:after{
  transform: scaleX(1);
  transform-origin: bottom left;
}
/*
.menu ul li a.active{
background-color: #e5e5e5;
color: #ce0000;
}
.menu ul li:hover{
	transition: .25s ease-in-out;
}
.menu ul li a{
	padding: 8px;
  color: #636363;
  font-size: 1.5rem;
}

.menu ul li a:hover {
  color: #008036;
}
*/
#bandeauHeader{
	/*border-width: 1px;
	border-color: #ce0000;
	border-style: solid;
	border-right-style: none;
	border-left-style: none;
	border-top-style: none;
	*/
	display: flex;
	flex-direction: column;
	align-items: center;
}
#deconnexion{
	position: absolute;
	right: 10px;
	top: 5px;
	color: #ff1244;
}
																							/*FIN Header*/
																							/*HeaderSite*/
#logoHerba{
	width: 95px;
	position: absolute;
}
#encadreHeader{
	text-align: center;
	font-size: 1.3rem;
	padding: 1rem 2rem;
	background-color: #008036;
	color: #fff;
	border-radius: 20px;
	margin: 1rem 0rem;
	/*enlever la position et le top pour remettre l'un dessous l'autre*/
	position:	absolute;
	top: 75px;
}
@media screen and (max-width: 1000px){
	#encadreHeader{
		margin: 0rem 0rem;
		top: 5px;
		padding: 0.2rem 1rem;
	}
	#logoHerba{
	width: 69px;
  position: absolute;
  left: 10px;
  top: 7px;
}
}
@media screen and (max-width: 1000px){
	#encadreHeader{
	font-size: 1.2rem;
	font-size: 0.9rem;
	}
}
@media screen and (max-width: 420px){
	#encadreHeader{
	max-width: 365px;
	}
}
@media screen and (max-width: 375px){
	#encadreHeader{
	max-width: 300px;
	}
	#logoHerba{
	width: 59px;
}
}
.encadreImageHeader{
	width: 100%;
}
@media screen and (max-width: 800px){
.encadreImageHeader{
	display: none;
}
}
.encadreImageHeaderTel{
	margin-top: 3rem;
}
@media screen and (min-width: 801px){
	.encadreImageHeaderTel{
		display: none;
	}
}
.encadreImageHeader img{
	/*background-image: url("../images/imageHeader.jpg");
	height: 100px;*/
	width: 100%;
}
#encadreHeader p{
	margin: 0rem;
}
.nomSite{
	font-size: 3rem;
}
@media screen and (max-width: 700px){
	.nomSite{
	font-size: 2.5rem;
}
}
@media screen and (max-width: 450px){
	.nomSite{
	font-size: 1.8rem;
}
}
#encadreHeader.backgroundVert p#nomVeroniqueEncadreVert{
	font-size: 1.6rem;
	margin: 0.5rem 0rem;
}
@media screen and (max-width: 700px){
#encadreHeader.backgroundVert p#nomVeroniqueEncadreVert{
	font-size: 1.2rem;
}
}
@media screen and (max-width: 450px){
#encadreHeader.backgroundVert p#nomVeroniqueEncadreVert{
	font-size: 1rem;
}
}

																							/*FIN HeaderSite*/



																							/*Index*/
#AgencementSousDessinAccueil{
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
@media screen and (max-width: 1000px){
	#AgencementSousDessinAccueil{
	flex-direction: column;
	align-items: center;
}
}
.flex1{
	flex:	1;
	max-width: 600px;
}
#containerPhoto{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 1000px){
	#containerPhoto{
		margin-top: 2rem;
}
}
#containerPhoto.flex1 img{
	width: 250px;
	height: 250px;
}
#textePhoto{
	padding: 1.5rem;
	border-style: solid;
	border-width: 2px;
	border-color: #008036;
	font-size: 1.3rem;
	border-radius: 20px;
}
@media screen and (max-width: 650px){
	#textePhoto{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 400px){
	#textePhoto{
		font-size: 1rem;
		padding: 1rem;
	}
}
.coordonneesAccueil{
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}
.agencementLienCadrePhoto{
	padding: 0.3rem 2rem;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d0eadb;
	min-width: 245px;
}
/* a delete */
#agencementPhotoNom{
	display: flex;
	flex-direction: column;
	align-items: center;
}
#agencementContactSousphotoID .agencementLienCadrePhoto img{
	width: 30px;
	height: 30px;
}


/* jusque là */
/*
#textePhoto.flex1 div img{
	width: 30px;
	height: 30px;
}
*/
#agencementContactSousphotoID{
	
}
.coordonneesAccueil a.agencementLienCadrePhoto:hover{
	box-shadow: 0px 0px 30px 0px rgba(0,128,54,0.8);
}
.h2Index{
	font-size: 2rem;
	color: #008036;
	margin: 4rem 3rem 0.5rem 3rem;
}
@media screen and (max-width: 1000px){
	.h2Index{
		font-size: 1.7rem;
		margin: 4rem 0rem 0.5rem 0rem;
	}
}
@media screen and (max-width: 800px){
	.h2Index{
		margin: 2rem 0rem 0.5rem 0rem;
	}
}
@media screen and (max-width: 700px){
	.h2Index{
		font-size: 1.6rem;
	}
}
.h2Contact{
	text-align: center;
	font-size: 2.2rem;
	color: #008036;
}
@media screen and (max-width: 1000px){
	.h2Contact{
		font-size: 1.9rem;
	}
}
@media screen and (max-width: 700px){
	.h2Contact{
		font-size: 1.7rem;
	}
}
.traitSeparateur{
	height: 3px;
	border-top: 5px solid;
	border-color: #d0eadb;
	margin: 2.5rem 0rem 2rem 0rem;
}
.petitTraitSeparateur{
	width: 10%;
	height: 3px;
	border-top: 5px solid;
	border-color: #d0eadb;
	margin-left: 3rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 1000px){
	.petitTraitSeparateur{
	margin-left: 0rem;
}
}
.textePara{
/*	padding: 0rem 1rem; */
}
.paddingCotes{
	padding: 0rem 14rem;
}
@media screen and (max-width: 1500px){
	.paddingCotes{
	padding: 0rem 8rem;
}
}
@media screen and (max-width: 1100px){
	.paddingCotes{
	padding: 0rem 4rem;
}
}
@media screen and (max-width: 600px){
	.paddingCotes{
	padding: 0rem 1rem;
}
}
.lienSeul{
	display: flex;
}
@media screen and (max-width: 1000px){
	.lienSeul{
	justify-content: center;
}
}
.lienSeul a:hover{
	box-shadow: 0px 0px 30px 0px rgba(0,128,54,0.8);
}

																							/*FIN index*/



																							/* Prestations*/
#cadreGlobalSousMenu{
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
.AgencementPrestations{
	display: flex;
	justify-content: center;
	width: 1000px;
	color: #008036;
}
.wrapPrestations{
	display: flex;
	justify-content: space-around;
	width: 500px;
}
.cadrePrestationsVignettes{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 200px;
	border-width: 1px;
	border-color: #008036;
	border-style: solid;
	border-radius: 20px;
}
@media screen and (max-width: 1000px){
	.cadrePrestationsVignettes{
	width: 150px;
}
.AgencementPrestations{
	width: 800px;
}
}
@media screen and (max-width: 800px){
	.cadrePrestationsVignettes{
	width: 150px;
}
.AgencementPrestations{
	width: 700px;
}
}
@media screen and (max-width: 700px){
	.AgencementPrestations{
		flex-wrap: wrap;
}
	.cadrePrestationsVignettes{
	width: 200px;
}
	#wrapPrestation1{
		margin-bottom: 1rem;
	}
}
@media screen and (max-width: 500px){
	.cadrePrestationsVignettes{
	width: 150px;
}
.wrapPrestations{
	width: 400px;
}
}
@media screen and (max-width: 500px){
.wrapPrestations{
	width: 400px
}}
@media screen and (max-width: 380px){
.wrapPrestations{
	width: 320px
}}
.cadrePrestationsVignettes img{
	border-radius: 10% 30% 50% 70%;
	max-height: 132px;
	width: 198px;
}
@media screen and (max-width: 1000px){
.cadrePrestationsVignettes img{
	max-height: 98px;
}	
}
@media screen and (max-width: 700px){
.cadrePrestationsVignettes img{
	max-height: 132px;
}	
}
@media screen and (max-width: 700px){
.cadrePrestationsVignettes img{
	max-height: 98px;
}	
}
.ulPrestation{
	padding: 0rem 0rem 0rem 1.5rem;;
}



																							/*FIN Prestations*/



																							/*Mon parcours*/
.agencementLiensFormation{
	display: flex;
	justify-content: space-between;
}
																							/*FIN Mon parcours*/



                    				      						/*Actualités*/
.AgencementArticle{
	display: block;
	padding: 1rem 1rem;
	margin: 1rem 8rem;
	border-width: 1px;
	border-color: #008036;
	border-style: solid;
	border-radius: 20px;
}

@media screen and (max-width: 1500px){
	.AgencementArticle{
	margin: 1rem 8rem;
}
}
@media screen and (max-width: 1100px){
	.AgencementArticle{
	margin: 1rem 4rem;
}
}
@media screen and (max-width: 600px){
	.AgencementArticle{
	margin: 1rem 1rem;
}
}

.agencementDroitApercuArticle{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.apercuArticle{
	margin-top: 1rem;
	display: block;
	width: 100%;
}
.TitreApercuArticle{
	font-size: 1.6rem;
	font-weight: bold;
}
.lienApercuArticle{
	padding: 0rem 1rem;
	margin-top: 1rem;
	border-radius: 20px;
	text-align: center;
	background-color: #d0eadb;
	width: 200px;
}

.apercuArticle img{
	border-radius: 10px 100px / 120px;
	max-height: 155px;
	min-width: 200px;
	max-width: 200px;
	float: right;
	margin-left: 1rem;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 800px){
.apercuArticle.texteJustify div.paragrapheActualites p img{
		display: none;
	}
}
.apercuArticle p{
	margin: 0rem 0rem;
}
.actualitesDates{
	font-size: 0.7rem;
}
.apercuArticle a{
	color: #0066bb;
}
.apercuArticle a:hover{
	color: #008036;
}
@media screen and (max-width: 800px){
	.apercuArticle{
	display: block;
}
.apercuArticle img{
float: right;
}
}
@media screen and (max-width: 500px){
	.apercuArticle{
	display: flex;
	flex-direction: column;
	align-items: center;
}
	.apercuArticle img{
	float: none;
	margin-bottom: 1rem;
	margin-left: 0rem;
}
}
.paragrapheActualites{
	width: 100%;
}
.paragrapheActualites p{
	display: inline;
	margin: 0;
}
#BoutonCreerArticle{
	text-align: left;
	margin-left: 2rem;
	color: #0066bb;
}
                    				      						/*FIN Actualités*/
                    				      						/* Articles*/
.AgencementPageArticle {
	min-height: 450px;
}
.AgencementPageArticle img{
	width: 400px;
	float: right;
	margin: 0.5rem 0rem 0.5rem 2.5rem;
	border-radius: 30px;
}
@media screen and (max-width: 850px){
.AgencementPageArticle img{
	margin: 0.5rem 0rem 0.5rem 0rem;
}}
.dateArticle{
	margin-top: 1rem;
	font-size: 0.8rem;
}
#testTexteArticle img{
	float: none;
	margin: 0.5rem 0rem;
	width: 200px;
}
.lienModificationArticle{
	display: flex;
	justify-content: space-between;
	padding: 1rem 1rem;
}
@media screen and (max-width: 850px){
.agencementArticlePhotoTexte{
	display: flex;
	flex-direction: column;
	align-items: center;
}}
#testTexteArticle a{
	color: #0066bb;
}
#testTexteArticle a:hover{
	color: #008036;
}

                    				      						/*FIN Articles*/

                    				      						/*FIN Ajout article*/
#apercuArticleMarkdown p img{
	width: 200px;
}
                    				      						/*FIN Ajout article*/
                    				      						/*FIN Modifications article*/
#apercuArticleMarkdown a{
	color: #0066bb;
}
#apercuArticleMarkdown a:hover{
	color: #008036;
}
                    				      						/*FIN Modifications article*/

                    				      						/*Contact*/

.coordonneesContact{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 3rem;
}
.libeleContact{
	margin: 0.5rem 0rem;
}
#agencementCadreContact{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.ContactWrap{
	display: flex;
	flex: 1;
	justify-content: center;
	flex-wrap: wrap;
}
@media screen and (min-width: 741px){
	.ContactWrap{
		min-width: 730px;
	}
}
@media screen and (max-width: 740px){
	.ContactWrap{
		max-width: 700px;
	}
}
#agencementCadreContact img{
	width: 30px;
	height: 30px;
}
.coordonneesContact img#imageEmplacement{
	width: 25px;
}
.adresse{
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 245px;
}
.FacebookContact{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 2rem;
}
.FacebookContact img{
	width: 50px;
}
.cadreTarifs h3{
	font-size: 1.7rem;
}
.marginCotes{
	margin: 0rem 14rem;
}
.modifTarifsAdmin{
	display: flex;
}
.boutonModifier{
	color: #0066bb;
}
.boutonSupprimer{
	color: #ff1244;
}
#nomSiteContact{
	text-align: center;
}
.paragraphePageContact{
		margin: 0rem 0rem;
}

                    				      						/*FIN Contact*/



                    				      						/*menu hamburger*/
#menuToggle{
position: fixed;
top: 19px;
left: 10px;
z-index: 7;
-webkit-user-select: none;
user-select: none;
width: 100%;
}
@media screen and (min-width: 1001px){
  #menuToggle{  
  	display: none;
  }
}
#menuToggle a{
padding: 5px;
transition: .25s ease-in-out;
}
#menuToggle a:hover{
transition: .25s ease-in-out;
background-color: #cdc2c6;
}
#menuToggle input{
display: block;
width: 40px;
height: 32px;
position: absolute;
top: -7px;
left: -5px;
cursor: pointer;
opacity: 0;
z-index: 7;
-webkit-touch-callout: none;
}
#menuHamb{
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
width: 100%;
margin: -168px 0px 0px -10px;
padding-top: 125px;
padding-bottom: 1rem;
list-style-type: none;
-webkit-font-smoothing: antialiased;
/* to stop flickering of text in safari */
transform-origin: 0% 0%;
transform: translate(0, -100%);
transition: transform 0.5s;
line-height: 1.3;
font-size: 1.3rem;
background-color: #fff;
border-width: 1px;
border-color: #ce0000;
border-style: solid;
border-right-style: none;
border-left-style: none;
border-top-style: none;
}
#menuHamb a{
width: 100%;
text-align: center;
color: #636363;
}
@media screen and (max-width: 800px){
#menuHamb a{
font-size: 1.3rem;
}
}
#menuHamb a:hover{
-webkit-box-shadow:inset 0px 0px 0px 1px #ce0000;
-moz-box-shadow:inset 0px 0px 0px 1px #ce0000;
box-shadow:inset 0px 0px 0px 1px #ce0000;
background-color: #636363;
color: #e5e5e5;
}
#menuToggle input:checked ~ .ulHamburger{
transform: none;
}

/*Effet petites barres menu*/
#menuToggle span{
display: block;
width: 33px;
height: 4px;
margin-bottom: 5px;
position: relative;
background: #9d9d9d;
border-radius: 3px;
z-index: 6;
transform-origin: 4px 0px;
transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
      background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
      opacity 0.55s ease;
}
#menuToggle span:first-child
{
transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span
{
opacity: 1;
transform: rotate(45deg) translate(-2px, -1px);
background: #636363;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
opacity: 0;
transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
transform: rotate(-45deg) translate(0, -1px);
}
@media screen and (max-width: 1000px) {
.menu{
display: none;
}
}
                    				      						/*FIN menu hamburger*/

                        										  /*Footer*/
#phraseConseilFooter{
	text-align: center;
	padding: 1rem;
}
@media screen and (max-width: 600px){
	#phraseConseilFooter{
	text-align: justify;
}
}
#bandeauFooter{
	/*
border-width: 5px;
border-color: #d0eadb;
border-style: solid;
border-right-style: none;
border-left-style: none;
border-bottom-style: none;*/
font-size: 1rem;
background-color: #008036;
border-radius: 30px 30px 0% 0%;
}
@media screen and (min-width: 801px){
	#bandeauFooter{
		margin-left: 2rem;
		margin-right: 2rem;
	}
}
@media screen and (max-width: 450px){
	#bandeauFooter{
		font-size: 0.9rem;
	}
}

.UnderlineHover:hover{
  display: inline-block;
  position: relative;
  color: #fff;
}
.UnderlineHover:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.UnderlineHover:hover:after{
  transform: scaleX(1);
  transform-origin: bottom left;
}
#CGU{
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1rem 0.5rem 1rem;
}
@media screen and (max-width: 400px){
	#CGU{
	padding: 0.5rem 0.3rem 0.5rem 0.3rem;
	font-size: 0.7rem;
}
}

#cadreFooterGauche{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#cadreFooterDroit{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-end;
}
#cadreFooterDroit img{
	width: 40px;
}
@media screen and (max-width: 410px){
	#cadreFooterDroit img{
		padding-right: 0.5rem;
	}
}
#nomSiteFooter{
	margin: 0rem;
}
@media screen and (max-width: 500px){
#nomSiteFooter{
	font-size: 2rem;
}}
#jaggLien{
	text-align: right;
	padding-left: 0.5rem;
}
#cadreFooterDroit p{
	margin: 0rem;
}
#logosBasdePage{
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
#logosBasdePage img{
	height: 150px;
	width: auto;
}
@media screen and (max-width: 500px){
	#logosBasdePage img{
	height: 75px;
	width: auto;
}
}
#logo1{
margin-right: 2rem;
}
#logo2{
margin-left: 2rem;
}
#agencementLogoFooter{
	display: flex;
}
.MargingLogo{
	margin-right: 0.3rem;
}
                       											   /*Fin Footer*/


                       											   /* a revoir si il n'y a rien en trop */
                       							   /*formulaire contact*/
.formulaire_contact{
	 display: flex;
	justify-content: end;
  flex:4;
  font-size: 1.2rem;
  padding: 0rem 0rem 1rem 0rem;
}
@media screen and (max-width: 1200px){
	.formulaire_contact{
		justify-content: center;
	}
}
.formulaire_contact form{
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 580px){
.formulaire_contact form{
  font-size: 1rem;
}}
.formulaire_contact form div{
  margin-top: 1rem;
}
.autreContact{
flex:4;
font-size: 1.3rem;
margin-bottom: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 1rem;
text-align: center;
}
.autreContact p{
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px){
  .autreContact p{
font-size: 1rem;
}
}
.inputedit{
  width: 50rem;
  padding:0.5rem;
  border-width: 1px;
  border-color: #1d1d1d;
  border-style: solid;
  background-color: #ebebeb;
  color:#0d0c0c;
  border-radius: 15px;
}
@media screen and (max-width: 1600px){
.inputedit{
  width: 40rem;
}}
@media screen and (max-width: 1400px){
.inputedit{
  width: 35rem;
}}
@media screen and (max-width: 1000px){
.inputedit{
 width: 25rem;
}}

@media screen and (max-width: 600px){
.inputedit{
  width: 25rem;
}}
@media screen and (max-width: 500px){
.inputedit{
  width: 20rem;
}}
@media screen and (max-width: 355px){
.inputedit{
  width: 16rem;
}}
#valider{
  cursor: pointer;
  transition: .25s ease-in-out;
  color: #008036;
  margin-top: 1.5rem;
  padding:0rem 1.5rem;
  height: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #d0eadb;
  border-radius: 30px;
}
@media screen and (max-width: 480px){
#valider{
  font-size: 1.1rem;
}}
#valider:hover{
  transition: .25s ease-in-out;
  color: #d0eadb;
  background-color: #008036;
}
#textareamessage{
  padding:0.5rem;
  color:#0d0c0c;
  min-height: 10rem;
}

.formulaire_contact form ul li{
  text-align: center;
}
.asterisque{
  color:#c50303;
}
.error{
  color:#ec5f66;
}
/*
#titre_form{
		font-size: 30px;
}
@media screen and (max-width: 1000px){
#titre_form{
  font-size: 1.2rem;
}}
*/
#agencementContact{
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1200px){
	#agencementContact{
		flex-direction: column;
		justify-content: center;
	}
}
#coordonees{
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1050px){
	#coordonees{
font-size: 16px;
}
}
#coordonees span{
		margin-right:	1rem;
}
@media screen and (max-width: 1200px){
	#coordonees span{
		margin:	0.5rem 1rem 0rem 0rem;
}
}
#coordonees iframe{
	padding: 1rem 1rem 1rem 0rem ;
}
@media screen and (max-width: 1300px){
	#coordonees iframe{
		width: 30rem;
}
}
@media screen and (max-width: 1000px){
	#mapTel iframe{
		width: 30rem;
}
}
@media screen and (max-width: 600px){
	#mapTel iframe{
		width: 25rem;
}
}
@media screen and (max-width: 500px){
	#mapTel iframe{
		width: 20rem;
}
}
@media screen and (max-width: 355px){
	#mapTel iframe{
		width: 16rem;
}
}
@media screen and (max-width: 1200px){
#coordonees iframe{
display: none;
}
}
#mapTel{
	display: none;
	margin: auto;
}
@media screen and (max-width: 1200px){
#mapTel{
	margin-bottom: 1rem;
	margin-top: 2rem;
	display: block;
}
}

                          /*fin formulaire contact*/

                          /*formulaire contact personnalisation*/
.paddingCotesFormulaire{
padding: 0rem 6rem;
}
@media screen and (max-width: 730px){
	.paddingCotesFormulaire{
		padding: 0rem 1rem;
	}
}
.paddingCotesFormulaire.marginTop1rem div#coordonees{
	margin-right: 2rem;
}
.sectionTarifs{
	background-color: #d0eadb;
}
.cadreTarifs{
	padding: 0.5rem 2rem;
	border-radius: 30px;
}
                          /*fin formulaire contact personnalisation*/


                          /*fin formulaire connexion*/
#formulaireConnexion{
	display: flex;
	justify-content: center;
}
                          /*fin formulaire connexion*/