@charset "utf-8";

@font-face {
font-family: 'now-light';
src: url('now-light.otf');
}
@font-face {
font-family: 'titre';
src: url('titre.otf');
}
@font-face {
font-family: 'Butler_Regular';
src: url('Butler_Regular.otf');
}
html{
	min-height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	--scroll-behavior: smooth;
	scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 0px;
  background: transparent; 
}
body{
	font-family: 'now-light';
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	max-width: 2200px;
}
.content{
	font-size: 1.2rem;
	width: 100%;
	flex: 1;
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 1400px){
	.content{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 900px){
	.content{
		font-size: 1rem;
	}
}
@media screen and (max-width: 700px){
	.content{
		font-size: 0.9rem;
	}
}
.color_base{
	color: #000;
}
.marginTop05rem{
	margin-top: 0.5rem;
}
.marginTop1rem{
	margin-top: 1rem;
}
.marginTop2rem{
	margin-top: 2rem;
}
.marginTop3rem{
	margin-top: 3rem;
}
.marginTop5rem{
	margin-top: 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;
}
.texteBold{
	font-weight: bold;
}
.texteItalic{
	font-style: italic;
}
.flex1{
	flex: 1;
}
a{
	transition: .25s ease-in-out;
}
a:hover{
	transition: .25s ease-in-out;
	color: #71241e;;
}
.couleurPrimaire{
 color: #71241e;
}
.couleurSecondaire{
	color: #6a6a6a;
}


																							/*Header*/
#header{
	position: fixed;
	width: 100%;
	margin-bottom: 2rem;
	z-index: 10;
}
@media screen and (max-width: 1400px){
#header{
	margin-bottom: 0rem;
}
}
@media screen and (max-width: 1000px){
#header{
	display: none;
}
}
.menuPrincipal{
	display: flex;
	width: 100%;
	justify-content: flex-end;
	font-family: 'titre';
	font-size: 3rem;
	color: #2c2c2c;
	top: 0px;
}
@media screen and (max-width: 1400px){
.menuPrincipal{
	font-size: 2rem;
}
}
.menuPrincipal a{
	margin: 0rem  1rem;
}
#menuPincipalCatalogueEtArtcile a{
	color: #FFF;
}
#menuPincipalCatalogueEtArtcile a:hover{
	color: #71241e;
}
																							/*FIN Header*/

																							/*Menu*/
																							/*FIN Menu*/

                    				      						/*menu hamburger*/
.side-bar{
 background: #1b1a1b;
 backdrop-filter: blur(15px);
 width: 250px;
 height: 100vh;
 position: fixed;
 top: 0;
 left: -250px;
 overflow-y: auto;
 transition: 0.6s ease;
 transition-property: left;
 z-index: 99;
}
.side-bar::-webkit-scrollbar {
  width: 0px;
}
.side-bar.active{
 left: 0;
}

.side-bar .menu{
 width: 100%;
 margin-top: 50px;
}

.side-bar .menu .item{
 position: relative;
 cursor: pointer;
}

.side-bar .menu .item a{
 color: #fff;
 font-size: 16px;
 text-decoration: none;
 display: block;
 padding: 5px 10px;
 line-height: 50px;
}

.side-bar .menu .item a:hover{
 background: #33363a;
 transition: 0.3s ease;
}

.side-bar .menu .item i{
 margin-right: 15px;
}

.side-bar .menu .item a .dropdown{
 position: absolute;
 right: 0;
 margin: 20px;
 transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu{
 background: #262627;
 display: none;
}

.side-bar .menu .item .sub-menu a{
 padding-left: 80px;
}

.rotate{
 transform: rotate(90deg);
}

.close-btn{
 position: absolute;
 color: #fff;

 font-size: 23px;
 right:  0px;
 margin: 15px;
 cursor: pointer;
}

.menu-btn{
	position: fixed;
	color: #2c2c2c;
	font-size: 35px;
	/*margin: 25px;*/
	cursor: pointer;
	top: 15px;
	left: 10px;
	z-index: 15;
}
@media screen and (min-width: 1001px){
  .menu-btn{  
  	display: none;
  }
}
                    				      						/*FIN menu hamburger*/

																							/*Index*/
#accueil{
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
@media (orientation: landscape) {
#accueil{
	background-image: url('/images/fond.jpg');
}
}
@media (orientation: portrait) {
#accueil{
	background-image: url('/images/fondPortrait.jpg');
}
}
.accueil{
	height: 100vh;
}
.contentTexte{
	text-align: justify;
	display: flex;
	/*height: 100vh;*/
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0rem  1rem;
	color: #fff;
}
@media screen and (max-width: 850px){
.contentTexte{
	padding: 0rem  0.3rem;
}
}
.ContentTextePresentation{
	background-color: rgba(255, 255, 255, 0.5);
	width: 60%;
	text-align: justify;
	color: grey;
}
@media screen and (max-width: 1400px){
.ContentTextePresentation{
	width: 90%;
}
}
@media screen and (max-width: 850px){
.ContentTextePresentation{
	width: 95%;
}
}
.contentTexte h1{
	font-size: 10rem;
	font-family: 'titre';
	color: #71241e;
	text-align: center;
	line-height: 11rem;
		filter: drop-shadow(-10px 2px 3px grey);
}
@media screen and (max-width: 1400px){
.contentTexte h1{
	font-size: 6rem;
	line-height: normal;
}
}
@media screen and (max-width: 700px){
.contentTexte h1{
	font-size: 4rem;
	line-height: normal;
}
}
.ListeArtcilesIndex{
	text-align: center;
	font-family: 'Butler_Regular';
	color: #71241e;
	font-weight: bold;
	font-size: 1.8rem;
}
@media screen and (max-width: 1400px){
.ListeArtcilesIndex{
	font-size: 1.4rem;
}
}
@media screen and (max-width: 700px){
.ListeArtcilesIndex{
	font-size: 1.1rem;
}
}
.agencementDeuxDivFlex{
	display: flex;
	margin-top: 8rem;
}
@media screen and (max-width: 1400px){
.agencementDeuxDivFlex{
	margin-top: 2rem;
}
}
.contentTexte h2{
	font-size: 6rem;
	font-family: 'titre';
	color: #2c2c2c;
	font-weight: bold;
	text-align: center;
	filter: drop-shadow(-10px 2px 3px grey);
	/*filter: drop-shadow(-15px 2px 3px white);*/
	/*-webkit-text-stroke: 1px #fff;*/
}
@media screen and (max-width: 1400px){
.contentTexte h2{
	font-size: 4rem;
}
}
@media screen and (max-width: 700px){
.contentTexte h2{
	font-size: 2rem;
}
}
.texteFibresIndex{
	font-size: 3rem;
	font-family: 'Butler_Regular';
	text-align: center;
	filter: drop-shadow(-10px 2px 3px grey);
}
@media screen and (max-width: 1400px){
.texteFibresIndex{
	font-size: 2rem;
}
}
@media screen and (max-width: 700px){
.texteFibresIndex{
	font-size: 1.4rem;
}
}
.ListeLaineIndex{
	font-family: 'Butler_Regular';
	color: #71241e;
	font-weight: bold;
	font-size: 1.8rem;
	margin-top: 1rem;
	text-align: center;
}
@media screen and (max-width: 1400px){
.ListeLaineIndex{
	font-size: 1.4rem;
}
}
@media screen and (max-width: 700px){
.ListeLaineIndex{
	font-size: 1.1rem;
}
}
#presentation{
		min-height: 100vh;
}
.section2{
	background-color: #FFF;
	background-image: url('/images/pelotte.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-attachment: fixed;
	background-position: left 18% bottom 15%;

}
h3{
	width: 100%;
	text-align: left;
	color: #71241e;
	font-family: 'titre';
	font-size: 4rem;
	padding-left: 3%;
	margin-top: 3rem;
}
@media screen and (max-width: 1400px){
	h3{
	font-size: 3rem;
	line-height: 3rem;
}
}
@media screen and (max-width: 1000px){
	h3{
	margin-top: 0.5rem;
}
}
@media screen and (max-width: 380px){
	h3{
	font-size: 2.5rem;
	line-height: 3rem;
}
}
#recycleAccueil{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 0.5rem;
}
#imageRecycle{
	width: 151px;
	height: 70px;
}
@media screen and (max-width: 1000px){
	#imageRecycle{
	width: 107px;
	height: 52px;
	}
}

#divRecycle{
	width: 100%;
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 650px){
	#divRecycle{
		flex-direction: column;
		align-items: center;
	}
}
#imageRecyclePresentation{
	float: left;
	width: 215px;
	height: 105px;
	display: inline-block;
	margin-right: 2rem;
}
@media screen and (max-width: 650px){
	#imageRecyclePresentation{
		margin-bottom: 1rem;
		margin-right: 0rem;
	}
}
h6{
	font-family: 'titre';
	color: #71241e;
	width: 100%;
	text-align: center;
	font-size: 2rem;
	margin:1rem 0.5rem 0.5rem 0.5rem;
}
																							/*FIN index*/



																							/*catalogue*/
.agencementCatalogue{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}
@media (orientation: landscape) {
.agencementCatalogue{
	background-image: url('/images/fondCatalogue.jpg');
}
}
@media (orientation: portrait) {
.agencementCatalogue{
	background-image: url('/images/fondCataloguePortrait.jpg');
}
}
.contentCatalogue{
	width: 90%;
	background-color: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
@media screen and (max-width: 940px){
	.contentCatalogue{
		width: 95%;
	}
}
.contentArticle{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin: 1rem 1rem;
	padding: 0.5rem 0.5rem;
	width: 340px;
	border: 1px solid	#FFF;
	color: grey;
	overflow: hidden;
	font-size: 1rem;
}
@media screen and (max-width: 1400px){
	.contentArticle{
		width: 250px;
	}
}
@media screen and (max-width: 890px){
	.contentArticle{
		width: 290px;
	}
}
@media screen and (max-width: 680px){
	.contentArticle{
		width: 230px;
	}
}
@media screen and (max-width: 552px){
	.contentArticle{
		width: 300px;
	}
}
@media screen and (max-width: 370px){
	.contentArticle{
		width: 280px;
	}
}
.titrePhoto{
	background-color: rgba(255, 255, 255, 0.7);
	width: 100%;
	padding: 0.3rem;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.nomArticle{
	font-size: 1.1rem;
	font-weight: bold;
	color: #71241e;
}
.colorMatiere{
	color: #6a6a6a;
	font-weight: bold;
}
.contentImageArticle{
	overflow: hidden;
	margin: 0.3rem 0rem;
}
.contentImagePrixDetailArticle{
	display: flex;
	flex-direction: column;
}
.contentArticle div.contentImageArticle a.lienPhoto{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 429px;
	background-color: #000;
}
@media screen and (max-width: 1400px){
	.contentArticle div.contentImageArticle a.lienPhoto{
		height: 308px;
	}
}
@media screen and (max-width: 890px){
	.contentArticle div.contentImageArticle a.lienPhoto{
		height: 360px;
	}
}
@media screen and (max-width: 680px){
	.contentArticle div.contentImageArticle a.lienPhoto{
		height: 282px;
	}
}
@media screen and (max-width: 552px){
	.contentArticle div.contentImageArticle a.lienPhoto{
		height: 375px;
	}
}
@media screen and (max-width: 370px){
	.contentArticle div.contentImageArticle a.lienPhoto{
		height: 335px;
	}
}
.contentArticle img{
	transition: .35s ease-in-out;
	width: 100%;
}
.contentArticle img:hover{
	filter: brightness(1.1);
	transform: scale(1.1);
}
.prixArticle{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	text-align: center;
	padding: 0.3rem;
}
.boutonVoirPlus{
	margin-top: 0.5rem;
	width: 100%;
	text-align: center;
	border: 1px solid #71241e;
	background-color: #FFF;
	color: #71241e;
	transition: .25s ease-in-out;
}
.boutonVoirPlus:hover{
	border: 1px solid #FFF;
	background-color: #71241e;
	color: #FFF;
}

               										           /*fin page catalogue*/

               										           /*fin menudéroulantcatalogue*/
#menuTrierCatalogue{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	text-align: right;
	margin: 0.5rem 0.5rem 0rem 2rem;

}
@media screen and (max-width: 650px){
	#menuTrierCatalogue{
		margin-bottom: 0.5rem;
	}
}
#menuTrierCatalogue ul{
	display: flex;
}
#menuTrierCatalogue ul li{
	display: inline;
	font-weight: bold;
	transition: .25s ease-in-out;
}
#menuTrierCatalogue ul li:hover{
	transition: .25s ease-in-out;
}
#menuTrierCatalogue ul li a{
	padding: 0.1rem 0.3rem 0.1rem 0.3rem;
	border-radius: 7px;
}
.liendisctinct{
	color: #71241e;
}
.menu-deroulant > a:after{
  content: '❯';
  font-size: 15px;
  margin-left: 7px;
  display: inline-block;
}
.menu-deroulant:hover > a:after{
  animation: rotationFleche 0.2s linear forwards;
}
@keyframes rotationFleche {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100%{
    transform: rotate(90deg);
  }
}
.divLienTrieArticle{
	border-radius: 10px;
}
.divLienTrieArticle:hover{


}
.lienTrieArticle{
	border: 2px solid #FFF;
	color: #FFF;
	background-color: #71241e;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 36px;
}
.lienTrieArticle:hover{
	border: 2px solid #71241e;
	color: #71241e;
	background-color: #FFF;
}
.sous-menu{
	position: absolute;
	justify-content: flex-start;
  flex-direction: column;
  /*margin-top: var(--hauteur-menu);*/
  min-width: 230px;
  text-align: left;
  overflow: hidden;
  max-height: 0;
  border-radius: 5px;
  z-index: 3;
}
.menu-deroulant:hover > .sous-menu {
  /*animation: apparitionSousMenu 1s forwards;*/
  transition: 25s ease-in-out;
  overflow: visible;

}
@keyframes apparitionSousMenu {
  0% {
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0);
    border-top: 3px solid #FFF;
  }
  30% {
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
  }
  100% {
    max-height: 50em;
    border-top: 3px solid #FFF;
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
  }
}
.sous-menu > li{
  background-color: #FFF;
}
.sous-menu > li:hover{
  background-color: #71241e;
}
.sous-menu > li > a {
  align-items: center;
  display: flex;
  height: 50px;
  padding-left: 20px;
  width: 100%;
}
.sous-menu > li > a:hover{
	color: #FFF;

}
               										           /*fin menudéroulantcatalogue*/

                    				      						/* présentation article*/
.fullContentArticle{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 4rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}
@media (orientation: landscape) {
.fullContentArticle{
	background-image: url('/images/fondCatalogue.jpg');
}
}
@media (orientation: portrait) {
.fullContentArticle{
	background-image: url('/images/fondCataloguePortrait.jpg');
}
}
@media screen and (max-width: 1000px){
	.fullContentArticle{
	padding-top: 0.5rem;
}
}

#taillePageArticle{
	width: 65%;
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 1rem;
	
}
@media screen and (max-width: 1600px){
	#taillePageArticle{
	width: 85%;
}
}
@media screen and (max-width: 1150px){
	#taillePageArticle{
	width: 90%;
}
}
@media screen and (max-width: 870px){
	#taillePageArticle{
	width: 90%;
	flex-direction: column;
}
}
.lienRetourCatalogue{
	width: 65%;
	z-index: 11;
	margin-bottom: 0.3rem;
}
@media screen and (max-width: 1600px){
	.lienRetourCatalogue{
	width: 85%;
}
}
@media screen and (max-width: 1150px){
	.lienRetourCatalogue{
	width: 90%;
}
}
@media screen and (max-width: 870px){
	.lienRetourCatalogue{
	width: 90%;
	flex-direction: column;
}
}
.lienRetourCatalogue a{
	border: 2px solid #71241e;
	background-color: #FFF;
	color: #71241e;
	padding: 0.1rem 0.5rem;
	border-radius: 10px
}

.lienRetourCatalogue a:hover{
	border: 2px solid #FFF;
	background-color: #71241e;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
	color: #FFF;
}
.lienTelechargerPdf{
	margin-bottom: -0.6rem;
	z-index: 2;
}
.lienTelechargerPdf a{
	border: 2px solid #71241e;
	background-color: #FFF;
	color: #71241e;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
}

.lienTelechargerPdf a:hover{
	border: 2px solid #FFF;
	background-color: #71241e;
	padding: 0.1rem 0.5rem;
	border-radius: 10px;
	color: #FFF;
}



.contentArticleAgencementImage{
	padding: 0.5rem;
	height: 100%;
	flex: 1 1 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#conteneur{
	display: flex;
	flex-direction: column;
}
.detailsArt{
	height: 100%;
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}
@media screen and (max-width: 500px){
	.detailsArt{
		font-size: 0.9rem;
	}
}
.titreArticle{
	width: 90%;
	text-align: center;
	color: #71241e;
	font-size: 2rem;
	font-weight: bold;
	padding: 0.5rem 0rem 0.3rem 0rem;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 1400px){
	.titreArticle{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1000px){
	.titreArticle{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 500px){
	.titreArticle{
		font-size: 1.3rem;
	}
}
.descriptionArticle{
	text-align: justify;
	padding: 0rem 1rem;
}
#divImageCarousel{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 0.5rem;

}
#divImageCarousel img{
	border-radius: 5px;
	border: 3px solid #fff;
	height: auto;
	width: 80%;
	height: 100%;
	padding: 0.5rem;
}
@media screen and (max-width: 1000px){
	#divImageCarousel img{
	width: 100%;
}
}
@media screen and (max-width: 870px){
	#divImageCarousel img{
	width: 70%;
}
}
@media screen and (max-width: 500px){
	#divImageCarousel img{
	width: 90%;
}
}
.titreCarousel{
	text-align: center;
	color: #17596c;
	background-color: #e7e7e7;
	letter-spacing: 0.45rem;
	font-size: 2rem;
	font-weight: bold;
	border-bottom: 3px solid #fff;
}
@media screen and (max-width: 400px){
	.titreCarousel{
		font-size: 1.7rem;
	}
}
#album{
	width:100%;
	height:360px;
	border-radius: 3px;
}
@media screen and (max-width: 950px){
	#album{
		height: auto;
	}
}
#agencement_miniatures{
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	z-index:4;
	top: -26px;
}
@media screen and (max-width: 500px){
	#agencement_miniatures{
		top: -12px;
	}
}
.miniature
{
		margin: 0rem 0.5rem;
}
@media screen and (max-width: 500px){
	.miniature{
		margin: 0rem 0.3rem;
	}
}
@media screen and (max-width: 430px){
	.miniature{
		margin: 0rem 0.1rem;
	}
}

.img_miniature
{
	width: 120px;
	height: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border:#fff 1px solid;
	box-shadow: 6px 6px 0px #181818;
	cursor:pointer;
}
@media screen and (max-width: 700px){
	.img_miniature
	{
		width: 100px;
		height: auto;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		border:#fff 1px solid;
		box-shadow: 6px 6px 0px #181818;
		cursor:pointer;
	}	
}
.lienCommander{
	border: 2px solid #FFF;
	background-color: #71241e;
	color: #FFF;
	padding: 1rem 3rem;
	border-radius: 10px;
	font-weight: bold;

}
.lienCommander:hover{
	border: 2px solid #71241e;
	background-color: #FFF;
	color: #71241e;
	padding: 1rem 4rem;
}
.divLienCommander{
	margin-top: 2rem;
	margin-bottom: 1rem;
}

            				      						/*FIN présentation article*/
                        										  /*Footer*/
#footer{
	/*position: fixed;
	bottom: 0px;*/
	width: 100%;
	color: grey;
	font-size: 0.8rem;
	margin-top: 1rem;
}
                       											   /*Fin Footer*/

                       							  			  /*formulaire contact*/
@media screen and (max-width: 450px){
#h3contact{
	font-size: 2.1rem;
}}
#contact{
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
}
@media (orientation: landscape) {
#contact{
	background-image: url('/images/fondcontact.jpg');
}
}
@media (orientation: portrait) {
#contact{
	background-image: url('/images/fondcontactPortrait.jpg');
}
}
.contentContact{
	text-align: justify;
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0rem 1rem;
}
#formulaireContact{
	width: 70%;
	display: flex;
	flex-direction: column;

}
@media screen and (max-width: 800px){
	#formulaireContact{
	width: 100%;
}
}
#formulaireContact form{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #2c2c2c;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 1rem 0rem;
}
#formulaireContact input{
	width: 90%;
	border: 1px solid grey;
	height: 40px;
	padding: 0rem 0.3rem;
	background-color: rgba(255, 255, 255, 0.8);
}
#formulaireContact form textarea#textareamessage.inputedit{
	width: 90%;
	border: 1px solid grey;
	height: 200px;
	padding: 0.3rem;
	background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1400px){
#formulaireContact form textarea#textareamessage.inputedit{
	height: 100px;
}	
}
#valider{
	margin-top: 2rem;
	transition: .25s ease-in-out;
}
#valider:hover{
	border: 1px solid #FFF;
	background-color: #71241e;
	color: #FFF;
}
.error{
	color: red;
}
#agencementCoordonee{
	display: flex;
	background-color: rgba(255, 255, 255, 0.5);
	justify-content: space-between;
	width: 70%;
	margin-top: 1rem;
	padding: 1rem;
	flex-direction: column;
}
@media screen and (max-width: 800px){
	#agencementCoordonee{
	width: 100%;
}
}
#coordonnees{
	padding: 0rem 0.5rem;
	flex: 1;
	color: #2c2c2c;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 1400px){
	#coordonnees{
		flex: 1;
}
}
#map{
	flex: 1 0 50%;
}
#map iframe{
	border-radius: 15px;
}
               										           /*fin formulaire contact*/

               										           /*fin confirmation*/
.contentTexteConfirmation{
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0rem  1rem;
	color: #FFF;
}
.ContentMessageConfirmation{
	padding: 2rem 1rem;
	background-color: rgba(255, 255, 255, 0.5);
	width: 90%;
	text-align: center;
	color: #2c2c2c;
}
h4{
	width: 100%;
	text-align: center;
	color: #71241e;
	font-family: 'titre';
	font-size: 4rem;
}
@media screen and (max-width: 1400px){
	h4{
	font-size: 3rem;
	line-height: 3rem;
}
}
@media screen and (max-width: 1000px){
	h4{
	margin-top: 0.5rem;
}
}
@media screen and (max-width: 380px){
	h4{
	font-size: 2.5rem;
	line-height: 3rem;
}
}
               										           /*fin confirmation*/

               										           /*fin mentions légales*/
h5{
	font-size: 1.5rem;
	font-weight: bold;
	color: #000;
	margin-bottom: 0.5rem;
}
               										           /*fin mentions légales*/